diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d6005ee4..32e1b9a84 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,64 @@
+# Upcoming Wekan release
+
+This release fixes the following bugs:
+
+- [New Checklistitems are now autoresized too](https://github.com/wekan/wekan/pull/3411).
+ Thanks to mfilser.
+- [Swimlane + and = Icons resized for better handling at mobile view](https://github.com/wekan/wekan/pull/3412).
+ Thanks to mfilser.
+
+Thanks to above GitHub users for their contributions and translators for their translations.
+
+# v4.68 2020-12-29 Wekan release
+
+This release fixes the following bugs:
+
+- [Checklist-Items, Drag-Drop Handle now at the left side](https://github.com/wekan/wekan/pull/3407).
+ Thanks to mfilser.
+- [Checklist-Items, Autoresize the textarea vertically to fit the user-input](https://github.com/wekan/wekan/pull/3408).
+ Thanks to mfilser.
+
+Thanks to above GitHub users for their contributions and translators for their translations.
+
+# v4.67 2020-12-29 Wekan release
+
+This release adds the following new features:
+
+- Teams/Organizations to Admin Panel. In Progress.
+ [Part 1](https://github.com/wekan/wekan/commit/9e2093d6aed38e66fc4d63823315c9382e013a32).
+ Thanks to xet7.
+
+and fixes the following bugs:
+
+- [Checklist Mini-Screen, appendTo: 'parent' not necessary anymore](https://github.com/wekan/wekan/pull/3405).
+ Thanks to mfilser.
+- [Allow to edit email verified and initials at Admin Panel/People/People](https://github.com/wekan/wekan/commit/d03e2170dd10741bd78722cc35b52cffa220a2e7).
+ Thanks to xet7.
+
+Thanks to above GitHub users for their contributions and translators for their translations.
+
+# v4.66 2020-12-27 Wekan release
+
+This release fixes the following bugs:
+
+- [Fix Mobile miniscreen: Drag handle not visible in long checklist item
+ text](https://github.com/wekan/wekan/commit/a8453657c95a4bde2ae86b4c77e55bb2174adf26).
+ Thanks to xet7.
+
+Thanks to above GitHub users for their contributions and translators for their translations.
+
+# v4.65 2020-12-26 Wekan release
+
+This release fixes the following bugs:
+
+- [Fixed Drag and drop between checklists closes the card sometimes on
+ Firefox](https://github.com/wekan/wekan/commit/c7808c5c03f98eae709e5ef89e8e17af4689cb2e).
+ xet7 thanks mfilser about [similar fix of appendTo parent](https://github.com/wekan/wekan/pull/3342)
+ that did work here too to fix this.
+ Thanks to mfilser and xet7.
+
+Thanks to above GitHub users for their contributions and translators for their translations.
+
# v4.64 2020-12-24 Wekan release
This release fixes the following bugs:
diff --git a/Stackerfile.yml b/Stackerfile.yml
index d16840160..1edfb9e2e 100644
--- a/Stackerfile.yml
+++ b/Stackerfile.yml
@@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
-appVersion: "v4.64.0"
+appVersion: "v4.68.0"
files:
userUploads:
- README.md
diff --git a/client/components/cards/checklists.jade b/client/components/cards/checklists.jade
index a3695a5ea..75cb716fa 100644
--- a/client/components/cards/checklists.jade
+++ b/client/components/cards/checklists.jade
@@ -102,9 +102,9 @@ template(name='checklistItemDetail')
if canModifyCard
.check-box-container
.check-box.materialCheckBox(class="{{#if item.isFinished }}is-checked{{/if}}")
+ if isMiniScreenOrShowDesktopDragHandles
+ span.fa.checklistitem-handle(class="fa-arrows" title="{{_ 'dragChecklistItem'}}")
.item-title.js-open-inlined-form.is-editable(class="{{#if item.isFinished }}is-checked{{/if}}")
- if isMiniScreenOrShowDesktopDragHandles
- span.fa.checklistitem-handle(class="fa-arrows" title="{{_ 'dragChecklistItem'}}")
+viewer
= item.title
else
diff --git a/client/components/cards/checklists.js b/client/components/cards/checklists.js
index 2ed385a90..04ededceb 100644
--- a/client/components/cards/checklists.js
+++ b/client/components/cards/checklists.js
@@ -6,7 +6,7 @@ function initSorting(items) {
helper: 'clone',
items: '.js-checklist-item:not(.placeholder)',
connectWith: '.js-checklist-items',
- appendTo: '.board-canvas',
+ appendTo: 'parent',
distance: 7,
placeholder: 'checklist-item placeholder',
scroll: false,
@@ -59,7 +59,6 @@ BlazeComponent.extendComponent({
if (Utils.isMiniScreenOrShowDesktopDragHandles()) {
$(self.itemsDom).sortable({
handle: 'span.fa.checklistitem-handle',
- appendTo: 'parent',
});
}
}
@@ -224,6 +223,14 @@ Template.checklists.helpers({
},
});
+Template.addChecklistItemForm.onRendered(() => {
+ autosize($('textarea.js-add-checklist-item'))
+});
+
+Template.editChecklistItemForm.onRendered(() => {
+ autosize($('textarea.js-edit-checklist-item'))
+});
+
Template.checklistDeleteDialog.onCreated(() => {
const $cardDetails = this.$('.card-details');
this.scrollState = {
diff --git a/client/components/cards/checklists.styl b/client/components/cards/checklists.styl
index 337aaa894..8d6afaffb 100644
--- a/client/components/cards/checklists.styl
+++ b/client/components/cards/checklists.styl
@@ -134,7 +134,7 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
background-color: darken(white, 8%)
.check-box-container
- padding-right: 1px;
+ padding-right: 10px;
.check-box
margin: 0.1em 0 0 0;
@@ -144,7 +144,6 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
.item-title
flex: 1
- margin-left: 10px;
&.is-checked
color: #8c8c8c
font-style: italic
@@ -157,7 +156,8 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
max-width: 420px
span.fa.checklistitem-handle
- float: right
+ padding-top: 2px
+ padding-right: 10px;
.js-delete-checklist-item
margin: 0 0 0.5em 1.33em
diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade
index f9f5b72a9..d2d256ab8 100644
--- a/client/components/settings/peopleBody.jade
+++ b/client/components/settings/peopleBody.jade
@@ -5,34 +5,102 @@ template(name="people")
else
.content-title.ext-box
.ext-box-left
- span
- i.fa.fa-users
- | {{_ 'people'}}
- input#searchInput(placeholder="{{_ 'search'}}")
- button#searchButton
- i.fa.fa-search
- | {{_ 'search'}}
- .ext-box-right
- span {{_ 'people-number'}} #{peopleNumber}
+ if loading.get
+ +spinner
+ else if orgSetting.get
+ span
+ i.fa.fa-sitemap
+ | {{_ 'organizations'}}
+ input#searchOrgInput(placeholder="{{_ 'search'}}")
+ button#searchOrgButton
+ i.fa.fa-search
+ | {{_ 'search'}}
+ .ext-box-right
+ span {{_ 'org-number'}} #{orgNumber}
+ else if teamSetting.get
+ span
+ i.fa.fa-users
+ | {{_ 'teams'}}
+ input#searchTeamInput(placeholder="{{_ 'search'}}")
+ button#searchTeamButton
+ i.fa.fa-search
+ | {{_ 'search'}}
+ .ext-box-right
+ span {{_ 'team-number'}} #{teamNumber}
+ else if peopleSetting.get
+ span
+ i.fa.fa-user
+ | {{_ 'people'}}
+ input#searchInput(placeholder="{{_ 'search'}}")
+ button#searchButton
+ i.fa.fa-search
+ | {{_ 'search'}}
+ .ext-box-right
+ span {{_ 'people-number'}} #{peopleNumber}
.content-body
.side-menu
ul
li.active
- a.js-setting-menu(data-id="people-setting")
+ a.js-org-menu(data-id="org-setting")
+ i.fa.fa-sitemap
+ | {{_ 'organizations'}}
+ li
+ a.js-team-menu(data-id="team-setting")
i.fa.fa-users
+ | {{_ 'teams'}}
+ li
+ a.js-people-menu(data-id="people-setting")
+ i.fa.fa-user
| {{_ 'people'}}
.main-body
if loading.get
+spinner
- else if people.get
+ else if orgSetting.get
+ +orgGeneral
+ else if teamSetting.get
+ +teamGeneral
+ else if peopleSetting.get
+peopleGeneral
+
+template(name="orgGeneral")
+ table
+ tbody
+ tr
+ th {{_ 'displayName'}}
+ th {{_ 'description'}}
+ th {{_ 'shortName'}}
+ th {{_ 'website'}}
+ th {{_ 'teams'}}
+ th {{_ 'createdAt'}}
+ th {{_ 'active'}}
+ th
+ +newOrgRow
+ each org in orgList
+ +orgRow(orgId=org._id)
+
+template(name="teamGeneral")
+ table
+ tbody
+ tr
+ th {{_ 'displayName'}}
+ th {{_ 'description'}}
+ th {{_ 'shortName'}}
+ th {{_ 'website'}}
+ th {{_ 'createdAt'}}
+ th {{_ 'active'}}
+ th
+ +newTeamRow
+ each team in teamList
+ +teamRow(teamId=team._id)
+
template(name="peopleGeneral")
table
tbody
tr
th {{_ 'username'}}
th {{_ 'fullname'}}
+ th {{_ 'initials'}}
th {{_ 'admin'}}
th {{_ 'email'}}
th {{_ 'verified'}}
@@ -44,11 +112,93 @@ template(name="peopleGeneral")
each user in peopleList
+peopleRow(userId=user._id)
+template(name="newOrgRow")
+ a.new-org
+ i.fa.fa-edit
+ | {{_ 'new'}}
+
+template(name="newTeamRow")
+ a.new-team
+ i.fa.fa-edit
+ | {{_ 'new'}}
+
template(name="newUserRow")
a.new-user
i.fa.fa-edit
| {{_ 'new'}}
+template(name="orgRow")
+ tr
+ if orgData.loginDisabled
+ td {{ orgData.displayName }}
+ else
+ td {{ orgData.displayName }}
+ if orgData.loginDisabled
+ td {{ orgData.orgDesc }}
+ else
+ td {{ orgData.desc }}
+ if orgData.loginDisabled
+ td {{ orgData.name }}
+ else
+ td {{ orgData.name }}
+ if orgData.loginDisabled
+ td {{ orgData.website }}
+ else
+ td {{ orgData.website }}
+ if orgData.loginDisabled
+ td {{ orgData.teams }}
+ else
+ td {{ orgData.teams }}
+ if orgData.loginDisabled
+ td {{ moment orgData.createdAt 'LLL' }}
+ else
+ td {{ moment orgData.createdAt 'LLL' }}
+ td
+ if orgData.loginDisabled
+ | {{_ 'no'}}
+ else
+ | {{_ 'yes'}}
+ td
+ a.edit-org
+ i.fa.fa-edit
+ | {{_ 'edit'}}
+ a.more-settings-org
+ i.fa.fa-ellipsis-h
+
+template(name="teamRow")
+ tr
+ if teamData.loginDisabled
+ td {{ teamData.displayName }}
+ else
+ td {{ teamData.displayName }}
+ if teamData.loginDisabled
+ td {{ teamData.desc }}
+ else
+ td {{ teamData.desc }}
+ if teamData.loginDisabled
+ td {{ teamData.dame }}
+ else
+ td {{ teamData.name }}
+ if teamData.loginDisabled
+ td {{ teamData.website }}
+ else
+ td {{ teamData.website }}
+ if orgData.loginDisabled
+ td {{ moment teamData.createdAt 'LLL' }}
+ else
+ td {{ moment teamData.createdAt 'LLL' }}
+ td
+ if teamData.loginDisabled
+ | {{_ 'no'}}
+ else
+ | {{_ 'yes'}}
+ td
+ a.edit-team
+ i.fa.fa-edit
+ | {{_ 'edit'}}
+ a.more-settings-team
+ i.fa.fa-ellipsis-h
+
template(name="peopleRow")
tr
if userData.loginDisabled
@@ -59,6 +209,10 @@ template(name="peopleRow")
td {{ userData.profile.fullname }}
else
td {{ userData.profile.fullname }}
+ if userData.loginDisabled
+ td {{ userData.profile.initials }}
+ else
+ td {{ userData.profile.initials }}
if userData.loginDisabled
td
if userData.isAdmin
@@ -107,12 +261,61 @@ template(name="peopleRow")
a.more-settings-user
i.fa.fa-ellipsis-h
+template(name="editOrgPopup")
+ form
+ label.hide.orgId(type="text" value=org._id)
+ label
+ | {{_ 'orgDisplayName'}}
+ input.js-orgDisplayName(type="text" value=org.displayName required)
+ span.error.hide.orgname-taken
+ | {{_ 'error-orgname-taken'}}
+ label
+ | {{_ 'orgDesc'}}
+ input.js-orgDesc(type="text" value=org.desc required)
+ label
+ | {{_ 'orgName'}}
+ input.js-orgName(type="text" value=org.name required)
+ label
+ | {{_ 'orgWebsite'}}
+ input.js-orgWebsite(type="text" value=org.website required)
+ label
+ | {{_ 'active'}}
+ select.select-active.js-org-isactive
+ option(value="false") {{_ 'yes'}}
+ option(value="true" selected="{{org.loginDisabled}}") {{_ 'no'}}
+ hr
+ div.buttonsContainer
+ input.primary.wide(type="submit" value="{{_ 'save'}}")
+
+template(name="editTeamPopup")
+ form
+ label.hide.teamId(type="text" value=team._id)
+ label
+ | {{_ 'displayName'}}
+ input.js-teamDisplayName(type="text" value=team.displayName required)
+ span.error.hide.teamname-taken
+ | {{_ 'error-teamname-taken'}}
+ label
+ | {{_ 'desc'}}
+ input.js-orgDesc(type="text" value=org.desc required)
+ label
+ | {{_ 'name'}}
+ input.js-orgName(type="text" value=org.name required)
+ label
+ | {{_ 'website'}}
+ input.js-orgWebsite(type="text" value=org.website required)
+ label
+ | {{_ 'active'}}
+ select.select-active.js-team-isactive
+ option(value="false") {{_ 'yes'}}
+ option(value="true" selected="{{team.loginDisabled}}") {{_ 'no'}}
+ hr
+ div.buttonsContainer
+ input.primary.wide(type="submit" value="{{_ 'save'}}")
+
template(name="editUserPopup")
form
label.hide.userId(type="text" value=user._id)
- label
- | {{_ 'fullname'}}
- input.js-profile-fullname(type="text" value=user.profile.fullname required)
label
| {{_ 'username'}}
span.error.hide.username-taken
@@ -121,6 +324,17 @@ template(name="editUserPopup")
input.js-profile-username(type="text" value=user.username readonly)
else
input.js-profile-username(type="text" value=user.username required)
+ label
+ | {{_ 'fullname'}}
+ input.js-profile-fullname(type="text" value=user.profile.fullname required)
+ label
+ | {{_ 'initials'}}
+ input.js-profile-initials(type="text" value=user.profile.initials)
+ label
+ | {{_ 'admin'}}
+ select.select-role.js-profile-isadmin
+ option(value="false") {{_ 'no'}}
+ option(value="true" selected="{{user.isAdmin}}") {{_ 'yes'}}
label
| {{_ 'email'}}
span.error.hide.email-taken
@@ -130,10 +344,10 @@ template(name="editUserPopup")
else
input.js-profile-email(type="email" value="{{user.emails.[0].address}}" required)
label
- | {{_ 'admin'}}
- select.select-role.js-profile-isadmin
+ | {{_ 'verified'}}
+ select.select-verified.js-profile-email-verified
option(value="false") {{_ 'no'}}
- option(value="true" selected="{{user.isAdmin}}") {{_ 'yes'}}
+ option(value="true" selected="{{userData.emails.[0].verified}}") {{_ 'yes'}}
label
| {{_ 'active'}}
select.select-active.js-profile-isactive
@@ -154,6 +368,54 @@ template(name="editUserPopup")
div.buttonsContainer
input.primary.wide(type="submit" value="{{_ 'save'}}")
+template(name="newOrgPopup")
+ form
+ //label.hide.userId(type="text" value=user._id)
+ label
+ | {{_ 'orgDisplayName'}}
+ input.js-orgDisplayName(type="text" value="" required)
+ label
+ | {{_ 'orgDesc'}}
+ input.js-orgDesc(type="text" value="" required)
+ label
+ | {{_ 'orgName'}}
+ input.js-orgName(type="text" value="")
+ label
+ | {{_ 'orgWebsite'}}
+ input.js-orgWebsite(type="text" value="")
+ label
+ | {{_ 'active'}}
+ select.select-active.js-profile-isactive
+ option(value="false" selected="selected") {{_ 'yes'}}
+ option(value="true") {{_ 'no'}}
+ hr
+ div.buttonsContainer
+ input.primary.wide(type="submit" value="{{_ 'save'}}")
+
+template(name="newTeamPopup")
+ form
+ //label.hide.teamId(type="text" value=team._id)
+ label
+ | {{_ 'displayName'}}
+ input.js-teamDisplayName(type="text" value="" required)
+ label
+ | {{_ 'desc'}}
+ input.js-teamDesc(type="text" value="" required)
+ label
+ | {{_ 'shortName'}}
+ input.js-teamName(type="text" value="")
+ label
+ | {{_ 'website'}}
+ input.js-teamWebsite(type="text" value="")
+ label
+ | {{_ 'active'}}
+ select.select-active.js-profile-isactive
+ option(value="false" selected="selected") {{_ 'yes'}}
+ option(value="true") {{_ 'no'}}
+ hr
+ div.buttonsContainer
+ input.primary.wide(type="submit" value="{{_ 'save'}}")
+
template(name="newUserPopup")
form
//label.hide.userId(type="text" value=user._id)
@@ -201,6 +463,31 @@ template(name="newUserPopup")
div.buttonsContainer
input.primary.wide(type="submit" value="{{_ 'save'}}")
+template(name="settingsOrgPopup")
+ ul.pop-over-list
+ li
+ a.impersonate-org
+ i.fa.fa-user
+ | {{_ 'impersonate-org'}}
+ // Delete is not enabled yet, because it does leave empty user avatars
+ // to boards: boards members, card members and assignees have
+ // empty users. See:
+ // - wekan/client/components/settings/peopleBody.jade deleteButton
+ // - wekan/client/components/settings/peopleBody.js deleteButton
+ // - wekan/client/components/sidebar/sidebar.js Popup.afterConfirm('removeMember'
+ // that does now remove member from board, card members and assignees correctly,
+ // but that should be used to remove user from all boards similarly
+ // - wekan/models/users.js Delete is not enabled
+ //li
+ // br
+ // br
+ // hr
+ //li
+ // form
+ // label.hide.userId(type="text" value=user._id)
+ // div.buttonsContainer
+ // input#deleteButton.card-details-red.right.wide(type="button" value="{{_ 'delete'}}")
+
template(name="settingsUserPopup")
ul.pop-over-list
li
diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js
index 0cd288d41..75fc48c15 100644
--- a/client/components/settings/peopleBody.js
+++ b/client/components/settings/peopleBody.js
@@ -1,3 +1,5 @@
+const orgsPerPage = 25;
+const teamsPerPage = 25;
const usersPerPage = 25;
BlazeComponent.extendComponent({
@@ -7,17 +9,45 @@ BlazeComponent.extendComponent({
onCreated() {
this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false);
- this.people = new ReactiveVar(true);
+ this.orgSetting = new ReactiveVar(true);
+ this.teamSetting = new ReactiveVar(true);
+ this.peopleSetting = new ReactiveVar(true);
+ this.findOrgsOptions = new ReactiveVar({});
+ this.findTeamsOptions = new ReactiveVar({});
this.findUsersOptions = new ReactiveVar({});
- this.number = new ReactiveVar(0);
+ this.numberOrgs = new ReactiveVar(0);
+ this.numberTeams = new ReactiveVar(0);
+ this.numberPeople = new ReactiveVar(0);
this.page = new ReactiveVar(1);
this.loadNextPageLocked = false;
this.callFirstWith(null, 'resetNextPeak');
this.autorun(() => {
- const limit = this.page.get() * usersPerPage;
+ const limitOrgs = this.page.get() * orgsPerPage;
+ const limitTeams = this.page.get() * teamsPerPage;
+ const limitUsers = this.page.get() * usersPerPage;
- this.subscribe('people', this.findUsersOptions.get(), limit, () => {
+ this.subscribe('org', this.findOrgsOptions.get(), limitOrgs, () => {
+ this.loadNextPageLocked = false;
+ const nextPeakBefore = this.callFirstWith(null, 'getNextPeak');
+ this.calculateNextPeak();
+ const nextPeakAfter = this.callFirstWith(null, 'getNextPeak');
+ if (nextPeakBefore === nextPeakAfter) {
+ this.callFirstWith(null, 'resetNextPeak');
+ }
+ });
+
+ this.subscribe('team', this.findTeamsOptions.get(), limitTeams, () => {
+ this.loadNextPageLocked = false;
+ const nextPeakBefore = this.callFirstWith(null, 'getNextPeak');
+ this.calculateNextPeak();
+ const nextPeakAfter = this.callFirstWith(null, 'getNextPeak');
+ if (nextPeakBefore === nextPeakAfter) {
+ this.callFirstWith(null, 'resetNextPeak');
+ }
+ });
+
+ this.subscribe('people', this.findUsersOptions.get(), limitUsers, () => {
this.loadNextPageLocked = false;
const nextPeakBefore = this.callFirstWith(null, 'getNextPeak');
this.calculateNextPeak();
@@ -31,6 +61,22 @@ BlazeComponent.extendComponent({
events() {
return [
{
+ 'click #searchOrgButton'() {
+ this.filterOrg();
+ },
+ 'keydown #searchOrgInput'(event) {
+ if (event.keyCode === 13 && !event.shiftKey) {
+ this.filterOrg();
+ }
+ },
+ 'click #searchTeamButton'() {
+ this.filterTeam();
+ },
+ 'keydown #searchTeamInput'(event) {
+ if (event.keyCode === 13 && !event.shiftKey) {
+ this.filterTeam();
+ }
+ },
'click #searchButton'() {
this.filterPeople();
},
@@ -39,9 +85,18 @@ BlazeComponent.extendComponent({
this.filterPeople();
}
},
+ 'click #newOrgButton'() {
+ Popup.open('newOrg');
+ },
+ 'click #newTeamButton'() {
+ Popup.open('newTeam');
+ },
'click #newUserButton'() {
Popup.open('newUser');
},
+ 'click a.js-org-menu': this.switchMenu,
+ 'click a.js-team-menu': this.switchMenu,
+ 'click a.js-people-menu': this.switchMenu,
},
];
},
@@ -84,18 +139,63 @@ BlazeComponent.extendComponent({
setLoading(w) {
this.loading.set(w);
},
+ orgList() {
+ const orgs = Org.find(this.findOrgsOptions.get(), {
+ fields: { _id: true },
+ });
+ this.numberOrgs.set(org.count(false));
+ return orgs;
+ },
+ teamList() {
+ const teams = Team.find(this.findTeamsOptions.get(), {
+ fields: { _id: true },
+ });
+ this.numberTeams.set(team.count(false));
+ return teams;
+ },
peopleList() {
const users = Users.find(this.findUsersOptions.get(), {
fields: { _id: true },
});
- this.number.set(users.count(false));
+ this.numberPeople.set(users.count(false));
return users;
},
+ orgNumber() {
+ return this.numberOrgs.get();
+ },
+ teamNumber() {
+ return this.numberTeams.get();
+ },
peopleNumber() {
- return this.number.get();
+ return this.numberPeople.get();
+ },
+ switchMenu(event) {
+ const target = $(event.target);
+ if (!target.hasClass('active')) {
+ $('.side-menu li.active').removeClass('active');
+ target.parent().addClass('active');
+ const targetID = target.data('id');
+ this.orgSetting.set('org-setting' === targetID);
+ this.teamSetting.set('team-setting' === targetID);
+ this.peopleSetting.set('people-setting' === targetID);
+ }
},
}).register('people');
+Template.orgRow.helpers({
+ orgData() {
+ const orgCollection = this.esSearch ? ESSearchResults : Org;
+ return orgCollection.findOne(this.orgId);
+ },
+});
+
+Template.teamRow.helpers({
+ teamData() {
+ const teamCollection = this.esSearch ? ESSearchResults : Team;
+ return teamCollection.findOne(this.teamId);
+ },
+});
+
Template.peopleRow.helpers({
userData() {
const userCollection = this.esSearch ? ESSearchResults : Users;
@@ -122,6 +222,51 @@ Template.editUserPopup.onCreated(function() {
});
});
+Template.editOrgPopup.helpers({
+ org() {
+ return Org.findOne(this.orgId);
+ },
+ /*
+ isSelected(match) {
+ const orgId = Template.instance().data.orgId;
+ const selected = Org.findOne(orgId).authenticationMethod;
+ return selected === match;
+ },
+ isLdap() {
+ const userId = Template.instance().data.userId;
+ const selected = Users.findOne(userId).authenticationMethod;
+ return selected === 'ldap';
+ },
+ */
+ errorMessage() {
+ return Template.instance().errorMessage.get();
+ },
+});
+
+Template.editTeamPopup.helpers({
+ team() {
+ return Team.findOne(this.teamId);
+ },
+ /*
+ authentications() {
+ return Template.instance().authenticationMethods.get();
+ },
+ isSelected(match) {
+ const userId = Template.instance().data.userId;
+ const selected = Users.findOne(userId).authenticationMethod;
+ return selected === match;
+ },
+ isLdap() {
+ const userId = Template.instance().data.userId;
+ const selected = Users.findOne(userId).authenticationMethod;
+ return selected === 'ldap';
+ },
+ */
+ errorMessage() {
+ return Template.instance().errorMessage.get();
+ },
+});
+
Template.editUserPopup.helpers({
user() {
return Users.findOne(this.userId);
@@ -144,6 +289,46 @@ Template.editUserPopup.helpers({
},
});
+Template.newOrgPopup.onCreated(function() {
+ //this.authenticationMethods = new ReactiveVar([]);
+ this.errorMessage = new ReactiveVar('');
+ /*
+ Meteor.call('getAuthenticationsEnabled', (_, result) => {
+ if (result) {
+ // TODO : add a management of different languages
+ // (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
+ this.authenticationMethods.set([
+ { value: 'password' },
+ // Gets only the authentication methods availables
+ ...Object.entries(result)
+ .filter(e => e[1])
+ .map(e => ({ value: e[0] })),
+ ]);
+ }
+ });
+*/
+});
+
+Template.newTeamPopup.onCreated(function() {
+ //this.authenticationMethods = new ReactiveVar([]);
+ this.errorMessage = new ReactiveVar('');
+ /*
+ Meteor.call('getAuthenticationsEnabled', (_, result) => {
+ if (result) {
+ // TODO : add a management of different languages
+ // (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
+ this.authenticationMethods.set([
+ { value: 'password' },
+ // Gets only the authentication methods availables
+ ...Object.entries(result)
+ .filter(e => e[1])
+ .map(e => ({ value: e[0] })),
+ ]);
+ }
+ });
+*/
+});
+
Template.newUserPopup.onCreated(function() {
this.authenticationMethods = new ReactiveVar([]);
this.errorMessage = new ReactiveVar('');
@@ -214,18 +399,24 @@ Template.editUserPopup.events({
submit(event, templateInstance) {
event.preventDefault();
const user = Users.findOne(this.userId);
- const fullname = templateInstance.find('.js-profile-fullname').value.trim();
const username = templateInstance.find('.js-profile-username').value.trim();
+ const fullname = templateInstance.find('.js-profile-fullname').value.trim();
+ const initials = templateInstance.find('.js-profile-initials').value.trim();
const password = templateInstance.find('.js-profile-password').value;
const isAdmin = templateInstance.find('.js-profile-isadmin').value.trim();
const isActive = templateInstance.find('.js-profile-isactive').value.trim();
const email = templateInstance.find('.js-profile-email').value.trim();
+ const verified = templateInstance
+ .find('.js-profile-email-verified')
+ .value.trim();
const authentication = templateInstance
.find('.js-authenticationMethod')
.value.trim();
const isChangePassword = password.length > 0;
const isChangeUserName = username !== user.username;
+ const isChangeInitials = initials.length > 0;
+ const isChangeEmailVerified = verified !== user.emails[0].verified;
// If previously email address has not been set, it is undefined,
// check for undefined, and allow adding email address.
@@ -248,6 +439,14 @@ Template.editUserPopup.events({
Meteor.call('setPassword', password, this.userId);
}
+ if (isChangeEmailVerified) {
+ Meteor.call('setEmailVerified', email, verified === 'true', this.userId);
+ }
+
+ if (isChangeInitials) {
+ Meteor.call('setInitials', initials, this.userId);
+ }
+
if (isChangeUserName && isChangeEmail) {
Meteor.call(
'setUsernameAndEmail',
diff --git a/client/components/settings/peopleBody.styl b/client/components/settings/peopleBody.styl
index 8f3c10c27..028db164c 100644
--- a/client/components/settings/peopleBody.styl
+++ b/client/components/settings/peopleBody.styl
@@ -21,7 +21,7 @@ table
.ext-box-left
display: flex;
- width: 40%
+ width: 100%
span
vertical-align: center;
@@ -47,5 +47,5 @@ table
div
margin: auto
-.more-settings-user
+.more-settings-user,.more-settings-team,.more-settings-org
margin-left: 10px;
diff --git a/client/components/swimlanes/swimlaneHeader.jade b/client/components/swimlanes/swimlaneHeader.jade
index c7c9381e5..b4ef59767 100644
--- a/client/components/swimlanes/swimlaneHeader.jade
+++ b/client/components/swimlanes/swimlaneHeader.jade
@@ -17,12 +17,11 @@ template(name="swimlaneFixedHeader")
unless currentUser.isCommentOnly
if currentUser.isBoardAdmin
a.fa.fa-plus.js-open-add-swimlane-menu.swimlane-header-plus-icon
- a.fa.fa-navicon.js-open-swimlane-menu
- unless isMiniScreen
- if showDesktopDragHandles
- a.swimlane-header-handle.handle.fa.fa-arrows.js-swimlane-header-handle
- if isMiniScreen
+ a.fa.fa-navicon.js-open-swimlane-menu.swimlane-header-menu-icon
+ if isMiniScreenOrShowDesktopDragHandles
a.swimlane-header-miniscreen-handle.handle.fa.fa-arrows.js-swimlane-header-handle
+ else
+ a.swimlane-header-handle.handle.fa.fa-arrows.js-swimlane-header-handle
template(name="editSwimlaneTitleForm")
.list-composer
diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl
index b736a8b6e..812b8ae9b 100644
--- a/client/components/swimlanes/swimlanes.styl
+++ b/client/components/swimlanes/swimlanes.styl
@@ -88,7 +88,12 @@
.swimlane-header-plus-icon
margin-left: 5px
- margin-right: 10px
+ padding-right: 20px
+ font-size: 22px
+
+ .swimlane-header-menu-icon
+ padding-right: 20px
+ font-size: 22px
.swimlane-header-handle
position: absolute
diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json
index 124c4caf9..4e6b2d079 100644
--- a/i18n/ar.i18n.json
+++ b/i18n/ar.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "قبول",
- "act-activity-notify": "اشعار النشاط",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__لوح__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "الإجراءات",
- "activities": "الأنشطة",
- "activity": "النشاط",
- "activity-added": "تمت إضافة %s ل %s",
- "activity-archived": "%s انتقل الى الارشيف",
- "activity-attached": "إرفاق %s ل %s",
- "activity-created": "أنشأ %s",
- "activity-customfield-created": "%s احدت حقل مخصص",
- "activity-excluded": "استبعاد %s عن %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "انضم %s",
- "activity-moved": "تم نقل %s من %s إلى %s",
- "activity-on": "على %s",
- "activity-removed": "حذف %s إلى %s",
- "activity-sent": "إرسال %s إلى %s",
- "activity-unjoined": "غادر %s",
- "activity-subtask-added": "تم اضافة مهمة فرعية الى %s",
- "activity-checked-item": "تحقق %s في قائمة التحقق %s من %s",
- "activity-unchecked-item": "ازالة تحقق %s من قائمة التحقق %s من %s",
- "activity-checklist-added": "أضاف قائمة تحقق إلى %s",
- "activity-checklist-removed": "ازالة قائمة التحقق من %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "لم يتم انجاز قائمة التحقق %s من %s",
- "activity-checklist-item-added": "تم اضافة عنصر قائمة التحقق الى '%s' في %s",
- "activity-checklist-item-removed": "تم ازالة عنصر قائمة التحقق الى '%s' في %s",
- "add": "أضف",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "تعليق محذوف %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "إضافة مرفق",
- "add-board": "إضافة لوحة",
- "add-card": "إضافة بطاقة",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "إضافة مهمة فرعية",
- "add-checklist": "إضافة قائمة تدقيق",
- "add-checklist-item": "إضافة عنصر إلى قائمة التحقق",
- "add-cover": "إضافة غلاف",
- "add-label": "إضافة ملصق",
- "add-list": "إضافة قائمة",
- "add-members": "تعيين أعضاء",
- "added": "أُضيف",
- "addMemberPopup-title": "الأعضاء",
- "admin": "المدير",
- "admin-desc": "إمكانية مشاهدة و تعديل و حذف أعضاء ، و تعديل إعدادات اللوحة أيضا.",
- "admin-announcement": "إعلان",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "كل اللوحات",
- "and-n-other-card": "And __count__ other بطاقة",
- "and-n-other-card_plural": "And __count__ other بطاقات",
- "apply": "طبق",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "نقل الى الارشيف",
- "archive-all": "نقل الكل الى الارشيف",
- "archive-board": "نقل اللوح الى الارشيف",
- "archive-card": "نقل البطاقة الى الارشيف",
- "archive-list": "نقل القائمة الى الارشيف",
- "archive-swimlane": "نقل خط السباحة الى الارشيف",
- "archive-selection": "نقل التحديد إلى الأرشيف",
- "archiveBoardPopup-title": "نقل الوح إلى الأرشيف",
- "archived-items": "أرشيف",
- "archived-boards": "الالواح في الأرشيف",
- "restore-board": "استعادة اللوحة",
- "no-archived-boards": "لا توجد لوحات في الأرشيف.",
- "archives": "أرشيف",
- "template": "نموذج",
- "templates": "نماذج",
- "assign-member": "تعيين عضو",
- "attached": "أُرفق)",
- "attachment": "مرفق",
- "attachment-delete-pop": "حذف المرق هو حذف نهائي . لا يمكن التراجع إذا حذف.",
- "attachmentDeletePopup-title": "تريد حذف المرفق ?",
- "attachments": "المرفقات",
- "auto-watch": "مراقبة لوحات تلقائيا عندما يتم إنشاؤها",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "رجوع",
- "board-change-color": "تغيير اللومr",
- "board-nb-stars": "%s نجوم",
- "board-not-found": "لوحة مفقودة",
- "board-private-info": "سوف تصبح هذه اللوحة خاصة",
- "board-public-info": "سوف تصبح هذه اللوحة عامّة.",
- "boardChangeColorPopup-title": "تعديل خلفية الشاشة",
- "boardChangeTitlePopup-title": "إعادة تسمية اللوحة",
- "boardChangeVisibilityPopup-title": "تعديل وضوح الرؤية",
- "boardChangeWatchPopup-title": "تغيير المتابعة",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "عرض اللوحات",
- "boards": "لوحات",
- "board-view": "عرض اللوحات",
- "board-view-cal": "التقويم",
- "board-view-swimlanes": "خطوط السباحة",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "القائمات",
- "bucket-example": "مثل « todo list » على سبيل المثال",
- "cancel": "إلغاء",
- "card-archived": "البطاقة منقولة الى الارشيف",
- "board-archived": "اللوحات منقولة الى الارشيف",
- "card-comments-title": "%s تعليقات لهذه البطاقة",
- "card-delete-notice": "هذا حذف أبديّ . سوف تفقد كل الإجراءات المنوطة بهذه البطاقة",
- "card-delete-pop": "سيتم إزالة جميع الإجراءات من تبعات النشاط، وأنك لن تكون قادرا على إعادة فتح البطاقة. لا يوجد التراجع.",
- "card-delete-suggest-archive": "يمكنك نقل بطاقة إلى الأرشيف لإزالتها من اللوحة والمحافظة على النشاط.",
- "card-due": "مستحق",
- "card-due-on": "مستحق في",
- "card-spent": "امضى وقتا",
- "card-edit-attachments": "تعديل المرفقات",
- "card-edit-custom-fields": "تعديل الحقل المعدل",
- "card-edit-labels": "تعديل العلامات",
- "card-edit-members": "تعديل الأعضاء",
- "card-labels-title": "تعديل علامات البطاقة.",
- "card-members-title": "إضافة او حذف أعضاء للبطاقة.",
- "card-start": "بداية",
- "card-start-on": "يبدأ في",
- "cardAttachmentsPopup-title": "إرفاق من",
- "cardCustomField-datePopup-title": "تغير التاريخ",
- "cardCustomFieldsPopup-title": "تعديل الحقل المعدل",
- "cardStartVotingPopup-title": "ابدأ تصويت",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "مع",
- "vote-against": "ضد",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "حذف البطاقة ?",
- "cardDetailsActionsPopup-title": "إجراءات على البطاقة",
- "cardLabelsPopup-title": "علامات",
- "cardMembersPopup-title": "أعضاء",
- "cardMorePopup-title": "المزيد",
- "cardTemplatePopup-title": "Create template",
- "cards": "بطاقات",
- "cards-count": "بطاقات",
- "casSignIn": "تسجيل الدخول مع CAS",
- "cardType-card": "بطاقة",
- "cardType-linkedCard": "البطاقة المرتبطة",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "تعديل الصورة الشخصية",
- "change-password": "تغيير كلمة المرور",
- "change-permissions": "تعديل الصلاحيات",
- "change-settings": "تغيير الاعدادات",
- "changeAvatarPopup-title": "تعديل الصورة الشخصية",
- "changeLanguagePopup-title": "تغيير اللغة",
- "changePasswordPopup-title": "تغيير كلمة المرور",
- "changePermissionsPopup-title": "تعديل الصلاحيات",
- "changeSettingsPopup-title": "تغيير الاعدادات",
- "subtasks": "المهمات الفرعية",
- "checklists": "قوائم التّدقيق",
- "click-to-star": "اضغط لإضافة اللوحة للمفضلة.",
- "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.",
- "clipboard": "Clipboard or drag & drop",
- "close": "غلق",
- "close-board": "غلق اللوحة",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "اخضر غامق",
- "color-gold": "ذهبي",
- "color-gray": "رمادي",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "فضي",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "أبيض",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "تعليق",
- "comment-placeholder": "أكتب تعليق",
- "comment-only": "التعليق فقط",
- "comment-only-desc": "يمكن التعليق على بطاقات فقط.",
- "no-comments": "لا يوجد تعليقات",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "حاسوب",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "نسخ رابط البطاقة إلى الحافظة",
- "linkCardPopup-title": "ربط البطاقة",
- "searchElementPopup-title": "بحث",
- "copyCardPopup-title": "نسخ البطاقة",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "إنشاء",
- "createBoardPopup-title": "إنشاء لوحة",
- "chooseBoardSourcePopup-title": "استيراد لوحة",
- "createLabelPopup-title": "إنشاء علامة",
- "createCustomField": "انشاء حقل",
- "createCustomFieldPopup-title": "انشاء حقل",
- "current": "الحالي",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "تاريخ",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "رقم",
- "custom-field-text": "نص",
- "custom-fields": "Custom Fields",
- "date": "تاريخ",
- "decline": "Decline",
- "default-avatar": "صورة شخصية افتراضية",
- "delete": "حذف",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "حذف العلامة ?",
- "description": "وصف",
- "disambiguateMultiLabelPopup-title": "تحديد الإجراء على العلامة",
- "disambiguateMultiMemberPopup-title": "تحديد الإجراء على العضو",
- "discard": "التخلص منها",
- "done": "Done",
- "download": "تنزيل",
- "edit": "تعديل",
- "edit-avatar": "تعديل الصورة الشخصية",
- "edit-profile": "تعديل الملف الشخصي",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "تغيير تاريخ البدء",
- "editCardDueDatePopup-title": "تغيير تاريخ الاستحقاق",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "تعديل العلامة",
- "editNotificationPopup-title": "تصحيح الإشعار",
- "editProfilePopup-title": "تعديل الملف الشخصي",
- "email": "البريد الإلكتروني",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "لا يمكنك دعوة نفسك",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "إسم المستخدم مأخوذ مسبقا",
- "error-email-taken": "البريد الإلكتروني مأخوذ بالفعل",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "تصفية",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "مسح التصفية",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "لا يوجد ملصق",
- "filter-member-label": "Filter by member",
- "filter-no-member": "ليس هناك أي عضو",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "التصفية تشتغل",
- "filter-on-desc": "أنت بصدد تصفية بطاقات هذه اللوحة. اضغط هنا لتعديل التصفية.",
- "filter-to-selection": "تصفية بالتحديد",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "الإسم الكامل",
- "header-logo-title": "الرجوع إلى صفحة اللوحات",
- "hide-system-messages": "إخفاء رسائل النظام",
- "headerBarCreateBoardPopup-title": "إنشاء لوحة",
- "home": "الرئيسية",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "رابط",
- "import-board": "استيراد لوحة",
- "import-board-c": "استيراد لوحة",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "من تريلو",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "رسم خريطة الأعضاء",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "الإصدار",
- "initials": "أولية",
- "invalid-date": "تاريخ غير صالح",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "انضمّ",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "اختصار لوحة المفاتيح",
- "label-create": "إنشاء علامة",
- "label-default": "%s علامة (افتراضية)",
- "label-delete-pop": "لا يوجد تراجع. سيؤدي هذا إلى إزالة هذه العلامة من جميع بطاقات والقضاء على تأريخها",
- "labels": "علامات",
- "language": "لغة",
- "last-admin-desc": "لا يمكن تعديل الأدوار لأن ذلك يتطلب صلاحيات المدير.",
- "leave-board": "مغادرة اللوحة",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "مغادرة اللوحة ؟",
- "link-card": "ربط هذه البطاقة",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "نقل بطاقات هذه القائمة",
- "list-select-cards": "تحديد بطاقات هذه القائمة",
- "set-color-list": "Set Color",
- "listActionPopup-title": "قائمة الإجراءات",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "المزيد",
- "link-list": "رابط إلى هذه القائمة",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "القائمات",
- "swimlanes": "خطوط السباحة",
- "log-out": "تسجيل الخروج",
- "log-in": "تسجيل الدخول",
- "loginPopup-title": "تسجيل الدخول",
- "memberMenuPopup-title": "أفضليات الأعضاء",
- "members": "أعضاء",
- "menu": "القائمة",
- "move-selection": "Move selection",
- "moveCardPopup-title": "نقل البطاقة",
- "moveCardToBottom-title": "التحرك إلى القاع",
- "moveCardToTop-title": "التحرك إلى الأعلى",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "تحديد أكثر من واحدة",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "مكتوم",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "لوحاتي",
- "name": "اسم",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "لا توجد نتائج",
- "normal": "عادي",
- "normal-desc": "يمكن مشاهدة و تعديل البطاقات. لا يمكن تغيير إعدادات الضبط.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "اختياري",
- "or": "or",
- "page-maybe-private": "قدتكون هذه الصفحة خاصة . قد تستطيع مشاهدتها ب تسجيل الدخول.",
- "page-not-found": "صفحة غير موجودة",
- "password": "كلمة المرور",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "المشاركة",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "خاص",
- "private-desc": "هذه اللوحة خاصة . لا يسمح إلا للأعضاء .",
- "profile": "ملف شخصي",
- "public": "عامّ",
- "public-desc": "هذه اللوحة عامة: مرئية لكلّ من يحصل على الرابط ، و هي مرئية أيضا في محركات البحث مثل جوجل. التعديل مسموح به للأعضاء فقط.",
- "quick-access-description": "أضف لوحة إلى المفضلة لإنشاء اختصار في هذا الشريط.",
- "remove-cover": "حذف الغلاف",
- "remove-from-board": "حذف من اللوحة",
- "remove-label": "إزالة التصنيف",
- "listDeletePopup-title": "حذف القائمة ؟",
- "remove-member": "حذف العضو",
- "remove-member-from-card": "حذف من البطاقة",
- "remove-member-pop": "حذف __name__ (__username__) من __boardTitle__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
- "removeMemberPopup-title": "حذف العضو ?",
- "rename": "إعادة التسمية",
- "rename-board": "إعادة تسمية اللوحة",
- "restore": "استعادة",
- "save": "حفظ",
- "search": "بحث",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "اختيار اللون",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "الإكمال التلقائي للرموز التعبيرية",
- "shortcut-autocomplete-members": "الإكمال التلقائي لأسماء الأعضاء",
- "shortcut-clear-filters": "مسح التصفيات",
- "shortcut-close-dialog": "غلق النافذة",
- "shortcut-filter-my-cards": "تصفية بطاقاتي",
- "shortcut-show-shortcuts": "عرض قائمة الإختصارات ،تلك",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "إظهار-إخفاء الشريط الجانبي للوحة",
- "show-cards-minimum-count": "إظهار عدد البطاقات إذا كانت القائمة تتضمن أكثر من",
- "sidebar-open": "فتح الشريط الجانبي",
- "sidebar-close": "إغلاق الشريط الجانبي",
- "signupPopup-title": "إنشاء حساب",
- "star-board-title": "اضغط لإضافة هذه اللوحة إلى المفضلة . سوف يتم إظهارها على رأس بقية اللوحات.",
- "starred-boards": "اللوحات المفضلة",
- "starred-boards-description": "تعرض اللوحات المفضلة على رأس بقية اللوحات.",
- "subscribe": "اشتراك و متابعة",
- "team": "فريق",
- "this-board": "هذه اللوحة",
- "this-card": "هذه البطاقة",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "وقت اضافي (ساعات)",
- "overtime": "وقت اضافي",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "الوقت",
- "title": "عنوان",
- "tracking": "تتبع",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "النوع",
- "unassign-member": "إلغاء تعيين العضو",
- "unsaved-description": "لديك وصف غير محفوظ",
- "unwatch": "غير مُشاهد",
- "upload": "Upload",
- "upload-avatar": "رفع صورة شخصية",
- "uploaded-avatar": "تم رفع الصورة الشخصية",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "اسم المستخدم",
- "view-it": "شاهدها",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "مُشاهد",
- "watching": "مشاهدة",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "لوحة التّرحيب",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "المبادئ",
- "welcome-list2": "متقدم",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "ماذا تريد أن تنجز?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "لوحة التحكم",
- "settings": "الإعدادات",
- "people": "الناس",
- "registration": "تسجيل",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "دعوة",
- "invite-people": "الناس المدعوين",
- "to-boards": "إلى اللوحات",
- "email-addresses": "عناوين البريد الإلكتروني",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "تفعيل دعم TLS من اجل خادم SMTP",
- "smtp-host": "مضيف SMTP",
- "smtp-port": "منفذ SMTP",
- "smtp-username": "اسم المستخدم",
- "smtp-password": "كلمة المرور",
- "smtp-tls": "دعم التي ال سي",
- "send-from": "من",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "رمز الدعوة",
- "email-invite-register-subject": "__inviter__ أرسل دعوة لك",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "رمز الدعوة غير موجود",
- "error-notAuthorized": "أنتَ لا تملك الصلاحيات لرؤية هذه الصفحة.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "الويبهوك الصادرة",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "الويبهوك الصادرة",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "ويبهوك جديدة ",
- "no-name": "(غير معروف)",
- "Node_version": "إصدار النود",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "معمارية نظام التشغيل",
- "OS_Cpus": "استهلاك وحدة المعالجة المركزية لنظام التشغيل",
- "OS_Freemem": "الذاكرة الحرة لنظام التشغيل",
- "OS_Loadavg": "متوسط حمل نظام التشغيل",
- "OS_Platform": "منصة نظام التشغيل",
- "OS_Release": "إصدار نظام التشغيل",
- "OS_Totalmem": "الذاكرة الكلية لنظام التشغيل",
- "OS_Type": "نوع نظام التشغيل",
- "OS_Uptime": "مدة تشغيل نظام التشغيل",
- "days": "أيام",
- "hours": "الساعات",
- "minutes": "الدقائق",
- "seconds": "الثواني",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "نعم",
- "no": "لا",
- "accounts": "الحسابات",
- "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "نشط",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "حدد اللون",
- "setCardActionsColorPopup-title": "اختر لوناً",
- "setSwimlaneColorPopup-title": "اختر لوناً",
- "setListColorPopup-title": "اختر لوناً",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "نقل الى الارشيف",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "أضف",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after
start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "قبول",
+ "act-activity-notify": "اشعار النشاط",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__لوح__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "الإجراءات",
+ "activities": "الأنشطة",
+ "activity": "النشاط",
+ "activity-added": "تمت إضافة %s ل %s",
+ "activity-archived": "%s انتقل الى الارشيف",
+ "activity-attached": "إرفاق %s ل %s",
+ "activity-created": "أنشأ %s",
+ "activity-customfield-created": "%s احدت حقل مخصص",
+ "activity-excluded": "استبعاد %s عن %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "انضم %s",
+ "activity-moved": "تم نقل %s من %s إلى %s",
+ "activity-on": "على %s",
+ "activity-removed": "حذف %s إلى %s",
+ "activity-sent": "إرسال %s إلى %s",
+ "activity-unjoined": "غادر %s",
+ "activity-subtask-added": "تم اضافة مهمة فرعية الى %s",
+ "activity-checked-item": "تحقق %s في قائمة التحقق %s من %s",
+ "activity-unchecked-item": "ازالة تحقق %s من قائمة التحقق %s من %s",
+ "activity-checklist-added": "أضاف قائمة تحقق إلى %s",
+ "activity-checklist-removed": "ازالة قائمة التحقق من %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "لم يتم انجاز قائمة التحقق %s من %s",
+ "activity-checklist-item-added": "تم اضافة عنصر قائمة التحقق الى '%s' في %s",
+ "activity-checklist-item-removed": "تم ازالة عنصر قائمة التحقق الى '%s' في %s",
+ "add": "أضف",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "تعليق محذوف %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "إضافة مرفق",
+ "add-board": "إضافة لوحة",
+ "add-card": "إضافة بطاقة",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "إضافة مهمة فرعية",
+ "add-checklist": "إضافة قائمة تدقيق",
+ "add-checklist-item": "إضافة عنصر إلى قائمة التحقق",
+ "add-cover": "إضافة غلاف",
+ "add-label": "إضافة ملصق",
+ "add-list": "إضافة قائمة",
+ "add-members": "تعيين أعضاء",
+ "added": "أُضيف",
+ "addMemberPopup-title": "الأعضاء",
+ "admin": "المدير",
+ "admin-desc": "إمكانية مشاهدة و تعديل و حذف أعضاء ، و تعديل إعدادات اللوحة أيضا.",
+ "admin-announcement": "إعلان",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "كل اللوحات",
+ "and-n-other-card": "And __count__ other بطاقة",
+ "and-n-other-card_plural": "And __count__ other بطاقات",
+ "apply": "طبق",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "نقل الى الارشيف",
+ "archive-all": "نقل الكل الى الارشيف",
+ "archive-board": "نقل اللوح الى الارشيف",
+ "archive-card": "نقل البطاقة الى الارشيف",
+ "archive-list": "نقل القائمة الى الارشيف",
+ "archive-swimlane": "نقل خط السباحة الى الارشيف",
+ "archive-selection": "نقل التحديد إلى الأرشيف",
+ "archiveBoardPopup-title": "نقل الوح إلى الأرشيف",
+ "archived-items": "أرشيف",
+ "archived-boards": "الالواح في الأرشيف",
+ "restore-board": "استعادة اللوحة",
+ "no-archived-boards": "لا توجد لوحات في الأرشيف.",
+ "archives": "أرشيف",
+ "template": "نموذج",
+ "templates": "نماذج",
+ "assign-member": "تعيين عضو",
+ "attached": "أُرفق)",
+ "attachment": "مرفق",
+ "attachment-delete-pop": "حذف المرق هو حذف نهائي . لا يمكن التراجع إذا حذف.",
+ "attachmentDeletePopup-title": "تريد حذف المرفق ?",
+ "attachments": "المرفقات",
+ "auto-watch": "مراقبة لوحات تلقائيا عندما يتم إنشاؤها",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "رجوع",
+ "board-change-color": "تغيير اللومr",
+ "board-nb-stars": "%s نجوم",
+ "board-not-found": "لوحة مفقودة",
+ "board-private-info": "سوف تصبح هذه اللوحة خاصة",
+ "board-public-info": "سوف تصبح هذه اللوحة عامّة.",
+ "boardChangeColorPopup-title": "تعديل خلفية الشاشة",
+ "boardChangeTitlePopup-title": "إعادة تسمية اللوحة",
+ "boardChangeVisibilityPopup-title": "تعديل وضوح الرؤية",
+ "boardChangeWatchPopup-title": "تغيير المتابعة",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "عرض اللوحات",
+ "boards": "لوحات",
+ "board-view": "عرض اللوحات",
+ "board-view-cal": "التقويم",
+ "board-view-swimlanes": "خطوط السباحة",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "القائمات",
+ "bucket-example": "مثل « todo list » على سبيل المثال",
+ "cancel": "إلغاء",
+ "card-archived": "البطاقة منقولة الى الارشيف",
+ "board-archived": "اللوحات منقولة الى الارشيف",
+ "card-comments-title": "%s تعليقات لهذه البطاقة",
+ "card-delete-notice": "هذا حذف أبديّ . سوف تفقد كل الإجراءات المنوطة بهذه البطاقة",
+ "card-delete-pop": "سيتم إزالة جميع الإجراءات من تبعات النشاط، وأنك لن تكون قادرا على إعادة فتح البطاقة. لا يوجد التراجع.",
+ "card-delete-suggest-archive": "يمكنك نقل بطاقة إلى الأرشيف لإزالتها من اللوحة والمحافظة على النشاط.",
+ "card-due": "مستحق",
+ "card-due-on": "مستحق في",
+ "card-spent": "امضى وقتا",
+ "card-edit-attachments": "تعديل المرفقات",
+ "card-edit-custom-fields": "تعديل الحقل المعدل",
+ "card-edit-labels": "تعديل العلامات",
+ "card-edit-members": "تعديل الأعضاء",
+ "card-labels-title": "تعديل علامات البطاقة.",
+ "card-members-title": "إضافة او حذف أعضاء للبطاقة.",
+ "card-start": "بداية",
+ "card-start-on": "يبدأ في",
+ "cardAttachmentsPopup-title": "إرفاق من",
+ "cardCustomField-datePopup-title": "تغير التاريخ",
+ "cardCustomFieldsPopup-title": "تعديل الحقل المعدل",
+ "cardStartVotingPopup-title": "ابدأ تصويت",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "مع",
+ "vote-against": "ضد",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "حذف البطاقة ?",
+ "cardDetailsActionsPopup-title": "إجراءات على البطاقة",
+ "cardLabelsPopup-title": "علامات",
+ "cardMembersPopup-title": "أعضاء",
+ "cardMorePopup-title": "المزيد",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "بطاقات",
+ "cards-count": "بطاقات",
+ "casSignIn": "تسجيل الدخول مع CAS",
+ "cardType-card": "بطاقة",
+ "cardType-linkedCard": "البطاقة المرتبطة",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "تعديل الصورة الشخصية",
+ "change-password": "تغيير كلمة المرور",
+ "change-permissions": "تعديل الصلاحيات",
+ "change-settings": "تغيير الاعدادات",
+ "changeAvatarPopup-title": "تعديل الصورة الشخصية",
+ "changeLanguagePopup-title": "تغيير اللغة",
+ "changePasswordPopup-title": "تغيير كلمة المرور",
+ "changePermissionsPopup-title": "تعديل الصلاحيات",
+ "changeSettingsPopup-title": "تغيير الاعدادات",
+ "subtasks": "المهمات الفرعية",
+ "checklists": "قوائم التّدقيق",
+ "click-to-star": "اضغط لإضافة اللوحة للمفضلة.",
+ "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "غلق",
+ "close-board": "غلق اللوحة",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "اخضر غامق",
+ "color-gold": "ذهبي",
+ "color-gray": "رمادي",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "فضي",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "أبيض",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "تعليق",
+ "comment-placeholder": "أكتب تعليق",
+ "comment-only": "التعليق فقط",
+ "comment-only-desc": "يمكن التعليق على بطاقات فقط.",
+ "no-comments": "لا يوجد تعليقات",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "حاسوب",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "نسخ رابط البطاقة إلى الحافظة",
+ "linkCardPopup-title": "ربط البطاقة",
+ "searchElementPopup-title": "بحث",
+ "copyCardPopup-title": "نسخ البطاقة",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "إنشاء",
+ "createBoardPopup-title": "إنشاء لوحة",
+ "chooseBoardSourcePopup-title": "استيراد لوحة",
+ "createLabelPopup-title": "إنشاء علامة",
+ "createCustomField": "انشاء حقل",
+ "createCustomFieldPopup-title": "انشاء حقل",
+ "current": "الحالي",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "تاريخ",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "رقم",
+ "custom-field-text": "نص",
+ "custom-fields": "Custom Fields",
+ "date": "تاريخ",
+ "decline": "Decline",
+ "default-avatar": "صورة شخصية افتراضية",
+ "delete": "حذف",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "حذف العلامة ?",
+ "description": "وصف",
+ "disambiguateMultiLabelPopup-title": "تحديد الإجراء على العلامة",
+ "disambiguateMultiMemberPopup-title": "تحديد الإجراء على العضو",
+ "discard": "التخلص منها",
+ "done": "Done",
+ "download": "تنزيل",
+ "edit": "تعديل",
+ "edit-avatar": "تعديل الصورة الشخصية",
+ "edit-profile": "تعديل الملف الشخصي",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "تغيير تاريخ البدء",
+ "editCardDueDatePopup-title": "تغيير تاريخ الاستحقاق",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "تعديل العلامة",
+ "editNotificationPopup-title": "تصحيح الإشعار",
+ "editProfilePopup-title": "تعديل الملف الشخصي",
+ "email": "البريد الإلكتروني",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "لا يمكنك دعوة نفسك",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "إسم المستخدم مأخوذ مسبقا",
+ "error-email-taken": "البريد الإلكتروني مأخوذ بالفعل",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "تصفية",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "مسح التصفية",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "لا يوجد ملصق",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "ليس هناك أي عضو",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "التصفية تشتغل",
+ "filter-on-desc": "أنت بصدد تصفية بطاقات هذه اللوحة. اضغط هنا لتعديل التصفية.",
+ "filter-to-selection": "تصفية بالتحديد",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "الإسم الكامل",
+ "header-logo-title": "الرجوع إلى صفحة اللوحات",
+ "hide-system-messages": "إخفاء رسائل النظام",
+ "headerBarCreateBoardPopup-title": "إنشاء لوحة",
+ "home": "الرئيسية",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "رابط",
+ "import-board": "استيراد لوحة",
+ "import-board-c": "استيراد لوحة",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "من تريلو",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "رسم خريطة الأعضاء",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "الإصدار",
+ "initials": "أولية",
+ "invalid-date": "تاريخ غير صالح",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "انضمّ",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "اختصار لوحة المفاتيح",
+ "label-create": "إنشاء علامة",
+ "label-default": "%s علامة (افتراضية)",
+ "label-delete-pop": "لا يوجد تراجع. سيؤدي هذا إلى إزالة هذه العلامة من جميع بطاقات والقضاء على تأريخها",
+ "labels": "علامات",
+ "language": "لغة",
+ "last-admin-desc": "لا يمكن تعديل الأدوار لأن ذلك يتطلب صلاحيات المدير.",
+ "leave-board": "مغادرة اللوحة",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "مغادرة اللوحة ؟",
+ "link-card": "ربط هذه البطاقة",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "نقل بطاقات هذه القائمة",
+ "list-select-cards": "تحديد بطاقات هذه القائمة",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "قائمة الإجراءات",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "المزيد",
+ "link-list": "رابط إلى هذه القائمة",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "القائمات",
+ "swimlanes": "خطوط السباحة",
+ "log-out": "تسجيل الخروج",
+ "log-in": "تسجيل الدخول",
+ "loginPopup-title": "تسجيل الدخول",
+ "memberMenuPopup-title": "أفضليات الأعضاء",
+ "members": "أعضاء",
+ "menu": "القائمة",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "نقل البطاقة",
+ "moveCardToBottom-title": "التحرك إلى القاع",
+ "moveCardToTop-title": "التحرك إلى الأعلى",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "تحديد أكثر من واحدة",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "مكتوم",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "لوحاتي",
+ "name": "اسم",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "لا توجد نتائج",
+ "normal": "عادي",
+ "normal-desc": "يمكن مشاهدة و تعديل البطاقات. لا يمكن تغيير إعدادات الضبط.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "اختياري",
+ "or": "or",
+ "page-maybe-private": "قدتكون هذه الصفحة خاصة . قد تستطيع مشاهدتها ب تسجيل الدخول.",
+ "page-not-found": "صفحة غير موجودة",
+ "password": "كلمة المرور",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "المشاركة",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "خاص",
+ "private-desc": "هذه اللوحة خاصة . لا يسمح إلا للأعضاء .",
+ "profile": "ملف شخصي",
+ "public": "عامّ",
+ "public-desc": "هذه اللوحة عامة: مرئية لكلّ من يحصل على الرابط ، و هي مرئية أيضا في محركات البحث مثل جوجل. التعديل مسموح به للأعضاء فقط.",
+ "quick-access-description": "أضف لوحة إلى المفضلة لإنشاء اختصار في هذا الشريط.",
+ "remove-cover": "حذف الغلاف",
+ "remove-from-board": "حذف من اللوحة",
+ "remove-label": "إزالة التصنيف",
+ "listDeletePopup-title": "حذف القائمة ؟",
+ "remove-member": "حذف العضو",
+ "remove-member-from-card": "حذف من البطاقة",
+ "remove-member-pop": "حذف __name__ (__username__) من __boardTitle__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
+ "removeMemberPopup-title": "حذف العضو ?",
+ "rename": "إعادة التسمية",
+ "rename-board": "إعادة تسمية اللوحة",
+ "restore": "استعادة",
+ "save": "حفظ",
+ "search": "بحث",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "اختيار اللون",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "الإكمال التلقائي للرموز التعبيرية",
+ "shortcut-autocomplete-members": "الإكمال التلقائي لأسماء الأعضاء",
+ "shortcut-clear-filters": "مسح التصفيات",
+ "shortcut-close-dialog": "غلق النافذة",
+ "shortcut-filter-my-cards": "تصفية بطاقاتي",
+ "shortcut-show-shortcuts": "عرض قائمة الإختصارات ،تلك",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "إظهار-إخفاء الشريط الجانبي للوحة",
+ "show-cards-minimum-count": "إظهار عدد البطاقات إذا كانت القائمة تتضمن أكثر من",
+ "sidebar-open": "فتح الشريط الجانبي",
+ "sidebar-close": "إغلاق الشريط الجانبي",
+ "signupPopup-title": "إنشاء حساب",
+ "star-board-title": "اضغط لإضافة هذه اللوحة إلى المفضلة . سوف يتم إظهارها على رأس بقية اللوحات.",
+ "starred-boards": "اللوحات المفضلة",
+ "starred-boards-description": "تعرض اللوحات المفضلة على رأس بقية اللوحات.",
+ "subscribe": "اشتراك و متابعة",
+ "team": "فريق",
+ "this-board": "هذه اللوحة",
+ "this-card": "هذه البطاقة",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "وقت اضافي (ساعات)",
+ "overtime": "وقت اضافي",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "الوقت",
+ "title": "عنوان",
+ "tracking": "تتبع",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "النوع",
+ "unassign-member": "إلغاء تعيين العضو",
+ "unsaved-description": "لديك وصف غير محفوظ",
+ "unwatch": "غير مُشاهد",
+ "upload": "Upload",
+ "upload-avatar": "رفع صورة شخصية",
+ "uploaded-avatar": "تم رفع الصورة الشخصية",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "اسم المستخدم",
+ "view-it": "شاهدها",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "مُشاهد",
+ "watching": "مشاهدة",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "لوحة التّرحيب",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "المبادئ",
+ "welcome-list2": "متقدم",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "ماذا تريد أن تنجز?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "لوحة التحكم",
+ "settings": "الإعدادات",
+ "people": "الناس",
+ "registration": "تسجيل",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "دعوة",
+ "invite-people": "الناس المدعوين",
+ "to-boards": "إلى اللوحات",
+ "email-addresses": "عناوين البريد الإلكتروني",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "تفعيل دعم TLS من اجل خادم SMTP",
+ "smtp-host": "مضيف SMTP",
+ "smtp-port": "منفذ SMTP",
+ "smtp-username": "اسم المستخدم",
+ "smtp-password": "كلمة المرور",
+ "smtp-tls": "دعم التي ال سي",
+ "send-from": "من",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "رمز الدعوة",
+ "email-invite-register-subject": "__inviter__ أرسل دعوة لك",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "رمز الدعوة غير موجود",
+ "error-notAuthorized": "أنتَ لا تملك الصلاحيات لرؤية هذه الصفحة.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "الويبهوك الصادرة",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "الويبهوك الصادرة",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "ويبهوك جديدة ",
+ "no-name": "(غير معروف)",
+ "Node_version": "إصدار النود",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "معمارية نظام التشغيل",
+ "OS_Cpus": "استهلاك وحدة المعالجة المركزية لنظام التشغيل",
+ "OS_Freemem": "الذاكرة الحرة لنظام التشغيل",
+ "OS_Loadavg": "متوسط حمل نظام التشغيل",
+ "OS_Platform": "منصة نظام التشغيل",
+ "OS_Release": "إصدار نظام التشغيل",
+ "OS_Totalmem": "الذاكرة الكلية لنظام التشغيل",
+ "OS_Type": "نوع نظام التشغيل",
+ "OS_Uptime": "مدة تشغيل نظام التشغيل",
+ "days": "أيام",
+ "hours": "الساعات",
+ "minutes": "الدقائق",
+ "seconds": "الثواني",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "نعم",
+ "no": "لا",
+ "accounts": "الحسابات",
+ "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "نشط",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "حدد اللون",
+ "setCardActionsColorPopup-title": "اختر لوناً",
+ "setSwimlaneColorPopup-title": "اختر لوناً",
+ "setListColorPopup-title": "اختر لوناً",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "نقل الى الارشيف",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "أضف",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json
index be3f94eb1..6f8e04632 100644
--- a/i18n/bg.i18n.json
+++ b/i18n/bg.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Приемам",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__ ",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Действия",
- "activities": "Действия",
- "activity": "Дейности",
- "activity-added": "добави %s към %s",
- "activity-archived": "%s е преместена в Архива",
- "activity-attached": "прикачи %s към %s",
- "activity-created": "създаде %s",
- "activity-customfield-created": "създаде собствено поле %s",
- "activity-excluded": "изключи %s от %s",
- "activity-imported": "импортира %s в/във %s от %s",
- "activity-imported-board": "импортира %s от %s",
- "activity-joined": "се присъедини към %s",
- "activity-moved": "премести %s от %s в/във %s",
- "activity-on": "на %s",
- "activity-removed": "премахна %s от %s",
- "activity-sent": "изпрати %s до %s",
- "activity-unjoined": "вече не е част от %s",
- "activity-subtask-added": "добави задача към %s",
- "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
- "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
- "activity-checklist-added": "добави списък със задачи към %s",
- "activity-checklist-removed": "премахна списък със задачи от %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
- "activity-checklist-item-added": "добави точка към '%s' в/във %s",
- "activity-checklist-item-removed": "премахна точка от '%s' в %s",
- "add": "Добави",
- "activity-checked-item-card": "отбеляза %s в чеклист %s",
- "activity-unchecked-item-card": "размаркира %s в чеклист %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Добави прикачен файл",
- "add-board": "Добави Табло",
- "add-card": "Добави карта",
- "add-swimlane": "Добави коридор",
- "add-subtask": "Добави подзадача",
- "add-checklist": "Добави списък със задачи",
- "add-checklist-item": "Добави точка към списъка със задачи",
- "add-cover": "Добави корица",
- "add-label": "Добави етикет",
- "add-list": "Добави списък",
- "add-members": "Добави членове",
- "added": "Добавено",
- "addMemberPopup-title": "Членове",
- "admin": "Администратор",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Съобщение",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Съобщение от администратора",
- "all-boards": "Всички табла",
- "and-n-other-card": "И __count__ друга карта",
- "and-n-other-card_plural": "И __count__ други карти",
- "apply": "Приложи",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Премести в Архива",
- "archive-all": "Премести всички в Архива",
- "archive-board": "Премести Таблото в Архива",
- "archive-card": "Премести Картата в Архива",
- "archive-list": "Премести Списъка в Архива",
- "archive-swimlane": "Премести Коридора в Архива",
- "archive-selection": "Премести избраното в Архива",
- "archiveBoardPopup-title": "Да преместя ли Таблото в Архива?",
- "archived-items": "Архив",
- "archived-boards": "Табла в Архива",
- "restore-board": "Възстанови Таблото",
- "no-archived-boards": "Няма Табла в Архива.",
- "archives": "Архив",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Възложи на член от екипа",
- "attached": "прикачен",
- "attachment": "Прикаченн файл",
- "attachment-delete-pop": "Изтриването на прикачен файл е завинаги. Няма как да бъде възстановен.",
- "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения файл?",
- "attachments": "Прикачени файлове",
- "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Назад",
- "board-change-color": "Промени цвета",
- "board-nb-stars": "%s звезди",
- "board-not-found": "Таблото не е намерено",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Промени името на Таблото",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Промени наблюдаването",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Табла",
- "board-view": "Board View",
- "board-view-cal": "Календар",
- "board-view-swimlanes": "Коридори",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Списъци",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "Тази карта е преместена в Архива.",
- "board-archived": "Това табло е преместено в Архива.",
- "card-comments-title": "Тази карта има %s коментар.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "Можете да преместите картата в Архива, за да я премахнете от Таблото и така да запазите активността в него.",
- "card-due": "Готова за",
- "card-due-on": "Готова за",
- "card-spent": "Изработено време",
- "card-edit-attachments": "Промени прикачените файлове",
- "card-edit-custom-fields": "Промени собствените полета",
- "card-edit-labels": "Промени етикетите",
- "card-edit-members": "Промени членовете",
- "card-labels-title": "Промени етикетите за картата.",
- "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
- "card-start": "Начало",
- "card-start-on": "Започва на",
- "cardAttachmentsPopup-title": "Прикачи от",
- "cardCustomField-datePopup-title": "Промени датата",
- "cardCustomFieldsPopup-title": "Промени собствените полета",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Желаете да изтриете картата?",
- "cardDetailsActionsPopup-title": "Опции",
- "cardLabelsPopup-title": "Етикети",
- "cardMembersPopup-title": "Членове",
- "cardMorePopup-title": "Още",
- "cardTemplatePopup-title": "Create template",
- "cards": "Карти",
- "cards-count": "Карти",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Карта",
- "cardType-linkedCard": "Свързана карта",
- "cardType-linkedBoard": "Свързано табло",
- "change": "Промени",
- "change-avatar": "Промени аватара",
- "change-password": "Промени паролата",
- "change-permissions": "Промени правата",
- "change-settings": "Промени настройките",
- "changeAvatarPopup-title": "Промени аватара",
- "changeLanguagePopup-title": "Промени езика",
- "changePasswordPopup-title": "Промени паролата",
- "changePermissionsPopup-title": "Промени правата",
- "changeSettingsPopup-title": "Промяна на настройките",
- "subtasks": "Подзадачи",
- "checklists": "Списъци със задачи",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
- "clipboard": "Клипборда или с драг & дроп",
- "close": "Затвори",
- "close-board": "Затвори Таблото",
- "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архив\" в началото на хедъра.",
- "color-black": "черно",
- "color-blue": "синьо",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "зелено",
- "color-indigo": "indigo",
- "color-lime": "лайм",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "оранжево",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "розово",
- "color-plum": "plum",
- "color-purple": "пурпурно",
- "color-red": "червено",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "светло синьо",
- "color-slateblue": "slateblue",
- "color-white": "бяло",
- "color-yellow": "жълто",
- "unset-color": "Unset",
- "comment": "Коментирай",
- "comment-placeholder": "Напиши коментар",
- "comment-only": "Само коментар",
- "comment-only-desc": "Може да коментира само в карти.",
- "no-comments": "Няма коментари",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Компютър",
- "confirm-subtask-delete-dialog": "Сигурен ли сте, че искате да изтриете подзадачата?",
- "confirm-checklist-delete-dialog": "Сигурни ли сте, че искате да изтриете този чеклист?",
- "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
- "linkCardPopup-title": "Свържи картата",
- "searchElementPopup-title": "Търсене",
- "copyCardPopup-title": "Копирай картата",
- "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Създай",
- "createBoardPopup-title": "Създай Табло",
- "chooseBoardSourcePopup-title": "Импортирай Табло",
- "createLabelPopup-title": "Създай Табло",
- "createCustomField": "Създай Поле",
- "createCustomFieldPopup-title": "Създай Поле",
- "current": "сегашен",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Чекбокс",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Дата",
- "custom-field-dropdown": "Падащо меню",
- "custom-field-dropdown-none": "(няма)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Номер",
- "custom-field-text": "Текст",
- "custom-fields": "Собствени полета",
- "date": "Дата",
- "decline": "Отказ",
- "default-avatar": "Основен аватар",
- "delete": "Изтрий",
- "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
- "deleteLabelPopup-title": "Желаете да изтриете етикета?",
- "description": "Описание",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Отказ",
- "done": "Готово",
- "download": "Сваляне",
- "edit": "Промени",
- "edit-avatar": "Промени аватара",
- "edit-profile": "Промяна на профила",
- "edit-wip-limit": "Промени WIP лимита",
- "soft-wip-limit": "\"Мек\" WIP лимит",
- "editCardStartDatePopup-title": "Промени началната дата",
- "editCardDueDatePopup-title": "Промени датата за готовност",
- "editCustomFieldPopup-title": "Промени Полето",
- "editCardSpentTimePopup-title": "Промени изработеното време",
- "editLabelPopup-title": "Промяна на Етикета",
- "editNotificationPopup-title": "Промени известията",
- "editProfilePopup-title": "Промяна на профила",
- "email": "Имейл",
- "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Неуспешно изпращане на имейла",
- "email-fail-text": "Възникна грешка при изпращането на имейла",
- "email-invalid": "Невалиден имейл",
- "email-invite": "Покани чрез имейл",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Имейлът е изпратен",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Включи WIP лимита",
- "error-board-doesNotExist": "Това табло не съществува",
- "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
- "error-board-notAMember": "За да направите това трябва да сте член на това табло",
- "error-json-malformed": "Текстът Ви не е валиден JSON",
- "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Този списък не съществува",
- "error-user-doesNotExist": "Този потребител не съществува",
- "error-user-notAllowSelf": "Не можете да поканите себе си",
- "error-user-notCreated": "Този потребител не е създаден",
- "error-username-taken": "Това потребителско име е вече заето",
- "error-email-taken": "Имейлът е вече зает",
- "export-board": "Експортиране на Табло",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Експортиране на Табло",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Филтър",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Премахване на филтрите",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "без етикет",
- "filter-member-label": "Filter by member",
- "filter-no-member": "без член",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Няма Собствени полета",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Има приложени филтри",
- "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
- "filter-to-selection": "Филтрирай избраните",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Име",
- "header-logo-title": "Назад към страницата с Вашите табла.",
- "hide-system-messages": "Скриване на системните съобщения",
- "headerBarCreateBoardPopup-title": "Създай Табло",
- "home": "Начало",
- "import": "Импорт",
- "impersonate-user": "Impersonate user",
- "link": "Връзка",
- "import-board": "Импортирай Табло",
- "import-board-c": "Импортирай Табло",
- "import-board-title-trello": "Импорт на табло от Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "От Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Версия",
- "initials": "Инициали",
- "invalid-date": "Невалидна дата",
- "invalid-time": "Невалиден час",
- "invalid-user": "Невалиден потребител",
- "joined": "присъедини ",
- "just-invited": "Бяхте поканени в това табло",
- "keyboard-shortcuts": "Преки пътища с клавиатурата",
- "label-create": "Създай етикет",
- "label-default": "%s етикет (по подразбиране)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Етикети",
- "language": "Език",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Връзка към тази карта",
- "list-archive-cards": "Премести всички карти от този списък в Архива",
- "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите в Архива и да ги върнете натиснете на \"Меню\" > \"Архив\".",
- "list-move-cards": "Премести всички карти в този списък",
- "list-select-cards": "Избери всички карти в този списък",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Импорт на карта от Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Още",
- "link-list": "Връзка към този списък",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "Можете да преместите списъка в Архива, за да го премахнете от Таблото и така да запазите активността в него.",
- "lists": "Списъци",
- "swimlanes": "Коридори",
- "log-out": "Изход",
- "log-in": "Вход",
- "loginPopup-title": "Вход",
- "memberMenuPopup-title": "Настройки на профила",
- "members": "Членове",
- "menu": "Меню",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Премести картата",
- "moveCardToBottom-title": "Премести в края",
- "moveCardToTop-title": "Премести в началото",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Множествен избор",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Множественият избор е приложен",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Моите табла",
- "name": "Име",
- "no-archived-cards": "Няма карти в Архива.",
- "no-archived-lists": "Няма списъци в Архива.",
- "no-archived-swimlanes": "Няма коридори в Архива.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
- "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
- "optional": "optional",
- "or": "или",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Парола",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Профил",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Желаете да изтриете списъка?",
- "remove-member": "Премахни член",
- "remove-member-from-card": "Премахни от картата",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Промени името на Таблото",
- "restore": "Възстанови",
- "save": "Запази",
- "search": "Търсене",
- "rules": "Правила",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Избери цвят",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Въведи WIP лимит",
- "shortcut-assign-self": "Добави себе си към тази карта",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Изчистване на всички филтри",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Филтрирай моите карти",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Любими табла",
- "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "това табло",
- "this-card": "картата",
- "spent-time-hours": "Изработено време (часа)",
- "overtime-hours": "Оувъртайм (часа)",
- "overtime": "Оувъртайм",
- "has-overtime-cards": "Има карти с оувъртайм",
- "has-spenttime-cards": "Има карти с изработено време",
- "time": "Време",
- "title": "Title",
- "tracking": "Следене",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Спри наблюдаването",
- "upload": "Upload",
- "upload-avatar": "Качване на аватар",
- "uploaded-avatar": "Качихте аватар",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Потребителско име",
- "view-it": "View it",
- "warn-list-archived": "внимание: тази карта е в списък в Архива",
- "watch": "Наблюдавай",
- "watching": "Наблюдава",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Невалиден WIP лимит",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
- "admin-panel": "Администраторски панел",
- "settings": "Настройки",
- "people": "Хора",
- "registration": "Регистрация",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Покани",
- "invite-people": "Покани хора",
- "to-boards": "в табло/а",
- "email-addresses": "Имейл адреси",
- "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
- "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
- "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
- "smtp-host": "SMTP хост",
- "smtp-port": "SMTP порт",
- "smtp-username": "Потребителско име",
- "smtp-password": "Парола",
- "smtp-tls": "TLS поддръжка",
- "send-from": "От",
- "send-smtp-test": "Изпрати тестов имейл на себе си",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Успешно изпратихте имейл",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Версия на Node",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "Архитектура на ОС",
- "OS_Cpus": "Брой CPU ядра",
- "OS_Freemem": "Свободна памет",
- "OS_Loadavg": "ОС средно натоварване",
- "OS_Platform": "ОС платформа",
- "OS_Release": "ОС Версия",
- "OS_Totalmem": "ОС Общо памет",
- "OS_Type": "Тип ОС",
- "OS_Uptime": "OS Ъптайм",
- "days": "дни",
- "hours": "часа",
- "minutes": "минути",
- "seconds": "секунди",
- "show-field-on-card": "Покажи това поле в картата",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Да",
- "no": "Не",
- "accounts": "Профили",
- "accounts-allowEmailChange": "Разреши промяна на имейла",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Създаден на",
- "verified": "Потвърден",
- "active": "Активен",
- "card-received": "Получена",
- "card-received-on": "Получена на",
- "card-end": "Завършена",
- "card-end-on": "Завършена на",
- "editCardReceivedDatePopup-title": "Промени датата на получаване",
- "editCardEndDatePopup-title": "Промени датата на завършване",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Разпределена от",
- "requested-by": "Поискан от",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Изтриване на Таблото?",
- "delete-board": "Изтрий таблото",
- "default-subtasks-board": "Подзадачи за табло __board__",
- "default": "по подразбиране",
- "queue": "Опашка",
- "subtask-settings": "Настройки на Подзадачите",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Промени източника на картата",
- "parent-card": "Карта-източник",
- "source-board": "Source board",
- "no-parent": "Не показвай източника",
- "activity-added-label": "добави етикет '%s' към %s",
- "activity-removed-label": "премахна етикет '%s' от %s",
- "activity-delete-attach": "изтри прикачен файл от %s",
- "activity-added-label-card": "добави етикет '%s'",
- "activity-removed-label-card": "премахна етикет '%s'",
- "activity-delete-attach-card": "изтри прикачения файл",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Правило",
- "r-add-trigger": "Добави спусък",
- "r-add-action": "Добави действие",
- "r-board-rules": "Правила за таблото",
- "r-add-rule": "Добави правилото",
- "r-view-rule": "Виж правилото",
- "r-delete-rule": "Изтрий правилото",
- "r-new-rule-name": "Заглавие за новото правило",
- "r-no-rules": "Няма правила",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Когато карта",
- "r-is": "е",
- "r-is-moved": "преместена",
- "r-added-to": "Added to",
- "r-removed-from": "премахната от",
- "r-the-board": "таблото",
- "r-list": "списък",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Преместено в Архива",
- "r-unarchived": "Възстановено от Архива",
- "r-a-card": "карта",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "име",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Премести картата в",
- "r-top-of": "началото на",
- "r-bottom-of": "края на",
- "r-its-list": "списъка й",
- "r-archive": "Премести в Архива",
- "r-unarchive": "Възстанови от Архива",
- "r-card": "карта",
- "r-add": "Добави",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Детайли за правилото",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Премести картата в Архива",
- "r-d-unarchive": "Възстанови картата от Архива",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Добави чеклист",
- "r-d-remove-checklist": "Премахни чеклист",
- "r-by": "by",
- "r-add-checklist": "Добави чеклист",
- "r-with-items": "с точки",
- "r-items-list": "точка1,точка2,точка3",
- "r-add-swimlane": "Добави коридор",
- "r-swimlane-name": "име на коридора",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Приемам",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__ ",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Действия",
+ "activities": "Действия",
+ "activity": "Дейности",
+ "activity-added": "добави %s към %s",
+ "activity-archived": "%s е преместена в Архива",
+ "activity-attached": "прикачи %s към %s",
+ "activity-created": "създаде %s",
+ "activity-customfield-created": "създаде собствено поле %s",
+ "activity-excluded": "изключи %s от %s",
+ "activity-imported": "импортира %s в/във %s от %s",
+ "activity-imported-board": "импортира %s от %s",
+ "activity-joined": "се присъедини към %s",
+ "activity-moved": "премести %s от %s в/във %s",
+ "activity-on": "на %s",
+ "activity-removed": "премахна %s от %s",
+ "activity-sent": "изпрати %s до %s",
+ "activity-unjoined": "вече не е част от %s",
+ "activity-subtask-added": "добави задача към %s",
+ "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
+ "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
+ "activity-checklist-added": "добави списък със задачи към %s",
+ "activity-checklist-removed": "премахна списък със задачи от %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
+ "activity-checklist-item-added": "добави точка към '%s' в/във %s",
+ "activity-checklist-item-removed": "премахна точка от '%s' в %s",
+ "add": "Добави",
+ "activity-checked-item-card": "отбеляза %s в чеклист %s",
+ "activity-unchecked-item-card": "размаркира %s в чеклист %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Добави прикачен файл",
+ "add-board": "Добави Табло",
+ "add-card": "Добави карта",
+ "add-swimlane": "Добави коридор",
+ "add-subtask": "Добави подзадача",
+ "add-checklist": "Добави списък със задачи",
+ "add-checklist-item": "Добави точка към списъка със задачи",
+ "add-cover": "Добави корица",
+ "add-label": "Добави етикет",
+ "add-list": "Добави списък",
+ "add-members": "Добави членове",
+ "added": "Добавено",
+ "addMemberPopup-title": "Членове",
+ "admin": "Администратор",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Съобщение",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Съобщение от администратора",
+ "all-boards": "Всички табла",
+ "and-n-other-card": "И __count__ друга карта",
+ "and-n-other-card_plural": "И __count__ други карти",
+ "apply": "Приложи",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Премести в Архива",
+ "archive-all": "Премести всички в Архива",
+ "archive-board": "Премести Таблото в Архива",
+ "archive-card": "Премести Картата в Архива",
+ "archive-list": "Премести Списъка в Архива",
+ "archive-swimlane": "Премести Коридора в Архива",
+ "archive-selection": "Премести избраното в Архива",
+ "archiveBoardPopup-title": "Да преместя ли Таблото в Архива?",
+ "archived-items": "Архив",
+ "archived-boards": "Табла в Архива",
+ "restore-board": "Възстанови Таблото",
+ "no-archived-boards": "Няма Табла в Архива.",
+ "archives": "Архив",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Възложи на член от екипа",
+ "attached": "прикачен",
+ "attachment": "Прикаченн файл",
+ "attachment-delete-pop": "Изтриването на прикачен файл е завинаги. Няма как да бъде възстановен.",
+ "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения файл?",
+ "attachments": "Прикачени файлове",
+ "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Назад",
+ "board-change-color": "Промени цвета",
+ "board-nb-stars": "%s звезди",
+ "board-not-found": "Таблото не е намерено",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Промени името на Таблото",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Промени наблюдаването",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Табла",
+ "board-view": "Board View",
+ "board-view-cal": "Календар",
+ "board-view-swimlanes": "Коридори",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Списъци",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "Тази карта е преместена в Архива.",
+ "board-archived": "Това табло е преместено в Архива.",
+ "card-comments-title": "Тази карта има %s коментар.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "Можете да преместите картата в Архива, за да я премахнете от Таблото и така да запазите активността в него.",
+ "card-due": "Готова за",
+ "card-due-on": "Готова за",
+ "card-spent": "Изработено време",
+ "card-edit-attachments": "Промени прикачените файлове",
+ "card-edit-custom-fields": "Промени собствените полета",
+ "card-edit-labels": "Промени етикетите",
+ "card-edit-members": "Промени членовете",
+ "card-labels-title": "Промени етикетите за картата.",
+ "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
+ "card-start": "Начало",
+ "card-start-on": "Започва на",
+ "cardAttachmentsPopup-title": "Прикачи от",
+ "cardCustomField-datePopup-title": "Промени датата",
+ "cardCustomFieldsPopup-title": "Промени собствените полета",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Желаете да изтриете картата?",
+ "cardDetailsActionsPopup-title": "Опции",
+ "cardLabelsPopup-title": "Етикети",
+ "cardMembersPopup-title": "Членове",
+ "cardMorePopup-title": "Още",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Карти",
+ "cards-count": "Карти",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Карта",
+ "cardType-linkedCard": "Свързана карта",
+ "cardType-linkedBoard": "Свързано табло",
+ "change": "Промени",
+ "change-avatar": "Промени аватара",
+ "change-password": "Промени паролата",
+ "change-permissions": "Промени правата",
+ "change-settings": "Промени настройките",
+ "changeAvatarPopup-title": "Промени аватара",
+ "changeLanguagePopup-title": "Промени езика",
+ "changePasswordPopup-title": "Промени паролата",
+ "changePermissionsPopup-title": "Промени правата",
+ "changeSettingsPopup-title": "Промяна на настройките",
+ "subtasks": "Подзадачи",
+ "checklists": "Списъци със задачи",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
+ "clipboard": "Клипборда или с драг & дроп",
+ "close": "Затвори",
+ "close-board": "Затвори Таблото",
+ "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архив\" в началото на хедъра.",
+ "color-black": "черно",
+ "color-blue": "синьо",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "зелено",
+ "color-indigo": "indigo",
+ "color-lime": "лайм",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "оранжево",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "розово",
+ "color-plum": "plum",
+ "color-purple": "пурпурно",
+ "color-red": "червено",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "светло синьо",
+ "color-slateblue": "slateblue",
+ "color-white": "бяло",
+ "color-yellow": "жълто",
+ "unset-color": "Unset",
+ "comment": "Коментирай",
+ "comment-placeholder": "Напиши коментар",
+ "comment-only": "Само коментар",
+ "comment-only-desc": "Може да коментира само в карти.",
+ "no-comments": "Няма коментари",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Компютър",
+ "confirm-subtask-delete-dialog": "Сигурен ли сте, че искате да изтриете подзадачата?",
+ "confirm-checklist-delete-dialog": "Сигурни ли сте, че искате да изтриете този чеклист?",
+ "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
+ "linkCardPopup-title": "Свържи картата",
+ "searchElementPopup-title": "Търсене",
+ "copyCardPopup-title": "Копирай картата",
+ "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Създай",
+ "createBoardPopup-title": "Създай Табло",
+ "chooseBoardSourcePopup-title": "Импортирай Табло",
+ "createLabelPopup-title": "Създай Табло",
+ "createCustomField": "Създай Поле",
+ "createCustomFieldPopup-title": "Създай Поле",
+ "current": "сегашен",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Чекбокс",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Дата",
+ "custom-field-dropdown": "Падащо меню",
+ "custom-field-dropdown-none": "(няма)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Номер",
+ "custom-field-text": "Текст",
+ "custom-fields": "Собствени полета",
+ "date": "Дата",
+ "decline": "Отказ",
+ "default-avatar": "Основен аватар",
+ "delete": "Изтрий",
+ "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
+ "deleteLabelPopup-title": "Желаете да изтриете етикета?",
+ "description": "Описание",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Отказ",
+ "done": "Готово",
+ "download": "Сваляне",
+ "edit": "Промени",
+ "edit-avatar": "Промени аватара",
+ "edit-profile": "Промяна на профила",
+ "edit-wip-limit": "Промени WIP лимита",
+ "soft-wip-limit": "\"Мек\" WIP лимит",
+ "editCardStartDatePopup-title": "Промени началната дата",
+ "editCardDueDatePopup-title": "Промени датата за готовност",
+ "editCustomFieldPopup-title": "Промени Полето",
+ "editCardSpentTimePopup-title": "Промени изработеното време",
+ "editLabelPopup-title": "Промяна на Етикета",
+ "editNotificationPopup-title": "Промени известията",
+ "editProfilePopup-title": "Промяна на профила",
+ "email": "Имейл",
+ "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Неуспешно изпращане на имейла",
+ "email-fail-text": "Възникна грешка при изпращането на имейла",
+ "email-invalid": "Невалиден имейл",
+ "email-invite": "Покани чрез имейл",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Имейлът е изпратен",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Включи WIP лимита",
+ "error-board-doesNotExist": "Това табло не съществува",
+ "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
+ "error-board-notAMember": "За да направите това трябва да сте член на това табло",
+ "error-json-malformed": "Текстът Ви не е валиден JSON",
+ "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Този списък не съществува",
+ "error-user-doesNotExist": "Този потребител не съществува",
+ "error-user-notAllowSelf": "Не можете да поканите себе си",
+ "error-user-notCreated": "Този потребител не е създаден",
+ "error-username-taken": "Това потребителско име е вече заето",
+ "error-email-taken": "Имейлът е вече зает",
+ "export-board": "Експортиране на Табло",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Експортиране на Табло",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Филтър",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Премахване на филтрите",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "без етикет",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "без член",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Няма Собствени полета",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Има приложени филтри",
+ "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
+ "filter-to-selection": "Филтрирай избраните",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Име",
+ "header-logo-title": "Назад към страницата с Вашите табла.",
+ "hide-system-messages": "Скриване на системните съобщения",
+ "headerBarCreateBoardPopup-title": "Създай Табло",
+ "home": "Начало",
+ "import": "Импорт",
+ "impersonate-user": "Impersonate user",
+ "link": "Връзка",
+ "import-board": "Импортирай Табло",
+ "import-board-c": "Импортирай Табло",
+ "import-board-title-trello": "Импорт на табло от Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "От Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Версия",
+ "initials": "Инициали",
+ "invalid-date": "Невалидна дата",
+ "invalid-time": "Невалиден час",
+ "invalid-user": "Невалиден потребител",
+ "joined": "присъедини ",
+ "just-invited": "Бяхте поканени в това табло",
+ "keyboard-shortcuts": "Преки пътища с клавиатурата",
+ "label-create": "Създай етикет",
+ "label-default": "%s етикет (по подразбиране)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Етикети",
+ "language": "Език",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Връзка към тази карта",
+ "list-archive-cards": "Премести всички карти от този списък в Архива",
+ "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите в Архива и да ги върнете натиснете на \"Меню\" > \"Архив\".",
+ "list-move-cards": "Премести всички карти в този списък",
+ "list-select-cards": "Избери всички карти в този списък",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Импорт на карта от Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Още",
+ "link-list": "Връзка към този списък",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "Можете да преместите списъка в Архива, за да го премахнете от Таблото и така да запазите активността в него.",
+ "lists": "Списъци",
+ "swimlanes": "Коридори",
+ "log-out": "Изход",
+ "log-in": "Вход",
+ "loginPopup-title": "Вход",
+ "memberMenuPopup-title": "Настройки на профила",
+ "members": "Членове",
+ "menu": "Меню",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Премести картата",
+ "moveCardToBottom-title": "Премести в края",
+ "moveCardToTop-title": "Премести в началото",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Множествен избор",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Множественият избор е приложен",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Моите табла",
+ "name": "Име",
+ "no-archived-cards": "Няма карти в Архива.",
+ "no-archived-lists": "Няма списъци в Архива.",
+ "no-archived-swimlanes": "Няма коридори в Архива.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
+ "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
+ "optional": "optional",
+ "or": "или",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Парола",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Профил",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Желаете да изтриете списъка?",
+ "remove-member": "Премахни член",
+ "remove-member-from-card": "Премахни от картата",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Промени името на Таблото",
+ "restore": "Възстанови",
+ "save": "Запази",
+ "search": "Търсене",
+ "rules": "Правила",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Избери цвят",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Въведи WIP лимит",
+ "shortcut-assign-self": "Добави себе си към тази карта",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Изчистване на всички филтри",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Филтрирай моите карти",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Любими табла",
+ "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "това табло",
+ "this-card": "картата",
+ "spent-time-hours": "Изработено време (часа)",
+ "overtime-hours": "Оувъртайм (часа)",
+ "overtime": "Оувъртайм",
+ "has-overtime-cards": "Има карти с оувъртайм",
+ "has-spenttime-cards": "Има карти с изработено време",
+ "time": "Време",
+ "title": "Title",
+ "tracking": "Следене",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Спри наблюдаването",
+ "upload": "Upload",
+ "upload-avatar": "Качване на аватар",
+ "uploaded-avatar": "Качихте аватар",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Потребителско име",
+ "view-it": "View it",
+ "warn-list-archived": "внимание: тази карта е в списък в Архива",
+ "watch": "Наблюдавай",
+ "watching": "Наблюдава",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Невалиден WIP лимит",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
+ "admin-panel": "Администраторски панел",
+ "settings": "Настройки",
+ "people": "Хора",
+ "registration": "Регистрация",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Покани",
+ "invite-people": "Покани хора",
+ "to-boards": "в табло/а",
+ "email-addresses": "Имейл адреси",
+ "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
+ "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
+ "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
+ "smtp-host": "SMTP хост",
+ "smtp-port": "SMTP порт",
+ "smtp-username": "Потребителско име",
+ "smtp-password": "Парола",
+ "smtp-tls": "TLS поддръжка",
+ "send-from": "От",
+ "send-smtp-test": "Изпрати тестов имейл на себе си",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Успешно изпратихте имейл",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Версия на Node",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "Архитектура на ОС",
+ "OS_Cpus": "Брой CPU ядра",
+ "OS_Freemem": "Свободна памет",
+ "OS_Loadavg": "ОС средно натоварване",
+ "OS_Platform": "ОС платформа",
+ "OS_Release": "ОС Версия",
+ "OS_Totalmem": "ОС Общо памет",
+ "OS_Type": "Тип ОС",
+ "OS_Uptime": "OS Ъптайм",
+ "days": "дни",
+ "hours": "часа",
+ "minutes": "минути",
+ "seconds": "секунди",
+ "show-field-on-card": "Покажи това поле в картата",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Да",
+ "no": "Не",
+ "accounts": "Профили",
+ "accounts-allowEmailChange": "Разреши промяна на имейла",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Създаден на",
+ "verified": "Потвърден",
+ "active": "Активен",
+ "card-received": "Получена",
+ "card-received-on": "Получена на",
+ "card-end": "Завършена",
+ "card-end-on": "Завършена на",
+ "editCardReceivedDatePopup-title": "Промени датата на получаване",
+ "editCardEndDatePopup-title": "Промени датата на завършване",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Разпределена от",
+ "requested-by": "Поискан от",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Изтриване на Таблото?",
+ "delete-board": "Изтрий таблото",
+ "default-subtasks-board": "Подзадачи за табло __board__",
+ "default": "по подразбиране",
+ "queue": "Опашка",
+ "subtask-settings": "Настройки на Подзадачите",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Промени източника на картата",
+ "parent-card": "Карта-източник",
+ "source-board": "Source board",
+ "no-parent": "Не показвай източника",
+ "activity-added-label": "добави етикет '%s' към %s",
+ "activity-removed-label": "премахна етикет '%s' от %s",
+ "activity-delete-attach": "изтри прикачен файл от %s",
+ "activity-added-label-card": "добави етикет '%s'",
+ "activity-removed-label-card": "премахна етикет '%s'",
+ "activity-delete-attach-card": "изтри прикачения файл",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Добави спусък",
+ "r-add-action": "Добави действие",
+ "r-board-rules": "Правила за таблото",
+ "r-add-rule": "Добави правилото",
+ "r-view-rule": "Виж правилото",
+ "r-delete-rule": "Изтрий правилото",
+ "r-new-rule-name": "Заглавие за новото правило",
+ "r-no-rules": "Няма правила",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Когато карта",
+ "r-is": "е",
+ "r-is-moved": "преместена",
+ "r-added-to": "Added to",
+ "r-removed-from": "премахната от",
+ "r-the-board": "таблото",
+ "r-list": "списък",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Преместено в Архива",
+ "r-unarchived": "Възстановено от Архива",
+ "r-a-card": "карта",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "име",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Премести картата в",
+ "r-top-of": "началото на",
+ "r-bottom-of": "края на",
+ "r-its-list": "списъка й",
+ "r-archive": "Премести в Архива",
+ "r-unarchive": "Възстанови от Архива",
+ "r-card": "карта",
+ "r-add": "Добави",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Детайли за правилото",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Премести картата в Архива",
+ "r-d-unarchive": "Възстанови картата от Архива",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Добави чеклист",
+ "r-d-remove-checklist": "Премахни чеклист",
+ "r-by": "by",
+ "r-add-checklist": "Добави чеклист",
+ "r-with-items": "с точки",
+ "r-items-list": "точка1,точка2,точка3",
+ "r-add-swimlane": "Добави коридор",
+ "r-swimlane-name": "име на коридора",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json
index c86f86624..f15ec2f98 100644
--- a/i18n/br.i18n.json
+++ b/i18n/br.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Asantiñ",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Oberoù",
- "activities": "Oberiantizoù",
- "activity": "Oberiantiz",
- "activity-added": "%s ouzhpennet da %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s liammet ouzh %s",
- "activity-created": "%s krouet",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "%s enporzhiet eus %s da %s",
- "activity-imported-board": "%s enporzhiet da %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Ouzhpenn",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Ouzphenn ur golo",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Ouzhpenn izili",
- "added": "Ouzhpennet",
- "addMemberPopup-title": "Izili",
- "admin": "Merour",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Kemmañ al liv",
- "board-nb-stars": "%s stered",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Diverkañ ar gartenn ?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Izili",
- "cardMorePopup-title": "Muioc’h",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kartennoù",
- "cards-count": "Kartennoù",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Kemmañ ger-tremen",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Kemmañ ger-tremen",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "du",
- "color-blue": "glas",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "gwer",
- "color-indigo": "indigo",
- "color-lime": "melen sitroñs",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orañjez",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "roz",
- "color-plum": "plum",
- "color-purple": "mouk",
- "color-red": "ruz",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "pers",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "melen",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Krouiñ",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Diverkañ",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Graet",
- "download": "Download",
- "edit": "Kemmañ",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Yezh",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Muioc’h",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Izili",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Ger-tremen",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Ger-tremen",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Ouzhpenn",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Asantiñ",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Oberoù",
+ "activities": "Oberiantizoù",
+ "activity": "Oberiantiz",
+ "activity-added": "%s ouzhpennet da %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s liammet ouzh %s",
+ "activity-created": "%s krouet",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "%s enporzhiet eus %s da %s",
+ "activity-imported-board": "%s enporzhiet da %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Ouzhpenn",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Ouzphenn ur golo",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Ouzhpenn izili",
+ "added": "Ouzhpennet",
+ "addMemberPopup-title": "Izili",
+ "admin": "Merour",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Kemmañ al liv",
+ "board-nb-stars": "%s stered",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Diverkañ ar gartenn ?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Izili",
+ "cardMorePopup-title": "Muioc’h",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kartennoù",
+ "cards-count": "Kartennoù",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Kemmañ ger-tremen",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Kemmañ ger-tremen",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "du",
+ "color-blue": "glas",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "gwer",
+ "color-indigo": "indigo",
+ "color-lime": "melen sitroñs",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orañjez",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "roz",
+ "color-plum": "plum",
+ "color-purple": "mouk",
+ "color-red": "ruz",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "pers",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "melen",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Krouiñ",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Diverkañ",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Graet",
+ "download": "Download",
+ "edit": "Kemmañ",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Yezh",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Muioc’h",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Izili",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Ger-tremen",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Ger-tremen",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Ouzhpenn",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json
index ab245360f..d4bbe7391 100644
--- a/i18n/ca.i18n.json
+++ b/i18n/ca.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Accepta",
- "act-activity-notify": "Notificació d'activitat",
- "act-addAttachment": "afegit l'adjunt __attachment__ a la targeta __card__ en la llista __list__ al canal __swimlane__ al tauler __tauler__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__tauler__",
- "act-withCardTitle": "[__tauler__] __fitxa__",
- "actions": "Accions",
- "activities": "Activitats",
- "activity": "Activitat",
- "activity-added": "ha afegit %s a %s",
- "activity-archived": "%s mogut al Arxiu",
- "activity-attached": "ha adjuntat %s a %s",
- "activity-created": "ha creat %s",
- "activity-customfield-created": "camp personalitzat creat %s",
- "activity-excluded": "ha exclòs %s de %s",
- "activity-imported": "importat %s dins %s des de %s",
- "activity-imported-board": "importat %s des de %s",
- "activity-joined": "s'ha unit a %s",
- "activity-moved": "ha mogut %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "ha eliminat %s de %s",
- "activity-sent": "ha enviat %s %s",
- "activity-unjoined": "desassignat %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "Checklist afegida a %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "afegida entrada de checklist de '%s' a %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Afegeix",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Afegeix adjunt",
- "add-board": "Afegeix Tauler",
- "add-card": "Afegeix Fitxa",
- "add-swimlane": "Afegeix carril de natació",
- "add-subtask": "Afegir Subtasca",
- "add-checklist": "Afegeix checklist",
- "add-checklist-item": "Afegeix un ítem al checklist",
- "add-cover": "Afegeix coberta",
- "add-label": "Afegeix etiqueta",
- "add-list": "Afegeix llista",
- "add-members": "Afegeix membres",
- "added": "Afegit",
- "addMemberPopup-title": "Membres",
- "admin": "Administrador",
- "admin-desc": "Pots veure i editar fitxes, eliminar usuaris, i canviar la configuració del tauler.",
- "admin-announcement": "Alertes",
- "admin-announcement-active": "Activar alertes del Sistema",
- "admin-announcement-title": "Alertes d'administració",
- "all-boards": "Tots els taulers",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Aplica",
- "app-is-offline": "Carregant. Per favor, espereu. Actualitzar la pàgina pot comportar pèrdua de dades. Si la càrrega no funciona, comproveu que el servidor no s'ha aturat. ",
- "archive": "Moure al arxiu",
- "archive-all": "Moure tot al arxiu",
- "archive-board": "Moure Tauler al Arxiu",
- "archive-card": "Moure Fitxa al Arxiu",
- "archive-list": "Moure Llista al Arxiu",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Moure selecció al Arxiu",
- "archiveBoardPopup-title": "Moure el Tauler al Arxiu?",
- "archived-items": "Desa",
- "archived-boards": "Taulers al Arxiu",
- "restore-board": "Restaura Tauler",
- "no-archived-boards": "No hi han Taulers al Arxiu.",
- "archives": "Desa",
- "template": "Plantilla",
- "templates": "Plantilles",
- "assign-member": "Assignar membre",
- "attached": "adjuntat",
- "attachment": "Adjunt",
- "attachment-delete-pop": "L'esborrat d'un arxiu adjunt és permanent. No es pot desfer.",
- "attachmentDeletePopup-title": "Esborrar adjunt?",
- "attachments": "Adjunts",
- "auto-watch": "Segueix automàticament el taulers quan són creats",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Enrere",
- "board-change-color": "Canvia el color",
- "board-nb-stars": "%s estrelles",
- "board-not-found": "No s'ha trobat el tauler",
- "board-private-info": "Aquest tauler serà privat.",
- "board-public-info": "Aquest tauler serà públic.",
- "boardChangeColorPopup-title": "Canvia fons del tauler",
- "boardChangeTitlePopup-title": "Canvia el nom tauler",
- "boardChangeVisibilityPopup-title": "Canvia visibilitat",
- "boardChangeWatchPopup-title": "Canvia seguiment",
- "boardMenuPopup-title": "Configuració del tauler",
- "boardChangeViewPopup-title": "Visió del tauler",
- "boards": "Taulers",
- "board-view": "Visió del tauler",
- "board-view-cal": "Calendari",
- "board-view-swimlanes": "Carrils de Natació",
- "board-view-collapse": "Contraure",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Llistes",
- "bucket-example": "Igual que “Bucket List”, per exemple",
- "cancel": "Cancel·la",
- "card-archived": "Aquesta fitxa ha estat moguda al Arxiu.",
- "board-archived": "Aquest tauler s'ha mogut al arxiu",
- "card-comments-title": "Aquesta fitxa té %s comentaris.",
- "card-delete-notice": "L'esborrat és permanent. Perdreu totes les accions associades a aquesta fitxa.",
- "card-delete-pop": "Totes les accions s'eliminaran de l'activitat i no podreu tornar a obrir la fitxa. No es pot desfer.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Finalitza",
- "card-due-on": "Finalitza a",
- "card-spent": "Temps Dedicat",
- "card-edit-attachments": "Edita arxius adjunts",
- "card-edit-custom-fields": "Editar camps personalitzats",
- "card-edit-labels": "Edita etiquetes",
- "card-edit-members": "Edita membres",
- "card-labels-title": "Canvia les etiquetes de la fitxa",
- "card-members-title": "Afegeix o eliminar membres del tauler des de la fitxa.",
- "card-start": "Comença",
- "card-start-on": "Comença a",
- "cardAttachmentsPopup-title": "Adjunta des de",
- "cardCustomField-datePopup-title": "Canviar data",
- "cardCustomFieldsPopup-title": "Editar camps personalitzats",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Esborrar fitxa?",
- "cardDetailsActionsPopup-title": "Accions de fitxes",
- "cardLabelsPopup-title": "Etiquetes",
- "cardMembersPopup-title": "Membres",
- "cardMorePopup-title": "Més",
- "cardTemplatePopup-title": "Create template",
- "cards": "Fitxes",
- "cards-count": "Fitxes",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Fitxa",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Canvia",
- "change-avatar": "Canvia Avatar",
- "change-password": "Canvia la clau",
- "change-permissions": "Canvia permisos",
- "change-settings": "Canvia configuració",
- "changeAvatarPopup-title": "Canvia Avatar",
- "changeLanguagePopup-title": "Canvia idioma",
- "changePasswordPopup-title": "Canvia la contrasenya",
- "changePermissionsPopup-title": "Canvia permisos",
- "changeSettingsPopup-title": "Canvia configuració",
- "subtasks": "Subtasca",
- "checklists": "Checklists",
- "click-to-star": "Fes clic per destacar aquest tauler.",
- "click-to-unstar": "Fes clic per deixar de destacar aquest tauler.",
- "clipboard": "Portaretalls o estirar i amollar",
- "close": "Tanca",
- "close-board": "Tanca tauler",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "negre",
- "color-blue": "blau",
- "color-crimson": "carmesí",
- "color-darkgreen": "verd fosc",
- "color-gold": "daurat",
- "color-gray": "gris",
- "color-green": "verd",
- "color-indigo": "índigo",
- "color-lime": "llima",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "marina",
- "color-orange": "taronja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "pruna",
- "color-purple": "púrpura",
- "color-red": "vermell",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "plata",
- "color-sky": "cel",
- "color-slateblue": "slateblue",
- "color-white": "blanc",
- "color-yellow": "groc",
- "unset-color": "Unset",
- "comment": "Comentari",
- "comment-placeholder": "Escriu un comentari",
- "comment-only": "Només comentaris",
- "comment-only-desc": "Només pots fer comentaris a les fitxes",
- "no-comments": "Sense comentaris",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Ordinador",
- "confirm-subtask-delete-dialog": "Esteu segur que voleu eliminar la subtasca?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copia l'enllaç de la ftixa al porta-retalls",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Cerca",
- "copyCardPopup-title": "Copia la fitxa",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Títols de fitxa i Descripcions de destí en aquest format JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primera fitxa\", \"description\":\"Descripció de la primera fitxa\"}, {\"title\":\"Títol de la segona fitxa\",\"description\":\"Descripció de la segona fitxa\"},{\"title\":\"Títol de l'última fitxa\",\"description\":\"Descripció de l'última fitxa\"} ]",
- "create": "Crea",
- "createBoardPopup-title": "Crea tauler",
- "chooseBoardSourcePopup-title": "Importa Tauler",
- "createLabelPopup-title": "Crea etiqueta",
- "createCustomField": "Crear camp",
- "createCustomFieldPopup-title": "Crear camp",
- "current": "Actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "Llista d'opcions",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Camps Personalitzats",
- "date": "Data",
- "decline": "Declina",
- "default-avatar": "Avatar per defecte",
- "delete": "Esborra",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Esborra etiqueta",
- "description": "Descripció",
- "disambiguateMultiLabelPopup-title": "Desfe l'ambigüitat en les etiquetes",
- "disambiguateMultiMemberPopup-title": "Desfe l'ambigüitat en els membres",
- "discard": "Descarta",
- "done": "Fet",
- "download": "Descarrega",
- "edit": "Edita",
- "edit-avatar": "Canvia Avatar",
- "edit-profile": "Edita el teu Perfil",
- "edit-wip-limit": "Edita el Límit de Treball en Progrès",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Canvia data d'inici",
- "editCardDueDatePopup-title": "Canvia data de finalització",
- "editCustomFieldPopup-title": "Modificar camp",
- "editCardSpentTimePopup-title": "Canvia temps dedicat",
- "editLabelPopup-title": "Canvia etiqueta",
- "editNotificationPopup-title": "Edita la notificació",
- "editProfilePopup-title": "Edita teu Perfil",
- "email": "Correu electrònic",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPer començar a utilitzar el servei, segueix l'enllaç següent.\n\n__url__\n\nGràcies.",
- "email-fail": "Error enviant el correu",
- "email-fail-text": "Error en intentar enviar e-mail",
- "email-invalid": "Adreça de correu invàlida",
- "email-invite": "Convida mitjançant correu electrònic",
- "email-invite-subject": "__inviter__ t'ha convidat",
- "email-invite-text": "Benvolgut __user__,\n\n __inviter__ t'ha convidat a participar al tauler \"__board__\" per col·laborar-hi.\n\nSegueix l'enllaç següent:\n\n __url__\n\n Gràcies.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hola __user__,\n \n per resetejar la teva contrasenya, segueix l'enllaç següent.\n \n __url__\n \n Gràcies.",
- "email-sent": "Correu enviat",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hola __user__, \n\n per verificar el teu correu, segueix l'enllaç següent.\n\n __url__\n\n Gràcies.",
- "enable-wip-limit": "Activa e Límit de Treball en Progrès",
- "error-board-doesNotExist": "Aquest tauler no existeix",
- "error-board-notAdmin": "Necessites ser administrador d'aquest tauler per dur a lloc aquest acció",
- "error-board-notAMember": "Necessites ser membre d'aquest tauler per dur a terme aquesta acció",
- "error-json-malformed": "El text no és JSON vàlid",
- "error-json-schema": "La dades JSON no contenen la informació en el format correcte",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "La llista no existeix",
- "error-user-doesNotExist": "L'usuari no existeix",
- "error-user-notAllowSelf": "No et pots convidar a tu mateix",
- "error-user-notCreated": "L'usuari no s'ha creat",
- "error-username-taken": "Aquest usuari ja existeix",
- "error-email-taken": "L'adreça de correu electrònic ja és en ús",
- "export-board": "Exporta tauler",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Exporta tauler",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtre",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Elimina filtre",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Sense etiqueta",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Sense membres",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filtra per",
- "filter-on-desc": "Estau filtrant fitxes en aquest tauler. Feu clic aquí per editar el filtre.",
- "filter-to-selection": "Filtra selecció",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Filtre avançat",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nom complet",
- "header-logo-title": "Torna a la teva pàgina de taulers",
- "hide-system-messages": "Oculta missatges del sistema",
- "headerBarCreateBoardPopup-title": "Crea tauler",
- "home": "Inici",
- "import": "importa",
- "impersonate-user": "Impersonate user",
- "link": "Enllaç",
- "import-board": "Importa tauler",
- "import-board-c": "Importa tauler",
- "import-board-title-trello": "Importa tauler des de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Des de Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "En el teu tauler Trello, ves a 'Menú', 'Més'.' Imprimir i Exportar', 'Exportar JSON', i copia el text resultant.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Aferra codi JSON vàlid aquí",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapeja el membres",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Revisa l'assignació de membres",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Selecciona un usuari",
- "info": "Versió",
- "initials": "Inicials",
- "invalid-date": "Data invàlida",
- "invalid-time": "Temps Invàlid",
- "invalid-user": "Usuari invàlid",
- "joined": "s'ha unit",
- "just-invited": "Has estat convidat a aquest tauler",
- "keyboard-shortcuts": "Dreceres de teclat",
- "label-create": "Crea etiqueta",
- "label-default": "%s etiqueta (per defecte)",
- "label-delete-pop": "No es pot desfer. Això eliminarà aquesta etiqueta de totes les fitxes i destruirà la seva història.",
- "labels": "Etiquetes",
- "language": "Idioma",
- "last-admin-desc": "No podeu canviar rols perquè ha d'haver-hi almenys un administrador.",
- "leave-board": "Abandona tauler",
- "leave-board-pop": "De debò voleu abandonar __boardTitle__? Se us eliminarà de totes les fitxes d'aquest tauler.",
- "leaveBoardPopup-title": "Abandonar Tauler?",
- "link-card": "Enllaç a aquesta fitxa",
- "list-archive-cards": "Moure totes les fitxes en aquesta llista al Arxiu",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mou totes les fitxes d'aquesta llista",
- "list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Accions de la llista",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Accions de Carril de Natació",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "importa una fitxa de Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Més",
- "link-list": "Enllaça a aquesta llista",
- "list-delete-pop": "Totes les accions seran esborrades de la llista d'activitats i no serà possible recuperar la llista",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Llistes",
- "swimlanes": "Carrils de Natació",
- "log-out": "Finalitza la sessió",
- "log-in": "Ingresa",
- "loginPopup-title": "Inicia sessió",
- "memberMenuPopup-title": "Configura membres",
- "members": "Membres",
- "menu": "Menú",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Moure fitxa",
- "moveCardToBottom-title": "Mou a la part inferior",
- "moveCardToTop-title": "Mou a la part superior",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selecció",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selecció està activada",
- "muted": "En silenci",
- "muted-info": "No seràs notificat dels canvis en aquest tauler",
- "my-boards": "Els meus taulers",
- "name": "Nom",
- "no-archived-cards": "No hi ha fitxes a l'arxiu.",
- "no-archived-lists": "No hi ha llistes al arxiu.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Sense resultats",
- "normal": "Normal",
- "normal-desc": "Podeu veure i editar fitxes. No podeu canviar la configuració.",
- "not-accepted-yet": "La invitació no ha esta acceptada encara",
- "notify-participate": "Rebre actualitzacions per a cada fitxa de la qual n'ets creador o membre",
- "notify-watch": "Rebre actualitzacions per qualsevol tauler, llista o fitxa en observació",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Aquesta pàgina és privada. Per veure-la entra .",
- "page-not-found": "Pàgina no trobada.",
- "password": "Contrasenya",
- "paste-or-dragdrop": "aferra, o estira i amolla la imatge (només imatge)",
- "participating": "Participant",
- "preview": "Vista prèvia",
- "previewAttachedImagePopup-title": "Vista prèvia",
- "previewClipboardImagePopup-title": "Vista prèvia",
- "private": "Privat",
- "private-desc": "Aquest tauler és privat. Només les persones afegides al tauler poden veure´l i editar-lo.",
- "profile": "Perfil",
- "public": "Públic",
- "public-desc": "Aquest tauler és públic. És visible per a qualsevol persona amb l'enllaç i es mostrarà en els motors de cerca com Google. Només persones afegides al tauler poden editar-lo.",
- "quick-access-description": "Inicia un tauler per afegir un accés directe en aquest barra",
- "remove-cover": "Elimina coberta",
- "remove-from-board": "Elimina del tauler",
- "remove-label": "Elimina l'etiqueta",
- "listDeletePopup-title": "Esborrar la llista?",
- "remove-member": "Elimina membre",
- "remove-member-from-card": "Elimina de la fitxa",
- "remove-member-pop": "Eliminar __name__ (__username__) de __boardTitle__ ? El membre serà eliminat de totes les fitxes d'aquest tauler. Ells rebran una notificació.",
- "removeMemberPopup-title": "Vols suprimir el membre?",
- "rename": "Canvia el nom",
- "rename-board": "Canvia el nom del tauler",
- "restore": "Restaura",
- "save": "Desa",
- "search": "Cerca",
- "rules": "Regles",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Selecciona color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Limita el màxim nombre de tasques en aquesta llista",
- "setWipLimitPopup-title": "Configura el Límit de Treball en Progrès",
- "shortcut-assign-self": "Assigna't la ftixa actual",
- "shortcut-autocomplete-emoji": "Autocompleta emoji",
- "shortcut-autocomplete-members": "Autocompleta membres",
- "shortcut-clear-filters": "Elimina tots els filters",
- "shortcut-close-dialog": "Tanca el diàleg",
- "shortcut-filter-my-cards": "Filtra les meves fitxes",
- "shortcut-show-shortcuts": "Mostra aquesta lista d'accessos directes",
- "shortcut-toggle-filterbar": "Canvia la barra lateral del tauler",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Canvia Sidebar del Tauler",
- "show-cards-minimum-count": "Mostra contador de fitxes si la llista en conté més de",
- "sidebar-open": "Mostra barra lateral",
- "sidebar-close": "Amaga barra lateral",
- "signupPopup-title": "Crea un compte",
- "star-board-title": "Fes clic per destacar aquest tauler. Es mostrarà a la part superior de la llista de taulers.",
- "starred-boards": "Taulers destacats",
- "starred-boards-description": "Els taulers destacats es mostraran a la part superior de la llista de taulers.",
- "subscribe": "Subscriure",
- "team": "Equip",
- "this-board": "aquest tauler",
- "this-card": "aquesta fitxa",
- "spent-time-hours": "Temps dedicat (hores)",
- "overtime-hours": "Temps de més (hores)",
- "overtime": "Temps de més",
- "has-overtime-cards": "Té fitxes amb temps de més",
- "has-spenttime-cards": "Té fitxes amb temps dedicat",
- "time": "Hora",
- "title": "Títol",
- "tracking": "En seguiment",
- "tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre",
- "type": "Tipus",
- "unassign-member": "Desassignar membre",
- "unsaved-description": "Tens una descripció sense desar.",
- "unwatch": "Suprimeix observació",
- "upload": "Puja",
- "upload-avatar": "Actualitza avatar",
- "uploaded-avatar": "Avatar actualitzat",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nom d'Usuari",
- "view-it": "Vist",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Observa",
- "watching": "En observació",
- "watching-info": "Seràs notificat de cada canvi en aquest tauler",
- "welcome-board": "Tauler de benvinguda",
- "welcome-swimlane": "Objectiu 1",
- "welcome-list1": "Bàsics",
- "welcome-list2": "Avançades",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Què vols fer?",
- "wipLimitErrorPopup-title": "Límit de Treball en Progrès invàlid",
- "wipLimitErrorPopup-dialog-pt1": "El nombre de tasques en esta llista és superior al límit de Treball en Progrès que heu definit.",
- "wipLimitErrorPopup-dialog-pt2": "Si us plau mogui algunes taques fora d'aquesta llista, o configuri un límit de Treball en Progrès superior.",
- "admin-panel": "Tauler d'administració",
- "settings": "Configuració",
- "people": "Persones",
- "registration": "Registre",
- "disable-self-registration": "Deshabilita Auto-Registre",
- "invite": "Convida",
- "invite-people": "Convida a persones",
- "to-boards": "Al tauler(s)",
- "email-addresses": "Adreça de correu",
- "smtp-host-description": "L'adreça del vostre servidor SMTP.",
- "smtp-port-description": "El port del vostre servidor SMTP.",
- "smtp-tls-description": "Activa suport TLS pel servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nom d'usuari",
- "smtp-password": "Contrasenya",
- "smtp-tls": "Suport TLS",
- "send-from": "De",
- "send-smtp-test": "Envia't un correu electrònic de prova",
- "invitation-code": "Codi d'invitació",
- "email-invite-register-subject": "__inviter__ t'ha convidat",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Has enviat un missatge satisfactòriament",
- "error-invitation-code-not-exist": "El codi d'invitació no existeix",
- "error-notAuthorized": "No estau autoritzats per veure aquesta pàgina",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Webhooks sortints",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Webhooks sortints",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "Nou Webook sortint",
- "no-name": "Importa tauler des de Wekan",
- "Node_version": "Versió Node",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "Arquitectura SO",
- "OS_Cpus": "Plataforma SO",
- "OS_Freemem": "Memòria lliure",
- "OS_Loadavg": "Carrega de SO",
- "OS_Platform": "Plataforma de SO",
- "OS_Release": "Versió SO",
- "OS_Totalmem": "Memòria total",
- "OS_Type": "Tipus de SO",
- "OS_Uptime": "Temps d'activitat",
- "days": "days",
- "hours": "hores",
- "minutes": "minuts",
- "seconds": "segons",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Si",
- "no": "No",
- "accounts": "Comptes",
- "accounts-allowEmailChange": "Permet modificar correu electrònic",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Creat ",
- "verified": "Verificat",
- "active": "Actiu",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assignat Per",
- "requested-by": "Demanat Per",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Configuració de targeta",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Configuració de targeta",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Regles del tauler",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No hi han regles",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "una targeta",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Moure al arxiu",
- "r-unarchive": "Restore from Archive",
- "r-card": "targeta",
- "r-add": "Afegeix",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Crea una targeta nova",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "Quan una targeta es mou a una altra llista",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignat",
- "cardAssigneesPopup-title": "Assignat",
- "addmore-detail": "Afegiu una descripció més detallada",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Accepta",
+ "act-activity-notify": "Notificació d'activitat",
+ "act-addAttachment": "afegit l'adjunt __attachment__ a la targeta __card__ en la llista __list__ al canal __swimlane__ al tauler __tauler__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__tauler__",
+ "act-withCardTitle": "[__tauler__] __fitxa__",
+ "actions": "Accions",
+ "activities": "Activitats",
+ "activity": "Activitat",
+ "activity-added": "ha afegit %s a %s",
+ "activity-archived": "%s mogut al Arxiu",
+ "activity-attached": "ha adjuntat %s a %s",
+ "activity-created": "ha creat %s",
+ "activity-customfield-created": "camp personalitzat creat %s",
+ "activity-excluded": "ha exclòs %s de %s",
+ "activity-imported": "importat %s dins %s des de %s",
+ "activity-imported-board": "importat %s des de %s",
+ "activity-joined": "s'ha unit a %s",
+ "activity-moved": "ha mogut %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "ha eliminat %s de %s",
+ "activity-sent": "ha enviat %s %s",
+ "activity-unjoined": "desassignat %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "Checklist afegida a %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "afegida entrada de checklist de '%s' a %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Afegeix",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Afegeix adjunt",
+ "add-board": "Afegeix Tauler",
+ "add-card": "Afegeix Fitxa",
+ "add-swimlane": "Afegeix carril de natació",
+ "add-subtask": "Afegir Subtasca",
+ "add-checklist": "Afegeix checklist",
+ "add-checklist-item": "Afegeix un ítem al checklist",
+ "add-cover": "Afegeix coberta",
+ "add-label": "Afegeix etiqueta",
+ "add-list": "Afegeix llista",
+ "add-members": "Afegeix membres",
+ "added": "Afegit",
+ "addMemberPopup-title": "Membres",
+ "admin": "Administrador",
+ "admin-desc": "Pots veure i editar fitxes, eliminar usuaris, i canviar la configuració del tauler.",
+ "admin-announcement": "Alertes",
+ "admin-announcement-active": "Activar alertes del Sistema",
+ "admin-announcement-title": "Alertes d'administració",
+ "all-boards": "Tots els taulers",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Aplica",
+ "app-is-offline": "Carregant. Per favor, espereu. Actualitzar la pàgina pot comportar pèrdua de dades. Si la càrrega no funciona, comproveu que el servidor no s'ha aturat. ",
+ "archive": "Moure al arxiu",
+ "archive-all": "Moure tot al arxiu",
+ "archive-board": "Moure Tauler al Arxiu",
+ "archive-card": "Moure Fitxa al Arxiu",
+ "archive-list": "Moure Llista al Arxiu",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Moure selecció al Arxiu",
+ "archiveBoardPopup-title": "Moure el Tauler al Arxiu?",
+ "archived-items": "Desa",
+ "archived-boards": "Taulers al Arxiu",
+ "restore-board": "Restaura Tauler",
+ "no-archived-boards": "No hi han Taulers al Arxiu.",
+ "archives": "Desa",
+ "template": "Plantilla",
+ "templates": "Plantilles",
+ "assign-member": "Assignar membre",
+ "attached": "adjuntat",
+ "attachment": "Adjunt",
+ "attachment-delete-pop": "L'esborrat d'un arxiu adjunt és permanent. No es pot desfer.",
+ "attachmentDeletePopup-title": "Esborrar adjunt?",
+ "attachments": "Adjunts",
+ "auto-watch": "Segueix automàticament el taulers quan són creats",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Enrere",
+ "board-change-color": "Canvia el color",
+ "board-nb-stars": "%s estrelles",
+ "board-not-found": "No s'ha trobat el tauler",
+ "board-private-info": "Aquest tauler serà privat.",
+ "board-public-info": "Aquest tauler serà públic.",
+ "boardChangeColorPopup-title": "Canvia fons del tauler",
+ "boardChangeTitlePopup-title": "Canvia el nom tauler",
+ "boardChangeVisibilityPopup-title": "Canvia visibilitat",
+ "boardChangeWatchPopup-title": "Canvia seguiment",
+ "boardMenuPopup-title": "Configuració del tauler",
+ "boardChangeViewPopup-title": "Visió del tauler",
+ "boards": "Taulers",
+ "board-view": "Visió del tauler",
+ "board-view-cal": "Calendari",
+ "board-view-swimlanes": "Carrils de Natació",
+ "board-view-collapse": "Contraure",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Llistes",
+ "bucket-example": "Igual que “Bucket List”, per exemple",
+ "cancel": "Cancel·la",
+ "card-archived": "Aquesta fitxa ha estat moguda al Arxiu.",
+ "board-archived": "Aquest tauler s'ha mogut al arxiu",
+ "card-comments-title": "Aquesta fitxa té %s comentaris.",
+ "card-delete-notice": "L'esborrat és permanent. Perdreu totes les accions associades a aquesta fitxa.",
+ "card-delete-pop": "Totes les accions s'eliminaran de l'activitat i no podreu tornar a obrir la fitxa. No es pot desfer.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Finalitza",
+ "card-due-on": "Finalitza a",
+ "card-spent": "Temps Dedicat",
+ "card-edit-attachments": "Edita arxius adjunts",
+ "card-edit-custom-fields": "Editar camps personalitzats",
+ "card-edit-labels": "Edita etiquetes",
+ "card-edit-members": "Edita membres",
+ "card-labels-title": "Canvia les etiquetes de la fitxa",
+ "card-members-title": "Afegeix o eliminar membres del tauler des de la fitxa.",
+ "card-start": "Comença",
+ "card-start-on": "Comença a",
+ "cardAttachmentsPopup-title": "Adjunta des de",
+ "cardCustomField-datePopup-title": "Canviar data",
+ "cardCustomFieldsPopup-title": "Editar camps personalitzats",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Esborrar fitxa?",
+ "cardDetailsActionsPopup-title": "Accions de fitxes",
+ "cardLabelsPopup-title": "Etiquetes",
+ "cardMembersPopup-title": "Membres",
+ "cardMorePopup-title": "Més",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Fitxes",
+ "cards-count": "Fitxes",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Fitxa",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Canvia",
+ "change-avatar": "Canvia Avatar",
+ "change-password": "Canvia la clau",
+ "change-permissions": "Canvia permisos",
+ "change-settings": "Canvia configuració",
+ "changeAvatarPopup-title": "Canvia Avatar",
+ "changeLanguagePopup-title": "Canvia idioma",
+ "changePasswordPopup-title": "Canvia la contrasenya",
+ "changePermissionsPopup-title": "Canvia permisos",
+ "changeSettingsPopup-title": "Canvia configuració",
+ "subtasks": "Subtasca",
+ "checklists": "Checklists",
+ "click-to-star": "Fes clic per destacar aquest tauler.",
+ "click-to-unstar": "Fes clic per deixar de destacar aquest tauler.",
+ "clipboard": "Portaretalls o estirar i amollar",
+ "close": "Tanca",
+ "close-board": "Tanca tauler",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "negre",
+ "color-blue": "blau",
+ "color-crimson": "carmesí",
+ "color-darkgreen": "verd fosc",
+ "color-gold": "daurat",
+ "color-gray": "gris",
+ "color-green": "verd",
+ "color-indigo": "índigo",
+ "color-lime": "llima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "marina",
+ "color-orange": "taronja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "pruna",
+ "color-purple": "púrpura",
+ "color-red": "vermell",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "plata",
+ "color-sky": "cel",
+ "color-slateblue": "slateblue",
+ "color-white": "blanc",
+ "color-yellow": "groc",
+ "unset-color": "Unset",
+ "comment": "Comentari",
+ "comment-placeholder": "Escriu un comentari",
+ "comment-only": "Només comentaris",
+ "comment-only-desc": "Només pots fer comentaris a les fitxes",
+ "no-comments": "Sense comentaris",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Ordinador",
+ "confirm-subtask-delete-dialog": "Esteu segur que voleu eliminar la subtasca?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copia l'enllaç de la ftixa al porta-retalls",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Cerca",
+ "copyCardPopup-title": "Copia la fitxa",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Títols de fitxa i Descripcions de destí en aquest format JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primera fitxa\", \"description\":\"Descripció de la primera fitxa\"}, {\"title\":\"Títol de la segona fitxa\",\"description\":\"Descripció de la segona fitxa\"},{\"title\":\"Títol de l'última fitxa\",\"description\":\"Descripció de l'última fitxa\"} ]",
+ "create": "Crea",
+ "createBoardPopup-title": "Crea tauler",
+ "chooseBoardSourcePopup-title": "Importa Tauler",
+ "createLabelPopup-title": "Crea etiqueta",
+ "createCustomField": "Crear camp",
+ "createCustomFieldPopup-title": "Crear camp",
+ "current": "Actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "Llista d'opcions",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Camps Personalitzats",
+ "date": "Data",
+ "decline": "Declina",
+ "default-avatar": "Avatar per defecte",
+ "delete": "Esborra",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Esborra etiqueta",
+ "description": "Descripció",
+ "disambiguateMultiLabelPopup-title": "Desfe l'ambigüitat en les etiquetes",
+ "disambiguateMultiMemberPopup-title": "Desfe l'ambigüitat en els membres",
+ "discard": "Descarta",
+ "done": "Fet",
+ "download": "Descarrega",
+ "edit": "Edita",
+ "edit-avatar": "Canvia Avatar",
+ "edit-profile": "Edita el teu Perfil",
+ "edit-wip-limit": "Edita el Límit de Treball en Progrès",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Canvia data d'inici",
+ "editCardDueDatePopup-title": "Canvia data de finalització",
+ "editCustomFieldPopup-title": "Modificar camp",
+ "editCardSpentTimePopup-title": "Canvia temps dedicat",
+ "editLabelPopup-title": "Canvia etiqueta",
+ "editNotificationPopup-title": "Edita la notificació",
+ "editProfilePopup-title": "Edita teu Perfil",
+ "email": "Correu electrònic",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPer començar a utilitzar el servei, segueix l'enllaç següent.\n\n__url__\n\nGràcies.",
+ "email-fail": "Error enviant el correu",
+ "email-fail-text": "Error en intentar enviar e-mail",
+ "email-invalid": "Adreça de correu invàlida",
+ "email-invite": "Convida mitjançant correu electrònic",
+ "email-invite-subject": "__inviter__ t'ha convidat",
+ "email-invite-text": "Benvolgut __user__,\n\n __inviter__ t'ha convidat a participar al tauler \"__board__\" per col·laborar-hi.\n\nSegueix l'enllaç següent:\n\n __url__\n\n Gràcies.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n \n per resetejar la teva contrasenya, segueix l'enllaç següent.\n \n __url__\n \n Gràcies.",
+ "email-sent": "Correu enviat",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hola __user__, \n\n per verificar el teu correu, segueix l'enllaç següent.\n\n __url__\n\n Gràcies.",
+ "enable-wip-limit": "Activa e Límit de Treball en Progrès",
+ "error-board-doesNotExist": "Aquest tauler no existeix",
+ "error-board-notAdmin": "Necessites ser administrador d'aquest tauler per dur a lloc aquest acció",
+ "error-board-notAMember": "Necessites ser membre d'aquest tauler per dur a terme aquesta acció",
+ "error-json-malformed": "El text no és JSON vàlid",
+ "error-json-schema": "La dades JSON no contenen la informació en el format correcte",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "La llista no existeix",
+ "error-user-doesNotExist": "L'usuari no existeix",
+ "error-user-notAllowSelf": "No et pots convidar a tu mateix",
+ "error-user-notCreated": "L'usuari no s'ha creat",
+ "error-username-taken": "Aquest usuari ja existeix",
+ "error-email-taken": "L'adreça de correu electrònic ja és en ús",
+ "export-board": "Exporta tauler",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Exporta tauler",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtre",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Elimina filtre",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Sense etiqueta",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Sense membres",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filtra per",
+ "filter-on-desc": "Estau filtrant fitxes en aquest tauler. Feu clic aquí per editar el filtre.",
+ "filter-to-selection": "Filtra selecció",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Filtre avançat",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nom complet",
+ "header-logo-title": "Torna a la teva pàgina de taulers",
+ "hide-system-messages": "Oculta missatges del sistema",
+ "headerBarCreateBoardPopup-title": "Crea tauler",
+ "home": "Inici",
+ "import": "importa",
+ "impersonate-user": "Impersonate user",
+ "link": "Enllaç",
+ "import-board": "Importa tauler",
+ "import-board-c": "Importa tauler",
+ "import-board-title-trello": "Importa tauler des de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Des de Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "En el teu tauler Trello, ves a 'Menú', 'Més'.' Imprimir i Exportar', 'Exportar JSON', i copia el text resultant.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Aferra codi JSON vàlid aquí",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapeja el membres",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Revisa l'assignació de membres",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Selecciona un usuari",
+ "info": "Versió",
+ "initials": "Inicials",
+ "invalid-date": "Data invàlida",
+ "invalid-time": "Temps Invàlid",
+ "invalid-user": "Usuari invàlid",
+ "joined": "s'ha unit",
+ "just-invited": "Has estat convidat a aquest tauler",
+ "keyboard-shortcuts": "Dreceres de teclat",
+ "label-create": "Crea etiqueta",
+ "label-default": "%s etiqueta (per defecte)",
+ "label-delete-pop": "No es pot desfer. Això eliminarà aquesta etiqueta de totes les fitxes i destruirà la seva història.",
+ "labels": "Etiquetes",
+ "language": "Idioma",
+ "last-admin-desc": "No podeu canviar rols perquè ha d'haver-hi almenys un administrador.",
+ "leave-board": "Abandona tauler",
+ "leave-board-pop": "De debò voleu abandonar __boardTitle__? Se us eliminarà de totes les fitxes d'aquest tauler.",
+ "leaveBoardPopup-title": "Abandonar Tauler?",
+ "link-card": "Enllaç a aquesta fitxa",
+ "list-archive-cards": "Moure totes les fitxes en aquesta llista al Arxiu",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mou totes les fitxes d'aquesta llista",
+ "list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Accions de la llista",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Accions de Carril de Natació",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "importa una fitxa de Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Més",
+ "link-list": "Enllaça a aquesta llista",
+ "list-delete-pop": "Totes les accions seran esborrades de la llista d'activitats i no serà possible recuperar la llista",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Llistes",
+ "swimlanes": "Carrils de Natació",
+ "log-out": "Finalitza la sessió",
+ "log-in": "Ingresa",
+ "loginPopup-title": "Inicia sessió",
+ "memberMenuPopup-title": "Configura membres",
+ "members": "Membres",
+ "menu": "Menú",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Moure fitxa",
+ "moveCardToBottom-title": "Mou a la part inferior",
+ "moveCardToTop-title": "Mou a la part superior",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selecció",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selecció està activada",
+ "muted": "En silenci",
+ "muted-info": "No seràs notificat dels canvis en aquest tauler",
+ "my-boards": "Els meus taulers",
+ "name": "Nom",
+ "no-archived-cards": "No hi ha fitxes a l'arxiu.",
+ "no-archived-lists": "No hi ha llistes al arxiu.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Sense resultats",
+ "normal": "Normal",
+ "normal-desc": "Podeu veure i editar fitxes. No podeu canviar la configuració.",
+ "not-accepted-yet": "La invitació no ha esta acceptada encara",
+ "notify-participate": "Rebre actualitzacions per a cada fitxa de la qual n'ets creador o membre",
+ "notify-watch": "Rebre actualitzacions per qualsevol tauler, llista o fitxa en observació",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Aquesta pàgina és privada. Per veure-la entra .",
+ "page-not-found": "Pàgina no trobada.",
+ "password": "Contrasenya",
+ "paste-or-dragdrop": "aferra, o estira i amolla la imatge (només imatge)",
+ "participating": "Participant",
+ "preview": "Vista prèvia",
+ "previewAttachedImagePopup-title": "Vista prèvia",
+ "previewClipboardImagePopup-title": "Vista prèvia",
+ "private": "Privat",
+ "private-desc": "Aquest tauler és privat. Només les persones afegides al tauler poden veure´l i editar-lo.",
+ "profile": "Perfil",
+ "public": "Públic",
+ "public-desc": "Aquest tauler és públic. És visible per a qualsevol persona amb l'enllaç i es mostrarà en els motors de cerca com Google. Només persones afegides al tauler poden editar-lo.",
+ "quick-access-description": "Inicia un tauler per afegir un accés directe en aquest barra",
+ "remove-cover": "Elimina coberta",
+ "remove-from-board": "Elimina del tauler",
+ "remove-label": "Elimina l'etiqueta",
+ "listDeletePopup-title": "Esborrar la llista?",
+ "remove-member": "Elimina membre",
+ "remove-member-from-card": "Elimina de la fitxa",
+ "remove-member-pop": "Eliminar __name__ (__username__) de __boardTitle__ ? El membre serà eliminat de totes les fitxes d'aquest tauler. Ells rebran una notificació.",
+ "removeMemberPopup-title": "Vols suprimir el membre?",
+ "rename": "Canvia el nom",
+ "rename-board": "Canvia el nom del tauler",
+ "restore": "Restaura",
+ "save": "Desa",
+ "search": "Cerca",
+ "rules": "Regles",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Selecciona color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Limita el màxim nombre de tasques en aquesta llista",
+ "setWipLimitPopup-title": "Configura el Límit de Treball en Progrès",
+ "shortcut-assign-self": "Assigna't la ftixa actual",
+ "shortcut-autocomplete-emoji": "Autocompleta emoji",
+ "shortcut-autocomplete-members": "Autocompleta membres",
+ "shortcut-clear-filters": "Elimina tots els filters",
+ "shortcut-close-dialog": "Tanca el diàleg",
+ "shortcut-filter-my-cards": "Filtra les meves fitxes",
+ "shortcut-show-shortcuts": "Mostra aquesta lista d'accessos directes",
+ "shortcut-toggle-filterbar": "Canvia la barra lateral del tauler",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Canvia Sidebar del Tauler",
+ "show-cards-minimum-count": "Mostra contador de fitxes si la llista en conté més de",
+ "sidebar-open": "Mostra barra lateral",
+ "sidebar-close": "Amaga barra lateral",
+ "signupPopup-title": "Crea un compte",
+ "star-board-title": "Fes clic per destacar aquest tauler. Es mostrarà a la part superior de la llista de taulers.",
+ "starred-boards": "Taulers destacats",
+ "starred-boards-description": "Els taulers destacats es mostraran a la part superior de la llista de taulers.",
+ "subscribe": "Subscriure",
+ "team": "Equip",
+ "this-board": "aquest tauler",
+ "this-card": "aquesta fitxa",
+ "spent-time-hours": "Temps dedicat (hores)",
+ "overtime-hours": "Temps de més (hores)",
+ "overtime": "Temps de més",
+ "has-overtime-cards": "Té fitxes amb temps de més",
+ "has-spenttime-cards": "Té fitxes amb temps dedicat",
+ "time": "Hora",
+ "title": "Títol",
+ "tracking": "En seguiment",
+ "tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre",
+ "type": "Tipus",
+ "unassign-member": "Desassignar membre",
+ "unsaved-description": "Tens una descripció sense desar.",
+ "unwatch": "Suprimeix observació",
+ "upload": "Puja",
+ "upload-avatar": "Actualitza avatar",
+ "uploaded-avatar": "Avatar actualitzat",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nom d'Usuari",
+ "view-it": "Vist",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Observa",
+ "watching": "En observació",
+ "watching-info": "Seràs notificat de cada canvi en aquest tauler",
+ "welcome-board": "Tauler de benvinguda",
+ "welcome-swimlane": "Objectiu 1",
+ "welcome-list1": "Bàsics",
+ "welcome-list2": "Avançades",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Què vols fer?",
+ "wipLimitErrorPopup-title": "Límit de Treball en Progrès invàlid",
+ "wipLimitErrorPopup-dialog-pt1": "El nombre de tasques en esta llista és superior al límit de Treball en Progrès que heu definit.",
+ "wipLimitErrorPopup-dialog-pt2": "Si us plau mogui algunes taques fora d'aquesta llista, o configuri un límit de Treball en Progrès superior.",
+ "admin-panel": "Tauler d'administració",
+ "settings": "Configuració",
+ "people": "Persones",
+ "registration": "Registre",
+ "disable-self-registration": "Deshabilita Auto-Registre",
+ "invite": "Convida",
+ "invite-people": "Convida a persones",
+ "to-boards": "Al tauler(s)",
+ "email-addresses": "Adreça de correu",
+ "smtp-host-description": "L'adreça del vostre servidor SMTP.",
+ "smtp-port-description": "El port del vostre servidor SMTP.",
+ "smtp-tls-description": "Activa suport TLS pel servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nom d'usuari",
+ "smtp-password": "Contrasenya",
+ "smtp-tls": "Suport TLS",
+ "send-from": "De",
+ "send-smtp-test": "Envia't un correu electrònic de prova",
+ "invitation-code": "Codi d'invitació",
+ "email-invite-register-subject": "__inviter__ t'ha convidat",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Has enviat un missatge satisfactòriament",
+ "error-invitation-code-not-exist": "El codi d'invitació no existeix",
+ "error-notAuthorized": "No estau autoritzats per veure aquesta pàgina",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Webhooks sortints",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Webhooks sortints",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "Nou Webook sortint",
+ "no-name": "Importa tauler des de Wekan",
+ "Node_version": "Versió Node",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "Arquitectura SO",
+ "OS_Cpus": "Plataforma SO",
+ "OS_Freemem": "Memòria lliure",
+ "OS_Loadavg": "Carrega de SO",
+ "OS_Platform": "Plataforma de SO",
+ "OS_Release": "Versió SO",
+ "OS_Totalmem": "Memòria total",
+ "OS_Type": "Tipus de SO",
+ "OS_Uptime": "Temps d'activitat",
+ "days": "days",
+ "hours": "hores",
+ "minutes": "minuts",
+ "seconds": "segons",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Si",
+ "no": "No",
+ "accounts": "Comptes",
+ "accounts-allowEmailChange": "Permet modificar correu electrònic",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Creat ",
+ "verified": "Verificat",
+ "active": "Actiu",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assignat Per",
+ "requested-by": "Demanat Per",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Configuració de targeta",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Configuració de targeta",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Regles del tauler",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No hi han regles",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "una targeta",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Moure al arxiu",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "targeta",
+ "r-add": "Afegeix",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Crea una targeta nova",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "Quan una targeta es mou a una altra llista",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignat",
+ "cardAssigneesPopup-title": "Assignat",
+ "addmore-detail": "Afegiu una descripció més detallada",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json
index 372c2aad7..07a607fa4 100644
--- a/i18n/cs.i18n.json
+++ b/i18n/cs.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Zobraz způsob ověřování",
"default-authentication-method": "Zobraz způsob ověřování",
"duplicate-board": "Duplikovat tablo",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "The number of people is:",
"swimlaneDeletePopup-title": "Smazat Swimlane ?",
"swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Skrýt zvolené položky",
"task": "Úkol",
"create-task": "Vytvořit úkol",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/da.i18n.json b/i18n/da.i18n.json
index ae807a585..9bd553e15 100644
--- a/i18n/da.i18n.json
+++ b/i18n/da.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Acceptér",
- "act-activity-notify": "Aktivitetsnotits",
- "act-addAttachment": "tilføjede vedhæftningen __attachment__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-deleteAttachment": "slettede vedhæftning __attachment__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-addSubtask": "tilføjede delopgaven __subtask__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-addLabel": "Tilføjede etiketten __label__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-addedLabel": "Tilføjede etiketten __label__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-removeLabel": "Fjernede etiketten __label__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på kortet __board__",
- "act-removedLabel": "Fjernede etiketten __label__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på kortet __board__",
- "act-addChecklist": "tilføjede tjeklisten __checklist__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-addChecklistItem": "tilføjede elementet i tjekliste __checklistItem__ til tjeklisten __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-removeChecklist": "fjernede tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-removeChecklistItem": "fjernede elementet i tjekliste __checklistItem__ fra tjeklisten __checkList__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-checkedItem": "markerede __checklistItem__ fra tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-uncheckedItem": "afmarkerede __checklistItem__ fra tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-completeChecklist": "afsluttet tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-uncompleteChecklist": "uafsluttet tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-addComment": "kommenterede på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-editComment": "redigerede kommentar på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-deleteComment": "slettede kommentar på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-createBoard": "oprettede tavlen __board__",
- "act-createSwimlane": "oprettede svømmebanen __swimlane__ på tavlen __board__",
- "act-createCard": "oprettede kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-createCustomField": "oprettede brugerdefineret felt __customField__ på tavlen __board__",
- "act-deleteCustomField": "slettede brugerdefineret felt __customField__ på tavlen __board__",
- "act-setCustomField": "redigerede brugerdefineret felt __customField__: __customFieldValue__ i kortet __card__ på lsten __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-createList": "tilføjede listen __list__ til tavlen __board__",
- "act-addBoardMember": "tilføejede medlemmet __member__ til tavlen __board__",
- "act-archivedBoard": "Tavlen __board__ blev flyttet til Arkiv",
- "act-archivedCard": "Kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
- "act-archivedList": "Listen __list__ i svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
- "act-archivedSwimlane": "Svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
- "act-importBoard": "importerede tavlen __board__",
- "act-importCard": "importerede kortet __card__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-importList": "importerede listen __list__ til svømmebanen __swimlane__ på tavlen __board__",
- "act-joinMember": "tilføjede medlemmet __member__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-moveCard": "flyttede kortet __card__ på tavlen __board__ fra listen __oldList__ i svømmebanen __oldSwimlane__ til listen __list__ i svømmebanen __swimlane__",
- "act-moveCardToOtherBoard": "flyttede kortet __card__ fra listen __oldList__ i svømmebanen __oldSwimlane__ på tavlen __oldBoard__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-removeBoardMember": "fjernede medlemmet __member__ fra tavlen __board__",
- "act-restoredCard": "genskabte kortet __card__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-unjoinMember": "fjernede medlemmet __member__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Handlinger",
- "activities": "Aktiviteter",
- "activity": "Aktivitet",
- "activity-added": "tilføjede %s til %s",
- "activity-archived": "%s flyttet til Arkiv",
- "activity-attached": "vedhæftede %s til %s",
- "activity-created": "oprettede %s",
- "activity-customfield-created": "oprettede brugerdefineret felt %s",
- "activity-excluded": "ekskluderet %s fra %s",
- "activity-imported": "importerede %s ind i %s fra %s",
- "activity-imported-board": "importerede %s fra %s",
- "activity-joined": "indgik i %s",
- "activity-moved": "flyttede %s fra %s til %s",
- "activity-on": "per %s",
- "activity-removed": "fjernede %s fra %s",
- "activity-sent": "sendte %s til %s",
- "activity-unjoined": "udgik fra %s",
- "activity-subtask-added": "tilføjede delopgave til %s",
- "activity-checked-item": "afkrydsede %s i tjeklisten %s af %s",
- "activity-unchecked-item": "fjernede kryds %s i tjeklisten %s af %s",
- "activity-checklist-added": "tilføjede tjeklisten til %s",
- "activity-checklist-removed": "fjernede en tjekliste fra %s",
- "activity-checklist-completed": "færdiggjorde tjekliste %s af %s",
- "activity-checklist-uncompleted": "gjorde tjeklisten ukomplet, %s af %s",
- "activity-checklist-item-added": "tilføjede element i tjekliste til '%s' i %s",
- "activity-checklist-item-removed": "fjernede element i tjekliste fra '%s' i %s",
- "add": "Tilføj",
- "activity-checked-item-card": "markerede %s i tjeklisten %s",
- "activity-unchecked-item-card": "afmarkerede %s i tjeklisten %s",
- "activity-checklist-completed-card": "udført tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
- "activity-checklist-uncompleted-card": "gjorde tjeklisten ukomplet %s",
- "activity-editComment": "redigerede kommentar %s",
- "activity-deleteComment": "slettede kommentar %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Tilføj vedhæftning",
- "add-board": "Tilføj tavle",
- "add-card": "Tilføj kort",
- "add-swimlane": "Tilføj svømmebane",
- "add-subtask": "Tilføj delopgave",
- "add-checklist": "Tilføj tjekliste",
- "add-checklist-item": "Tilføj et element til tjeklisten",
- "add-cover": "Tilføj omslag",
- "add-label": "Tilføj etikette",
- "add-list": "Tilføj liste",
- "add-members": "Tilføj medlemmer",
- "added": "Tilføjet",
- "addMemberPopup-title": "Medlemmer",
- "admin": "Admin",
- "admin-desc": "Kan se og redigere kort, fjerne medlemmer og ændre indstillinger for tavlen.",
- "admin-announcement": "Annoncering",
- "admin-announcement-active": "Aktivér annoncering på tværs af systemet",
- "admin-announcement-title": "Annoncering fra administrator",
- "all-boards": "Alle tavler",
- "and-n-other-card": "Samt __count__ andre kort",
- "and-n-other-card_plural": "Samt __count__ andre kort",
- "apply": "Anvend",
- "app-is-offline": "Indlæser, vent venligst. Genopfriskes siden er der risiko for tab af data. Fungerer indlæsningen ikke, så tjek venligst om serveren er stoppet. ",
- "archive": "Flyt til arkiv",
- "archive-all": "Flyt alle til arkiv",
- "archive-board": "Flyt tavle til arkiv",
- "archive-card": "Flyt kort til arkiv",
- "archive-list": "Flyt liste til arkiv",
- "archive-swimlane": "Flyt svømmebane til arkiv",
- "archive-selection": "Flyt valgte til arkiv",
- "archiveBoardPopup-title": "Flyt tavle til arkiv?",
- "archived-items": "Arkiv",
- "archived-boards": "Tavler i arkiv",
- "restore-board": "Genskab tavle",
- "no-archived-boards": "Ingen tavler i arkiv",
- "archives": "Arkiv",
- "template": "Skabelon",
- "templates": "Skabeloner",
- "assign-member": "Tilknyt medlem",
- "attached": "vedhæftet",
- "attachment": "Vedhæftning",
- "attachment-delete-pop": "Slettes en vedhæftning sker det permanent. Det kan ikke omgøres. ",
- "attachmentDeletePopup-title": "Slet vedhæftning?",
- "attachments": "Vedhæftninger",
- "auto-watch": "Følg automatisk tavler når de oprettes ",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Tilbage",
- "board-change-color": "Skift farve",
- "board-nb-stars": "%s stjerner",
- "board-not-found": "Fandt ikke tavle ",
- "board-private-info": "Denne tavle vil være privat.",
- "board-public-info": "Denne tavle vil være offentlig.",
- "boardChangeColorPopup-title": "Skift tavlens baggrund",
- "boardChangeTitlePopup-title": "Omdøb tavle",
- "boardChangeVisibilityPopup-title": "Tilpas synlighed",
- "boardChangeWatchPopup-title": "Tilpas følgefunktion",
- "boardMenuPopup-title": "Tavleindstillinger",
- "boardChangeViewPopup-title": "Tavlevisning",
- "boards": "Tavler",
- "board-view": "Tavlevisning",
- "board-view-cal": "Kalender",
- "board-view-swimlanes": "Svømmebaner",
- "board-view-collapse": "Sammenfold",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lister",
- "bucket-example": "Eksempelvis \"Bucked-liste\"",
- "cancel": "Annullér",
- "card-archived": "Dette kort blev flyttet til arkivet.",
- "board-archived": "Denne tavle blev flyttet til arkivet.",
- "card-comments-title": "Dette kort har %s kommentar.",
- "card-delete-notice": "Sletning vil være permanent. Du mister alle handlinger knyttet til dette kort.",
- "card-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet, og du kan ikke genåbne kortet. Det kan ikke omgøres.",
- "card-delete-suggest-archive": "Du kan flytte et kort til arkivet for at fjerne det fra tavlen, og bevare aktiviteten.",
- "card-due": "Forfalder",
- "card-due-on": "Forfaldsdato",
- "card-spent": "Anvendt tid",
- "card-edit-attachments": "Redigér vedhæftninger",
- "card-edit-custom-fields": "Redigér brugerdefinerede felter",
- "card-edit-labels": "Redigér etiketter",
- "card-edit-members": "Redigér medlemmer",
- "card-labels-title": "Ændr etiketter for kortet.",
- "card-members-title": "Tilføj eller fjern medlemmer på tavlen fra kortet.",
- "card-start": "Start",
- "card-start-on": "Starter per",
- "cardAttachmentsPopup-title": "Vedhæft fra",
- "cardCustomField-datePopup-title": "Ændringsdato",
- "cardCustomFieldsPopup-title": "Redigér brugerdefinerede felter",
- "cardStartVotingPopup-title": "Start en stemmeafgivning",
- "positiveVoteMembersPopup-title": "Tilhængere",
- "negativeVoteMembersPopup-title": "Modstandere",
- "card-edit-voting": "Redigér stemmeafgivelse",
- "editVoteEndDatePopup-title": "Skift slutdato for afstemning",
- "allowNonBoardMembers": "Tillad alle brugere som er logget ind",
- "vote-question": "Spørgsmål til afstemning",
- "vote-public": "Vis hvem som stemte hvad",
- "vote-for-it": "går ind for",
- "vote-against": "går imod",
- "deleteVotePopup-title": "Slet afstemning?",
- "vote-delete-pop": "Sletning er permanent. Du mister alle handlinger knyttet til denne afstemning.",
- "cardDeletePopup-title": "Slet kort?",
- "cardDetailsActionsPopup-title": "Handlinger for kort",
- "cardLabelsPopup-title": "Etiketter",
- "cardMembersPopup-title": "Medlemmer",
- "cardMorePopup-title": "Mere",
- "cardTemplatePopup-title": "Opret skabelon",
- "cards": "Kort",
- "cards-count": "Kort",
- "casSignIn": "Log ind med CAS",
- "cardType-card": "Kort",
- "cardType-linkedCard": "Sammenkædet kort",
- "cardType-linkedBoard": "Sammenkædet tavle",
- "change": "Tilpas",
- "change-avatar": "Tilpas avatar",
- "change-password": "Skift kodeord",
- "change-permissions": "Tilpas tilladelser",
- "change-settings": "Tilpas indstillinger",
- "changeAvatarPopup-title": "Tilpas avatar",
- "changeLanguagePopup-title": "Skift sprog",
- "changePasswordPopup-title": "Skift kodeord",
- "changePermissionsPopup-title": "Tilpas tilladelser",
- "changeSettingsPopup-title": "Tilpas indstillinger",
- "subtasks": "Delopgaver",
- "checklists": "Tjeklister",
- "click-to-star": "Klik for at tilføje stjerne til tavlen.",
- "click-to-unstar": "Klik for at fjerne stjerne fra tavlen.",
- "clipboard": "Udklipsholder eller træk-og-slip",
- "close": "Luk",
- "close-board": "Luk tavle",
- "close-board-pop": "Du har mulighed for at genskabe tavlen ved at klikke på \"Arkiv\"-knappen fra overskriften hjem.",
- "color-black": "sort",
- "color-blue": "blå",
- "color-crimson": "crimsonrød",
- "color-darkgreen": "mørkegrøn",
- "color-gold": "guld",
- "color-gray": "grå",
- "color-green": "grøn",
- "color-indigo": "indigoblå",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "lyserød",
- "color-navy": "navyblå",
- "color-orange": "orange",
- "color-paleturquoise": "bleg turkis",
- "color-peachpuff": "ferskenfarvet",
- "color-pink": "pink",
- "color-plum": "blommefarvet",
- "color-purple": "lilla",
- "color-red": "rød",
- "color-saddlebrown": "saddelbrun",
- "color-silver": "sølv",
- "color-sky": "sky",
- "color-slateblue": "blågrå",
- "color-white": "hvid",
- "color-yellow": "gul",
- "unset-color": "Nulstil",
- "comment": "Kommentér",
- "comment-placeholder": "Skriv kommentar",
- "comment-only": "Kun kommentarer",
- "comment-only-desc": "Kan kun kommentere på kort.",
- "no-comments": "Ingen kommentarer",
- "no-comments-desc": "Kan ikke se kommentarer og aktiviteter.",
- "worker": "Arbejder",
- "worker-desc": "Kan kun flytte kort, tildele sig selv til kort og kommentere.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Er du sikker på du vil slette delopgaven?",
- "confirm-checklist-delete-dialog": "Er du sikker på du vil slette tjeklisten?",
- "copy-card-link-to-clipboard": "Kopiér link til kort til udklipsholder ",
- "linkCardPopup-title": "Sammenkæd kort",
- "searchElementPopup-title": "Søg",
- "copyCardPopup-title": "Kopiér kort",
- "copyChecklistToManyCardsPopup-title": "Kopiér tjeklisteskabelon til flere kort",
- "copyChecklistToManyCardsPopup-instructions": "Destination for kortenes titler og beskrivelser i dette JSON-format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Opret",
- "createBoardPopup-title": "Opret tavle",
- "chooseBoardSourcePopup-title": "Importér tavle",
- "createLabelPopup-title": "Opret etikette",
- "createCustomField": "Opret felt",
- "createCustomFieldPopup-title": "Opret felt",
- "current": "nuværende",
- "custom-field-delete-pop": "Du kan ikke fortryde handlingen. Dette vil fjerne dette brugerdefinerede felt fra alle kort og tilintetgøre dens historik.",
- "custom-field-checkbox": "Afkrydsningsfelt",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Dato",
- "custom-field-dropdown": "Rullegardinliste",
- "custom-field-dropdown-none": "(ingen)",
- "custom-field-dropdown-options": "Tilvalg for liste",
- "custom-field-dropdown-options-placeholder": "Tryk enter for at tilføje flere tilvalg",
- "custom-field-dropdown-unknown": "(ukendt)",
- "custom-field-number": "Tal",
- "custom-field-text": "Tekst",
- "custom-fields": "Brugerdefinerede felter",
- "date": "Dato",
- "decline": "Afslå",
- "default-avatar": "Standard-avatar",
- "delete": "Slet",
- "deleteCustomFieldPopup-title": "Slet brugerdefineret felt?",
- "deleteLabelPopup-title": "Slet etikette?",
- "description": "Beskrivelse",
- "disambiguateMultiLabelPopup-title": "Tydeliggør handling for etikette",
- "disambiguateMultiMemberPopup-title": "Tydeliggør handling for medlem",
- "discard": "Forkast",
- "done": "Færdig",
- "download": "Hent",
- "edit": "Redigér",
- "edit-avatar": "Tilpas avatar",
- "edit-profile": "Redigér profil",
- "edit-wip-limit": "Redigér WIP-begrænsning",
- "soft-wip-limit": "Blød WIP-begrænsning",
- "editCardStartDatePopup-title": "Skift startdato",
- "editCardDueDatePopup-title": "Skift forfaldsdato",
- "editCustomFieldPopup-title": "Redigér felt",
- "editCardSpentTimePopup-title": "Tilpas forbrugt tid",
- "editLabelPopup-title": "Skift etikette",
- "editNotificationPopup-title": "Redigér notifikation",
- "editProfilePopup-title": "Redigér profil",
- "email": "E-mail",
- "email-enrollAccount-subject": "Der er oprettet konto til dig på __siteName__",
- "email-enrollAccount-text": "Hej __user__,\n\nFor at begynde at benytte tjenesten, så klik linket nedenfor.\n\n__url__\n\nTak.",
- "email-fail": "Afsendelse af e-mail mislykkedes",
- "email-fail-text": "Fejl under afsendelse af e-mail",
- "email-invalid": "Ugyldig e-mail",
- "email-invite": "Invitér via e-mail",
- "email-invite-subject": "__inviter__ sendte dig en invitation",
- "email-invite-text": "Kære __user__,\n\n__inviter__ inviterer dig til deltagelse i tavlen \"__board__\" for samarbejde.\n\nFølg venligst linket nedenfor:\n\n__url__\n\nTak.",
- "email-resetPassword-subject": "Genskab dit kodeord på __siteName__",
- "email-resetPassword-text": "Hej __user__,\n\nFor at genskabe dit kodeord, så klik linket nedenfor your password.\n\n__url__\n\nTak.",
- "email-sent": "E-mail er afsendt",
- "email-verifyEmail-subject": "Verificér din e-mailadresse på your __siteName__",
- "email-verifyEmail-text": "Hej __user__,\n\nFor at verificere din e-mail for kontoen, så klik på linket nedenfor.\n\n__url__\n\nTak.",
- "enable-wip-limit": "Slå WIP-begrænsning til",
- "error-board-doesNotExist": "Denne tavle eksisterer ikke.",
- "error-board-notAdmin": "Du skal være administrator for tavlen for at gøre dette",
- "error-board-notAMember": "Du skal være medlem af denne tavle for at gøre dette",
- "error-json-malformed": "Din tekst er ikke gyldig JSON",
- "error-json-schema": "Dine JSON-data indeholder ikke den rette information i det rette format",
- "error-csv-schema": "Din CSV (kommaseparerede værdier)/TSV (Tabulatorseparerede værdier) indeholder ikke den rette information i det korrekte format",
- "error-list-doesNotExist": "Listen findes ikke",
- "error-user-doesNotExist": "Brugeren findes ikke",
- "error-user-notAllowSelf": "Du kan ikke invitere dig selv",
- "error-user-notCreated": "Brugeren er ikke oprettet",
- "error-username-taken": "Brugernavnet er optaget",
- "error-email-taken": "E-mailadressen er allerede optaget",
- "export-board": "Eksportér tavle",
- "export-board-json": "Eksportér tavle til JSON",
- "export-board-csv": "Eksportér tavle til CSV",
- "export-board-tsv": "Eksportér tavle til TSV",
- "export-board-html": "Eksportér tavle til HTML",
- "exportBoardPopup-title": "Eksportér tavle",
- "sort": "Sortér",
- "sort-desc": "Klik for at sortere listen",
- "list-sort-by": "Sortér listen efter:",
- "list-label-modifiedAt": "Senest tilgået:",
- "list-label-title": "Navn på listen",
- "list-label-sort": "Din manuelle ordre",
- "list-label-short-modifiedAt": "(S)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filtrér kort eller lister",
- "list-filter-label": "Filtrér lister efter titel",
- "filter-clear": "Ryd filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Ingen etikette",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Ingen medlemmer",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "Utildelt",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Ingen brugerdefinerede felter",
- "filter-show-archive": "Vis arkiverede lister",
- "filter-hide-empty": "Skjul tomme lister",
- "filter-on": "Filter er slået til",
- "filter-on-desc": "Du filtrerer kort på denne tavle. Klik her for at redigere filteret.",
- "filter-to-selection": "Filtrér til valgte",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Avanceret filter",
- "advanced-filter-description": "Avanceret filter gør det muligt at skrive en tekststreng indeholdende følgende operatører: == != <= >= && || ( ) Mellemrum anvendes som adskillelsestegn mellem operatørerne. Du kan filtrere alle Brugerdefinerede felter ved at taste deres navne og værdier. Som eksempel: Felt1 == Værdi1. Bemærk: Hvis felter eller værdier indeholder mellemrum, så skal du indkapsle dem i enkeltcitationstegn. Som eksempel: 'Felt 1' == 'Værdi1'. For at springe over enkelte kontroltegn (' \\/), så kan \\ benyttes. Som eksempel: Felt1 == Så\\'n. Du kan også kombinere flere betingelser. Som eksempel: F1 == V1 || F1 == V2. Normalt vil alle operatører blive fortolket fra venstre mod højre. Du kan ændre rækkefølgen ved brug af parenteser. Som eksempel: F1 == V1 && (F2 == V2 || F2 == V3). Du kan også søge i tekstfelter med brug af regulære udtryk: F1 == /Tes.*/i",
- "fullname": "Fuldt navn",
- "header-logo-title": "Gå tilbage til siden med dine tavler",
- "hide-system-messages": "Skjul systembeskeder",
- "headerBarCreateBoardPopup-title": "Opret tavle",
- "home": "Hjem",
- "import": "Importér",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "importér tavle",
- "import-board-c": "Importér tavle",
- "import-board-title-trello": "Importér tavle fra Trello",
- "import-board-title-wekan": "Importér tavler fra tidligere eksport",
- "import-board-title-csv": "Importér tavle fra CSV/TSV",
- "from-trello": "Fra Trello",
- "from-wekan": "Fra forrige eksport",
- "from-csv": "Fra CSV/TSV",
- "import-board-instruction-trello": "I din Trello-tavle, gå til 'Menu', dernæst 'More', 'Print and Export', 'Export JSON', og kopiér den tekst som vises.",
- "import-board-instruction-csv": "Indsæt dine kommaseparerede værdier (CSV)/ Tabulatorseparerede værdier (TSV).",
- "import-board-instruction-wekan": "På din tavle, gå til 'Menu', dernæst 'Eksportér tavle', og kopiér teksten i den hentede fil.",
- "import-board-instruction-about-errors": "Hvis du får fejl når der importeres en tavle, så vil importen undertiden stadig fungere, og tavlen vil være under side Alle tavler.",
- "import-json-placeholder": "Indsæt dine gyldige JSON-data her",
- "import-csv-placeholder": "Indsæt din valide CSV/TSV-data her",
- "import-map-members": "Kortlæg medlemmer",
- "import-members-map": "Dine importerede tavler rummer medlemmer. Kortlæg venligst de medlemmer du ønsker at importere til dine brugere.",
- "import-show-user-mapping": "Gennemse kortlægning af medlemmer",
- "import-user-select": "Vælg din eksisterende bruger, som du ønsker at bruge for dette medlem",
- "importMapMembersAddPopup-title": "Vælg medlem",
- "info": "Version",
- "initials": "Initialer",
- "invalid-date": "Ugyldig dato",
- "invalid-time": "Ugyldig tidsangivelse",
- "invalid-user": "Ugyldig bruger",
- "joined": "sluttede sig til",
- "just-invited": "Du er netop blevet inviteret til denne tavle",
- "keyboard-shortcuts": "Tastaturgenveje",
- "label-create": "Opret etikette",
- "label-default": "%s etikette (standard)",
- "label-delete-pop": "Det er ikke muligt at fortryde. Dette vil fjerne etiketten fra alle kort og ødelægge dets historik.",
- "labels": "Etiketter",
- "language": "Sprog",
- "last-admin-desc": "Du kan ikke ændre roller, da der mindst skal være én administrator.",
- "leave-board": "Forlad tavle",
- "leave-board-pop": "Er du sikker på du vil forlade __boardTitle__? Du vil blive fjernet fra alle kort på denne tavle.",
- "leaveBoardPopup-title": "Forlad tavle?",
- "link-card": "Link til dette kort",
- "list-archive-cards": "Flyt alle kort i denne liste til arkivet",
- "list-archive-cards-pop": "Dette vil fjerne alle kort i denne liste fra tavlen. For at se kort i arkivet og bringe dem tilbage til tavlen, så klik \"Menu\" > \"Arkiv\".",
- "list-move-cards": "Flyt alle kort i denne liste",
- "list-select-cards": "Vælg alle kort i denne liste",
- "set-color-list": "Angiv farve",
- "listActionPopup-title": "Handlinger for liste",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Handlinger for svømmebane",
- "swimlaneAddPopup-title": "Tilføj en svømmebane nedenfor",
- "listImportCardPopup-title": "Importér et Trello-kort",
- "listImportCardsTsvPopup-title": "Importér Excel CSV/TSV",
- "listMorePopup-title": "Mere",
- "link-list": "Link til denne liste",
- "list-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet og du vil ikke have mulighed for at genskabe listen. Der er ingen måder at fortryde. ",
- "list-delete-suggest-archive": "Du kan flytte en liste til arkivet for at fjerne det fra tavlen og bevare dets aktivitet.",
- "lists": "Lister",
- "swimlanes": "Svømmebaner",
- "log-out": "Log ud",
- "log-in": "Log ind",
- "loginPopup-title": "Log ind",
- "memberMenuPopup-title": "Medlemsindstillinger",
- "members": "Medlemmer",
- "menu": "Menu",
- "move-selection": "Flyt valgte",
- "moveCardPopup-title": "Flyt kort",
- "moveCardToBottom-title": "Flyt til bunden",
- "moveCardToTop-title": "Flyt til toppen",
- "moveSelectionPopup-title": "Flyt valgte",
- "multi-selection": "Multivalg",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multivalg er slået til",
- "muted": "Slukket",
- "muted-info": "Du vil aldrig få notifikationer om ændringer i denne tavle",
- "my-boards": "Mine tavler",
- "name": "Navn",
- "no-archived-cards": "Ingen kort i arkivet.",
- "no-archived-lists": "Ingen lister i arkivet.",
- "no-archived-swimlanes": "Ingen svømmebaner i arkivet.",
- "no-results": "Ingen resultater",
- "normal": "Normal",
- "normal-desc": "Du kan se og redigere kort. Indstillinger kan ikke ændres.",
- "not-accepted-yet": "Invitation er endnu ikke accepteret",
- "notify-participate": "Modtag opdateringer for alle kort du deltager i, som opretter eller medlem ",
- "notify-watch": "Modtag opdateringer for alle tavler eller kort som du følger ",
- "optional": "valgfri",
- "or": "eller",
- "page-maybe-private": "Denne side kan være privat. Du kan eventuelt se den ved at logge ind.",
- "page-not-found": "Siden blev ikke fundet.",
- "password": "Kodeord",
- "paste-or-dragdrop": "for at indsætte eller træk-og-slip billedfilen til den (kun billede)",
- "participating": "Deltager",
- "preview": "Forhåndsvisning",
- "previewAttachedImagePopup-title": "Forhåndsvisning",
- "previewClipboardImagePopup-title": "Forhåndsvisning",
- "private": "Privat",
- "private-desc": "Denne tavle er privat. Det er kun tilføjede personer som kan se og redigere den. ",
- "profile": "Profil",
- "public": "Offentlig",
- "public-desc": "Denne tavle er offentlig. Den er synlig for alle med linket og vil blive vist i søgemaskiner som Google. Det er kun personer tilføjet til tavlen, der kan redigere. ",
- "quick-access-description": "Stjernemarkér en tavle for at tilføje genvej i denne bjælke.",
- "remove-cover": "Fjern omslag",
- "remove-from-board": "Fjern fra tavle",
- "remove-label": "Fjern etikette",
- "listDeletePopup-title": "Slet liste?",
- "remove-member": "Fjern medlem",
- "remove-member-from-card": "Fjern fra kort",
- "remove-member-pop": "Fjern __name__ (__username__) fra __boardTitle__? Medlemmet vil blive fjernetfra alle kort på denne tavle. De vil modtage en notifikation.",
- "removeMemberPopup-title": "Fjern medlem?",
- "rename": "Omdøb",
- "rename-board": "Omdøb tavle",
- "restore": "Genskab",
- "save": "Gem",
- "search": "Søg",
- "rules": "Regler",
- "search-cards": "Søg ud fra titler i kort/lister, beskrivelser og brugerdefinerede felter på denne tavle. ",
- "search-example": "Write text you search and press Enter",
- "select-color": "Vælg farve",
- "select-board": "Select Board",
- "set-wip-limit-value": "Angiv en grænse for det maksimale antal opgaver i denne liste",
- "setWipLimitPopup-title": "Angiv WIP-begrænsning",
- "shortcut-assign-self": "Tilknyt dig selv til nuværende kort?",
- "shortcut-autocomplete-emoji": "Auto-fuldfør emoji",
- "shortcut-autocomplete-members": "Auto-fuldfør medlemmer",
- "shortcut-clear-filters": "Ryd alle filtre",
- "shortcut-close-dialog": "Luk dialogboks",
- "shortcut-filter-my-cards": "Filtrer mine kort",
- "shortcut-show-shortcuts": "Fremvis denne liste med genveje",
- "shortcut-toggle-filterbar": "Slå filter-sidebjælke til/fra",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Slå tavle-sidebjælke til/fra",
- "show-cards-minimum-count": "Vis antal kort når listen indeholder mere end",
- "sidebar-open": "Åbn sidebjælke",
- "sidebar-close": "Luk sidebjælke",
- "signupPopup-title": "Opret en konto",
- "star-board-title": "Klik for at stjernemarkere denne tavle. Den vil blive vist i toppen af din liste over tavler.",
- "starred-boards": "Tavler med stjerner",
- "starred-boards-description": "Tavler med stjerner vises i toppen af din liste over tavler.",
- "subscribe": "Abonnér",
- "team": "Team",
- "this-board": "denne tavle",
- "this-card": "dette kort",
- "spent-time-hours": "Anvendt tid (timer)",
- "overtime-hours": "Overtid (timer)",
- "overtime": "Overtid",
- "has-overtime-cards": "Har kort med overtid",
- "has-spenttime-cards": "Har kort med anvendt tid",
- "time": "Tid",
- "title": "Titel",
- "tracking": "Sporing",
- "tracking-info": "Du vil få notifikation om alle ændringer i kort som du har oprettet eller er medlem af.",
- "type": "Type",
- "unassign-member": "Fjern medlemstilknytning",
- "unsaved-description": "Du har en beskrivelse som ikke er gemt",
- "unwatch": "Ophør med at følge",
- "upload": "Overfør",
- "upload-avatar": "Overfør en avatar",
- "uploaded-avatar": "Overførte en avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Brugernavn",
- "view-it": "Vis den",
- "warn-list-archived": "advarsel: dette kort er i en liste i arkivet",
- "watch": "Følg",
- "watching": "Følger",
- "watching-info": "Du vil få notifikation om alle ændringer i denne tavle.",
- "welcome-board": "Velkomsttavle",
- "welcome-swimlane": "Milepæl 1",
- "welcome-list1": "Grundlæggende",
- "welcome-list2": "Avanceret",
- "card-templates-swimlane": "Kortskabeloner",
- "list-templates-swimlane": "Listeskabeloner",
- "board-templates-swimlane": "Tavleskabeloner",
- "what-to-do": "Hvad ønsker du at foretage dig?",
- "wipLimitErrorPopup-title": "Ugyldig WIP-begrænsning",
- "wipLimitErrorPopup-dialog-pt1": "Antallet af opgaver i denne liste er højere end WIP-begræsningen du har angivet.",
- "wipLimitErrorPopup-dialog-pt2": "Flyt venligst nogle af opgaverne ud af listen, eller angiv en højere WIP-begrænsning.",
- "admin-panel": "Admin-panel",
- "settings": "Indstillinger",
- "people": "Personer",
- "registration": "Tilmelding",
- "disable-self-registration": "Slå selv-tilmelding fra",
- "invite": "Invitér",
- "invite-people": "Invitér personer",
- "to-boards": "Til tavle(r)",
- "email-addresses": "E-mailadresser",
- "smtp-host-description": "Adressen på SMTP-serveren som håndterer din e-mail.",
- "smtp-port-description": "Den port som din SMTP-server benytter til udgående e-mail. ",
- "smtp-tls-description": "Slå TLS-understøttelse til for SMTP-serveren",
- "smtp-host": "SMTP-vært",
- "smtp-port": "SMTP-port",
- "smtp-username": "Brugernavn",
- "smtp-password": "Kodeord",
- "smtp-tls": "TLS-understøttelse",
- "send-from": "Fra",
- "send-smtp-test": "Send en e-mailtest til dig selv",
- "invitation-code": "Invitationskode",
- "email-invite-register-subject": "__inviter__ sendte dig en invitation",
- "email-invite-register-text": "Kære __user__,\n\n__inviter__ inviterer dig til at samarbejde på kanbantavlen.\n\nFølg venligst linket nedenfor:\n__url__\n\nDin invitationskode er: __icode__\n\nTak.",
- "email-smtp-test-subject": "SMTP for e-mailtest",
- "email-smtp-test-text": "Afsendelse af e-mail blev udført ",
- "error-invitation-code-not-exist": "Invitationskoden findes ikke",
- "error-notAuthorized": "Du har ikke tilladelse til at se denne side.",
- "webhook-title": "Navn på webhook",
- "webhook-token": "Token (valgfri til godkendelse)",
- "outgoing-webhooks": "Udgående webhooks",
- "bidirectional-webhooks": "To-vejs webhooks",
- "outgoingWebhooksPopup-title": "Udgående webhooks",
- "boardCardTitlePopup-title": "Filter for korttitel",
- "disable-webhook": "Slå denne webhook fra",
- "global-webhook": "Globale webhooks",
- "new-outgoing-webhook": "Ny udgående webhook",
- "no-name": "(Ukendt)",
- "Node_version": "Node-version",
- "Meteor_version": "Meteor-version",
- "MongoDB_version": "MongoDB-version",
- "MongoDB_storage_engine": "Lagringsmotor for MongoDB",
- "MongoDB_Oplog_enabled": "MongoDB Oplog er slået til",
- "OS_Arch": "OS - Arch",
- "OS_Cpus": "CPU-antal for OS",
- "OS_Freemem": "Fri hukommelse for OS",
- "OS_Loadavg": "Gns.belastning for OS",
- "OS_Platform": "OS-platform",
- "OS_Release": "OS-udgivelse",
- "OS_Totalmem": "Samlet hukommelse for OS",
- "OS_Type": "OS-type",
- "OS_Uptime": "OS-oppetid",
- "days": "dage",
- "hours": "timer",
- "minutes": "minutter",
- "seconds": "sekunder",
- "show-field-on-card": "Vis dette felt på kortet",
- "automatically-field-on-card": "Auto-opret felter på alle kort",
- "showLabel-field-on-card": "Vis feltetikette på minikort",
- "yes": "Ja",
- "no": "Nej",
- "accounts": "Konti",
- "accounts-allowEmailChange": "Tillad ændring af e-mail",
- "accounts-allowUserNameChange": "Tillad ændring af brugernavn",
- "createdAt": "Oprettet per",
- "verified": "Verificeret",
- "active": "Aktiv",
- "card-received": "Modtaget",
- "card-received-on": "Modtaget per",
- "card-end": "Slut",
- "card-end-on": "Slutter per",
- "editCardReceivedDatePopup-title": "Tilpas modtagelsesdato",
- "editCardEndDatePopup-title": "Tilpas slutdato",
- "setCardColorPopup-title": "Angiv farve",
- "setCardActionsColorPopup-title": "Vælg en farve",
- "setSwimlaneColorPopup-title": "Vælg en farve",
- "setListColorPopup-title": "Vælg en farve",
- "assigned-by": "Tildelt af",
- "requested-by": "Anmodet af",
- "board-delete-notice": "Sletning er permanent. Du vil miste alle lister, kort og handlinger knyttet til denne tavle.",
- "delete-board-confirm-popup": "Alle lister, kort, etiketter og aktiviteter vil blive slettet og du får ikke mulighed for at genskabe tavlens indhold. Dette kan ikke fortrydes.",
- "boardDeletePopup-title": "Slet tavle?",
- "delete-board": "Slet tavle",
- "default-subtasks-board": "Delopgaver for tavlen __board__",
- "default": "Standard",
- "queue": "Kø",
- "subtask-settings": "Indstillinger for delopgaver",
- "card-settings": "Indstillinger for kort",
- "boardSubtaskSettingsPopup-title": "Indstillinger for delopgaver i tavle",
- "boardCardSettingsPopup-title": "Indstillinger for kort",
- "deposit-subtasks-board": "Indsæt delopgaver på denne tavle: ",
- "deposit-subtasks-list": "Liste som der landes på, når delopgaver indsættes her:",
- "show-parent-in-minicard": "Vis overordnede i minikort:",
- "prefix-with-full-path": "Præfiks med fuld sti",
- "prefix-with-parent": "Præfiks med overordnede",
- "subtext-with-full-path": "Undertekst med fuld sti",
- "subtext-with-parent": "Undertekst med overordnede",
- "change-card-parent": "Skift kortets overordnede",
- "parent-card": "Overordnede kort",
- "source-board": "Kilde for tavle",
- "no-parent": "Vis ikke overordnede",
- "activity-added-label": "tilføjede etiketten '%s' til %s",
- "activity-removed-label": "tilføjede etiketten '%s' fra %s",
- "activity-delete-attach": "slettede en vedhæftning fra %s",
- "activity-added-label-card": "tilføjede etiketten '%s'",
- "activity-removed-label-card": "fjernede etiketten '%s'",
- "activity-delete-attach-card": "slettede en vedhæftning",
- "activity-set-customfield": "angiv brugerdefineret felt '%s' til '%s' i %s",
- "activity-unset-customfield": "fjernede brugerdefineret felt '%s' i %s",
- "r-rule": "Regel",
- "r-add-trigger": "Tilføj trigger-udløser",
- "r-add-action": "Tilføj handling",
- "r-board-rules": "Regler for tavle",
- "r-add-rule": "Tilføj regel",
- "r-view-rule": "Vis regel",
- "r-delete-rule": "Slet regel",
- "r-new-rule-name": "Ny titel for regel",
- "r-no-rules": "Ingen regler",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Når et kort",
- "r-is": "er",
- "r-is-moved": "flyttes",
- "r-added-to": "Tilføjet til",
- "r-removed-from": "Fjernes fra",
- "r-the-board": "tavlen",
- "r-list": "liste",
- "set-filter": "Angiv filter",
- "r-moved-to": "Flyttet til",
- "r-moved-from": "Flyttet fra",
- "r-archived": "Flyttet fra arkiv",
- "r-unarchived": "Genskabt fra arkiv",
- "r-a-card": "et kort",
- "r-when-a-label-is": "Når en etikette er",
- "r-when-the-label": "Når etiketten",
- "r-list-name": "listenavn",
- "r-when-a-member": "Når et medlem er",
- "r-when-the-member": "Når medlemmet",
- "r-name": "navn",
- "r-when-a-attach": "Når en vedhæftning",
- "r-when-a-checklist": "Når en tjekliste er",
- "r-when-the-checklist": "Når tjeklisten",
- "r-completed": "Fuldført",
- "r-made-incomplete": "Gjort ukomplet",
- "r-when-a-item": "Når et element i tjeklisten er",
- "r-when-the-item": "Når elementet i tjeklisten",
- "r-checked": "Markeret",
- "r-unchecked": "Umarkeret",
- "r-move-card-to": "Flyt kort til",
- "r-top-of": "Toppen af",
- "r-bottom-of": "Bunden af",
- "r-its-list": "dens liste",
- "r-archive": "Flyt til arkiv",
- "r-unarchive": "Genskab fra arkiv",
- "r-card": "kort",
- "r-add": "Tilføj",
- "r-remove": "Fjern",
- "r-label": "etikette",
- "r-member": "medlem",
- "r-remove-all": "Fjern alle medlemmer fra kortet",
- "r-set-color": "Angiv farven til",
- "r-checklist": "tjekliste",
- "r-check-all": "Markér alle",
- "r-uncheck-all": "Fravælg alle",
- "r-items-check": "elementer fra tjekliste",
- "r-check": "Markér",
- "r-uncheck": "Fravælg",
- "r-item": "element",
- "r-of-checklist": "fra tjekliste",
- "r-send-email": "Send en e-mail",
- "r-to": "til",
- "r-of": "af",
- "r-subject": "emne",
- "r-rule-details": "Detaljer for regel",
- "r-d-move-to-top-gen": "Flyt kortet til toppen af dens liste",
- "r-d-move-to-top-spec": "Flyt kortet til toppen af listen",
- "r-d-move-to-bottom-gen": "Flyt kortet til bunden af dens liste",
- "r-d-move-to-bottom-spec": "Flyt kortet til bunden af listen",
- "r-d-send-email": "Send e-mail",
- "r-d-send-email-to": "til",
- "r-d-send-email-subject": "emne",
- "r-d-send-email-message": "besked",
- "r-d-archive": "Flyt kortet til arkiv",
- "r-d-unarchive": "Genskab kort fra arkiv",
- "r-d-add-label": "Tilføj etikette",
- "r-d-remove-label": "Fjern etikette",
- "r-create-card": "Opret nyt kort",
- "r-in-list": "i liste",
- "r-in-swimlane": "i svømmebane",
- "r-d-add-member": "Tilføj medlem",
- "r-d-remove-member": "Fjern medlem",
- "r-d-remove-all-member": "Fjern alle medlemmer",
- "r-d-check-all": "Markér alle elementer fra en liste",
- "r-d-uncheck-all": "Fravælg alle elementer fra en liste",
- "r-d-check-one": "Markér element",
- "r-d-uncheck-one": "Fravælg element",
- "r-d-check-of-list": "fra tjekliste",
- "r-d-add-checklist": "Tilføj tjekliste",
- "r-d-remove-checklist": "Fjern tjekliste",
- "r-by": "af",
- "r-add-checklist": "Tilføj tjekliste",
- "r-with-items": "med elementer",
- "r-items-list": "element1,element2,element3",
- "r-add-swimlane": "Tilføj svømmebane",
- "r-swimlane-name": "navn på svømmebane",
- "r-board-note": "Bemærk: lad et felt stå tomt for at matche alle værdier.",
- "r-checklist-note": "Bemærk: tjeklistens elementer skal skrives som en kommaadskilte værdier.",
- "r-when-a-card-is-moved": "Når et kort flyttes til en anden liste.",
- "r-set": "Angiv",
- "r-update": "Opdatér",
- "r-datefield": "datofelt",
- "r-df-start-at": "start",
- "r-df-due-at": "forfalder",
- "r-df-end-at": "slutter",
- "r-df-received-at": "modtaget",
- "r-to-current-datetime": "til nuværende dato/tidspunkt",
- "r-remove-value-from": "Fjern værdi fra",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Godkendelsesmetode",
- "authentication-type": "Godkendelsestype",
- "custom-product-name": "Tilpasset produktnavn",
- "layout": "Layout",
- "hide-logo": "Skjul logo",
- "add-custom-html-after-body-start": "Tilføj tilpasset HTML efter start",
- "add-custom-html-before-body-end": "Tilføj tilpasset HTML før slutning",
- "error-undefined": "Noget gik galt",
- "error-ldap-login": "Fejl under forsøg på login",
- "display-authentication-method": "Vis godkendelsesmetode",
- "default-authentication-method": "Standard for godkendelsesmetode",
- "duplicate-board": "Duplikér tavle",
- "people-number": "Antallet af personer er:",
- "swimlaneDeletePopup-title": "Slet svømmebane?",
- "swimlane-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet, og du vil ikke kunne genskabe svømmebanen. Dette kan ikke fortrydes.",
- "restore-all": "Genskab alle",
- "delete-all": "Slet alle",
- "loading": "Indlæser, vent venligst",
- "previous_as": "seneste tidspunkt var",
- "act-a-dueAt": "ændrede forfaldstidspunkt til \nHvornår: __timeValue__\nHvor: __card__\n forrige forfaldstidspunkt var __timeOldValue__",
- "act-a-endAt": "ændrede sluttidspunkt til __timeValue__ fra (__timeOldValue__)",
- "act-a-startAt": "ændrede starttidspunkt til __timeValue__ fra (__timeOldValue__)",
- "act-a-receivedAt": "ændrede modtagelsestidspunkt til __timeValue__ fra (__timeOldValue__)",
- "a-dueAt": "ændrede forfaldstidspunkt til at være",
- "a-endAt": "ændrede sluttidspunkt til at være",
- "a-startAt": "ændrede starttidspunkt til at være",
- "a-receivedAt": "ændrede modtagelsestidspunkt til at være",
- "almostdue": "aktuelt forfaldstidspunkt %s nærmer sig",
- "pastdue": "aktuelt forfaldstidspunkt %s er passeret",
- "duenow": "aktuelt forfaldstidspunkt %s er i dag",
- "act-newDue": "__list__/__card__ har 1. påmindelse om forfald [__board__]",
- "act-withDue": "__list__/__card__ påmindelse om forfald [__board__]",
- "act-almostdue": "påmindede om at aktuelt forfald (__timeValue__) for __card__ nærmer sig",
- "act-pastdue": "påmindede om at aktuelt forfald (__timeValue__) of __card__ er passeret",
- "act-duenow": "påmindede om at aktuelt forfald (__timeValue__) of __card__ er nu",
- "act-atUserComment": "Du blev nævnt i [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Er du sikker på du vil slette denne konto? Det er ikke muligt at fortryde.",
- "accounts-allowUserDelete": "Tillad brugere at slette deres egen konto",
- "hide-minicard-label-text": "Skjul etiketteteksten for minikort",
- "show-desktop-drag-handles": "Vis trække-håndtag for skrivebord",
- "assignee": "Tildelt til",
- "cardAssigneesPopup-title": "Tildelt til",
- "addmore-detail": "Tilføj en mere detaljeret beskrivelse",
- "show-on-card": "Vis på kort",
- "new": "Ny",
- "editUserPopup-title": "Redigér bruger",
- "newUserPopup-title": "Ny bruger",
- "notifications": "Notifikationer",
- "view-all": "Vis alle",
- "filter-by-unread": "Filtrér efter ulæst",
- "mark-all-as-read": "Markér alle som læst",
- "remove-all-read": "Fjern alle læste",
- "allow-rename": "Tillad omdøb",
- "allowRenamePopup-title": "Tillad omdøb",
- "start-day-of-week": "Angiv dag for ugestart",
- "monday": "Mandag",
- "tuesday": "Tirsdag",
- "wednesday": "Onsdag",
- "thursday": "Torsdag",
- "friday": "Fredag",
- "saturday": "Lørdag",
- "sunday": "Søndag",
- "status": "Status",
- "swimlane": "Svømmebaner",
- "owner": "Ejer",
- "last-modified-at": "Senest ændret per",
- "last-activity": "Seneste aktivitet",
- "voting": "Afstemning",
- "archived": "Arkiveret",
- "delete-linked-card-before-this-card": "Du kan ikke slette dette kort før der slettes sammenkædede kort som har",
- "delete-linked-cards-before-this-list": "Du kan ikke slette denne liste før der slettes sammenkædede kort, der peger til kort i denne liste",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Acceptér",
+ "act-activity-notify": "Aktivitetsnotits",
+ "act-addAttachment": "tilføjede vedhæftningen __attachment__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-deleteAttachment": "slettede vedhæftning __attachment__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-addSubtask": "tilføjede delopgaven __subtask__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-addLabel": "Tilføjede etiketten __label__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-addedLabel": "Tilføjede etiketten __label__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-removeLabel": "Fjernede etiketten __label__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på kortet __board__",
+ "act-removedLabel": "Fjernede etiketten __label__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på kortet __board__",
+ "act-addChecklist": "tilføjede tjeklisten __checklist__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-addChecklistItem": "tilføjede elementet i tjekliste __checklistItem__ til tjeklisten __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-removeChecklist": "fjernede tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-removeChecklistItem": "fjernede elementet i tjekliste __checklistItem__ fra tjeklisten __checkList__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-checkedItem": "markerede __checklistItem__ fra tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-uncheckedItem": "afmarkerede __checklistItem__ fra tjeklisten __checklist__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-completeChecklist": "afsluttet tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-uncompleteChecklist": "uafsluttet tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-addComment": "kommenterede på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-editComment": "redigerede kommentar på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-deleteComment": "slettede kommentar på kortet __card__: __comment__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-createBoard": "oprettede tavlen __board__",
+ "act-createSwimlane": "oprettede svømmebanen __swimlane__ på tavlen __board__",
+ "act-createCard": "oprettede kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-createCustomField": "oprettede brugerdefineret felt __customField__ på tavlen __board__",
+ "act-deleteCustomField": "slettede brugerdefineret felt __customField__ på tavlen __board__",
+ "act-setCustomField": "redigerede brugerdefineret felt __customField__: __customFieldValue__ i kortet __card__ på lsten __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-createList": "tilføjede listen __list__ til tavlen __board__",
+ "act-addBoardMember": "tilføejede medlemmet __member__ til tavlen __board__",
+ "act-archivedBoard": "Tavlen __board__ blev flyttet til Arkiv",
+ "act-archivedCard": "Kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
+ "act-archivedList": "Listen __list__ i svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
+ "act-archivedSwimlane": "Svømmebanen __swimlane__ på tavlen __board__ er flyttet til arkivet",
+ "act-importBoard": "importerede tavlen __board__",
+ "act-importCard": "importerede kortet __card__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-importList": "importerede listen __list__ til svømmebanen __swimlane__ på tavlen __board__",
+ "act-joinMember": "tilføjede medlemmet __member__ til kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-moveCard": "flyttede kortet __card__ på tavlen __board__ fra listen __oldList__ i svømmebanen __oldSwimlane__ til listen __list__ i svømmebanen __swimlane__",
+ "act-moveCardToOtherBoard": "flyttede kortet __card__ fra listen __oldList__ i svømmebanen __oldSwimlane__ på tavlen __oldBoard__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-removeBoardMember": "fjernede medlemmet __member__ fra tavlen __board__",
+ "act-restoredCard": "genskabte kortet __card__ til listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-unjoinMember": "fjernede medlemmet __member__ fra kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Handlinger",
+ "activities": "Aktiviteter",
+ "activity": "Aktivitet",
+ "activity-added": "tilføjede %s til %s",
+ "activity-archived": "%s flyttet til Arkiv",
+ "activity-attached": "vedhæftede %s til %s",
+ "activity-created": "oprettede %s",
+ "activity-customfield-created": "oprettede brugerdefineret felt %s",
+ "activity-excluded": "ekskluderet %s fra %s",
+ "activity-imported": "importerede %s ind i %s fra %s",
+ "activity-imported-board": "importerede %s fra %s",
+ "activity-joined": "indgik i %s",
+ "activity-moved": "flyttede %s fra %s til %s",
+ "activity-on": "per %s",
+ "activity-removed": "fjernede %s fra %s",
+ "activity-sent": "sendte %s til %s",
+ "activity-unjoined": "udgik fra %s",
+ "activity-subtask-added": "tilføjede delopgave til %s",
+ "activity-checked-item": "afkrydsede %s i tjeklisten %s af %s",
+ "activity-unchecked-item": "fjernede kryds %s i tjeklisten %s af %s",
+ "activity-checklist-added": "tilføjede tjeklisten til %s",
+ "activity-checklist-removed": "fjernede en tjekliste fra %s",
+ "activity-checklist-completed": "færdiggjorde tjekliste %s af %s",
+ "activity-checklist-uncompleted": "gjorde tjeklisten ukomplet, %s af %s",
+ "activity-checklist-item-added": "tilføjede element i tjekliste til '%s' i %s",
+ "activity-checklist-item-removed": "fjernede element i tjekliste fra '%s' i %s",
+ "add": "Tilføj",
+ "activity-checked-item-card": "markerede %s i tjeklisten %s",
+ "activity-unchecked-item-card": "afmarkerede %s i tjeklisten %s",
+ "activity-checklist-completed-card": "udført tjekliste __checklist__ i kortet __card__ på listen __list__ i svømmebanen __swimlane__ på tavlen __board__",
+ "activity-checklist-uncompleted-card": "gjorde tjeklisten ukomplet %s",
+ "activity-editComment": "redigerede kommentar %s",
+ "activity-deleteComment": "slettede kommentar %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Tilføj vedhæftning",
+ "add-board": "Tilføj tavle",
+ "add-card": "Tilføj kort",
+ "add-swimlane": "Tilføj svømmebane",
+ "add-subtask": "Tilføj delopgave",
+ "add-checklist": "Tilføj tjekliste",
+ "add-checklist-item": "Tilføj et element til tjeklisten",
+ "add-cover": "Tilføj omslag",
+ "add-label": "Tilføj etikette",
+ "add-list": "Tilføj liste",
+ "add-members": "Tilføj medlemmer",
+ "added": "Tilføjet",
+ "addMemberPopup-title": "Medlemmer",
+ "admin": "Admin",
+ "admin-desc": "Kan se og redigere kort, fjerne medlemmer og ændre indstillinger for tavlen.",
+ "admin-announcement": "Annoncering",
+ "admin-announcement-active": "Aktivér annoncering på tværs af systemet",
+ "admin-announcement-title": "Annoncering fra administrator",
+ "all-boards": "Alle tavler",
+ "and-n-other-card": "Samt __count__ andre kort",
+ "and-n-other-card_plural": "Samt __count__ andre kort",
+ "apply": "Anvend",
+ "app-is-offline": "Indlæser, vent venligst. Genopfriskes siden er der risiko for tab af data. Fungerer indlæsningen ikke, så tjek venligst om serveren er stoppet. ",
+ "archive": "Flyt til arkiv",
+ "archive-all": "Flyt alle til arkiv",
+ "archive-board": "Flyt tavle til arkiv",
+ "archive-card": "Flyt kort til arkiv",
+ "archive-list": "Flyt liste til arkiv",
+ "archive-swimlane": "Flyt svømmebane til arkiv",
+ "archive-selection": "Flyt valgte til arkiv",
+ "archiveBoardPopup-title": "Flyt tavle til arkiv?",
+ "archived-items": "Arkiv",
+ "archived-boards": "Tavler i arkiv",
+ "restore-board": "Genskab tavle",
+ "no-archived-boards": "Ingen tavler i arkiv",
+ "archives": "Arkiv",
+ "template": "Skabelon",
+ "templates": "Skabeloner",
+ "assign-member": "Tilknyt medlem",
+ "attached": "vedhæftet",
+ "attachment": "Vedhæftning",
+ "attachment-delete-pop": "Slettes en vedhæftning sker det permanent. Det kan ikke omgøres. ",
+ "attachmentDeletePopup-title": "Slet vedhæftning?",
+ "attachments": "Vedhæftninger",
+ "auto-watch": "Følg automatisk tavler når de oprettes ",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Tilbage",
+ "board-change-color": "Skift farve",
+ "board-nb-stars": "%s stjerner",
+ "board-not-found": "Fandt ikke tavle ",
+ "board-private-info": "Denne tavle vil være privat.",
+ "board-public-info": "Denne tavle vil være offentlig.",
+ "boardChangeColorPopup-title": "Skift tavlens baggrund",
+ "boardChangeTitlePopup-title": "Omdøb tavle",
+ "boardChangeVisibilityPopup-title": "Tilpas synlighed",
+ "boardChangeWatchPopup-title": "Tilpas følgefunktion",
+ "boardMenuPopup-title": "Tavleindstillinger",
+ "boardChangeViewPopup-title": "Tavlevisning",
+ "boards": "Tavler",
+ "board-view": "Tavlevisning",
+ "board-view-cal": "Kalender",
+ "board-view-swimlanes": "Svømmebaner",
+ "board-view-collapse": "Sammenfold",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lister",
+ "bucket-example": "Eksempelvis \"Bucked-liste\"",
+ "cancel": "Annullér",
+ "card-archived": "Dette kort blev flyttet til arkivet.",
+ "board-archived": "Denne tavle blev flyttet til arkivet.",
+ "card-comments-title": "Dette kort har %s kommentar.",
+ "card-delete-notice": "Sletning vil være permanent. Du mister alle handlinger knyttet til dette kort.",
+ "card-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet, og du kan ikke genåbne kortet. Det kan ikke omgøres.",
+ "card-delete-suggest-archive": "Du kan flytte et kort til arkivet for at fjerne det fra tavlen, og bevare aktiviteten.",
+ "card-due": "Forfalder",
+ "card-due-on": "Forfaldsdato",
+ "card-spent": "Anvendt tid",
+ "card-edit-attachments": "Redigér vedhæftninger",
+ "card-edit-custom-fields": "Redigér brugerdefinerede felter",
+ "card-edit-labels": "Redigér etiketter",
+ "card-edit-members": "Redigér medlemmer",
+ "card-labels-title": "Ændr etiketter for kortet.",
+ "card-members-title": "Tilføj eller fjern medlemmer på tavlen fra kortet.",
+ "card-start": "Start",
+ "card-start-on": "Starter per",
+ "cardAttachmentsPopup-title": "Vedhæft fra",
+ "cardCustomField-datePopup-title": "Ændringsdato",
+ "cardCustomFieldsPopup-title": "Redigér brugerdefinerede felter",
+ "cardStartVotingPopup-title": "Start en stemmeafgivning",
+ "positiveVoteMembersPopup-title": "Tilhængere",
+ "negativeVoteMembersPopup-title": "Modstandere",
+ "card-edit-voting": "Redigér stemmeafgivelse",
+ "editVoteEndDatePopup-title": "Skift slutdato for afstemning",
+ "allowNonBoardMembers": "Tillad alle brugere som er logget ind",
+ "vote-question": "Spørgsmål til afstemning",
+ "vote-public": "Vis hvem som stemte hvad",
+ "vote-for-it": "går ind for",
+ "vote-against": "går imod",
+ "deleteVotePopup-title": "Slet afstemning?",
+ "vote-delete-pop": "Sletning er permanent. Du mister alle handlinger knyttet til denne afstemning.",
+ "cardDeletePopup-title": "Slet kort?",
+ "cardDetailsActionsPopup-title": "Handlinger for kort",
+ "cardLabelsPopup-title": "Etiketter",
+ "cardMembersPopup-title": "Medlemmer",
+ "cardMorePopup-title": "Mere",
+ "cardTemplatePopup-title": "Opret skabelon",
+ "cards": "Kort",
+ "cards-count": "Kort",
+ "casSignIn": "Log ind med CAS",
+ "cardType-card": "Kort",
+ "cardType-linkedCard": "Sammenkædet kort",
+ "cardType-linkedBoard": "Sammenkædet tavle",
+ "change": "Tilpas",
+ "change-avatar": "Tilpas avatar",
+ "change-password": "Skift kodeord",
+ "change-permissions": "Tilpas tilladelser",
+ "change-settings": "Tilpas indstillinger",
+ "changeAvatarPopup-title": "Tilpas avatar",
+ "changeLanguagePopup-title": "Skift sprog",
+ "changePasswordPopup-title": "Skift kodeord",
+ "changePermissionsPopup-title": "Tilpas tilladelser",
+ "changeSettingsPopup-title": "Tilpas indstillinger",
+ "subtasks": "Delopgaver",
+ "checklists": "Tjeklister",
+ "click-to-star": "Klik for at tilføje stjerne til tavlen.",
+ "click-to-unstar": "Klik for at fjerne stjerne fra tavlen.",
+ "clipboard": "Udklipsholder eller træk-og-slip",
+ "close": "Luk",
+ "close-board": "Luk tavle",
+ "close-board-pop": "Du har mulighed for at genskabe tavlen ved at klikke på \"Arkiv\"-knappen fra overskriften hjem.",
+ "color-black": "sort",
+ "color-blue": "blå",
+ "color-crimson": "crimsonrød",
+ "color-darkgreen": "mørkegrøn",
+ "color-gold": "guld",
+ "color-gray": "grå",
+ "color-green": "grøn",
+ "color-indigo": "indigoblå",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "lyserød",
+ "color-navy": "navyblå",
+ "color-orange": "orange",
+ "color-paleturquoise": "bleg turkis",
+ "color-peachpuff": "ferskenfarvet",
+ "color-pink": "pink",
+ "color-plum": "blommefarvet",
+ "color-purple": "lilla",
+ "color-red": "rød",
+ "color-saddlebrown": "saddelbrun",
+ "color-silver": "sølv",
+ "color-sky": "sky",
+ "color-slateblue": "blågrå",
+ "color-white": "hvid",
+ "color-yellow": "gul",
+ "unset-color": "Nulstil",
+ "comment": "Kommentér",
+ "comment-placeholder": "Skriv kommentar",
+ "comment-only": "Kun kommentarer",
+ "comment-only-desc": "Kan kun kommentere på kort.",
+ "no-comments": "Ingen kommentarer",
+ "no-comments-desc": "Kan ikke se kommentarer og aktiviteter.",
+ "worker": "Arbejder",
+ "worker-desc": "Kan kun flytte kort, tildele sig selv til kort og kommentere.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Er du sikker på du vil slette delopgaven?",
+ "confirm-checklist-delete-dialog": "Er du sikker på du vil slette tjeklisten?",
+ "copy-card-link-to-clipboard": "Kopiér link til kort til udklipsholder ",
+ "linkCardPopup-title": "Sammenkæd kort",
+ "searchElementPopup-title": "Søg",
+ "copyCardPopup-title": "Kopiér kort",
+ "copyChecklistToManyCardsPopup-title": "Kopiér tjeklisteskabelon til flere kort",
+ "copyChecklistToManyCardsPopup-instructions": "Destination for kortenes titler og beskrivelser i dette JSON-format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Opret",
+ "createBoardPopup-title": "Opret tavle",
+ "chooseBoardSourcePopup-title": "Importér tavle",
+ "createLabelPopup-title": "Opret etikette",
+ "createCustomField": "Opret felt",
+ "createCustomFieldPopup-title": "Opret felt",
+ "current": "nuværende",
+ "custom-field-delete-pop": "Du kan ikke fortryde handlingen. Dette vil fjerne dette brugerdefinerede felt fra alle kort og tilintetgøre dens historik.",
+ "custom-field-checkbox": "Afkrydsningsfelt",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Dato",
+ "custom-field-dropdown": "Rullegardinliste",
+ "custom-field-dropdown-none": "(ingen)",
+ "custom-field-dropdown-options": "Tilvalg for liste",
+ "custom-field-dropdown-options-placeholder": "Tryk enter for at tilføje flere tilvalg",
+ "custom-field-dropdown-unknown": "(ukendt)",
+ "custom-field-number": "Tal",
+ "custom-field-text": "Tekst",
+ "custom-fields": "Brugerdefinerede felter",
+ "date": "Dato",
+ "decline": "Afslå",
+ "default-avatar": "Standard-avatar",
+ "delete": "Slet",
+ "deleteCustomFieldPopup-title": "Slet brugerdefineret felt?",
+ "deleteLabelPopup-title": "Slet etikette?",
+ "description": "Beskrivelse",
+ "disambiguateMultiLabelPopup-title": "Tydeliggør handling for etikette",
+ "disambiguateMultiMemberPopup-title": "Tydeliggør handling for medlem",
+ "discard": "Forkast",
+ "done": "Færdig",
+ "download": "Hent",
+ "edit": "Redigér",
+ "edit-avatar": "Tilpas avatar",
+ "edit-profile": "Redigér profil",
+ "edit-wip-limit": "Redigér WIP-begrænsning",
+ "soft-wip-limit": "Blød WIP-begrænsning",
+ "editCardStartDatePopup-title": "Skift startdato",
+ "editCardDueDatePopup-title": "Skift forfaldsdato",
+ "editCustomFieldPopup-title": "Redigér felt",
+ "editCardSpentTimePopup-title": "Tilpas forbrugt tid",
+ "editLabelPopup-title": "Skift etikette",
+ "editNotificationPopup-title": "Redigér notifikation",
+ "editProfilePopup-title": "Redigér profil",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Der er oprettet konto til dig på __siteName__",
+ "email-enrollAccount-text": "Hej __user__,\n\nFor at begynde at benytte tjenesten, så klik linket nedenfor.\n\n__url__\n\nTak.",
+ "email-fail": "Afsendelse af e-mail mislykkedes",
+ "email-fail-text": "Fejl under afsendelse af e-mail",
+ "email-invalid": "Ugyldig e-mail",
+ "email-invite": "Invitér via e-mail",
+ "email-invite-subject": "__inviter__ sendte dig en invitation",
+ "email-invite-text": "Kære __user__,\n\n__inviter__ inviterer dig til deltagelse i tavlen \"__board__\" for samarbejde.\n\nFølg venligst linket nedenfor:\n\n__url__\n\nTak.",
+ "email-resetPassword-subject": "Genskab dit kodeord på __siteName__",
+ "email-resetPassword-text": "Hej __user__,\n\nFor at genskabe dit kodeord, så klik linket nedenfor your password.\n\n__url__\n\nTak.",
+ "email-sent": "E-mail er afsendt",
+ "email-verifyEmail-subject": "Verificér din e-mailadresse på your __siteName__",
+ "email-verifyEmail-text": "Hej __user__,\n\nFor at verificere din e-mail for kontoen, så klik på linket nedenfor.\n\n__url__\n\nTak.",
+ "enable-wip-limit": "Slå WIP-begrænsning til",
+ "error-board-doesNotExist": "Denne tavle eksisterer ikke.",
+ "error-board-notAdmin": "Du skal være administrator for tavlen for at gøre dette",
+ "error-board-notAMember": "Du skal være medlem af denne tavle for at gøre dette",
+ "error-json-malformed": "Din tekst er ikke gyldig JSON",
+ "error-json-schema": "Dine JSON-data indeholder ikke den rette information i det rette format",
+ "error-csv-schema": "Din CSV (kommaseparerede værdier)/TSV (Tabulatorseparerede værdier) indeholder ikke den rette information i det korrekte format",
+ "error-list-doesNotExist": "Listen findes ikke",
+ "error-user-doesNotExist": "Brugeren findes ikke",
+ "error-user-notAllowSelf": "Du kan ikke invitere dig selv",
+ "error-user-notCreated": "Brugeren er ikke oprettet",
+ "error-username-taken": "Brugernavnet er optaget",
+ "error-email-taken": "E-mailadressen er allerede optaget",
+ "export-board": "Eksportér tavle",
+ "export-board-json": "Eksportér tavle til JSON",
+ "export-board-csv": "Eksportér tavle til CSV",
+ "export-board-tsv": "Eksportér tavle til TSV",
+ "export-board-html": "Eksportér tavle til HTML",
+ "exportBoardPopup-title": "Eksportér tavle",
+ "sort": "Sortér",
+ "sort-desc": "Klik for at sortere listen",
+ "list-sort-by": "Sortér listen efter:",
+ "list-label-modifiedAt": "Senest tilgået:",
+ "list-label-title": "Navn på listen",
+ "list-label-sort": "Din manuelle ordre",
+ "list-label-short-modifiedAt": "(S)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filtrér kort eller lister",
+ "list-filter-label": "Filtrér lister efter titel",
+ "filter-clear": "Ryd filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Ingen etikette",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Ingen medlemmer",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "Utildelt",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Ingen brugerdefinerede felter",
+ "filter-show-archive": "Vis arkiverede lister",
+ "filter-hide-empty": "Skjul tomme lister",
+ "filter-on": "Filter er slået til",
+ "filter-on-desc": "Du filtrerer kort på denne tavle. Klik her for at redigere filteret.",
+ "filter-to-selection": "Filtrér til valgte",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Avanceret filter",
+ "advanced-filter-description": "Avanceret filter gør det muligt at skrive en tekststreng indeholdende følgende operatører: == != <= >= && || ( ) Mellemrum anvendes som adskillelsestegn mellem operatørerne. Du kan filtrere alle Brugerdefinerede felter ved at taste deres navne og værdier. Som eksempel: Felt1 == Værdi1. Bemærk: Hvis felter eller værdier indeholder mellemrum, så skal du indkapsle dem i enkeltcitationstegn. Som eksempel: 'Felt 1' == 'Værdi1'. For at springe over enkelte kontroltegn (' \\/), så kan \\ benyttes. Som eksempel: Felt1 == Så\\'n. Du kan også kombinere flere betingelser. Som eksempel: F1 == V1 || F1 == V2. Normalt vil alle operatører blive fortolket fra venstre mod højre. Du kan ændre rækkefølgen ved brug af parenteser. Som eksempel: F1 == V1 && (F2 == V2 || F2 == V3). Du kan også søge i tekstfelter med brug af regulære udtryk: F1 == /Tes.*/i",
+ "fullname": "Fuldt navn",
+ "header-logo-title": "Gå tilbage til siden med dine tavler",
+ "hide-system-messages": "Skjul systembeskeder",
+ "headerBarCreateBoardPopup-title": "Opret tavle",
+ "home": "Hjem",
+ "import": "Importér",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "importér tavle",
+ "import-board-c": "Importér tavle",
+ "import-board-title-trello": "Importér tavle fra Trello",
+ "import-board-title-wekan": "Importér tavler fra tidligere eksport",
+ "import-board-title-csv": "Importér tavle fra CSV/TSV",
+ "from-trello": "Fra Trello",
+ "from-wekan": "Fra forrige eksport",
+ "from-csv": "Fra CSV/TSV",
+ "import-board-instruction-trello": "I din Trello-tavle, gå til 'Menu', dernæst 'More', 'Print and Export', 'Export JSON', og kopiér den tekst som vises.",
+ "import-board-instruction-csv": "Indsæt dine kommaseparerede værdier (CSV)/ Tabulatorseparerede værdier (TSV).",
+ "import-board-instruction-wekan": "På din tavle, gå til 'Menu', dernæst 'Eksportér tavle', og kopiér teksten i den hentede fil.",
+ "import-board-instruction-about-errors": "Hvis du får fejl når der importeres en tavle, så vil importen undertiden stadig fungere, og tavlen vil være under side Alle tavler.",
+ "import-json-placeholder": "Indsæt dine gyldige JSON-data her",
+ "import-csv-placeholder": "Indsæt din valide CSV/TSV-data her",
+ "import-map-members": "Kortlæg medlemmer",
+ "import-members-map": "Dine importerede tavler rummer medlemmer. Kortlæg venligst de medlemmer du ønsker at importere til dine brugere.",
+ "import-show-user-mapping": "Gennemse kortlægning af medlemmer",
+ "import-user-select": "Vælg din eksisterende bruger, som du ønsker at bruge for dette medlem",
+ "importMapMembersAddPopup-title": "Vælg medlem",
+ "info": "Version",
+ "initials": "Initialer",
+ "invalid-date": "Ugyldig dato",
+ "invalid-time": "Ugyldig tidsangivelse",
+ "invalid-user": "Ugyldig bruger",
+ "joined": "sluttede sig til",
+ "just-invited": "Du er netop blevet inviteret til denne tavle",
+ "keyboard-shortcuts": "Tastaturgenveje",
+ "label-create": "Opret etikette",
+ "label-default": "%s etikette (standard)",
+ "label-delete-pop": "Det er ikke muligt at fortryde. Dette vil fjerne etiketten fra alle kort og ødelægge dets historik.",
+ "labels": "Etiketter",
+ "language": "Sprog",
+ "last-admin-desc": "Du kan ikke ændre roller, da der mindst skal være én administrator.",
+ "leave-board": "Forlad tavle",
+ "leave-board-pop": "Er du sikker på du vil forlade __boardTitle__? Du vil blive fjernet fra alle kort på denne tavle.",
+ "leaveBoardPopup-title": "Forlad tavle?",
+ "link-card": "Link til dette kort",
+ "list-archive-cards": "Flyt alle kort i denne liste til arkivet",
+ "list-archive-cards-pop": "Dette vil fjerne alle kort i denne liste fra tavlen. For at se kort i arkivet og bringe dem tilbage til tavlen, så klik \"Menu\" > \"Arkiv\".",
+ "list-move-cards": "Flyt alle kort i denne liste",
+ "list-select-cards": "Vælg alle kort i denne liste",
+ "set-color-list": "Angiv farve",
+ "listActionPopup-title": "Handlinger for liste",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Handlinger for svømmebane",
+ "swimlaneAddPopup-title": "Tilføj en svømmebane nedenfor",
+ "listImportCardPopup-title": "Importér et Trello-kort",
+ "listImportCardsTsvPopup-title": "Importér Excel CSV/TSV",
+ "listMorePopup-title": "Mere",
+ "link-list": "Link til denne liste",
+ "list-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet og du vil ikke have mulighed for at genskabe listen. Der er ingen måder at fortryde. ",
+ "list-delete-suggest-archive": "Du kan flytte en liste til arkivet for at fjerne det fra tavlen og bevare dets aktivitet.",
+ "lists": "Lister",
+ "swimlanes": "Svømmebaner",
+ "log-out": "Log ud",
+ "log-in": "Log ind",
+ "loginPopup-title": "Log ind",
+ "memberMenuPopup-title": "Medlemsindstillinger",
+ "members": "Medlemmer",
+ "menu": "Menu",
+ "move-selection": "Flyt valgte",
+ "moveCardPopup-title": "Flyt kort",
+ "moveCardToBottom-title": "Flyt til bunden",
+ "moveCardToTop-title": "Flyt til toppen",
+ "moveSelectionPopup-title": "Flyt valgte",
+ "multi-selection": "Multivalg",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multivalg er slået til",
+ "muted": "Slukket",
+ "muted-info": "Du vil aldrig få notifikationer om ændringer i denne tavle",
+ "my-boards": "Mine tavler",
+ "name": "Navn",
+ "no-archived-cards": "Ingen kort i arkivet.",
+ "no-archived-lists": "Ingen lister i arkivet.",
+ "no-archived-swimlanes": "Ingen svømmebaner i arkivet.",
+ "no-results": "Ingen resultater",
+ "normal": "Normal",
+ "normal-desc": "Du kan se og redigere kort. Indstillinger kan ikke ændres.",
+ "not-accepted-yet": "Invitation er endnu ikke accepteret",
+ "notify-participate": "Modtag opdateringer for alle kort du deltager i, som opretter eller medlem ",
+ "notify-watch": "Modtag opdateringer for alle tavler eller kort som du følger ",
+ "optional": "valgfri",
+ "or": "eller",
+ "page-maybe-private": "Denne side kan være privat. Du kan eventuelt se den ved at logge ind.",
+ "page-not-found": "Siden blev ikke fundet.",
+ "password": "Kodeord",
+ "paste-or-dragdrop": "for at indsætte eller træk-og-slip billedfilen til den (kun billede)",
+ "participating": "Deltager",
+ "preview": "Forhåndsvisning",
+ "previewAttachedImagePopup-title": "Forhåndsvisning",
+ "previewClipboardImagePopup-title": "Forhåndsvisning",
+ "private": "Privat",
+ "private-desc": "Denne tavle er privat. Det er kun tilføjede personer som kan se og redigere den. ",
+ "profile": "Profil",
+ "public": "Offentlig",
+ "public-desc": "Denne tavle er offentlig. Den er synlig for alle med linket og vil blive vist i søgemaskiner som Google. Det er kun personer tilføjet til tavlen, der kan redigere. ",
+ "quick-access-description": "Stjernemarkér en tavle for at tilføje genvej i denne bjælke.",
+ "remove-cover": "Fjern omslag",
+ "remove-from-board": "Fjern fra tavle",
+ "remove-label": "Fjern etikette",
+ "listDeletePopup-title": "Slet liste?",
+ "remove-member": "Fjern medlem",
+ "remove-member-from-card": "Fjern fra kort",
+ "remove-member-pop": "Fjern __name__ (__username__) fra __boardTitle__? Medlemmet vil blive fjernetfra alle kort på denne tavle. De vil modtage en notifikation.",
+ "removeMemberPopup-title": "Fjern medlem?",
+ "rename": "Omdøb",
+ "rename-board": "Omdøb tavle",
+ "restore": "Genskab",
+ "save": "Gem",
+ "search": "Søg",
+ "rules": "Regler",
+ "search-cards": "Søg ud fra titler i kort/lister, beskrivelser og brugerdefinerede felter på denne tavle. ",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Vælg farve",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Angiv en grænse for det maksimale antal opgaver i denne liste",
+ "setWipLimitPopup-title": "Angiv WIP-begrænsning",
+ "shortcut-assign-self": "Tilknyt dig selv til nuværende kort?",
+ "shortcut-autocomplete-emoji": "Auto-fuldfør emoji",
+ "shortcut-autocomplete-members": "Auto-fuldfør medlemmer",
+ "shortcut-clear-filters": "Ryd alle filtre",
+ "shortcut-close-dialog": "Luk dialogboks",
+ "shortcut-filter-my-cards": "Filtrer mine kort",
+ "shortcut-show-shortcuts": "Fremvis denne liste med genveje",
+ "shortcut-toggle-filterbar": "Slå filter-sidebjælke til/fra",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Slå tavle-sidebjælke til/fra",
+ "show-cards-minimum-count": "Vis antal kort når listen indeholder mere end",
+ "sidebar-open": "Åbn sidebjælke",
+ "sidebar-close": "Luk sidebjælke",
+ "signupPopup-title": "Opret en konto",
+ "star-board-title": "Klik for at stjernemarkere denne tavle. Den vil blive vist i toppen af din liste over tavler.",
+ "starred-boards": "Tavler med stjerner",
+ "starred-boards-description": "Tavler med stjerner vises i toppen af din liste over tavler.",
+ "subscribe": "Abonnér",
+ "team": "Team",
+ "this-board": "denne tavle",
+ "this-card": "dette kort",
+ "spent-time-hours": "Anvendt tid (timer)",
+ "overtime-hours": "Overtid (timer)",
+ "overtime": "Overtid",
+ "has-overtime-cards": "Har kort med overtid",
+ "has-spenttime-cards": "Har kort med anvendt tid",
+ "time": "Tid",
+ "title": "Titel",
+ "tracking": "Sporing",
+ "tracking-info": "Du vil få notifikation om alle ændringer i kort som du har oprettet eller er medlem af.",
+ "type": "Type",
+ "unassign-member": "Fjern medlemstilknytning",
+ "unsaved-description": "Du har en beskrivelse som ikke er gemt",
+ "unwatch": "Ophør med at følge",
+ "upload": "Overfør",
+ "upload-avatar": "Overfør en avatar",
+ "uploaded-avatar": "Overførte en avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Brugernavn",
+ "view-it": "Vis den",
+ "warn-list-archived": "advarsel: dette kort er i en liste i arkivet",
+ "watch": "Følg",
+ "watching": "Følger",
+ "watching-info": "Du vil få notifikation om alle ændringer i denne tavle.",
+ "welcome-board": "Velkomsttavle",
+ "welcome-swimlane": "Milepæl 1",
+ "welcome-list1": "Grundlæggende",
+ "welcome-list2": "Avanceret",
+ "card-templates-swimlane": "Kortskabeloner",
+ "list-templates-swimlane": "Listeskabeloner",
+ "board-templates-swimlane": "Tavleskabeloner",
+ "what-to-do": "Hvad ønsker du at foretage dig?",
+ "wipLimitErrorPopup-title": "Ugyldig WIP-begrænsning",
+ "wipLimitErrorPopup-dialog-pt1": "Antallet af opgaver i denne liste er højere end WIP-begræsningen du har angivet.",
+ "wipLimitErrorPopup-dialog-pt2": "Flyt venligst nogle af opgaverne ud af listen, eller angiv en højere WIP-begrænsning.",
+ "admin-panel": "Admin-panel",
+ "settings": "Indstillinger",
+ "people": "Personer",
+ "registration": "Tilmelding",
+ "disable-self-registration": "Slå selv-tilmelding fra",
+ "invite": "Invitér",
+ "invite-people": "Invitér personer",
+ "to-boards": "Til tavle(r)",
+ "email-addresses": "E-mailadresser",
+ "smtp-host-description": "Adressen på SMTP-serveren som håndterer din e-mail.",
+ "smtp-port-description": "Den port som din SMTP-server benytter til udgående e-mail. ",
+ "smtp-tls-description": "Slå TLS-understøttelse til for SMTP-serveren",
+ "smtp-host": "SMTP-vært",
+ "smtp-port": "SMTP-port",
+ "smtp-username": "Brugernavn",
+ "smtp-password": "Kodeord",
+ "smtp-tls": "TLS-understøttelse",
+ "send-from": "Fra",
+ "send-smtp-test": "Send en e-mailtest til dig selv",
+ "invitation-code": "Invitationskode",
+ "email-invite-register-subject": "__inviter__ sendte dig en invitation",
+ "email-invite-register-text": "Kære __user__,\n\n__inviter__ inviterer dig til at samarbejde på kanbantavlen.\n\nFølg venligst linket nedenfor:\n__url__\n\nDin invitationskode er: __icode__\n\nTak.",
+ "email-smtp-test-subject": "SMTP for e-mailtest",
+ "email-smtp-test-text": "Afsendelse af e-mail blev udført ",
+ "error-invitation-code-not-exist": "Invitationskoden findes ikke",
+ "error-notAuthorized": "Du har ikke tilladelse til at se denne side.",
+ "webhook-title": "Navn på webhook",
+ "webhook-token": "Token (valgfri til godkendelse)",
+ "outgoing-webhooks": "Udgående webhooks",
+ "bidirectional-webhooks": "To-vejs webhooks",
+ "outgoingWebhooksPopup-title": "Udgående webhooks",
+ "boardCardTitlePopup-title": "Filter for korttitel",
+ "disable-webhook": "Slå denne webhook fra",
+ "global-webhook": "Globale webhooks",
+ "new-outgoing-webhook": "Ny udgående webhook",
+ "no-name": "(Ukendt)",
+ "Node_version": "Node-version",
+ "Meteor_version": "Meteor-version",
+ "MongoDB_version": "MongoDB-version",
+ "MongoDB_storage_engine": "Lagringsmotor for MongoDB",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog er slået til",
+ "OS_Arch": "OS - Arch",
+ "OS_Cpus": "CPU-antal for OS",
+ "OS_Freemem": "Fri hukommelse for OS",
+ "OS_Loadavg": "Gns.belastning for OS",
+ "OS_Platform": "OS-platform",
+ "OS_Release": "OS-udgivelse",
+ "OS_Totalmem": "Samlet hukommelse for OS",
+ "OS_Type": "OS-type",
+ "OS_Uptime": "OS-oppetid",
+ "days": "dage",
+ "hours": "timer",
+ "minutes": "minutter",
+ "seconds": "sekunder",
+ "show-field-on-card": "Vis dette felt på kortet",
+ "automatically-field-on-card": "Auto-opret felter på alle kort",
+ "showLabel-field-on-card": "Vis feltetikette på minikort",
+ "yes": "Ja",
+ "no": "Nej",
+ "accounts": "Konti",
+ "accounts-allowEmailChange": "Tillad ændring af e-mail",
+ "accounts-allowUserNameChange": "Tillad ændring af brugernavn",
+ "createdAt": "Oprettet per",
+ "verified": "Verificeret",
+ "active": "Aktiv",
+ "card-received": "Modtaget",
+ "card-received-on": "Modtaget per",
+ "card-end": "Slut",
+ "card-end-on": "Slutter per",
+ "editCardReceivedDatePopup-title": "Tilpas modtagelsesdato",
+ "editCardEndDatePopup-title": "Tilpas slutdato",
+ "setCardColorPopup-title": "Angiv farve",
+ "setCardActionsColorPopup-title": "Vælg en farve",
+ "setSwimlaneColorPopup-title": "Vælg en farve",
+ "setListColorPopup-title": "Vælg en farve",
+ "assigned-by": "Tildelt af",
+ "requested-by": "Anmodet af",
+ "board-delete-notice": "Sletning er permanent. Du vil miste alle lister, kort og handlinger knyttet til denne tavle.",
+ "delete-board-confirm-popup": "Alle lister, kort, etiketter og aktiviteter vil blive slettet og du får ikke mulighed for at genskabe tavlens indhold. Dette kan ikke fortrydes.",
+ "boardDeletePopup-title": "Slet tavle?",
+ "delete-board": "Slet tavle",
+ "default-subtasks-board": "Delopgaver for tavlen __board__",
+ "default": "Standard",
+ "queue": "Kø",
+ "subtask-settings": "Indstillinger for delopgaver",
+ "card-settings": "Indstillinger for kort",
+ "boardSubtaskSettingsPopup-title": "Indstillinger for delopgaver i tavle",
+ "boardCardSettingsPopup-title": "Indstillinger for kort",
+ "deposit-subtasks-board": "Indsæt delopgaver på denne tavle: ",
+ "deposit-subtasks-list": "Liste som der landes på, når delopgaver indsættes her:",
+ "show-parent-in-minicard": "Vis overordnede i minikort:",
+ "prefix-with-full-path": "Præfiks med fuld sti",
+ "prefix-with-parent": "Præfiks med overordnede",
+ "subtext-with-full-path": "Undertekst med fuld sti",
+ "subtext-with-parent": "Undertekst med overordnede",
+ "change-card-parent": "Skift kortets overordnede",
+ "parent-card": "Overordnede kort",
+ "source-board": "Kilde for tavle",
+ "no-parent": "Vis ikke overordnede",
+ "activity-added-label": "tilføjede etiketten '%s' til %s",
+ "activity-removed-label": "tilføjede etiketten '%s' fra %s",
+ "activity-delete-attach": "slettede en vedhæftning fra %s",
+ "activity-added-label-card": "tilføjede etiketten '%s'",
+ "activity-removed-label-card": "fjernede etiketten '%s'",
+ "activity-delete-attach-card": "slettede en vedhæftning",
+ "activity-set-customfield": "angiv brugerdefineret felt '%s' til '%s' i %s",
+ "activity-unset-customfield": "fjernede brugerdefineret felt '%s' i %s",
+ "r-rule": "Regel",
+ "r-add-trigger": "Tilføj trigger-udløser",
+ "r-add-action": "Tilføj handling",
+ "r-board-rules": "Regler for tavle",
+ "r-add-rule": "Tilføj regel",
+ "r-view-rule": "Vis regel",
+ "r-delete-rule": "Slet regel",
+ "r-new-rule-name": "Ny titel for regel",
+ "r-no-rules": "Ingen regler",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Når et kort",
+ "r-is": "er",
+ "r-is-moved": "flyttes",
+ "r-added-to": "Tilføjet til",
+ "r-removed-from": "Fjernes fra",
+ "r-the-board": "tavlen",
+ "r-list": "liste",
+ "set-filter": "Angiv filter",
+ "r-moved-to": "Flyttet til",
+ "r-moved-from": "Flyttet fra",
+ "r-archived": "Flyttet fra arkiv",
+ "r-unarchived": "Genskabt fra arkiv",
+ "r-a-card": "et kort",
+ "r-when-a-label-is": "Når en etikette er",
+ "r-when-the-label": "Når etiketten",
+ "r-list-name": "listenavn",
+ "r-when-a-member": "Når et medlem er",
+ "r-when-the-member": "Når medlemmet",
+ "r-name": "navn",
+ "r-when-a-attach": "Når en vedhæftning",
+ "r-when-a-checklist": "Når en tjekliste er",
+ "r-when-the-checklist": "Når tjeklisten",
+ "r-completed": "Fuldført",
+ "r-made-incomplete": "Gjort ukomplet",
+ "r-when-a-item": "Når et element i tjeklisten er",
+ "r-when-the-item": "Når elementet i tjeklisten",
+ "r-checked": "Markeret",
+ "r-unchecked": "Umarkeret",
+ "r-move-card-to": "Flyt kort til",
+ "r-top-of": "Toppen af",
+ "r-bottom-of": "Bunden af",
+ "r-its-list": "dens liste",
+ "r-archive": "Flyt til arkiv",
+ "r-unarchive": "Genskab fra arkiv",
+ "r-card": "kort",
+ "r-add": "Tilføj",
+ "r-remove": "Fjern",
+ "r-label": "etikette",
+ "r-member": "medlem",
+ "r-remove-all": "Fjern alle medlemmer fra kortet",
+ "r-set-color": "Angiv farven til",
+ "r-checklist": "tjekliste",
+ "r-check-all": "Markér alle",
+ "r-uncheck-all": "Fravælg alle",
+ "r-items-check": "elementer fra tjekliste",
+ "r-check": "Markér",
+ "r-uncheck": "Fravælg",
+ "r-item": "element",
+ "r-of-checklist": "fra tjekliste",
+ "r-send-email": "Send en e-mail",
+ "r-to": "til",
+ "r-of": "af",
+ "r-subject": "emne",
+ "r-rule-details": "Detaljer for regel",
+ "r-d-move-to-top-gen": "Flyt kortet til toppen af dens liste",
+ "r-d-move-to-top-spec": "Flyt kortet til toppen af listen",
+ "r-d-move-to-bottom-gen": "Flyt kortet til bunden af dens liste",
+ "r-d-move-to-bottom-spec": "Flyt kortet til bunden af listen",
+ "r-d-send-email": "Send e-mail",
+ "r-d-send-email-to": "til",
+ "r-d-send-email-subject": "emne",
+ "r-d-send-email-message": "besked",
+ "r-d-archive": "Flyt kortet til arkiv",
+ "r-d-unarchive": "Genskab kort fra arkiv",
+ "r-d-add-label": "Tilføj etikette",
+ "r-d-remove-label": "Fjern etikette",
+ "r-create-card": "Opret nyt kort",
+ "r-in-list": "i liste",
+ "r-in-swimlane": "i svømmebane",
+ "r-d-add-member": "Tilføj medlem",
+ "r-d-remove-member": "Fjern medlem",
+ "r-d-remove-all-member": "Fjern alle medlemmer",
+ "r-d-check-all": "Markér alle elementer fra en liste",
+ "r-d-uncheck-all": "Fravælg alle elementer fra en liste",
+ "r-d-check-one": "Markér element",
+ "r-d-uncheck-one": "Fravælg element",
+ "r-d-check-of-list": "fra tjekliste",
+ "r-d-add-checklist": "Tilføj tjekliste",
+ "r-d-remove-checklist": "Fjern tjekliste",
+ "r-by": "af",
+ "r-add-checklist": "Tilføj tjekliste",
+ "r-with-items": "med elementer",
+ "r-items-list": "element1,element2,element3",
+ "r-add-swimlane": "Tilføj svømmebane",
+ "r-swimlane-name": "navn på svømmebane",
+ "r-board-note": "Bemærk: lad et felt stå tomt for at matche alle værdier.",
+ "r-checklist-note": "Bemærk: tjeklistens elementer skal skrives som en kommaadskilte værdier.",
+ "r-when-a-card-is-moved": "Når et kort flyttes til en anden liste.",
+ "r-set": "Angiv",
+ "r-update": "Opdatér",
+ "r-datefield": "datofelt",
+ "r-df-start-at": "start",
+ "r-df-due-at": "forfalder",
+ "r-df-end-at": "slutter",
+ "r-df-received-at": "modtaget",
+ "r-to-current-datetime": "til nuværende dato/tidspunkt",
+ "r-remove-value-from": "Fjern værdi fra",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Godkendelsesmetode",
+ "authentication-type": "Godkendelsestype",
+ "custom-product-name": "Tilpasset produktnavn",
+ "layout": "Layout",
+ "hide-logo": "Skjul logo",
+ "add-custom-html-after-body-start": "Tilføj tilpasset HTML efter start",
+ "add-custom-html-before-body-end": "Tilføj tilpasset HTML før slutning",
+ "error-undefined": "Noget gik galt",
+ "error-ldap-login": "Fejl under forsøg på login",
+ "display-authentication-method": "Vis godkendelsesmetode",
+ "default-authentication-method": "Standard for godkendelsesmetode",
+ "duplicate-board": "Duplikér tavle",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Antallet af personer er:",
+ "swimlaneDeletePopup-title": "Slet svømmebane?",
+ "swimlane-delete-pop": "Alle handlinger vil blive fjernet fra aktivitetsfeedet, og du vil ikke kunne genskabe svømmebanen. Dette kan ikke fortrydes.",
+ "restore-all": "Genskab alle",
+ "delete-all": "Slet alle",
+ "loading": "Indlæser, vent venligst",
+ "previous_as": "seneste tidspunkt var",
+ "act-a-dueAt": "ændrede forfaldstidspunkt til \nHvornår: __timeValue__\nHvor: __card__\n forrige forfaldstidspunkt var __timeOldValue__",
+ "act-a-endAt": "ændrede sluttidspunkt til __timeValue__ fra (__timeOldValue__)",
+ "act-a-startAt": "ændrede starttidspunkt til __timeValue__ fra (__timeOldValue__)",
+ "act-a-receivedAt": "ændrede modtagelsestidspunkt til __timeValue__ fra (__timeOldValue__)",
+ "a-dueAt": "ændrede forfaldstidspunkt til at være",
+ "a-endAt": "ændrede sluttidspunkt til at være",
+ "a-startAt": "ændrede starttidspunkt til at være",
+ "a-receivedAt": "ændrede modtagelsestidspunkt til at være",
+ "almostdue": "aktuelt forfaldstidspunkt %s nærmer sig",
+ "pastdue": "aktuelt forfaldstidspunkt %s er passeret",
+ "duenow": "aktuelt forfaldstidspunkt %s er i dag",
+ "act-newDue": "__list__/__card__ har 1. påmindelse om forfald [__board__]",
+ "act-withDue": "__list__/__card__ påmindelse om forfald [__board__]",
+ "act-almostdue": "påmindede om at aktuelt forfald (__timeValue__) for __card__ nærmer sig",
+ "act-pastdue": "påmindede om at aktuelt forfald (__timeValue__) of __card__ er passeret",
+ "act-duenow": "påmindede om at aktuelt forfald (__timeValue__) of __card__ er nu",
+ "act-atUserComment": "Du blev nævnt i [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Er du sikker på du vil slette denne konto? Det er ikke muligt at fortryde.",
+ "accounts-allowUserDelete": "Tillad brugere at slette deres egen konto",
+ "hide-minicard-label-text": "Skjul etiketteteksten for minikort",
+ "show-desktop-drag-handles": "Vis trække-håndtag for skrivebord",
+ "assignee": "Tildelt til",
+ "cardAssigneesPopup-title": "Tildelt til",
+ "addmore-detail": "Tilføj en mere detaljeret beskrivelse",
+ "show-on-card": "Vis på kort",
+ "new": "Ny",
+ "editUserPopup-title": "Redigér bruger",
+ "newUserPopup-title": "Ny bruger",
+ "notifications": "Notifikationer",
+ "view-all": "Vis alle",
+ "filter-by-unread": "Filtrér efter ulæst",
+ "mark-all-as-read": "Markér alle som læst",
+ "remove-all-read": "Fjern alle læste",
+ "allow-rename": "Tillad omdøb",
+ "allowRenamePopup-title": "Tillad omdøb",
+ "start-day-of-week": "Angiv dag for ugestart",
+ "monday": "Mandag",
+ "tuesday": "Tirsdag",
+ "wednesday": "Onsdag",
+ "thursday": "Torsdag",
+ "friday": "Fredag",
+ "saturday": "Lørdag",
+ "sunday": "Søndag",
+ "status": "Status",
+ "swimlane": "Svømmebaner",
+ "owner": "Ejer",
+ "last-modified-at": "Senest ændret per",
+ "last-activity": "Seneste aktivitet",
+ "voting": "Afstemning",
+ "archived": "Arkiveret",
+ "delete-linked-card-before-this-card": "Du kan ikke slette dette kort før der slettes sammenkædede kort som har",
+ "delete-linked-cards-before-this-list": "Du kan ikke slette denne liste før der slettes sammenkædede kort, der peger til kort i denne liste",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json
index 336c76c98..7e1b27efc 100644
--- a/i18n/de.i18n.json
+++ b/i18n/de.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Akzeptieren",
- "act-activity-notify": "Aktivitätsbenachrichtigung",
- "act-addAttachment": "hat Anhang __attachment__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-deleteAttachment": "hat Anhang __attachment__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
- "act-addSubtask": "hat Teilaufgabe __subtask__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addedLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-removeLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-removedLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-addChecklist": "hat Checkliste __checklist__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addChecklistItem": "hat Checklistenposition __checklistItem__ zu Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-removeChecklist": "hat Checkliste __checklist__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-removeChecklistItem": "hat Checklistenposition __checklistItem__ von Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-checkedItem": "hat __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ abgehakt",
- "act-uncheckedItem": "hat Haken von __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-completeChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
- "act-uncompleteChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ unvervollständigt",
- "act-addComment": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ kommentiert: __comment__",
- "act-editComment": "hat den Kommentar auf Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
- "act-deleteComment": "hat den Kommentar von Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
- "act-createBoard": "hat Board __board__ erstellt",
- "act-createSwimlane": "hat Swimlane __swimlane__ in Board __board__ erstellt",
- "act-createCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ erstellt",
- "act-createCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ angelegt",
- "act-deleteCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ gelöscht",
- "act-setCustomField": "hat benutzerdefiniertes Feld __customField__: __customFieldValue__ auf Karte __card__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
- "act-createList": "hat Liste __list__ zu Board __board__ hinzugefügt",
- "act-addBoardMember": "hat Mitglied __member__ zu Board __board__ hinzugefügt",
- "act-archivedBoard": "hat Board __board__ ins Archiv verschoben",
- "act-archivedCard": "hat Karte __card__ von der Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
- "act-archivedList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
- "act-archivedSwimlane": "hat Swimlane __swimlane__ von Board __board__ ins Archiv verschoben",
- "act-importBoard": "hat Board __board__ importiert",
- "act-importCard": "hat Karte __card__ in Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
- "act-importList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
- "act-joinMember": "hat Mitglied __member__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-moveCard": "hat Karte __card__ in Board __board__ von Liste __oldList__ in Swimlane __oldSwimlane__ zu Liste __list__ in Swimlane __swimlane__ verschoben",
- "act-moveCardToOtherBoard": "hat Karte __card__ von Liste __oldList__ in Swimlane __oldSwimlane__ in Board __oldBoard__ zu Liste __list__ in Swimlane __swimlane__ in Board __board__ verschoben",
- "act-removeBoardMember": "hat Mitglied __member__ von Board __board__ entfernt",
- "act-restoredCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ wiederhergestellt",
- "act-unjoinMember": "hat Mitglied __member__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Aktionen",
- "activities": "Aktivitäten",
- "activity": "Aktivität",
- "activity-added": "hat %s zu %s hinzugefügt",
- "activity-archived": "hat %s ins Archiv verschoben",
- "activity-attached": "hat %s an %s angehängt",
- "activity-created": "hat %s erstellt",
- "activity-customfield-created": "hat das benutzerdefinierte Feld %s erstellt",
- "activity-excluded": "hat %s von %s ausgeschlossen",
- "activity-imported": "hat %s in %s von %s importiert",
- "activity-imported-board": "hat %s von %s importiert",
- "activity-joined": "ist %s beigetreten",
- "activity-moved": "hat %s von %s nach %s verschoben",
- "activity-on": "in %s",
- "activity-removed": "hat %s von %s entfernt",
- "activity-sent": "hat %s an %s gesendet",
- "activity-unjoined": "hat %s verlassen",
- "activity-subtask-added": "Teilaufgabe zu %s hinzugefügt",
- "activity-checked-item": "markierte %s in Checkliste %s von %s",
- "activity-unchecked-item": "hat %s in Checkliste %s von %s abgewählt",
- "activity-checklist-added": "hat eine Checkliste zu %s hinzugefügt",
- "activity-checklist-removed": "entfernte eine Checkliste von %s",
- "activity-checklist-completed": "Abgeschlossene Checkliste",
- "activity-checklist-uncompleted": "unvervollständigte die Checkliste %s von %s",
- "activity-checklist-item-added": "hat ein Checklistenelement zu '%s' in %s hinzugefügt",
- "activity-checklist-item-removed": "hat ein Checklistenelement von '%s' in %s entfernt",
- "add": "Hinzufügen",
- "activity-checked-item-card": "markiere %s in Checkliste %s",
- "activity-unchecked-item-card": "hat %s in Checkliste %s abgewählt",
- "activity-checklist-completed-card": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
- "activity-checklist-uncompleted-card": "unvervollständigte die Checkliste %s",
- "activity-editComment": "editierte Kommentar",
- "activity-deleteComment": "löschte Kommentar",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Datei anhängen",
- "add-board": "neues Board",
- "add-card": "Karte hinzufügen",
- "add-swimlane": "Swimlane hinzufügen",
- "add-subtask": "Teilaufgabe hinzufügen",
- "add-checklist": "Checkliste hinzufügen",
- "add-checklist-item": "Element zu Checkliste hinzufügen",
- "add-cover": "Cover hinzufügen",
- "add-label": "Label hinzufügen",
- "add-list": "Liste hinzufügen",
- "add-members": "Mitglieder hinzufügen",
- "added": "Hinzugefügt",
- "addMemberPopup-title": "Mitglieder",
- "admin": "Admin",
- "admin-desc": "Kann Karten anzeigen und bearbeiten, Mitglieder entfernen und Boardeinstellungen ändern.",
- "admin-announcement": "Ankündigung",
- "admin-announcement-active": "Aktive systemweite Ankündigungen",
- "admin-announcement-title": "Ankündigung des Administrators",
- "all-boards": "Alle Boards",
- "and-n-other-card": "und eine andere Karte",
- "and-n-other-card_plural": "und __count__ andere Karten",
- "apply": "Übernehmen",
- "app-is-offline": "Laden, bitte warten. Das Aktualisieren der Seite führt zu Datenverlust. Wenn das Laden nicht funktioniert, überprüfen Sie bitte, ob der Server nicht angehalten wurde.",
- "archive": "Ins Archiv verschieben",
- "archive-all": "Alles ins Archiv verschieben",
- "archive-board": "Board ins Archiv verschieben",
- "archive-card": "Karte ins Archiv verschieben",
- "archive-list": "Liste ins Archiv verschieben",
- "archive-swimlane": "Swimlane ins Archiv verschieben",
- "archive-selection": "Auswahl ins Archiv verschieben",
- "archiveBoardPopup-title": "Board ins Archiv verschieben?",
- "archived-items": "Archiv",
- "archived-boards": "Boards im Archiv",
- "restore-board": "Board wiederherstellen",
- "no-archived-boards": "Keine Boards im Archiv.",
- "archives": "Archiv",
- "template": "Vorlage",
- "templates": "Vorlagen",
- "assign-member": "Mitglied zuweisen",
- "attached": "angehängt",
- "attachment": "Anhang",
- "attachment-delete-pop": "Das Löschen eines Anhangs kann nicht rückgängig gemacht werden.",
- "attachmentDeletePopup-title": "Anhang löschen?",
- "attachments": "Anhänge",
- "auto-watch": "Neue Boards nach Erstellung automatisch beobachten",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Zurück",
- "board-change-color": "Farbe ändern",
- "board-nb-stars": "%s Sterne",
- "board-not-found": "Board nicht gefunden",
- "board-private-info": "Dieses Board wird privat sein.",
- "board-public-info": "Dieses Board wird öffentlich sein.",
- "boardChangeColorPopup-title": "Farbe des Boards ändern",
- "boardChangeTitlePopup-title": "Board umbenennen",
- "boardChangeVisibilityPopup-title": "Sichtbarkeit ändern",
- "boardChangeWatchPopup-title": "Beobachtung ändern",
- "boardMenuPopup-title": "Boardeinstellungen",
- "boardChangeViewPopup-title": "Boardansicht",
- "boards": "Boards",
- "board-view": "Boardansicht",
- "board-view-cal": "Kalender",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Einklappen",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listen",
- "bucket-example": "z.B. \"Löffelliste\"",
- "cancel": "Abbrechen",
- "card-archived": "Diese Karte wurde ins Archiv verschoben",
- "board-archived": "Dieses Board wurde ins Archiv verschoben.",
- "card-comments-title": "Diese Karte hat %s Kommentar(e).",
- "card-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Alle Aktionen, die dieser Karte zugeordnet sind, werden ebenfalls gelöscht.",
- "card-delete-pop": "Alle Aktionen werden aus dem Aktivitätsfeed entfernt und die Karte kann nicht wiedereröffnet werden. Die Aktion kann nicht rückgängig gemacht werden.",
- "card-delete-suggest-archive": "Sie können eine Karte ins Archiv verschieben, um sie vom Board zu entfernen und die Aktivitäten zu behalten.",
- "card-due": "Fällig",
- "card-due-on": "Fällig am",
- "card-spent": "Aufgewendete Zeit",
- "card-edit-attachments": "Anhänge ändern",
- "card-edit-custom-fields": "Benutzerdefinierte Felder editieren",
- "card-edit-labels": "Labels ändern",
- "card-edit-members": "Mitglieder ändern",
- "card-labels-title": "Labels für diese Karte ändern.",
- "card-members-title": "Der Karte Board-Mitglieder hinzufügen oder entfernen.",
- "card-start": "Start",
- "card-start-on": "Start am",
- "cardAttachmentsPopup-title": "Anhängen von",
- "cardCustomField-datePopup-title": "Datum ändern",
- "cardCustomFieldsPopup-title": "Benutzerdefinierte Felder editieren",
- "cardStartVotingPopup-title": "Abstimmung starten",
- "positiveVoteMembersPopup-title": "Befürworter",
- "negativeVoteMembersPopup-title": "Gegner",
- "card-edit-voting": "Abstimmung editieren",
- "editVoteEndDatePopup-title": "Enddatum der Abstimmung ändern",
- "allowNonBoardMembers": "Alle eingeloggte Nutzer erlauben",
- "vote-question": "Abstimmen über",
- "vote-public": "Zeigen, wer was gewählt hat",
- "vote-for-it": "Dafür",
- "vote-against": "Dagegen",
- "deleteVotePopup-title": "Wahl löschen?",
- "vote-delete-pop": "Löschen ist unwiderruflich. Alle Aktionen die dieser Karte zugeordnet sind werden ebenfalls gelöscht.",
- "cardDeletePopup-title": "Karte löschen?",
- "cardDetailsActionsPopup-title": "Kartenaktionen",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Mitglieder",
- "cardMorePopup-title": "Mehr",
- "cardTemplatePopup-title": "Vorlage erstellen",
- "cards": "Karten",
- "cards-count": "Karten",
- "casSignIn": "Mit CAS anmelden",
- "cardType-card": "Karte",
- "cardType-linkedCard": "Verknüpfte Karte",
- "cardType-linkedBoard": "Verknüpftes Board",
- "change": "Ändern",
- "change-avatar": "Profilbild ändern",
- "change-password": "Passwort ändern",
- "change-permissions": "Berechtigungen ändern",
- "change-settings": "Einstellungen ändern",
- "changeAvatarPopup-title": "Profilbild ändern",
- "changeLanguagePopup-title": "Sprache ändern",
- "changePasswordPopup-title": "Passwort ändern",
- "changePermissionsPopup-title": "Berechtigungen ändern",
- "changeSettingsPopup-title": "Einstellungen ändern",
- "subtasks": "Teilaufgaben",
- "checklists": "Checklisten",
- "click-to-star": "Klicken Sie, um das Board mit einem Stern zu markieren.",
- "click-to-unstar": "Klicken Sie, um den Stern vom Board zu entfernen.",
- "clipboard": "Zwischenablage oder Drag & Drop",
- "close": "Schließen",
- "close-board": "Board schließen",
- "close-board-pop": "Sie können das Board wiederherstellen, indem Sie die Schaltfläche \"Archiv\" in der Kopfzeile der Startseite anklicken.",
- "color-black": "schwarz",
- "color-blue": "blau",
- "color-crimson": "Karminrot",
- "color-darkgreen": "Dunkelgrün",
- "color-gold": "Gold",
- "color-gray": "Grau",
- "color-green": "grün",
- "color-indigo": "Indigo",
- "color-lime": "hellgrün",
- "color-magenta": "Magentarot",
- "color-mistyrose": "Altrosa",
- "color-navy": "Marineblau",
- "color-orange": "orange",
- "color-paleturquoise": "Blasses Türkis",
- "color-peachpuff": "Pfirsich",
- "color-pink": "pink",
- "color-plum": "Pflaume",
- "color-purple": "lila",
- "color-red": "rot",
- "color-saddlebrown": "Sattelbraun",
- "color-silver": "Silber",
- "color-sky": "himmelblau",
- "color-slateblue": "Schieferblau",
- "color-white": "Weiß",
- "color-yellow": "gelb",
- "unset-color": "Nicht festgelegt",
- "comment": "Kommentar",
- "comment-placeholder": "Kommentar schreiben",
- "comment-only": "Nur Kommentare",
- "comment-only-desc": "Kann Karten nur kommentieren.",
- "no-comments": "Keine Kommentare",
- "no-comments-desc": "Kann keine Kommentare und Aktivitäten sehen.",
- "worker": "Arbeiter",
- "worker-desc": "Kann Karten nur verschieben, sich selbst zuweisen und kommentieren.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Wollen Sie die Teilaufgabe wirklich löschen?",
- "confirm-checklist-delete-dialog": "Wollen Sie die Checkliste wirklich löschen?",
- "copy-card-link-to-clipboard": "Kopiere Link zur Karte in die Zwischenablage",
- "linkCardPopup-title": "Karte verknüpfen",
- "searchElementPopup-title": "Suche",
- "copyCardPopup-title": "Karte kopieren",
- "copyChecklistToManyCardsPopup-title": "Checklistenvorlage in mehrere Karten kopieren",
- "copyChecklistToManyCardsPopup-instructions": "Titel und Beschreibungen der Zielkarten im folgenden JSON-Format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel der ersten Karte\", \"description\":\"Beschreibung der ersten Karte\"}, {\"title\":\"Titel der zweiten Karte\",\"description\":\"Beschreibung der zweiten Karte\"},{\"title\":\"Titel der letzten Karte\",\"description\":\"Beschreibung der letzten Karte\"} ]",
- "create": "Erstellen",
- "createBoardPopup-title": "Board erstellen",
- "chooseBoardSourcePopup-title": "Board importieren",
- "createLabelPopup-title": "Label erstellen",
- "createCustomField": "Feld erstellen",
- "createCustomFieldPopup-title": "Feld erstellen",
- "current": "aktuell",
- "custom-field-delete-pop": "Dies wird das Feld aus allen Karten entfernen und den dazugehörigen Verlauf löschen. Die Aktion kann nicht rückgängig gemacht werden.",
- "custom-field-checkbox": "Kontrollkästchen",
- "custom-field-currency": "Währung",
- "custom-field-currency-option": "Währungszeichen",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Dropdownliste",
- "custom-field-dropdown-none": "(keiner)",
- "custom-field-dropdown-options": "Listenoptionen",
- "custom-field-dropdown-options-placeholder": "Drücken Sie die Eingabetaste, um weitere Optionen hinzuzufügen",
- "custom-field-dropdown-unknown": "(unbekannt)",
- "custom-field-number": "Zahl",
- "custom-field-text": "Text",
- "custom-fields": "Benutzerdefinierte Felder",
- "date": "Datum",
- "decline": "Ablehnen",
- "default-avatar": "Standard Profilbild",
- "delete": "Löschen",
- "deleteCustomFieldPopup-title": "Benutzerdefiniertes Feld löschen?",
- "deleteLabelPopup-title": "Label löschen?",
- "description": "Beschreibung",
- "disambiguateMultiLabelPopup-title": "Labels vereinheitlichen",
- "disambiguateMultiMemberPopup-title": "Mitglieder vereinheitlichen",
- "discard": "Verwerfen",
- "done": "Erledigt",
- "download": "Herunterladen",
- "edit": "Bearbeiten",
- "edit-avatar": "Profilbild ändern",
- "edit-profile": "Profil ändern",
- "edit-wip-limit": "WIP-Limit bearbeiten",
- "soft-wip-limit": "Soft WIP-Limit",
- "editCardStartDatePopup-title": "Startdatum ändern",
- "editCardDueDatePopup-title": "Fälligkeitsdatum ändern",
- "editCustomFieldPopup-title": "Feld bearbeiten",
- "editCardSpentTimePopup-title": "Aufgewendete Zeit ändern",
- "editLabelPopup-title": "Label ändern",
- "editNotificationPopup-title": "Benachrichtigung ändern",
- "editProfilePopup-title": "Profil ändern",
- "email": "E-Mail",
- "email-enrollAccount-subject": "Ihr Benutzerkonto auf __siteName__ wurde erstellt",
- "email-enrollAccount-text": "Hallo __user__,\n\num den Dienst nutzen zu können, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-fail": "Senden der E-Mail fehlgeschlagen",
- "email-fail-text": "Fehler beim Senden der E-Mail",
- "email-invalid": "Ungültige E-Mail-Adresse",
- "email-invite": "per E-Mail einladen",
- "email-invite-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
- "email-invite-text": "Hallo __user__,\n\n__inviter__ hat Sie zu dem Board \"__board__\" eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-resetPassword-subject": "Setzten Sie ihr Passwort auf __siteName__ zurück",
- "email-resetPassword-text": "Hallo __user__,\n\num ihr Passwort zurückzusetzen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-sent": "E-Mail gesendet",
- "email-verifyEmail-subject": "Bestätigen Sie ihre E-Mail-Adresse auf __siteName__",
- "email-verifyEmail-text": "Hallo __user__,\n\num ihre E-Mail-Adresse zu bestätigen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "enable-wip-limit": "WIP-Limit einschalten",
- "error-board-doesNotExist": "Dieses Board existiert nicht",
- "error-board-notAdmin": "Um das zu tun, müssen Sie Administrator dieses Boards sein",
- "error-board-notAMember": "Um das zu tun, müssen Sie Mitglied dieses Boards sein",
- "error-json-malformed": "Ihre Eingabe ist kein gültiges JSON",
- "error-json-schema": "Ihre JSON-Daten enthalten nicht die gewünschten Informationen im richtigen Format",
- "error-csv-schema": "hre CSV (Comma Separated Values)/TSV (Tab Separated Values) enthalten nicht die gewünschten Informationen im richtigen Format",
- "error-list-doesNotExist": "Diese Liste existiert nicht",
- "error-user-doesNotExist": "Dieser Nutzer existiert nicht",
- "error-user-notAllowSelf": "Sie können sich nicht selbst einladen.",
- "error-user-notCreated": "Dieser Nutzer ist nicht angelegt",
- "error-username-taken": "Dieser Benutzername ist bereits vergeben",
- "error-email-taken": "E-Mail wird schon verwendet",
- "export-board": "Board exportieren",
- "export-board-json": "Board als JSON exportieren",
- "export-board-csv": "Board als CSV exportieren",
- "export-board-tsv": "Board als TSV exportieren",
- "export-board-html": "Board als HTML exportieren",
- "exportBoardPopup-title": "Board exportieren",
- "sort": "Sortieren",
- "sort-desc": "Zum Sortieren der Liste klicken",
- "list-sort-by": "Sortieren der Liste nach:",
- "list-label-modifiedAt": "Letzte Zugriffszeit",
- "list-label-title": "Name der Liste",
- "list-label-sort": "Ihre manuelle Sortierung",
- "list-label-short-modifiedAt": "(Z)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Karten oder Listen filtern",
- "list-filter-label": "Liste nach Titel filtern",
- "filter-clear": "Filter entfernen",
- "filter-labels-label": "Nach Label filtern",
- "filter-no-label": "Kein Label",
- "filter-member-label": "Nach Nutzer filtern",
- "filter-no-member": "Kein Mitglied",
- "filter-assignee-label": "Nach Zuordnung filtern",
- "filter-no-assignee": "Nicht zugewiesen",
- "filter-custom-fields-label": "Filtern nach benutzerdefinierten Feldern",
- "filter-no-custom-fields": "Keine benutzerdefinierten Felder",
- "filter-show-archive": "Archivierte Listen anzeigen",
- "filter-hide-empty": "Leere Listen verstecken",
- "filter-on": "Filter ist aktiv",
- "filter-on-desc": "Sie filtern die Karten in diesem Board. Klicken Sie, um den Filter zu bearbeiten.",
- "filter-to-selection": "Ergebnisse auswählen",
- "other-filters-label": "Andere Filter",
- "advanced-filter-label": "Erweiterter Filter",
- "advanced-filter-description": "Der erweiterte Filter erlaubt die Eingabe von Zeichenfolgen, die folgende Operatoren enthalten: == != <= >= && || ( ). Ein Leerzeichen wird als Trennzeichen zwischen den Operatoren verwendet. Sie können nach allen benutzerdefinierten Feldern filtern, indem Sie deren Namen und Werte eingeben. Zum Beispiel: Feld1 == Wert1. Hinweis: Wenn Felder oder Werte Leerzeichen enthalten, müssen Sie sie in einfache Anführungszeichen setzen. Zum Beispiel: 'Feld 1' == 'Wert 1'. Um einzelne Steuerzeichen (' \\/) zu überspringen, können Sie \\ verwenden. Zum Beispiel: Feld1 == Ich bin\\'s. Sie können außerdem mehrere Bedingungen kombinieren. Zum Beispiel: F1 == W1 || F1 == W2. Normalerweise werden alle Operatoren von links nach rechts interpretiert. Sie können die Reihenfolge ändern, indem Sie Klammern setzen. Zum Beispiel: F1 == W1 && ( F2 == W2 || F2 == W3 ). Sie können Textfelder auch mithilfe regulärer Ausdrücke durchsuchen: F1 == /Tes.*/i",
- "fullname": "Vollständiger Name",
- "header-logo-title": "Zurück zur Board Seite.",
- "hide-system-messages": "Systemmeldungen ausblenden",
- "headerBarCreateBoardPopup-title": "Board erstellen",
- "home": "Home",
- "import": "Importieren",
- "impersonate-user": "Impersonate user",
- "link": "Verknüpfung",
- "import-board": "Board importieren",
- "import-board-c": "Board importieren",
- "import-board-title-trello": "Board von Trello importieren",
- "import-board-title-wekan": "Board aus vorherigem Export importieren",
- "import-board-title-csv": "Board von CSV/TSV importieren",
- "from-trello": "Von Trello",
- "from-wekan": "Aus vorherigem Export",
- "from-csv": "Aus CSV/TSV",
- "import-board-instruction-trello": "Gehen Sie in ihrem Trello-Board auf 'Menü', dann 'Mehr', 'Drucken und Exportieren', 'JSON-Export' und kopieren Sie den dort angezeigten Text",
- "import-board-instruction-csv": "Fügen Sie die Ihre Comma-Separated- (CSV) / bzw. Tab-Separated-Values (TSV) ein.",
- "import-board-instruction-wekan": "Gehen Sie in Ihrem Board auf 'Menü', danach auf 'Board exportieren' und kopieren Sie den Text aus der heruntergeladenen Datei.",
- "import-board-instruction-about-errors": "Treten beim importieren eines Board Fehler auf, so kann der Import dennoch erfolgreich abgeschlossen sein und das Board ist auf der Seite \"Alle Boards\" zusehen.",
- "import-json-placeholder": "Fügen Sie die korrekten JSON-Daten hier ein",
- "import-csv-placeholder": "Fügen Sie die korrekten CSV/TSV-Daten hier ein ",
- "import-map-members": "Mitglieder zuordnen",
- "import-members-map": "Das importierte Board hat einige Mitglieder. Bitte ordnen sie die Mitglieder, die Sie importieren wollen, Ihren Benutzern zu.",
- "import-show-user-mapping": "Mitgliederzuordnung überprüfen",
- "import-user-select": "Wählen Sie den bestehenden Benutzer aus, den Sie für dieses Mitglied verwenden wollen.",
- "importMapMembersAddPopup-title": "Mitglied auswählen",
- "info": "Version",
- "initials": "Initialen",
- "invalid-date": "Ungültiges Datum",
- "invalid-time": "Ungültige Zeitangabe",
- "invalid-user": "Ungültiger Benutzer",
- "joined": "beigetreten",
- "just-invited": "Sie wurden soeben zu diesem Board eingeladen",
- "keyboard-shortcuts": "Tastaturkürzel",
- "label-create": "Label erstellen",
- "label-default": "%s Label (Standard)",
- "label-delete-pop": "Aktion kann nicht rückgängig gemacht werden. Das Label wird von allen Karten entfernt und seine Historie gelöscht.",
- "labels": "Labels",
- "language": "Sprache",
- "last-admin-desc": "Sie können keine Rollen ändern, weil es mindestens einen Administrator geben muss.",
- "leave-board": "Board verlassen",
- "leave-board-pop": "Sind Sie sicher, dass Sie __boardTitle__ verlassen möchten? Sie werden von allen Karten in diesem Board entfernt.",
- "leaveBoardPopup-title": "Board verlassen?",
- "link-card": "Link zu dieser Karte",
- "list-archive-cards": "Alle Karten dieser Liste ins Archiv verschieben",
- "list-archive-cards-pop": "Alle Karten dieser Liste werden vom Board entfernt. Um Karten im Papierkorb anzuzeigen und wiederherzustellen, klicken Sie auf \"Menü\" > \"Archiv\".",
- "list-move-cards": "Alle Karten in dieser Liste verschieben",
- "list-select-cards": "Alle Karten in dieser Liste auswählen",
- "set-color-list": "Lege Farbe fest",
- "listActionPopup-title": "Listenaktionen",
- "settingsUserPopup-title": "Benutzereinstellungen",
- "swimlaneActionPopup-title": "Swimlaneaktionen",
- "swimlaneAddPopup-title": "Swimlane unterhalb einfügen",
- "listImportCardPopup-title": "Eine Trello-Karte importieren",
- "listImportCardsTsvPopup-title": "CSV/TSV importieren",
- "listMorePopup-title": "Mehr",
- "link-list": "Link zu dieser Liste",
- "list-delete-pop": "Alle Aktionen werden aus dem Verlauf gelöscht und die Liste kann nicht wiederhergestellt werden.",
- "list-delete-suggest-archive": "Listen können ins Archiv verschoben werden, um sie aus dem Board zu entfernen und die Aktivitäten zu behalten.",
- "lists": "Listen",
- "swimlanes": "Swimlanes",
- "log-out": "Ausloggen",
- "log-in": "Einloggen",
- "loginPopup-title": "Einloggen",
- "memberMenuPopup-title": "Nutzereinstellungen",
- "members": "Mitglieder",
- "menu": "Menü",
- "move-selection": "Auswahl verschieben",
- "moveCardPopup-title": "Karte verschieben",
- "moveCardToBottom-title": "Ans Ende verschieben",
- "moveCardToTop-title": "Zum Anfang verschieben",
- "moveSelectionPopup-title": "Auswahl verschieben",
- "multi-selection": "Mehrfachauswahl",
- "multi-selection-label": "Label für die Auswahl setzen",
- "multi-selection-member": "Mitglied für die Auswahl setzen",
- "multi-selection-on": "Mehrfachauswahl ist aktiv",
- "muted": "Stumm",
- "muted-info": "Sie werden nicht über Änderungen auf diesem Board benachrichtigt",
- "my-boards": "Meine Boards",
- "name": "Name",
- "no-archived-cards": "Keine Karten im Archiv.",
- "no-archived-lists": "Keine Listen im Archiv.",
- "no-archived-swimlanes": "Keine Swimlanes im Archiv.",
- "no-results": "Keine Ergebnisse",
- "normal": "Normal",
- "normal-desc": "Kann Karten anzeigen und bearbeiten, aber keine Einstellungen ändern.",
- "not-accepted-yet": "Die Einladung wurde noch nicht angenommen",
- "notify-participate": "Benachrichtigungen zu allen Karten erhalten, an denen Sie teilnehmen",
- "notify-watch": "Benachrichtigungen über alle Boards, Listen oder Karten erhalten, die Sie beobachten",
- "optional": "optional",
- "or": "oder",
- "page-maybe-private": "Diese Seite könnte privat sein. Vielleicht können Sie sie sehen, wenn Sie sich einloggen.",
- "page-not-found": "Seite nicht gefunden.",
- "password": "Passwort",
- "paste-or-dragdrop": "Einfügen oder Datei mit Drag & Drop ablegen (nur Bilder)",
- "participating": "Teilnehmen",
- "preview": "Vorschau",
- "previewAttachedImagePopup-title": "Vorschau",
- "previewClipboardImagePopup-title": "Vorschau",
- "private": "Privat",
- "private-desc": "Dieses Board ist privat. Nur Nutzer, die zu dem Board gehören, können es anschauen und bearbeiten.",
- "profile": "Profil",
- "public": "Öffentlich",
- "public-desc": "Dieses Board ist öffentlich. Es ist für jeden, der den Link kennt, sichtbar und taucht in Suchmaschinen wie Google auf. Nur Nutzer, die zum Board hinzugefügt wurden, können es bearbeiten.",
- "quick-access-description": "Markieren Sie ein Board mit einem Stern, um dieser Leiste eine Verknüpfung hinzuzufügen.",
- "remove-cover": "Cover entfernen",
- "remove-from-board": "Von Board entfernen",
- "remove-label": "Label entfernen",
- "listDeletePopup-title": "Liste löschen?",
- "remove-member": "Nutzer entfernen",
- "remove-member-from-card": "Von Karte entfernen",
- "remove-member-pop": "__name__ (__username__) von __boardTitle__ entfernen? Das Mitglied wird von allen Karten auf diesem Board entfernt. Es erhält eine Benachrichtigung.",
- "removeMemberPopup-title": "Mitglied entfernen?",
- "rename": "Umbenennen",
- "rename-board": "Board umbenennen",
- "restore": "Wiederherstellen",
- "save": "Speichern",
- "search": "Suchen",
- "rules": "Regeln",
- "search-cards": "Suche nach Karten-/Listentiteln, Beschreibungen und personalisierten Feldern auf diesem Brett ",
- "search-example": "Write text you search and press Enter",
- "select-color": "Farbe auswählen",
- "select-board": "Select Board",
- "set-wip-limit-value": "Setzen Sie ein Limit für die maximale Anzahl von Aufgaben in dieser Liste",
- "setWipLimitPopup-title": "WIP-Limit setzen",
- "shortcut-assign-self": "Fügen Sie sich zur aktuellen Karte hinzu",
- "shortcut-autocomplete-emoji": "Emojis vervollständigen",
- "shortcut-autocomplete-members": "Mitglieder vervollständigen",
- "shortcut-clear-filters": "Alle Filter entfernen",
- "shortcut-close-dialog": "Dialog schließen",
- "shortcut-filter-my-cards": "Meine Karten filtern",
- "shortcut-show-shortcuts": "Liste der Tastaturkürzel anzeigen",
- "shortcut-toggle-filterbar": "Filter-Seitenleiste ein-/ausblenden",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Seitenleiste ein-/ausblenden",
- "show-cards-minimum-count": "Zeigt die Kartenanzahl an, wenn die Liste mehr enthält als",
- "sidebar-open": "Seitenleiste öffnen",
- "sidebar-close": "Seitenleiste schließen",
- "signupPopup-title": "Benutzerkonto erstellen",
- "star-board-title": "Klicken Sie, um das Board mit einem Stern zu markieren. Es erscheint dann oben in ihrer Boardliste.",
- "starred-boards": "Markierte Boards",
- "starred-boards-description": "Markierte Boards erscheinen oben in ihrer Boardliste.",
- "subscribe": "Abonnieren",
- "team": "Team",
- "this-board": "diesem Board",
- "this-card": "diese Karte",
- "spent-time-hours": "Aufgewendete Zeit (Stunden)",
- "overtime-hours": "Mehrarbeit (Stunden)",
- "overtime": "Mehrarbeit",
- "has-overtime-cards": "Hat Karten mit Mehrarbeit",
- "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
- "time": "Zeit",
- "title": "Titel",
- "tracking": "Folgen",
- "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
- "type": "Typ",
- "unassign-member": "Mitglied entfernen",
- "unsaved-description": "Sie haben eine nicht gespeicherte Änderung.",
- "unwatch": "Beobachtung entfernen",
- "upload": "Upload",
- "upload-avatar": "Profilbild hochladen",
- "uploaded-avatar": "Profilbild hochgeladen",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text unterhalb benutzerdefiniertem Login Logo",
- "username": "Benutzername",
- "view-it": "Ansehen",
- "warn-list-archived": "Warnung: Diese Karte befindet sich in einer Liste im Archiv",
- "watch": "Beobachten",
- "watching": "Beobachten",
- "watching-info": "Sie werden über alle Änderungen in diesem Board benachrichtigt",
- "welcome-board": "Willkommen-Board",
- "welcome-swimlane": "Meilenstein 1",
- "welcome-list1": "Grundlagen",
- "welcome-list2": "Fortgeschritten",
- "card-templates-swimlane": "Kartenvorlagen",
- "list-templates-swimlane": "Listenvorlagen",
- "board-templates-swimlane": "Boardvorlagen",
- "what-to-do": "Was wollen Sie tun?",
- "wipLimitErrorPopup-title": "Ungültiges WIP-Limit",
- "wipLimitErrorPopup-dialog-pt1": "Die Anzahl von Aufgaben in dieser Liste ist größer als das von Ihnen definierte WIP-Limit.",
- "wipLimitErrorPopup-dialog-pt2": "Bitte verschieben Sie einige Aufgaben aus dieser Liste oder setzen Sie ein grösseres WIP-Limit.",
- "admin-panel": "Administration",
- "settings": "Einstellungen",
- "people": "Nutzer",
- "registration": "Registrierung",
- "disable-self-registration": "Selbstregistrierung deaktivieren",
- "invite": "Einladen",
- "invite-people": "Nutzer einladen",
- "to-boards": "In Board(s)",
- "email-addresses": "E-Mail Adressen",
- "smtp-host-description": "Die Adresse Ihres SMTP-Servers für ausgehende E-Mails.",
- "smtp-port-description": "Der Port Ihres SMTP-Servers für ausgehende E-Mails.",
- "smtp-tls-description": "Aktiviere TLS Unterstützung für SMTP Server",
- "smtp-host": "SMTP-Server",
- "smtp-port": "SMTP-Port",
- "smtp-username": "Benutzername",
- "smtp-password": "Passwort",
- "smtp-tls": "TLS Unterstützung",
- "send-from": "Absender",
- "send-smtp-test": "Test-E-Mail an sich selbst schicken",
- "invitation-code": "Einladungscode",
- "email-invite-register-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
- "email-invite-register-text": "Sehr geehrte(r) __user__,\n\n__inviter__ hat Sie zur Mitarbeit an einem Kanbanboard eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n__url__\n\nIhr Einladungscode lautet: __icode__\n\nDanke.",
- "email-smtp-test-subject": "SMTP Test-E-Mail",
- "email-smtp-test-text": "Sie haben erfolgreich eine E-Mail versandt",
- "error-invitation-code-not-exist": "Ungültiger Einladungscode",
- "error-notAuthorized": "Sie sind nicht berechtigt diese Seite zu sehen.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional für Authentifizierung)",
- "outgoing-webhooks": "Ausgehende Webhooks",
- "bidirectional-webhooks": "Zwei-Wege Webhooks",
- "outgoingWebhooksPopup-title": "Ausgehende Webhooks",
- "boardCardTitlePopup-title": "Kartentitelfilter",
- "disable-webhook": "Diesen Webhook deaktivieren",
- "global-webhook": "Globale Webhooks",
- "new-outgoing-webhook": "Neuer ausgehender Webhook",
- "no-name": "(Unbekannt)",
- "Node_version": "Node-Version",
- "Meteor_version": "Meteor-Version",
- "MongoDB_version": "MongoDB-Version",
- "MongoDB_storage_engine": "MongoDB-Speicher-Engine",
- "MongoDB_Oplog_enabled": "MongoDB-Oplog aktiviert",
- "OS_Arch": "Betriebssystem-Architektur",
- "OS_Cpus": "Anzahl Prozessoren",
- "OS_Freemem": "Freier Arbeitsspeicher",
- "OS_Loadavg": "Mittlere Systembelastung",
- "OS_Platform": "Plattform",
- "OS_Release": "Version des Betriebssystem",
- "OS_Totalmem": "Gesamter Arbeitsspeicher",
- "OS_Type": "Typ des Betriebssystems",
- "OS_Uptime": "Laufzeit des Systems",
- "days": "Tage",
- "hours": "Stunden",
- "minutes": "Minuten",
- "seconds": "Sekunden",
- "show-field-on-card": "Zeige dieses Feld auf der Karte",
- "automatically-field-on-card": "Automatisch Label für alle Karten erzeugen",
- "showLabel-field-on-card": "Feldbezeichnung auf Minikarte anzeigen",
- "yes": "Ja",
- "no": "Nein",
- "accounts": "Konten",
- "accounts-allowEmailChange": "Ändern der E-Mailadresse erlauben",
- "accounts-allowUserNameChange": "Ändern des Benutzernamens erlauben",
- "createdAt": "Erstellt am",
- "verified": "Geprüft",
- "active": "Aktiv",
- "card-received": "Empfangen",
- "card-received-on": "Empfangen am",
- "card-end": "Ende",
- "card-end-on": "Endet am",
- "editCardReceivedDatePopup-title": "Empfangsdatum ändern",
- "editCardEndDatePopup-title": "Enddatum ändern",
- "setCardColorPopup-title": "Farbe festlegen",
- "setCardActionsColorPopup-title": "Farbe wählen",
- "setSwimlaneColorPopup-title": "Farbe wählen",
- "setListColorPopup-title": "Farbe wählen",
- "assigned-by": "Zugewiesen von",
- "requested-by": "Angefordert von",
- "board-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Sie werden alle Listen, Karten und Aktionen, die mit diesem Board verbunden sind, verlieren.",
- "delete-board-confirm-popup": "Alle Listen, Karten, Labels und Akivitäten werden gelöscht und Sie können die Inhalte des Boards nicht wiederherstellen! Die Aktion kann nicht rückgängig gemacht werden.",
- "boardDeletePopup-title": "Board löschen?",
- "delete-board": "Board löschen",
- "default-subtasks-board": "Teilaufgabe für __board__ Board",
- "default": "Standard",
- "queue": "Warteschlange",
- "subtask-settings": "Einstellungen für Teilaufgaben",
- "card-settings": "Karten-Einstellungen",
- "boardSubtaskSettingsPopup-title": "Boardeinstellungen für Teilaufgaben",
- "boardCardSettingsPopup-title": "Karten-Einstellungen",
- "deposit-subtasks-board": "Teilaufgaben in diesem Board ablegen:",
- "deposit-subtasks-list": "Zielliste für hier abgelegte Teilaufgaben:",
- "show-parent-in-minicard": "Übergeordnetes Element auf Minikarte anzeigen:",
- "prefix-with-full-path": "Vollständiger Pfad über Titel",
- "prefix-with-parent": "Über Titel",
- "subtext-with-full-path": "Vollständiger Pfad unter Titel",
- "subtext-with-parent": "Unter Titel",
- "change-card-parent": "Übergeordnete Karte ändern",
- "parent-card": "Übergeordnete Karte",
- "source-board": "Quellboard",
- "no-parent": "Nicht anzeigen",
- "activity-added-label": "fügte Label '%s' zu %s hinzu",
- "activity-removed-label": "entfernte Label '%s' von %s",
- "activity-delete-attach": "löschte ein Anhang von %s",
- "activity-added-label-card": "Label hinzugefügt '%s'",
- "activity-removed-label-card": "Label entfernt '%s'",
- "activity-delete-attach-card": "hat einen Anhang gelöscht",
- "activity-set-customfield": "setze benutzerdefiniertes Feld '%s' zu '%s' in %s",
- "activity-unset-customfield": "entferne benutzerdefiniertes Feld '%s' in %s",
- "r-rule": "Regel",
- "r-add-trigger": "Auslöser hinzufügen",
- "r-add-action": "Aktion hinzufügen",
- "r-board-rules": "Boardregeln",
- "r-add-rule": "Regel hinzufügen",
- "r-view-rule": "Regel anzeigen",
- "r-delete-rule": "Regel löschen",
- "r-new-rule-name": "Neuer Regeltitel",
- "r-no-rules": "Keine Regeln",
- "r-trigger": "Auslöser",
- "r-action": "Aktion",
- "r-when-a-card": "Wenn Karte",
- "r-is": "wird",
- "r-is-moved": "verschoben wird",
- "r-added-to": "Hinzugefügt zu",
- "r-removed-from": "entfernt von",
- "r-the-board": "das Board",
- "r-list": "Liste",
- "set-filter": "Setze Filter",
- "r-moved-to": "verschoben nach",
- "r-moved-from": "verschoben von",
- "r-archived": "ins Archiv verschoben",
- "r-unarchived": "aus dem Archiv wiederhergestellt",
- "r-a-card": "einer Karte",
- "r-when-a-label-is": "Wenn ein Label",
- "r-when-the-label": "Wenn das Label",
- "r-list-name": "Listenname",
- "r-when-a-member": "Wenn ein Mitglied",
- "r-when-the-member": "Wenn das Mitglied",
- "r-name": "Name",
- "r-when-a-attach": "Wenn ein Anhang",
- "r-when-a-checklist": "Wenn eine Checkliste wird",
- "r-when-the-checklist": "Wenn die Checkliste",
- "r-completed": "abgeschlossen",
- "r-made-incomplete": "unvollständig gemacht",
- "r-when-a-item": "Wenn eine Checklistenposition",
- "r-when-the-item": "Wenn die Checklistenposition",
- "r-checked": "markiert wird",
- "r-unchecked": "abgewählt wird",
- "r-move-card-to": "Verschiebe Karte an",
- "r-top-of": "Anfang von",
- "r-bottom-of": "Ende von",
- "r-its-list": "seiner Liste",
- "r-archive": "Ins Archiv verschieben",
- "r-unarchive": "Aus dem Archiv wiederherstellen",
- "r-card": "Karte",
- "r-add": "Hinzufügen",
- "r-remove": "entfernen",
- "r-label": "Label",
- "r-member": "Mitglied",
- "r-remove-all": "Entferne alle Mitglieder von der Karte",
- "r-set-color": "Farbe festlegen auf",
- "r-checklist": "Checkliste",
- "r-check-all": "Alle markieren",
- "r-uncheck-all": "Alle abwählen",
- "r-items-check": "Elemente der Checkliste",
- "r-check": "Markieren",
- "r-uncheck": "Abwählen",
- "r-item": "Element",
- "r-of-checklist": "der Checkliste",
- "r-send-email": "Eine E-Mail senden",
- "r-to": "an",
- "r-of": "von",
- "r-subject": "Betreff",
- "r-rule-details": "Regeldetails",
- "r-d-move-to-top-gen": "Karte nach oben in die Liste verschieben",
- "r-d-move-to-top-spec": "Karte an den Anfang der Liste verschieben",
- "r-d-move-to-bottom-gen": "Karte nach unten in die Liste verschieben",
- "r-d-move-to-bottom-spec": "Karte an das Ende der Liste verschieben",
- "r-d-send-email": "E-Mail senden",
- "r-d-send-email-to": "an",
- "r-d-send-email-subject": "Betreff",
- "r-d-send-email-message": "Nachricht",
- "r-d-archive": "Karte ins Archiv verschieben",
- "r-d-unarchive": "Karte aus dem Archiv wiederherstellen",
- "r-d-add-label": "Label hinzufügen",
- "r-d-remove-label": "Label entfernen",
- "r-create-card": "Neue Karte erstellen",
- "r-in-list": "in der Liste",
- "r-in-swimlane": "in Swimlane",
- "r-d-add-member": "Mitglied hinzufügen",
- "r-d-remove-member": "Mitglied entfernen",
- "r-d-remove-all-member": "Entferne alle Mitglieder",
- "r-d-check-all": "Alle Elemente der Liste markieren",
- "r-d-uncheck-all": "Alle Element der Liste abwählen",
- "r-d-check-one": "Element auswählen",
- "r-d-uncheck-one": "Element abwählen",
- "r-d-check-of-list": "der Checkliste",
- "r-d-add-checklist": "Checkliste hinzufügen",
- "r-d-remove-checklist": "Checkliste entfernen",
- "r-by": "durch",
- "r-add-checklist": "Checkliste hinzufügen",
- "r-with-items": "mit Elementen",
- "r-items-list": "Element1,Element2,Element3",
- "r-add-swimlane": "Füge Swimlane hinzu",
- "r-swimlane-name": "Swimlanename",
- "r-board-note": "Hinweis: Lassen Sie ein Feld leer, um alle möglichen Werte zu finden.",
- "r-checklist-note": "Hinweis: Die Elemente der Checkliste müssen als kommagetrennte Werte geschrieben werden.",
- "r-when-a-card-is-moved": "Wenn eine Karte in eine andere Liste verschoben wird",
- "r-set": "Setze",
- "r-update": "Aktualisiere",
- "r-datefield": "Datumsfeld",
- "r-df-start-at": "Start",
- "r-df-due-at": "Fällig",
- "r-df-end-at": "Ende",
- "r-df-received-at": "Empfangen",
- "r-to-current-datetime": "auf das aktuelle Datum/Zeit",
- "r-remove-value-from": "Entferne Wert von",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentifizierungsmethode",
- "authentication-type": "Authentifizierungstyp",
- "custom-product-name": "Benutzerdefinierter Produktname",
- "layout": "Layout",
- "hide-logo": "Verstecke Logo",
- "add-custom-html-after-body-start": "Füge benutzerdefiniertes HTML nach Anfang hinzu",
- "add-custom-html-before-body-end": "Füge benutzerdefiniertes HTML vor Ende hinzu",
- "error-undefined": "Etwas ist schief gelaufen",
- "error-ldap-login": "Es ist ein Fehler beim Anmelden aufgetreten",
- "display-authentication-method": "Anzeige Authentifizierungsverfahren",
- "default-authentication-method": "Standardauthentifizierungsverfahren",
- "duplicate-board": "Board duplizieren",
- "people-number": "Anzahl der Personen:",
- "swimlaneDeletePopup-title": "Swimlane löschen?",
- "swimlane-delete-pop": "Alle Aktionen werden aus dem Aktivitätenfeed entfernt und die Swimlane kann nicht wiederhergestellt werden. Die Aktion kann nicht rückgängig gemacht werden.",
- "restore-all": "Alles wiederherstellen",
- "delete-all": "Alles löschen",
- "loading": "Laden, bitte warten.",
- "previous_as": "letzter Zeitpunkt war",
- "act-a-dueAt": "hat Fälligkeit geändert auf\nWann: __timeValue__\nWo: __card__\nvorheriger Fälligkeitszeitpunkt war __timeOldValue__",
- "act-a-endAt": "hat Ende auf __timeValue__ von (__timeOldValue__) geändert",
- "act-a-startAt": "hat Start auf __timeValue__ von (__timeOldValue__) geändert",
- "act-a-receivedAt": "hat Empfangszeit auf __timeValue__ von (__timeOldValue__) geändert",
- "a-dueAt": "hat Fälligkeit geändert auf",
- "a-endAt": "hat Ende geändert auf",
- "a-startAt": "hat Startzeit geändert auf",
- "a-receivedAt": "hat Empfangszeit geändert auf",
- "almostdue": "aktuelles Fälligkeitsdatum %s bevorstehend",
- "pastdue": "aktuelles Fälligkeitsdatum %s überschritten",
- "duenow": "aktuelles Fälligkeitsdatum %s heute",
- "act-newDue": "__list__/__card__ hat seine 1. fällige Erinnerung [__board__]",
- "act-withDue": "Erinnerung an Fällikgeit von __card__ [__board__]",
- "act-almostdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist bevorstehend",
- "act-pastdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist vorbei",
- "act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
- "act-atUserComment": "Sie wurden in [__board__] __list__/__card__ erwähnt",
- "delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
- "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
- "hide-minicard-label-text": "Labeltext auf Minikarte ausblenden",
- "show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen",
- "assignee": "Zugewiesen",
- "cardAssigneesPopup-title": "Zugewiesen",
- "addmore-detail": "Eine detailliertere Beschreibung hinzufügen",
- "show-on-card": "Zeige auf Karte",
- "new": "Neu",
- "editUserPopup-title": "Benutzer ändern",
- "newUserPopup-title": "Neuer Benutzer",
- "notifications": "Benachrichtigungen",
- "view-all": "Alle anzeigen",
- "filter-by-unread": "Nur ungelesene",
- "mark-all-as-read": "Alle als gelesen markieren",
- "remove-all-read": "Alle gelesenen entfernen",
- "allow-rename": "Umbenennen erlauben",
- "allowRenamePopup-title": "Umbenennen erlauben",
- "start-day-of-week": "Wochentagbeginn festlegen",
- "monday": "Montag",
- "tuesday": "Dienstag",
- "wednesday": "Mittwoch",
- "thursday": "Donnerstag",
- "friday": "Freitag",
- "saturday": "Samstag",
- "sunday": "Sonntag",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Eigentümer",
- "last-modified-at": "Zuletzt geändert um",
- "last-activity": "Letzte Aktivität",
- "voting": "Abstimunng",
- "archived": "Archiviert",
- "delete-linked-card-before-this-card": "Sie können diese Karte erst löschen, wenn Sie alle verbundenen Karten gelöscht haben.",
- "delete-linked-cards-before-this-list": "Sie können diese Liste erst löschen, wenn Sie alle Karten gelöscht haben, die auf Karten in dieser Liste verweisen.",
- "hide-checked-items": "Erledigte ausblenden",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Akzeptieren",
+ "act-activity-notify": "Aktivitätsbenachrichtigung",
+ "act-addAttachment": "hat Anhang __attachment__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-deleteAttachment": "hat Anhang __attachment__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
+ "act-addSubtask": "hat Teilaufgabe __subtask__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addedLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-removeLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-removedLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-addChecklist": "hat Checkliste __checklist__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addChecklistItem": "hat Checklistenposition __checklistItem__ zu Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-removeChecklist": "hat Checkliste __checklist__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-removeChecklistItem": "hat Checklistenposition __checklistItem__ von Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-checkedItem": "hat __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ abgehakt",
+ "act-uncheckedItem": "hat Haken von __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-completeChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
+ "act-uncompleteChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ unvervollständigt",
+ "act-addComment": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ kommentiert: __comment__",
+ "act-editComment": "hat den Kommentar auf Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
+ "act-deleteComment": "hat den Kommentar von Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
+ "act-createBoard": "hat Board __board__ erstellt",
+ "act-createSwimlane": "hat Swimlane __swimlane__ in Board __board__ erstellt",
+ "act-createCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ erstellt",
+ "act-createCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ angelegt",
+ "act-deleteCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ gelöscht",
+ "act-setCustomField": "hat benutzerdefiniertes Feld __customField__: __customFieldValue__ auf Karte __card__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
+ "act-createList": "hat Liste __list__ zu Board __board__ hinzugefügt",
+ "act-addBoardMember": "hat Mitglied __member__ zu Board __board__ hinzugefügt",
+ "act-archivedBoard": "hat Board __board__ ins Archiv verschoben",
+ "act-archivedCard": "hat Karte __card__ von der Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
+ "act-archivedList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
+ "act-archivedSwimlane": "hat Swimlane __swimlane__ von Board __board__ ins Archiv verschoben",
+ "act-importBoard": "hat Board __board__ importiert",
+ "act-importCard": "hat Karte __card__ in Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
+ "act-importList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
+ "act-joinMember": "hat Mitglied __member__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-moveCard": "hat Karte __card__ in Board __board__ von Liste __oldList__ in Swimlane __oldSwimlane__ zu Liste __list__ in Swimlane __swimlane__ verschoben",
+ "act-moveCardToOtherBoard": "hat Karte __card__ von Liste __oldList__ in Swimlane __oldSwimlane__ in Board __oldBoard__ zu Liste __list__ in Swimlane __swimlane__ in Board __board__ verschoben",
+ "act-removeBoardMember": "hat Mitglied __member__ von Board __board__ entfernt",
+ "act-restoredCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ wiederhergestellt",
+ "act-unjoinMember": "hat Mitglied __member__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Aktionen",
+ "activities": "Aktivitäten",
+ "activity": "Aktivität",
+ "activity-added": "hat %s zu %s hinzugefügt",
+ "activity-archived": "hat %s ins Archiv verschoben",
+ "activity-attached": "hat %s an %s angehängt",
+ "activity-created": "hat %s erstellt",
+ "activity-customfield-created": "hat das benutzerdefinierte Feld %s erstellt",
+ "activity-excluded": "hat %s von %s ausgeschlossen",
+ "activity-imported": "hat %s in %s von %s importiert",
+ "activity-imported-board": "hat %s von %s importiert",
+ "activity-joined": "ist %s beigetreten",
+ "activity-moved": "hat %s von %s nach %s verschoben",
+ "activity-on": "in %s",
+ "activity-removed": "hat %s von %s entfernt",
+ "activity-sent": "hat %s an %s gesendet",
+ "activity-unjoined": "hat %s verlassen",
+ "activity-subtask-added": "Teilaufgabe zu %s hinzugefügt",
+ "activity-checked-item": "markierte %s in Checkliste %s von %s",
+ "activity-unchecked-item": "hat %s in Checkliste %s von %s abgewählt",
+ "activity-checklist-added": "hat eine Checkliste zu %s hinzugefügt",
+ "activity-checklist-removed": "entfernte eine Checkliste von %s",
+ "activity-checklist-completed": "Abgeschlossene Checkliste",
+ "activity-checklist-uncompleted": "unvervollständigte die Checkliste %s von %s",
+ "activity-checklist-item-added": "hat ein Checklistenelement zu '%s' in %s hinzugefügt",
+ "activity-checklist-item-removed": "hat ein Checklistenelement von '%s' in %s entfernt",
+ "add": "Hinzufügen",
+ "activity-checked-item-card": "markiere %s in Checkliste %s",
+ "activity-unchecked-item-card": "hat %s in Checkliste %s abgewählt",
+ "activity-checklist-completed-card": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
+ "activity-checklist-uncompleted-card": "unvervollständigte die Checkliste %s",
+ "activity-editComment": "editierte Kommentar",
+ "activity-deleteComment": "löschte Kommentar",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Datei anhängen",
+ "add-board": "neues Board",
+ "add-card": "Karte hinzufügen",
+ "add-swimlane": "Swimlane hinzufügen",
+ "add-subtask": "Teilaufgabe hinzufügen",
+ "add-checklist": "Checkliste hinzufügen",
+ "add-checklist-item": "Element zu Checkliste hinzufügen",
+ "add-cover": "Cover hinzufügen",
+ "add-label": "Label hinzufügen",
+ "add-list": "Liste hinzufügen",
+ "add-members": "Mitglieder hinzufügen",
+ "added": "Hinzugefügt",
+ "addMemberPopup-title": "Mitglieder",
+ "admin": "Admin",
+ "admin-desc": "Kann Karten anzeigen und bearbeiten, Mitglieder entfernen und Boardeinstellungen ändern.",
+ "admin-announcement": "Ankündigung",
+ "admin-announcement-active": "Aktive systemweite Ankündigungen",
+ "admin-announcement-title": "Ankündigung des Administrators",
+ "all-boards": "Alle Boards",
+ "and-n-other-card": "und eine andere Karte",
+ "and-n-other-card_plural": "und __count__ andere Karten",
+ "apply": "Übernehmen",
+ "app-is-offline": "Laden, bitte warten. Das Aktualisieren der Seite führt zu Datenverlust. Wenn das Laden nicht funktioniert, überprüfen Sie bitte, ob der Server nicht angehalten wurde.",
+ "archive": "Ins Archiv verschieben",
+ "archive-all": "Alles ins Archiv verschieben",
+ "archive-board": "Board ins Archiv verschieben",
+ "archive-card": "Karte ins Archiv verschieben",
+ "archive-list": "Liste ins Archiv verschieben",
+ "archive-swimlane": "Swimlane ins Archiv verschieben",
+ "archive-selection": "Auswahl ins Archiv verschieben",
+ "archiveBoardPopup-title": "Board ins Archiv verschieben?",
+ "archived-items": "Archiv",
+ "archived-boards": "Boards im Archiv",
+ "restore-board": "Board wiederherstellen",
+ "no-archived-boards": "Keine Boards im Archiv.",
+ "archives": "Archiv",
+ "template": "Vorlage",
+ "templates": "Vorlagen",
+ "assign-member": "Mitglied zuweisen",
+ "attached": "angehängt",
+ "attachment": "Anhang",
+ "attachment-delete-pop": "Das Löschen eines Anhangs kann nicht rückgängig gemacht werden.",
+ "attachmentDeletePopup-title": "Anhang löschen?",
+ "attachments": "Anhänge",
+ "auto-watch": "Neue Boards nach Erstellung automatisch beobachten",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Zurück",
+ "board-change-color": "Farbe ändern",
+ "board-nb-stars": "%s Sterne",
+ "board-not-found": "Board nicht gefunden",
+ "board-private-info": "Dieses Board wird privat sein.",
+ "board-public-info": "Dieses Board wird öffentlich sein.",
+ "boardChangeColorPopup-title": "Farbe des Boards ändern",
+ "boardChangeTitlePopup-title": "Board umbenennen",
+ "boardChangeVisibilityPopup-title": "Sichtbarkeit ändern",
+ "boardChangeWatchPopup-title": "Beobachtung ändern",
+ "boardMenuPopup-title": "Boardeinstellungen",
+ "boardChangeViewPopup-title": "Boardansicht",
+ "boards": "Boards",
+ "board-view": "Boardansicht",
+ "board-view-cal": "Kalender",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Einklappen",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listen",
+ "bucket-example": "z.B. \"Löffelliste\"",
+ "cancel": "Abbrechen",
+ "card-archived": "Diese Karte wurde ins Archiv verschoben",
+ "board-archived": "Dieses Board wurde ins Archiv verschoben.",
+ "card-comments-title": "Diese Karte hat %s Kommentar(e).",
+ "card-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Alle Aktionen, die dieser Karte zugeordnet sind, werden ebenfalls gelöscht.",
+ "card-delete-pop": "Alle Aktionen werden aus dem Aktivitätsfeed entfernt und die Karte kann nicht wiedereröffnet werden. Die Aktion kann nicht rückgängig gemacht werden.",
+ "card-delete-suggest-archive": "Sie können eine Karte ins Archiv verschieben, um sie vom Board zu entfernen und die Aktivitäten zu behalten.",
+ "card-due": "Fällig",
+ "card-due-on": "Fällig am",
+ "card-spent": "Aufgewendete Zeit",
+ "card-edit-attachments": "Anhänge ändern",
+ "card-edit-custom-fields": "Benutzerdefinierte Felder editieren",
+ "card-edit-labels": "Labels ändern",
+ "card-edit-members": "Mitglieder ändern",
+ "card-labels-title": "Labels für diese Karte ändern.",
+ "card-members-title": "Der Karte Board-Mitglieder hinzufügen oder entfernen.",
+ "card-start": "Start",
+ "card-start-on": "Start am",
+ "cardAttachmentsPopup-title": "Anhängen von",
+ "cardCustomField-datePopup-title": "Datum ändern",
+ "cardCustomFieldsPopup-title": "Benutzerdefinierte Felder editieren",
+ "cardStartVotingPopup-title": "Abstimmung starten",
+ "positiveVoteMembersPopup-title": "Befürworter",
+ "negativeVoteMembersPopup-title": "Gegner",
+ "card-edit-voting": "Abstimmung editieren",
+ "editVoteEndDatePopup-title": "Enddatum der Abstimmung ändern",
+ "allowNonBoardMembers": "Alle eingeloggte Nutzer erlauben",
+ "vote-question": "Abstimmen über",
+ "vote-public": "Zeigen, wer was gewählt hat",
+ "vote-for-it": "Dafür",
+ "vote-against": "Dagegen",
+ "deleteVotePopup-title": "Wahl löschen?",
+ "vote-delete-pop": "Löschen ist unwiderruflich. Alle Aktionen die dieser Karte zugeordnet sind werden ebenfalls gelöscht.",
+ "cardDeletePopup-title": "Karte löschen?",
+ "cardDetailsActionsPopup-title": "Kartenaktionen",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Mitglieder",
+ "cardMorePopup-title": "Mehr",
+ "cardTemplatePopup-title": "Vorlage erstellen",
+ "cards": "Karten",
+ "cards-count": "Karten",
+ "casSignIn": "Mit CAS anmelden",
+ "cardType-card": "Karte",
+ "cardType-linkedCard": "Verknüpfte Karte",
+ "cardType-linkedBoard": "Verknüpftes Board",
+ "change": "Ändern",
+ "change-avatar": "Profilbild ändern",
+ "change-password": "Passwort ändern",
+ "change-permissions": "Berechtigungen ändern",
+ "change-settings": "Einstellungen ändern",
+ "changeAvatarPopup-title": "Profilbild ändern",
+ "changeLanguagePopup-title": "Sprache ändern",
+ "changePasswordPopup-title": "Passwort ändern",
+ "changePermissionsPopup-title": "Berechtigungen ändern",
+ "changeSettingsPopup-title": "Einstellungen ändern",
+ "subtasks": "Teilaufgaben",
+ "checklists": "Checklisten",
+ "click-to-star": "Klicken Sie, um das Board mit einem Stern zu markieren.",
+ "click-to-unstar": "Klicken Sie, um den Stern vom Board zu entfernen.",
+ "clipboard": "Zwischenablage oder Drag & Drop",
+ "close": "Schließen",
+ "close-board": "Board schließen",
+ "close-board-pop": "Sie können das Board wiederherstellen, indem Sie die Schaltfläche \"Archiv\" in der Kopfzeile der Startseite anklicken.",
+ "color-black": "schwarz",
+ "color-blue": "blau",
+ "color-crimson": "Karminrot",
+ "color-darkgreen": "Dunkelgrün",
+ "color-gold": "Gold",
+ "color-gray": "Grau",
+ "color-green": "grün",
+ "color-indigo": "Indigo",
+ "color-lime": "hellgrün",
+ "color-magenta": "Magentarot",
+ "color-mistyrose": "Altrosa",
+ "color-navy": "Marineblau",
+ "color-orange": "orange",
+ "color-paleturquoise": "Blasses Türkis",
+ "color-peachpuff": "Pfirsich",
+ "color-pink": "pink",
+ "color-plum": "Pflaume",
+ "color-purple": "lila",
+ "color-red": "rot",
+ "color-saddlebrown": "Sattelbraun",
+ "color-silver": "Silber",
+ "color-sky": "himmelblau",
+ "color-slateblue": "Schieferblau",
+ "color-white": "Weiß",
+ "color-yellow": "gelb",
+ "unset-color": "Nicht festgelegt",
+ "comment": "Kommentar",
+ "comment-placeholder": "Kommentar schreiben",
+ "comment-only": "Nur Kommentare",
+ "comment-only-desc": "Kann Karten nur kommentieren.",
+ "no-comments": "Keine Kommentare",
+ "no-comments-desc": "Kann keine Kommentare und Aktivitäten sehen.",
+ "worker": "Arbeiter",
+ "worker-desc": "Kann Karten nur verschieben, sich selbst zuweisen und kommentieren.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Wollen Sie die Teilaufgabe wirklich löschen?",
+ "confirm-checklist-delete-dialog": "Wollen Sie die Checkliste wirklich löschen?",
+ "copy-card-link-to-clipboard": "Kopiere Link zur Karte in die Zwischenablage",
+ "linkCardPopup-title": "Karte verknüpfen",
+ "searchElementPopup-title": "Suche",
+ "copyCardPopup-title": "Karte kopieren",
+ "copyChecklistToManyCardsPopup-title": "Checklistenvorlage in mehrere Karten kopieren",
+ "copyChecklistToManyCardsPopup-instructions": "Titel und Beschreibungen der Zielkarten im folgenden JSON-Format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel der ersten Karte\", \"description\":\"Beschreibung der ersten Karte\"}, {\"title\":\"Titel der zweiten Karte\",\"description\":\"Beschreibung der zweiten Karte\"},{\"title\":\"Titel der letzten Karte\",\"description\":\"Beschreibung der letzten Karte\"} ]",
+ "create": "Erstellen",
+ "createBoardPopup-title": "Board erstellen",
+ "chooseBoardSourcePopup-title": "Board importieren",
+ "createLabelPopup-title": "Label erstellen",
+ "createCustomField": "Feld erstellen",
+ "createCustomFieldPopup-title": "Feld erstellen",
+ "current": "aktuell",
+ "custom-field-delete-pop": "Dies wird das Feld aus allen Karten entfernen und den dazugehörigen Verlauf löschen. Die Aktion kann nicht rückgängig gemacht werden.",
+ "custom-field-checkbox": "Kontrollkästchen",
+ "custom-field-currency": "Währung",
+ "custom-field-currency-option": "Währungszeichen",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Dropdownliste",
+ "custom-field-dropdown-none": "(keiner)",
+ "custom-field-dropdown-options": "Listenoptionen",
+ "custom-field-dropdown-options-placeholder": "Drücken Sie die Eingabetaste, um weitere Optionen hinzuzufügen",
+ "custom-field-dropdown-unknown": "(unbekannt)",
+ "custom-field-number": "Zahl",
+ "custom-field-text": "Text",
+ "custom-fields": "Benutzerdefinierte Felder",
+ "date": "Datum",
+ "decline": "Ablehnen",
+ "default-avatar": "Standard Profilbild",
+ "delete": "Löschen",
+ "deleteCustomFieldPopup-title": "Benutzerdefiniertes Feld löschen?",
+ "deleteLabelPopup-title": "Label löschen?",
+ "description": "Beschreibung",
+ "disambiguateMultiLabelPopup-title": "Labels vereinheitlichen",
+ "disambiguateMultiMemberPopup-title": "Mitglieder vereinheitlichen",
+ "discard": "Verwerfen",
+ "done": "Erledigt",
+ "download": "Herunterladen",
+ "edit": "Bearbeiten",
+ "edit-avatar": "Profilbild ändern",
+ "edit-profile": "Profil ändern",
+ "edit-wip-limit": "WIP-Limit bearbeiten",
+ "soft-wip-limit": "Soft WIP-Limit",
+ "editCardStartDatePopup-title": "Startdatum ändern",
+ "editCardDueDatePopup-title": "Fälligkeitsdatum ändern",
+ "editCustomFieldPopup-title": "Feld bearbeiten",
+ "editCardSpentTimePopup-title": "Aufgewendete Zeit ändern",
+ "editLabelPopup-title": "Label ändern",
+ "editNotificationPopup-title": "Benachrichtigung ändern",
+ "editProfilePopup-title": "Profil ändern",
+ "email": "E-Mail",
+ "email-enrollAccount-subject": "Ihr Benutzerkonto auf __siteName__ wurde erstellt",
+ "email-enrollAccount-text": "Hallo __user__,\n\num den Dienst nutzen zu können, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-fail": "Senden der E-Mail fehlgeschlagen",
+ "email-fail-text": "Fehler beim Senden der E-Mail",
+ "email-invalid": "Ungültige E-Mail-Adresse",
+ "email-invite": "per E-Mail einladen",
+ "email-invite-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
+ "email-invite-text": "Hallo __user__,\n\n__inviter__ hat Sie zu dem Board \"__board__\" eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-resetPassword-subject": "Setzten Sie ihr Passwort auf __siteName__ zurück",
+ "email-resetPassword-text": "Hallo __user__,\n\num ihr Passwort zurückzusetzen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-sent": "E-Mail gesendet",
+ "email-verifyEmail-subject": "Bestätigen Sie ihre E-Mail-Adresse auf __siteName__",
+ "email-verifyEmail-text": "Hallo __user__,\n\num ihre E-Mail-Adresse zu bestätigen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "enable-wip-limit": "WIP-Limit einschalten",
+ "error-board-doesNotExist": "Dieses Board existiert nicht",
+ "error-board-notAdmin": "Um das zu tun, müssen Sie Administrator dieses Boards sein",
+ "error-board-notAMember": "Um das zu tun, müssen Sie Mitglied dieses Boards sein",
+ "error-json-malformed": "Ihre Eingabe ist kein gültiges JSON",
+ "error-json-schema": "Ihre JSON-Daten enthalten nicht die gewünschten Informationen im richtigen Format",
+ "error-csv-schema": "hre CSV (Comma Separated Values)/TSV (Tab Separated Values) enthalten nicht die gewünschten Informationen im richtigen Format",
+ "error-list-doesNotExist": "Diese Liste existiert nicht",
+ "error-user-doesNotExist": "Dieser Nutzer existiert nicht",
+ "error-user-notAllowSelf": "Sie können sich nicht selbst einladen.",
+ "error-user-notCreated": "Dieser Nutzer ist nicht angelegt",
+ "error-username-taken": "Dieser Benutzername ist bereits vergeben",
+ "error-email-taken": "E-Mail wird schon verwendet",
+ "export-board": "Board exportieren",
+ "export-board-json": "Board als JSON exportieren",
+ "export-board-csv": "Board als CSV exportieren",
+ "export-board-tsv": "Board als TSV exportieren",
+ "export-board-html": "Board als HTML exportieren",
+ "exportBoardPopup-title": "Board exportieren",
+ "sort": "Sortieren",
+ "sort-desc": "Zum Sortieren der Liste klicken",
+ "list-sort-by": "Sortieren der Liste nach:",
+ "list-label-modifiedAt": "Letzte Zugriffszeit",
+ "list-label-title": "Name der Liste",
+ "list-label-sort": "Ihre manuelle Sortierung",
+ "list-label-short-modifiedAt": "(Z)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Karten oder Listen filtern",
+ "list-filter-label": "Liste nach Titel filtern",
+ "filter-clear": "Filter entfernen",
+ "filter-labels-label": "Nach Label filtern",
+ "filter-no-label": "Kein Label",
+ "filter-member-label": "Nach Nutzer filtern",
+ "filter-no-member": "Kein Mitglied",
+ "filter-assignee-label": "Nach Zuordnung filtern",
+ "filter-no-assignee": "Nicht zugewiesen",
+ "filter-custom-fields-label": "Filtern nach benutzerdefinierten Feldern",
+ "filter-no-custom-fields": "Keine benutzerdefinierten Felder",
+ "filter-show-archive": "Archivierte Listen anzeigen",
+ "filter-hide-empty": "Leere Listen verstecken",
+ "filter-on": "Filter ist aktiv",
+ "filter-on-desc": "Sie filtern die Karten in diesem Board. Klicken Sie, um den Filter zu bearbeiten.",
+ "filter-to-selection": "Ergebnisse auswählen",
+ "other-filters-label": "Andere Filter",
+ "advanced-filter-label": "Erweiterter Filter",
+ "advanced-filter-description": "Der erweiterte Filter erlaubt die Eingabe von Zeichenfolgen, die folgende Operatoren enthalten: == != <= >= && || ( ). Ein Leerzeichen wird als Trennzeichen zwischen den Operatoren verwendet. Sie können nach allen benutzerdefinierten Feldern filtern, indem Sie deren Namen und Werte eingeben. Zum Beispiel: Feld1 == Wert1. Hinweis: Wenn Felder oder Werte Leerzeichen enthalten, müssen Sie sie in einfache Anführungszeichen setzen. Zum Beispiel: 'Feld 1' == 'Wert 1'. Um einzelne Steuerzeichen (' \\/) zu überspringen, können Sie \\ verwenden. Zum Beispiel: Feld1 == Ich bin\\'s. Sie können außerdem mehrere Bedingungen kombinieren. Zum Beispiel: F1 == W1 || F1 == W2. Normalerweise werden alle Operatoren von links nach rechts interpretiert. Sie können die Reihenfolge ändern, indem Sie Klammern setzen. Zum Beispiel: F1 == W1 && ( F2 == W2 || F2 == W3 ). Sie können Textfelder auch mithilfe regulärer Ausdrücke durchsuchen: F1 == /Tes.*/i",
+ "fullname": "Vollständiger Name",
+ "header-logo-title": "Zurück zur Board Seite.",
+ "hide-system-messages": "Systemmeldungen ausblenden",
+ "headerBarCreateBoardPopup-title": "Board erstellen",
+ "home": "Home",
+ "import": "Importieren",
+ "impersonate-user": "Impersonate user",
+ "link": "Verknüpfung",
+ "import-board": "Board importieren",
+ "import-board-c": "Board importieren",
+ "import-board-title-trello": "Board von Trello importieren",
+ "import-board-title-wekan": "Board aus vorherigem Export importieren",
+ "import-board-title-csv": "Board von CSV/TSV importieren",
+ "from-trello": "Von Trello",
+ "from-wekan": "Aus vorherigem Export",
+ "from-csv": "Aus CSV/TSV",
+ "import-board-instruction-trello": "Gehen Sie in ihrem Trello-Board auf 'Menü', dann 'Mehr', 'Drucken und Exportieren', 'JSON-Export' und kopieren Sie den dort angezeigten Text",
+ "import-board-instruction-csv": "Fügen Sie die Ihre Comma-Separated- (CSV) / bzw. Tab-Separated-Values (TSV) ein.",
+ "import-board-instruction-wekan": "Gehen Sie in Ihrem Board auf 'Menü', danach auf 'Board exportieren' und kopieren Sie den Text aus der heruntergeladenen Datei.",
+ "import-board-instruction-about-errors": "Treten beim importieren eines Board Fehler auf, so kann der Import dennoch erfolgreich abgeschlossen sein und das Board ist auf der Seite \"Alle Boards\" zusehen.",
+ "import-json-placeholder": "Fügen Sie die korrekten JSON-Daten hier ein",
+ "import-csv-placeholder": "Fügen Sie die korrekten CSV/TSV-Daten hier ein ",
+ "import-map-members": "Mitglieder zuordnen",
+ "import-members-map": "Das importierte Board hat einige Mitglieder. Bitte ordnen sie die Mitglieder, die Sie importieren wollen, Ihren Benutzern zu.",
+ "import-show-user-mapping": "Mitgliederzuordnung überprüfen",
+ "import-user-select": "Wählen Sie den bestehenden Benutzer aus, den Sie für dieses Mitglied verwenden wollen.",
+ "importMapMembersAddPopup-title": "Mitglied auswählen",
+ "info": "Version",
+ "initials": "Initialen",
+ "invalid-date": "Ungültiges Datum",
+ "invalid-time": "Ungültige Zeitangabe",
+ "invalid-user": "Ungültiger Benutzer",
+ "joined": "beigetreten",
+ "just-invited": "Sie wurden soeben zu diesem Board eingeladen",
+ "keyboard-shortcuts": "Tastaturkürzel",
+ "label-create": "Label erstellen",
+ "label-default": "%s Label (Standard)",
+ "label-delete-pop": "Aktion kann nicht rückgängig gemacht werden. Das Label wird von allen Karten entfernt und seine Historie gelöscht.",
+ "labels": "Labels",
+ "language": "Sprache",
+ "last-admin-desc": "Sie können keine Rollen ändern, weil es mindestens einen Administrator geben muss.",
+ "leave-board": "Board verlassen",
+ "leave-board-pop": "Sind Sie sicher, dass Sie __boardTitle__ verlassen möchten? Sie werden von allen Karten in diesem Board entfernt.",
+ "leaveBoardPopup-title": "Board verlassen?",
+ "link-card": "Link zu dieser Karte",
+ "list-archive-cards": "Alle Karten dieser Liste ins Archiv verschieben",
+ "list-archive-cards-pop": "Alle Karten dieser Liste werden vom Board entfernt. Um Karten im Papierkorb anzuzeigen und wiederherzustellen, klicken Sie auf \"Menü\" > \"Archiv\".",
+ "list-move-cards": "Alle Karten in dieser Liste verschieben",
+ "list-select-cards": "Alle Karten in dieser Liste auswählen",
+ "set-color-list": "Lege Farbe fest",
+ "listActionPopup-title": "Listenaktionen",
+ "settingsUserPopup-title": "Benutzereinstellungen",
+ "swimlaneActionPopup-title": "Swimlaneaktionen",
+ "swimlaneAddPopup-title": "Swimlane unterhalb einfügen",
+ "listImportCardPopup-title": "Eine Trello-Karte importieren",
+ "listImportCardsTsvPopup-title": "CSV/TSV importieren",
+ "listMorePopup-title": "Mehr",
+ "link-list": "Link zu dieser Liste",
+ "list-delete-pop": "Alle Aktionen werden aus dem Verlauf gelöscht und die Liste kann nicht wiederhergestellt werden.",
+ "list-delete-suggest-archive": "Listen können ins Archiv verschoben werden, um sie aus dem Board zu entfernen und die Aktivitäten zu behalten.",
+ "lists": "Listen",
+ "swimlanes": "Swimlanes",
+ "log-out": "Ausloggen",
+ "log-in": "Einloggen",
+ "loginPopup-title": "Einloggen",
+ "memberMenuPopup-title": "Nutzereinstellungen",
+ "members": "Mitglieder",
+ "menu": "Menü",
+ "move-selection": "Auswahl verschieben",
+ "moveCardPopup-title": "Karte verschieben",
+ "moveCardToBottom-title": "Ans Ende verschieben",
+ "moveCardToTop-title": "Zum Anfang verschieben",
+ "moveSelectionPopup-title": "Auswahl verschieben",
+ "multi-selection": "Mehrfachauswahl",
+ "multi-selection-label": "Label für die Auswahl setzen",
+ "multi-selection-member": "Mitglied für die Auswahl setzen",
+ "multi-selection-on": "Mehrfachauswahl ist aktiv",
+ "muted": "Stumm",
+ "muted-info": "Sie werden nicht über Änderungen auf diesem Board benachrichtigt",
+ "my-boards": "Meine Boards",
+ "name": "Name",
+ "no-archived-cards": "Keine Karten im Archiv.",
+ "no-archived-lists": "Keine Listen im Archiv.",
+ "no-archived-swimlanes": "Keine Swimlanes im Archiv.",
+ "no-results": "Keine Ergebnisse",
+ "normal": "Normal",
+ "normal-desc": "Kann Karten anzeigen und bearbeiten, aber keine Einstellungen ändern.",
+ "not-accepted-yet": "Die Einladung wurde noch nicht angenommen",
+ "notify-participate": "Benachrichtigungen zu allen Karten erhalten, an denen Sie teilnehmen",
+ "notify-watch": "Benachrichtigungen über alle Boards, Listen oder Karten erhalten, die Sie beobachten",
+ "optional": "optional",
+ "or": "oder",
+ "page-maybe-private": "Diese Seite könnte privat sein. Vielleicht können Sie sie sehen, wenn Sie sich einloggen.",
+ "page-not-found": "Seite nicht gefunden.",
+ "password": "Passwort",
+ "paste-or-dragdrop": "Einfügen oder Datei mit Drag & Drop ablegen (nur Bilder)",
+ "participating": "Teilnehmen",
+ "preview": "Vorschau",
+ "previewAttachedImagePopup-title": "Vorschau",
+ "previewClipboardImagePopup-title": "Vorschau",
+ "private": "Privat",
+ "private-desc": "Dieses Board ist privat. Nur Nutzer, die zu dem Board gehören, können es anschauen und bearbeiten.",
+ "profile": "Profil",
+ "public": "Öffentlich",
+ "public-desc": "Dieses Board ist öffentlich. Es ist für jeden, der den Link kennt, sichtbar und taucht in Suchmaschinen wie Google auf. Nur Nutzer, die zum Board hinzugefügt wurden, können es bearbeiten.",
+ "quick-access-description": "Markieren Sie ein Board mit einem Stern, um dieser Leiste eine Verknüpfung hinzuzufügen.",
+ "remove-cover": "Cover entfernen",
+ "remove-from-board": "Von Board entfernen",
+ "remove-label": "Label entfernen",
+ "listDeletePopup-title": "Liste löschen?",
+ "remove-member": "Nutzer entfernen",
+ "remove-member-from-card": "Von Karte entfernen",
+ "remove-member-pop": "__name__ (__username__) von __boardTitle__ entfernen? Das Mitglied wird von allen Karten auf diesem Board entfernt. Es erhält eine Benachrichtigung.",
+ "removeMemberPopup-title": "Mitglied entfernen?",
+ "rename": "Umbenennen",
+ "rename-board": "Board umbenennen",
+ "restore": "Wiederherstellen",
+ "save": "Speichern",
+ "search": "Suchen",
+ "rules": "Regeln",
+ "search-cards": "Suche nach Karten-/Listentiteln, Beschreibungen und personalisierten Feldern auf diesem Brett ",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Farbe auswählen",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Setzen Sie ein Limit für die maximale Anzahl von Aufgaben in dieser Liste",
+ "setWipLimitPopup-title": "WIP-Limit setzen",
+ "shortcut-assign-self": "Fügen Sie sich zur aktuellen Karte hinzu",
+ "shortcut-autocomplete-emoji": "Emojis vervollständigen",
+ "shortcut-autocomplete-members": "Mitglieder vervollständigen",
+ "shortcut-clear-filters": "Alle Filter entfernen",
+ "shortcut-close-dialog": "Dialog schließen",
+ "shortcut-filter-my-cards": "Meine Karten filtern",
+ "shortcut-show-shortcuts": "Liste der Tastaturkürzel anzeigen",
+ "shortcut-toggle-filterbar": "Filter-Seitenleiste ein-/ausblenden",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Seitenleiste ein-/ausblenden",
+ "show-cards-minimum-count": "Zeigt die Kartenanzahl an, wenn die Liste mehr enthält als",
+ "sidebar-open": "Seitenleiste öffnen",
+ "sidebar-close": "Seitenleiste schließen",
+ "signupPopup-title": "Benutzerkonto erstellen",
+ "star-board-title": "Klicken Sie, um das Board mit einem Stern zu markieren. Es erscheint dann oben in ihrer Boardliste.",
+ "starred-boards": "Markierte Boards",
+ "starred-boards-description": "Markierte Boards erscheinen oben in ihrer Boardliste.",
+ "subscribe": "Abonnieren",
+ "team": "Team",
+ "this-board": "diesem Board",
+ "this-card": "diese Karte",
+ "spent-time-hours": "Aufgewendete Zeit (Stunden)",
+ "overtime-hours": "Mehrarbeit (Stunden)",
+ "overtime": "Mehrarbeit",
+ "has-overtime-cards": "Hat Karten mit Mehrarbeit",
+ "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
+ "time": "Zeit",
+ "title": "Titel",
+ "tracking": "Folgen",
+ "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
+ "type": "Typ",
+ "unassign-member": "Mitglied entfernen",
+ "unsaved-description": "Sie haben eine nicht gespeicherte Änderung.",
+ "unwatch": "Beobachtung entfernen",
+ "upload": "Upload",
+ "upload-avatar": "Profilbild hochladen",
+ "uploaded-avatar": "Profilbild hochgeladen",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text unterhalb benutzerdefiniertem Login Logo",
+ "username": "Benutzername",
+ "view-it": "Ansehen",
+ "warn-list-archived": "Warnung: Diese Karte befindet sich in einer Liste im Archiv",
+ "watch": "Beobachten",
+ "watching": "Beobachten",
+ "watching-info": "Sie werden über alle Änderungen in diesem Board benachrichtigt",
+ "welcome-board": "Willkommen-Board",
+ "welcome-swimlane": "Meilenstein 1",
+ "welcome-list1": "Grundlagen",
+ "welcome-list2": "Fortgeschritten",
+ "card-templates-swimlane": "Kartenvorlagen",
+ "list-templates-swimlane": "Listenvorlagen",
+ "board-templates-swimlane": "Boardvorlagen",
+ "what-to-do": "Was wollen Sie tun?",
+ "wipLimitErrorPopup-title": "Ungültiges WIP-Limit",
+ "wipLimitErrorPopup-dialog-pt1": "Die Anzahl von Aufgaben in dieser Liste ist größer als das von Ihnen definierte WIP-Limit.",
+ "wipLimitErrorPopup-dialog-pt2": "Bitte verschieben Sie einige Aufgaben aus dieser Liste oder setzen Sie ein grösseres WIP-Limit.",
+ "admin-panel": "Administration",
+ "settings": "Einstellungen",
+ "people": "Nutzer",
+ "registration": "Registrierung",
+ "disable-self-registration": "Selbstregistrierung deaktivieren",
+ "invite": "Einladen",
+ "invite-people": "Nutzer einladen",
+ "to-boards": "In Board(s)",
+ "email-addresses": "E-Mail Adressen",
+ "smtp-host-description": "Die Adresse Ihres SMTP-Servers für ausgehende E-Mails.",
+ "smtp-port-description": "Der Port Ihres SMTP-Servers für ausgehende E-Mails.",
+ "smtp-tls-description": "Aktiviere TLS Unterstützung für SMTP Server",
+ "smtp-host": "SMTP-Server",
+ "smtp-port": "SMTP-Port",
+ "smtp-username": "Benutzername",
+ "smtp-password": "Passwort",
+ "smtp-tls": "TLS Unterstützung",
+ "send-from": "Absender",
+ "send-smtp-test": "Test-E-Mail an sich selbst schicken",
+ "invitation-code": "Einladungscode",
+ "email-invite-register-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
+ "email-invite-register-text": "Sehr geehrte(r) __user__,\n\n__inviter__ hat Sie zur Mitarbeit an einem Kanbanboard eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n__url__\n\nIhr Einladungscode lautet: __icode__\n\nDanke.",
+ "email-smtp-test-subject": "SMTP Test-E-Mail",
+ "email-smtp-test-text": "Sie haben erfolgreich eine E-Mail versandt",
+ "error-invitation-code-not-exist": "Ungültiger Einladungscode",
+ "error-notAuthorized": "Sie sind nicht berechtigt diese Seite zu sehen.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional für Authentifizierung)",
+ "outgoing-webhooks": "Ausgehende Webhooks",
+ "bidirectional-webhooks": "Zwei-Wege Webhooks",
+ "outgoingWebhooksPopup-title": "Ausgehende Webhooks",
+ "boardCardTitlePopup-title": "Kartentitelfilter",
+ "disable-webhook": "Diesen Webhook deaktivieren",
+ "global-webhook": "Globale Webhooks",
+ "new-outgoing-webhook": "Neuer ausgehender Webhook",
+ "no-name": "(Unbekannt)",
+ "Node_version": "Node-Version",
+ "Meteor_version": "Meteor-Version",
+ "MongoDB_version": "MongoDB-Version",
+ "MongoDB_storage_engine": "MongoDB-Speicher-Engine",
+ "MongoDB_Oplog_enabled": "MongoDB-Oplog aktiviert",
+ "OS_Arch": "Betriebssystem-Architektur",
+ "OS_Cpus": "Anzahl Prozessoren",
+ "OS_Freemem": "Freier Arbeitsspeicher",
+ "OS_Loadavg": "Mittlere Systembelastung",
+ "OS_Platform": "Plattform",
+ "OS_Release": "Version des Betriebssystem",
+ "OS_Totalmem": "Gesamter Arbeitsspeicher",
+ "OS_Type": "Typ des Betriebssystems",
+ "OS_Uptime": "Laufzeit des Systems",
+ "days": "Tage",
+ "hours": "Stunden",
+ "minutes": "Minuten",
+ "seconds": "Sekunden",
+ "show-field-on-card": "Zeige dieses Feld auf der Karte",
+ "automatically-field-on-card": "Automatisch Label für alle Karten erzeugen",
+ "showLabel-field-on-card": "Feldbezeichnung auf Minikarte anzeigen",
+ "yes": "Ja",
+ "no": "Nein",
+ "accounts": "Konten",
+ "accounts-allowEmailChange": "Ändern der E-Mailadresse erlauben",
+ "accounts-allowUserNameChange": "Ändern des Benutzernamens erlauben",
+ "createdAt": "Erstellt am",
+ "verified": "Geprüft",
+ "active": "Aktiv",
+ "card-received": "Empfangen",
+ "card-received-on": "Empfangen am",
+ "card-end": "Ende",
+ "card-end-on": "Endet am",
+ "editCardReceivedDatePopup-title": "Empfangsdatum ändern",
+ "editCardEndDatePopup-title": "Enddatum ändern",
+ "setCardColorPopup-title": "Farbe festlegen",
+ "setCardActionsColorPopup-title": "Farbe wählen",
+ "setSwimlaneColorPopup-title": "Farbe wählen",
+ "setListColorPopup-title": "Farbe wählen",
+ "assigned-by": "Zugewiesen von",
+ "requested-by": "Angefordert von",
+ "board-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Sie werden alle Listen, Karten und Aktionen, die mit diesem Board verbunden sind, verlieren.",
+ "delete-board-confirm-popup": "Alle Listen, Karten, Labels und Akivitäten werden gelöscht und Sie können die Inhalte des Boards nicht wiederherstellen! Die Aktion kann nicht rückgängig gemacht werden.",
+ "boardDeletePopup-title": "Board löschen?",
+ "delete-board": "Board löschen",
+ "default-subtasks-board": "Teilaufgabe für __board__ Board",
+ "default": "Standard",
+ "queue": "Warteschlange",
+ "subtask-settings": "Einstellungen für Teilaufgaben",
+ "card-settings": "Karten-Einstellungen",
+ "boardSubtaskSettingsPopup-title": "Boardeinstellungen für Teilaufgaben",
+ "boardCardSettingsPopup-title": "Karten-Einstellungen",
+ "deposit-subtasks-board": "Teilaufgaben in diesem Board ablegen:",
+ "deposit-subtasks-list": "Zielliste für hier abgelegte Teilaufgaben:",
+ "show-parent-in-minicard": "Übergeordnetes Element auf Minikarte anzeigen:",
+ "prefix-with-full-path": "Vollständiger Pfad über Titel",
+ "prefix-with-parent": "Über Titel",
+ "subtext-with-full-path": "Vollständiger Pfad unter Titel",
+ "subtext-with-parent": "Unter Titel",
+ "change-card-parent": "Übergeordnete Karte ändern",
+ "parent-card": "Übergeordnete Karte",
+ "source-board": "Quellboard",
+ "no-parent": "Nicht anzeigen",
+ "activity-added-label": "fügte Label '%s' zu %s hinzu",
+ "activity-removed-label": "entfernte Label '%s' von %s",
+ "activity-delete-attach": "löschte ein Anhang von %s",
+ "activity-added-label-card": "Label hinzugefügt '%s'",
+ "activity-removed-label-card": "Label entfernt '%s'",
+ "activity-delete-attach-card": "hat einen Anhang gelöscht",
+ "activity-set-customfield": "setze benutzerdefiniertes Feld '%s' zu '%s' in %s",
+ "activity-unset-customfield": "entferne benutzerdefiniertes Feld '%s' in %s",
+ "r-rule": "Regel",
+ "r-add-trigger": "Auslöser hinzufügen",
+ "r-add-action": "Aktion hinzufügen",
+ "r-board-rules": "Boardregeln",
+ "r-add-rule": "Regel hinzufügen",
+ "r-view-rule": "Regel anzeigen",
+ "r-delete-rule": "Regel löschen",
+ "r-new-rule-name": "Neuer Regeltitel",
+ "r-no-rules": "Keine Regeln",
+ "r-trigger": "Auslöser",
+ "r-action": "Aktion",
+ "r-when-a-card": "Wenn Karte",
+ "r-is": "wird",
+ "r-is-moved": "verschoben wird",
+ "r-added-to": "Hinzugefügt zu",
+ "r-removed-from": "entfernt von",
+ "r-the-board": "das Board",
+ "r-list": "Liste",
+ "set-filter": "Setze Filter",
+ "r-moved-to": "verschoben nach",
+ "r-moved-from": "verschoben von",
+ "r-archived": "ins Archiv verschoben",
+ "r-unarchived": "aus dem Archiv wiederhergestellt",
+ "r-a-card": "einer Karte",
+ "r-when-a-label-is": "Wenn ein Label",
+ "r-when-the-label": "Wenn das Label",
+ "r-list-name": "Listenname",
+ "r-when-a-member": "Wenn ein Mitglied",
+ "r-when-the-member": "Wenn das Mitglied",
+ "r-name": "Name",
+ "r-when-a-attach": "Wenn ein Anhang",
+ "r-when-a-checklist": "Wenn eine Checkliste wird",
+ "r-when-the-checklist": "Wenn die Checkliste",
+ "r-completed": "abgeschlossen",
+ "r-made-incomplete": "unvollständig gemacht",
+ "r-when-a-item": "Wenn eine Checklistenposition",
+ "r-when-the-item": "Wenn die Checklistenposition",
+ "r-checked": "markiert wird",
+ "r-unchecked": "abgewählt wird",
+ "r-move-card-to": "Verschiebe Karte an",
+ "r-top-of": "Anfang von",
+ "r-bottom-of": "Ende von",
+ "r-its-list": "seiner Liste",
+ "r-archive": "Ins Archiv verschieben",
+ "r-unarchive": "Aus dem Archiv wiederherstellen",
+ "r-card": "Karte",
+ "r-add": "Hinzufügen",
+ "r-remove": "entfernen",
+ "r-label": "Label",
+ "r-member": "Mitglied",
+ "r-remove-all": "Entferne alle Mitglieder von der Karte",
+ "r-set-color": "Farbe festlegen auf",
+ "r-checklist": "Checkliste",
+ "r-check-all": "Alle markieren",
+ "r-uncheck-all": "Alle abwählen",
+ "r-items-check": "Elemente der Checkliste",
+ "r-check": "Markieren",
+ "r-uncheck": "Abwählen",
+ "r-item": "Element",
+ "r-of-checklist": "der Checkliste",
+ "r-send-email": "Eine E-Mail senden",
+ "r-to": "an",
+ "r-of": "von",
+ "r-subject": "Betreff",
+ "r-rule-details": "Regeldetails",
+ "r-d-move-to-top-gen": "Karte nach oben in die Liste verschieben",
+ "r-d-move-to-top-spec": "Karte an den Anfang der Liste verschieben",
+ "r-d-move-to-bottom-gen": "Karte nach unten in die Liste verschieben",
+ "r-d-move-to-bottom-spec": "Karte an das Ende der Liste verschieben",
+ "r-d-send-email": "E-Mail senden",
+ "r-d-send-email-to": "an",
+ "r-d-send-email-subject": "Betreff",
+ "r-d-send-email-message": "Nachricht",
+ "r-d-archive": "Karte ins Archiv verschieben",
+ "r-d-unarchive": "Karte aus dem Archiv wiederherstellen",
+ "r-d-add-label": "Label hinzufügen",
+ "r-d-remove-label": "Label entfernen",
+ "r-create-card": "Neue Karte erstellen",
+ "r-in-list": "in der Liste",
+ "r-in-swimlane": "in Swimlane",
+ "r-d-add-member": "Mitglied hinzufügen",
+ "r-d-remove-member": "Mitglied entfernen",
+ "r-d-remove-all-member": "Entferne alle Mitglieder",
+ "r-d-check-all": "Alle Elemente der Liste markieren",
+ "r-d-uncheck-all": "Alle Element der Liste abwählen",
+ "r-d-check-one": "Element auswählen",
+ "r-d-uncheck-one": "Element abwählen",
+ "r-d-check-of-list": "der Checkliste",
+ "r-d-add-checklist": "Checkliste hinzufügen",
+ "r-d-remove-checklist": "Checkliste entfernen",
+ "r-by": "durch",
+ "r-add-checklist": "Checkliste hinzufügen",
+ "r-with-items": "mit Elementen",
+ "r-items-list": "Element1,Element2,Element3",
+ "r-add-swimlane": "Füge Swimlane hinzu",
+ "r-swimlane-name": "Swimlanename",
+ "r-board-note": "Hinweis: Lassen Sie ein Feld leer, um alle möglichen Werte zu finden.",
+ "r-checklist-note": "Hinweis: Die Elemente der Checkliste müssen als kommagetrennte Werte geschrieben werden.",
+ "r-when-a-card-is-moved": "Wenn eine Karte in eine andere Liste verschoben wird",
+ "r-set": "Setze",
+ "r-update": "Aktualisiere",
+ "r-datefield": "Datumsfeld",
+ "r-df-start-at": "Start",
+ "r-df-due-at": "Fällig",
+ "r-df-end-at": "Ende",
+ "r-df-received-at": "Empfangen",
+ "r-to-current-datetime": "auf das aktuelle Datum/Zeit",
+ "r-remove-value-from": "Entferne Wert von",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentifizierungsmethode",
+ "authentication-type": "Authentifizierungstyp",
+ "custom-product-name": "Benutzerdefinierter Produktname",
+ "layout": "Layout",
+ "hide-logo": "Verstecke Logo",
+ "add-custom-html-after-body-start": "Füge benutzerdefiniertes HTML nach Anfang hinzu",
+ "add-custom-html-before-body-end": "Füge benutzerdefiniertes HTML vor Ende hinzu",
+ "error-undefined": "Etwas ist schief gelaufen",
+ "error-ldap-login": "Es ist ein Fehler beim Anmelden aufgetreten",
+ "display-authentication-method": "Anzeige Authentifizierungsverfahren",
+ "default-authentication-method": "Standardauthentifizierungsverfahren",
+ "duplicate-board": "Board duplizieren",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Anzahl der Personen:",
+ "swimlaneDeletePopup-title": "Swimlane löschen?",
+ "swimlane-delete-pop": "Alle Aktionen werden aus dem Aktivitätenfeed entfernt und die Swimlane kann nicht wiederhergestellt werden. Die Aktion kann nicht rückgängig gemacht werden.",
+ "restore-all": "Alles wiederherstellen",
+ "delete-all": "Alles löschen",
+ "loading": "Laden, bitte warten.",
+ "previous_as": "letzter Zeitpunkt war",
+ "act-a-dueAt": "hat Fälligkeit geändert auf\nWann: __timeValue__\nWo: __card__\nvorheriger Fälligkeitszeitpunkt war __timeOldValue__",
+ "act-a-endAt": "hat Ende auf __timeValue__ von (__timeOldValue__) geändert",
+ "act-a-startAt": "hat Start auf __timeValue__ von (__timeOldValue__) geändert",
+ "act-a-receivedAt": "hat Empfangszeit auf __timeValue__ von (__timeOldValue__) geändert",
+ "a-dueAt": "hat Fälligkeit geändert auf",
+ "a-endAt": "hat Ende geändert auf",
+ "a-startAt": "hat Startzeit geändert auf",
+ "a-receivedAt": "hat Empfangszeit geändert auf",
+ "almostdue": "aktuelles Fälligkeitsdatum %s bevorstehend",
+ "pastdue": "aktuelles Fälligkeitsdatum %s überschritten",
+ "duenow": "aktuelles Fälligkeitsdatum %s heute",
+ "act-newDue": "__list__/__card__ hat seine 1. fällige Erinnerung [__board__]",
+ "act-withDue": "Erinnerung an Fällikgeit von __card__ [__board__]",
+ "act-almostdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist bevorstehend",
+ "act-pastdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist vorbei",
+ "act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
+ "act-atUserComment": "Sie wurden in [__board__] __list__/__card__ erwähnt",
+ "delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
+ "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
+ "hide-minicard-label-text": "Labeltext auf Minikarte ausblenden",
+ "show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen",
+ "assignee": "Zugewiesen",
+ "cardAssigneesPopup-title": "Zugewiesen",
+ "addmore-detail": "Eine detailliertere Beschreibung hinzufügen",
+ "show-on-card": "Zeige auf Karte",
+ "new": "Neu",
+ "editUserPopup-title": "Benutzer ändern",
+ "newUserPopup-title": "Neuer Benutzer",
+ "notifications": "Benachrichtigungen",
+ "view-all": "Alle anzeigen",
+ "filter-by-unread": "Nur ungelesene",
+ "mark-all-as-read": "Alle als gelesen markieren",
+ "remove-all-read": "Alle gelesenen entfernen",
+ "allow-rename": "Umbenennen erlauben",
+ "allowRenamePopup-title": "Umbenennen erlauben",
+ "start-day-of-week": "Wochentagbeginn festlegen",
+ "monday": "Montag",
+ "tuesday": "Dienstag",
+ "wednesday": "Mittwoch",
+ "thursday": "Donnerstag",
+ "friday": "Freitag",
+ "saturday": "Samstag",
+ "sunday": "Sonntag",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Eigentümer",
+ "last-modified-at": "Zuletzt geändert um",
+ "last-activity": "Letzte Aktivität",
+ "voting": "Abstimunng",
+ "archived": "Archiviert",
+ "delete-linked-card-before-this-card": "Sie können diese Karte nicht löschen, bevor verbundene Karten nicht gelöscht wurden.",
+ "delete-linked-cards-before-this-list": "Sie können diese Liste erst löschen, wenn Sie alle Karten gelöscht haben, die auf Karten in dieser Liste verweisen.",
+ "hide-checked-items": "Erledigte ausblenden",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json
index 428a7231d..3338d2674 100644
--- a/i18n/el.i18n.json
+++ b/i18n/el.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Αποδοχή",
- "act-activity-notify": "Ειδοποίηση δραστηριότητας",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Ενέργειες",
- "activities": "Δραστηριότητες",
- "activity": "Δραστηριότητα",
- "activity-added": "added %s to %s",
- "activity-archived": "%s μετακινήθηκε στο Αρχείο",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "στό %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Προσθήκη",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Προσθήκη Πίνακα",
- "add-card": "Προσθήκη Κάρτας",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Προσθήκη Λίστας ελέγχου",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Προσθήκη Ετικέτας",
- "add-list": "Προσθήκη Λίστας",
- "add-members": "Προσθήκη Μελών",
- "added": "Προστέθηκε",
- "addMemberPopup-title": "Μέλη",
- "admin": "Διαχειριστής",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Εφαρμογή",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Μετακίνηση στο Αρχείο",
- "archive-all": "Μετακίνηση Όλων στο Αρχείο",
- "archive-board": "Μετακίνηση Πίνακα στο Αρχείο",
- "archive-card": "Μετακίνηση Κάρτας στο Αρχείο",
- "archive-list": "Μετακίνηση Λίστας στο Αρχείο",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Μετακίνηση επιλογής στο Αρχείο",
- "archiveBoardPopup-title": "Να μετακινηθεί ο Πίνακας στο Αρχείο;",
- "archived-items": "Αρχείο",
- "archived-boards": "Πίνακες στο Αρχείο",
- "restore-board": "Επαναφορά Πίνακα",
- "no-archived-boards": "Δεν υπάρχουν Πίνακες στο Αρχείο.",
- "archives": "Αρχείο",
- "template": "Πρότυπο",
- "templates": "Πρότυπα",
- "assign-member": "Ανάθεση μέλους",
- "attached": "attached",
- "attachment": "Συνημμένο",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Διαγραφή Συννημένου;",
- "attachments": "Συννημένα",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Πίσω",
- "board-change-color": "Αλλαγή χρώματος",
- "board-nb-stars": "%s stars",
- "board-not-found": "Ο πίνακας δε βρέθηκε",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Αλλαγή Φόντου Πίνακα",
- "boardChangeTitlePopup-title": "Μετονομασία Πίνακα",
- "boardChangeVisibilityPopup-title": "Αλλαγή Ορατότητας",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Ρυθμίσεις Πίνακα",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Πίνακες",
- "board-view": "Board View",
- "board-view-cal": "Ημερολόγιο",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Λίστες",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Ακύρωση",
- "card-archived": "Αυτή η κάρτα μετακινήθηκε στο Αρχείο.",
- "board-archived": "Αυτός ο πίνακας μετακινήθηκε στο Αρχείο.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Έως",
- "card-due-on": "Έως τις",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Ερώτηση ψηφοφορίας",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Διαγραφή Κάρτας;",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Ετικέτες",
- "cardMembersPopup-title": "Μέλοι",
- "cardMorePopup-title": "Περισσότερα",
- "cardTemplatePopup-title": "Create template",
- "cards": "Κάρτες",
- "cards-count": "Κάρτες",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Αλλαγή",
- "change-avatar": "Change Avatar",
- "change-password": "Αλλαγή Κωδικού",
- "change-permissions": "Change permissions",
- "change-settings": "Αλλαγή Ρυθμίσεων",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Αλλαγή Γλώσσας",
- "changePasswordPopup-title": "Αλλαγή Κωδικού",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Αλλαγή Ρυθμίσεων",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Κλείσιμο",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "μαύρο",
- "color-blue": "μπλε",
- "color-crimson": "βυσσινί",
- "color-darkgreen": "σκούρο πράσινο",
- "color-gold": "χρυσό",
- "color-gray": "γκρι",
- "color-green": "πράσινο",
- "color-indigo": "λουλάκι",
- "color-lime": "λάιμ",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "πορτοκαλί",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ροζ",
- "color-plum": "plum",
- "color-purple": "μωβ",
- "color-red": "κόκκινο",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "ασημί",
- "color-sky": "ουρανός",
- "color-slateblue": "slateblue",
- "color-white": "λευκό",
- "color-yellow": "κίτρινο",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "Χωρίς σχόλια",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Υπολογιστής",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Αναζήτηση",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Δημιουργία",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Εισαγωγή πίνακα",
- "createLabelPopup-title": "Δημιουργία Ετικέτας",
- "createCustomField": "Δημιουργία Πεδίου",
- "createCustomFieldPopup-title": "Δημιουργία Πεδίου",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Ημερομηνία",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Αριθμός",
- "custom-field-text": "Κείμενο",
- "custom-fields": "Custom Fields",
- "date": "Ημερομηνία",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Διαγραφή",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Διαγραφή Ετικέτας;",
- "description": "Περιγραφή",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Απόρριψη",
- "done": "Done",
- "download": "Download",
- "edit": "Επεξεργασία",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Επεξεργασία Προφίλ",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Επεξεργασία Πεδίου",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Αλλαγή Ετικέτας",
- "editNotificationPopup-title": "Επεξεργασία Ειδοποίησης",
- "editProfilePopup-title": "Επεξεργασία Προφίλ",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Πρόσκληση μέσω Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Το κείμενο δεν είναι έγκυρο JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Η λίστα δεν υπάρχει",
- "error-user-doesNotExist": "Ο χρήστης δεν υπάρχει",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "Ο χρήστης δε δημιουργήθηκε",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Εξαγωγή πίνακα",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Εξαγωγή πίνακα",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Φίλτρο",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Κανένα μέλος",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Πλήρες Όνομα",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Εισαγωγή",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Εισαγωγή πίνακα",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Από το Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Επιλογή μέλους",
- "info": "Έκδοση",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Συντομεύσεις πληκτρολογίου",
- "label-create": "Δημιουργία Ετικέτας",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Ετικέτες",
- "language": "Γλώσσα",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Εισαγωγή μιας κάρτας Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Περισσότερα",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Λίστες",
- "swimlanes": "Swimlanes",
- "log-out": "Αποσύνδεση",
- "log-in": "Σύνδεση",
- "loginPopup-title": "Σύνδεση",
- "memberMenuPopup-title": "Member Settings",
- "members": "Μέλοι",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Όνομα",
- "no-archived-cards": "Δεν υπάρχουν κάρτες στο Αρχείο.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Κανένα αποτέλεσμα",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "ή",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Η σελίδα δεν βρέθηκε.",
- "password": "Κωδικός",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Προεπισκόπηση",
- "previewAttachedImagePopup-title": "Προεπισκόπηση",
- "previewClipboardImagePopup-title": "Προεπισκόπηση",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Προφίλ",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Αφαίρεση από Πίνακα",
- "remove-label": "Αφαίρεση Ετικέτας",
- "listDeletePopup-title": "Διαγραφή Λίστας;",
- "remove-member": "Αφαίρεση Μέλους",
- "remove-member-from-card": "Αφαίρεση από την Κάρτα",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Αφαίρεση Μέλους;",
- "rename": "Μετανομασία",
- "rename-board": "Μετονομασία Πίνακα",
- "restore": "Restore",
- "save": "Αποθήκευση",
- "search": "Αναζήτηση",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Επιλέξτε Χρώμα",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Καθαρισμός φίλτρων",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Φιλτράρισμα των καρτών μου",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Δημιουργία Λογαριασμού",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Εγγραφή",
- "team": "Ομάδα",
- "this-board": "this board",
- "this-card": "αυτή η κάρτα",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Ώρα",
- "title": "Τίτλος",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Τύπος",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Όνομα Χρήστη",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Πίνακας Καλωσορίσματος",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Πρότυπα Καρτών",
- "list-templates-swimlane": "Πρότυπα Λίστας",
- "board-templates-swimlane": "Πρότυπα Πινάκων",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Ρυθμίσεις",
- "people": "Άνθρωποι",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Πρόσκληση",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Διευθύνσεις",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Όνομα Χρήστη",
- "smtp-password": "Κωδικός",
- "smtp-tls": "TLS υποστήριξη",
- "send-from": "Από",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Κωδικός Πρόσκλησης",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Ο κωδικός πρόσκλησης δεν υπάρχει",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Άγνωστο)",
- "Node_version": "Έκδοση Node",
- "Meteor_version": "Έκδοση Meteor",
- "MongoDB_version": "Έκδοση MongoDB",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "ώρες",
- "minutes": "λεπτά",
- "seconds": "δευτερόλεπτα",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ναι",
- "no": "Όχι",
- "accounts": "Λογαριασμοί",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Ενεργό",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "Τέλος",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Διαγραφή Πίνακα;",
- "delete-board": "Διαγραφή Πίνακα",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Κανόνας",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Προσθήκη κανόνα",
- "r-view-rule": "Προβολή κανόνα",
- "r-delete-rule": "Διαγραφή κανόνα",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Όταν μία κάρτα",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Μετακινήθηκε στο Αρχείο",
- "r-unarchived": "Επαναφέρθηκε από το Αρχείο",
- "r-a-card": "μία κάρτα",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Μετακίνηση στο Αρχείο",
- "r-unarchive": "Επαναφορά από το Αρχείο",
- "r-card": "card",
- "r-add": "Προσθήκη",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Μετακίνηση κάρτας στην αρχή της λίστας της",
- "r-d-move-to-top-spec": "Μετακίνηση κάρτας στην αρχή της λίστας",
- "r-d-move-to-bottom-gen": "Μετακίνηση κάρτας στο τέλος της λίστας της",
- "r-d-move-to-bottom-spec": "Μετακίνηση κάρτας στο τέλος της λίστας",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Μετακίνηση κάρτας στο Αρχείο",
- "r-d-unarchive": "Επαναφορά κάρτας από το Αρχείο",
- "r-d-add-label": "Προσθήκη ετικέτας",
- "r-d-remove-label": "Αφαίρεση ετικέτας",
- "r-create-card": "Δημιουργία νέας κάρτας",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Αποδοχή",
+ "act-activity-notify": "Ειδοποίηση δραστηριότητας",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Ενέργειες",
+ "activities": "Δραστηριότητες",
+ "activity": "Δραστηριότητα",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s μετακινήθηκε στο Αρχείο",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "στό %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Προσθήκη",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Προσθήκη Πίνακα",
+ "add-card": "Προσθήκη Κάρτας",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Προσθήκη Λίστας ελέγχου",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Προσθήκη Ετικέτας",
+ "add-list": "Προσθήκη Λίστας",
+ "add-members": "Προσθήκη Μελών",
+ "added": "Προστέθηκε",
+ "addMemberPopup-title": "Μέλη",
+ "admin": "Διαχειριστής",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Εφαρμογή",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Μετακίνηση στο Αρχείο",
+ "archive-all": "Μετακίνηση Όλων στο Αρχείο",
+ "archive-board": "Μετακίνηση Πίνακα στο Αρχείο",
+ "archive-card": "Μετακίνηση Κάρτας στο Αρχείο",
+ "archive-list": "Μετακίνηση Λίστας στο Αρχείο",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Μετακίνηση επιλογής στο Αρχείο",
+ "archiveBoardPopup-title": "Να μετακινηθεί ο Πίνακας στο Αρχείο;",
+ "archived-items": "Αρχείο",
+ "archived-boards": "Πίνακες στο Αρχείο",
+ "restore-board": "Επαναφορά Πίνακα",
+ "no-archived-boards": "Δεν υπάρχουν Πίνακες στο Αρχείο.",
+ "archives": "Αρχείο",
+ "template": "Πρότυπο",
+ "templates": "Πρότυπα",
+ "assign-member": "Ανάθεση μέλους",
+ "attached": "attached",
+ "attachment": "Συνημμένο",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Διαγραφή Συννημένου;",
+ "attachments": "Συννημένα",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Πίσω",
+ "board-change-color": "Αλλαγή χρώματος",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Ο πίνακας δε βρέθηκε",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Αλλαγή Φόντου Πίνακα",
+ "boardChangeTitlePopup-title": "Μετονομασία Πίνακα",
+ "boardChangeVisibilityPopup-title": "Αλλαγή Ορατότητας",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Ρυθμίσεις Πίνακα",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Πίνακες",
+ "board-view": "Board View",
+ "board-view-cal": "Ημερολόγιο",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Λίστες",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Ακύρωση",
+ "card-archived": "Αυτή η κάρτα μετακινήθηκε στο Αρχείο.",
+ "board-archived": "Αυτός ο πίνακας μετακινήθηκε στο Αρχείο.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Έως",
+ "card-due-on": "Έως τις",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Ερώτηση ψηφοφορίας",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Διαγραφή Κάρτας;",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Ετικέτες",
+ "cardMembersPopup-title": "Μέλοι",
+ "cardMorePopup-title": "Περισσότερα",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Κάρτες",
+ "cards-count": "Κάρτες",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Αλλαγή",
+ "change-avatar": "Change Avatar",
+ "change-password": "Αλλαγή Κωδικού",
+ "change-permissions": "Change permissions",
+ "change-settings": "Αλλαγή Ρυθμίσεων",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Αλλαγή Γλώσσας",
+ "changePasswordPopup-title": "Αλλαγή Κωδικού",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Αλλαγή Ρυθμίσεων",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Κλείσιμο",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "μαύρο",
+ "color-blue": "μπλε",
+ "color-crimson": "βυσσινί",
+ "color-darkgreen": "σκούρο πράσινο",
+ "color-gold": "χρυσό",
+ "color-gray": "γκρι",
+ "color-green": "πράσινο",
+ "color-indigo": "λουλάκι",
+ "color-lime": "λάιμ",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "πορτοκαλί",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ροζ",
+ "color-plum": "plum",
+ "color-purple": "μωβ",
+ "color-red": "κόκκινο",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "ασημί",
+ "color-sky": "ουρανός",
+ "color-slateblue": "slateblue",
+ "color-white": "λευκό",
+ "color-yellow": "κίτρινο",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "Χωρίς σχόλια",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Υπολογιστής",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Αναζήτηση",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Δημιουργία",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Εισαγωγή πίνακα",
+ "createLabelPopup-title": "Δημιουργία Ετικέτας",
+ "createCustomField": "Δημιουργία Πεδίου",
+ "createCustomFieldPopup-title": "Δημιουργία Πεδίου",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Ημερομηνία",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Αριθμός",
+ "custom-field-text": "Κείμενο",
+ "custom-fields": "Custom Fields",
+ "date": "Ημερομηνία",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Διαγραφή",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Διαγραφή Ετικέτας;",
+ "description": "Περιγραφή",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Απόρριψη",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Επεξεργασία",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Επεξεργασία Προφίλ",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Επεξεργασία Πεδίου",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Αλλαγή Ετικέτας",
+ "editNotificationPopup-title": "Επεξεργασία Ειδοποίησης",
+ "editProfilePopup-title": "Επεξεργασία Προφίλ",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Πρόσκληση μέσω Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Το κείμενο δεν είναι έγκυρο JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Η λίστα δεν υπάρχει",
+ "error-user-doesNotExist": "Ο χρήστης δεν υπάρχει",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "Ο χρήστης δε δημιουργήθηκε",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Εξαγωγή πίνακα",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Εξαγωγή πίνακα",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Φίλτρο",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Κανένα μέλος",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Πλήρες Όνομα",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Εισαγωγή",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Εισαγωγή πίνακα",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Από το Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Επιλογή μέλους",
+ "info": "Έκδοση",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Συντομεύσεις πληκτρολογίου",
+ "label-create": "Δημιουργία Ετικέτας",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Ετικέτες",
+ "language": "Γλώσσα",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Εισαγωγή μιας κάρτας Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Περισσότερα",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Λίστες",
+ "swimlanes": "Swimlanes",
+ "log-out": "Αποσύνδεση",
+ "log-in": "Σύνδεση",
+ "loginPopup-title": "Σύνδεση",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Μέλοι",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Όνομα",
+ "no-archived-cards": "Δεν υπάρχουν κάρτες στο Αρχείο.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Κανένα αποτέλεσμα",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "ή",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Η σελίδα δεν βρέθηκε.",
+ "password": "Κωδικός",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Προεπισκόπηση",
+ "previewAttachedImagePopup-title": "Προεπισκόπηση",
+ "previewClipboardImagePopup-title": "Προεπισκόπηση",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Προφίλ",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Αφαίρεση από Πίνακα",
+ "remove-label": "Αφαίρεση Ετικέτας",
+ "listDeletePopup-title": "Διαγραφή Λίστας;",
+ "remove-member": "Αφαίρεση Μέλους",
+ "remove-member-from-card": "Αφαίρεση από την Κάρτα",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Αφαίρεση Μέλους;",
+ "rename": "Μετανομασία",
+ "rename-board": "Μετονομασία Πίνακα",
+ "restore": "Restore",
+ "save": "Αποθήκευση",
+ "search": "Αναζήτηση",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Επιλέξτε Χρώμα",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Καθαρισμός φίλτρων",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Φιλτράρισμα των καρτών μου",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Δημιουργία Λογαριασμού",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Εγγραφή",
+ "team": "Ομάδα",
+ "this-board": "this board",
+ "this-card": "αυτή η κάρτα",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Ώρα",
+ "title": "Τίτλος",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Τύπος",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Όνομα Χρήστη",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Πίνακας Καλωσορίσματος",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Πρότυπα Καρτών",
+ "list-templates-swimlane": "Πρότυπα Λίστας",
+ "board-templates-swimlane": "Πρότυπα Πινάκων",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Ρυθμίσεις",
+ "people": "Άνθρωποι",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Πρόσκληση",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Διευθύνσεις",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Όνομα Χρήστη",
+ "smtp-password": "Κωδικός",
+ "smtp-tls": "TLS υποστήριξη",
+ "send-from": "Από",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Κωδικός Πρόσκλησης",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Ο κωδικός πρόσκλησης δεν υπάρχει",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Άγνωστο)",
+ "Node_version": "Έκδοση Node",
+ "Meteor_version": "Έκδοση Meteor",
+ "MongoDB_version": "Έκδοση MongoDB",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "ώρες",
+ "minutes": "λεπτά",
+ "seconds": "δευτερόλεπτα",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ναι",
+ "no": "Όχι",
+ "accounts": "Λογαριασμοί",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Ενεργό",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "Τέλος",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Διαγραφή Πίνακα;",
+ "delete-board": "Διαγραφή Πίνακα",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Κανόνας",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Προσθήκη κανόνα",
+ "r-view-rule": "Προβολή κανόνα",
+ "r-delete-rule": "Διαγραφή κανόνα",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Όταν μία κάρτα",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Μετακινήθηκε στο Αρχείο",
+ "r-unarchived": "Επαναφέρθηκε από το Αρχείο",
+ "r-a-card": "μία κάρτα",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Μετακίνηση στο Αρχείο",
+ "r-unarchive": "Επαναφορά από το Αρχείο",
+ "r-card": "card",
+ "r-add": "Προσθήκη",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Μετακίνηση κάρτας στην αρχή της λίστας της",
+ "r-d-move-to-top-spec": "Μετακίνηση κάρτας στην αρχή της λίστας",
+ "r-d-move-to-bottom-gen": "Μετακίνηση κάρτας στο τέλος της λίστας της",
+ "r-d-move-to-bottom-spec": "Μετακίνηση κάρτας στο τέλος της λίστας",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Μετακίνηση κάρτας στο Αρχείο",
+ "r-d-unarchive": "Επαναφορά κάρτας από το Αρχείο",
+ "r-d-add-label": "Προσθήκη ετικέτας",
+ "r-d-remove-label": "Αφαίρεση ετικέτας",
+ "r-create-card": "Δημιουργία νέας κάρτας",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json
index 2e68c6b5f..e0147cb6b 100644
--- a/i18n/en-GB.i18n.json
+++ b/i18n/en-GB.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Change colour",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaboration.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve its activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Colour",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in a list in the Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any changes in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorised to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Change colour",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaboration.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve its activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Colour",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in a list in the Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any changes in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorised to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index 7027613c8..9fbb4ed34 100644
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Display Authentication Method",
"default-authentication-method": "Default Authentication Method",
"duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is: ",
+ "team-number": "The number of teams is: ",
"people-number": "The number of people is: ",
"swimlaneDeletePopup-title": "Delete Swimlane ?",
"swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Hide checked items",
"task": "Task",
"create-task": "Create Task",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json
index c214a2933..6e6c5060b 100644
--- a/i18n/eo.i18n.json
+++ b/i18n/eo.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Akcepti",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "aldonita alligitecon __attachment__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-deleteAttachment": "forigita alligitecon __attachment__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-addSubtask": "aldonita subtaskon __subtask__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-addLabel": "Aldonita etikedo __label__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane en la tabulo __board__",
- "act-addedLabel": "Aldonita etikedo __label__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane en la tabulo __board__",
- "act-removeLabel": "Forigita etikedo __label__ de karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-removedLabel": "Forigita etikedo __label__ de karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-addChecklist": "aldonita kontrololiston __checklist__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-addChecklistItem": "aldonita kontrolliston __checklistItem__ al kontrololisto __checklist__ en la karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akcioj",
- "activities": "Aktivaĵoj",
- "activity": "Aktivaĵo",
- "activity-added": "Aldonis %s al %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "Kreiis %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "Sendis %s al %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Aldoni",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Aldoni membrojn",
- "added": "Aldonita",
- "addMemberPopup-title": "Membroj",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Ĉiuj tabuloj",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apliki",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arkivi",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arkivi",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Reen",
- "board-change-color": "Ŝanĝi koloron",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Renomi tavolon",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listoj",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Redakti etikedojn",
- "card-edit-members": "Redakti membrojn",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Komenco",
- "card-start-on": "Komencas je la",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Etikedoj",
- "cardMembersPopup-title": "Membroj",
- "cardMorePopup-title": "Pli",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kartoj",
- "cards-count": "Kartoj",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Ŝanĝi",
- "change-avatar": "Change Avatar",
- "change-password": "Ŝangi pasvorton",
- "change-permissions": "Change permissions",
- "change-settings": "Ŝanĝi agordojn",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Ŝanĝi lingvon",
- "changePasswordPopup-title": "Ŝangi pasvorton",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Ŝanĝi agordojn",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Fermi",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "nigra",
- "color-blue": "blua",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "verda",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "oranĝa",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "ruĝa",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "flava",
- "unset-color": "Unset",
- "comment": "Komento",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Komputilo",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Serĉi",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Krei",
- "createBoardPopup-title": "Krei tavolon",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Dato",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Nombro",
- "custom-field-text": "Teksto",
- "custom-fields": "Custom Fields",
- "date": "Dato",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Farite",
- "download": "Elŝuti",
- "edit": "Redakti",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Redakti profilon",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Redakti komencdaton",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Ŝanĝi etikedon",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Redakti profilon",
- "email": "Retpoŝtadreso",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Malsukcesis sendi retpoŝton",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Nevalida retpoŝtadreso",
- "email-invite": "Inviti per retpoŝto",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Sendis retpoŝton",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Via teksto estas nevalida JSON",
- "error-json-schema": "Via JSON ne enhavas la ĝustajn informojn en ĝusta formato",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Tio listo ne ekzistas",
- "error-user-doesNotExist": "Tio uzanto ne ekzistas",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "Uzanto ne kreita",
- "error-username-taken": "Uzantnomo jam prenita",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Nenia etikedo",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Nenia membro",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Plena nomo",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Krei tavolon",
- "home": "Hejmo",
- "import": "Importi",
- "impersonate-user": "Impersonate user",
- "link": "Ligilo",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etikedoj",
- "language": "Lingvo",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Ligi al ĉitiu karto",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Movu ĉiujn kartojn en tiu listo.",
- "list-select-cards": "Elektu ĉiujn kartojn en tiu listo.",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Pli",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listoj",
- "swimlanes": "Swimlanes",
- "log-out": "Elsaluti",
- "log-in": "Ensaluti",
- "loginPopup-title": "Ensaluti",
- "memberMenuPopup-title": "Membraj agordoj",
- "members": "Membroj",
- "menu": "Menuo",
- "move-selection": "Movi elekton",
- "moveCardPopup-title": "Movi karton",
- "moveCardToBottom-title": "Movi suben",
- "moveCardToTop-title": "Movi supren",
- "moveSelectionPopup-title": "Movi elekton",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nomo",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Neniaj rezultoj",
- "normal": "Normala",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "aŭ",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Netrovita paĝo.",
- "password": "Pasvorto",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Privata",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profilo",
- "public": "Publika",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Forigi membron",
- "remove-member-from-card": "Forigi de karto",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Renomi",
- "rename-board": "Renomi tavolon",
- "restore": "Forigi",
- "save": "Savi",
- "search": "Serĉi",
- "rules": "Reguloj",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Aboni",
- "team": "Teamo",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Tempo",
- "title": "Titolo",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Tipo",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Alŝuti",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Uzantnomo",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Rigardi",
- "watching": "Rigardante",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Kion vi volas fari?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Agordoj",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Uzantnomo",
- "smtp-password": "Pasvorto",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Jes",
- "no": "Ne",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Defaŭlto",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Regulo",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Aldoni regulon",
- "r-view-rule": "View rule",
- "r-delete-rule": "Forigi regulon",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "listo",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "nomo",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Aldoni",
- "r-remove": "Forigi",
- "r-label": "label",
- "r-member": "membro",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "kontrololisto",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "temo",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "temo",
- "r-d-send-email-message": "mesaĝo",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Aldoni membron",
- "r-d-remove-member": "Forigi membron",
- "r-d-remove-all-member": "Forigi ĉiujn membrojn",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Aldoni kontrololiston",
- "r-d-remove-checklist": "Forigi kontrololiston",
- "r-by": "by",
- "r-add-checklist": "Aldoni kontrololiston",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Posedanto",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Akcepti",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "aldonita alligitecon __attachment__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-deleteAttachment": "forigita alligitecon __attachment__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-addSubtask": "aldonita subtaskon __subtask__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-addLabel": "Aldonita etikedo __label__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane en la tabulo __board__",
+ "act-addedLabel": "Aldonita etikedo __label__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane en la tabulo __board__",
+ "act-removeLabel": "Forigita etikedo __label__ de karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-removedLabel": "Forigita etikedo __label__ de karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-addChecklist": "aldonita kontrololiston __checklist__ al karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-addChecklistItem": "aldonita kontrolliston __checklistItem__ al kontrololisto __checklist__ en la karto __card__ en la listo __list__ en la naĝotubo __swimlane__ en la tabulo __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akcioj",
+ "activities": "Aktivaĵoj",
+ "activity": "Aktivaĵo",
+ "activity-added": "Aldonis %s al %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "Kreiis %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "Sendis %s al %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Aldoni",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Aldoni membrojn",
+ "added": "Aldonita",
+ "addMemberPopup-title": "Membroj",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Ĉiuj tabuloj",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apliki",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arkivi",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arkivi",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Reen",
+ "board-change-color": "Ŝanĝi koloron",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Renomi tavolon",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listoj",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Redakti etikedojn",
+ "card-edit-members": "Redakti membrojn",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Komenco",
+ "card-start-on": "Komencas je la",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Etikedoj",
+ "cardMembersPopup-title": "Membroj",
+ "cardMorePopup-title": "Pli",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kartoj",
+ "cards-count": "Kartoj",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Ŝanĝi",
+ "change-avatar": "Change Avatar",
+ "change-password": "Ŝangi pasvorton",
+ "change-permissions": "Change permissions",
+ "change-settings": "Ŝanĝi agordojn",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Ŝanĝi lingvon",
+ "changePasswordPopup-title": "Ŝangi pasvorton",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Ŝanĝi agordojn",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Fermi",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "nigra",
+ "color-blue": "blua",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "verda",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "oranĝa",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "ruĝa",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "flava",
+ "unset-color": "Unset",
+ "comment": "Komento",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Komputilo",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Serĉi",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Krei",
+ "createBoardPopup-title": "Krei tavolon",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Dato",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Nombro",
+ "custom-field-text": "Teksto",
+ "custom-fields": "Custom Fields",
+ "date": "Dato",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Farite",
+ "download": "Elŝuti",
+ "edit": "Redakti",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Redakti profilon",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Redakti komencdaton",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Ŝanĝi etikedon",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Redakti profilon",
+ "email": "Retpoŝtadreso",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Malsukcesis sendi retpoŝton",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Nevalida retpoŝtadreso",
+ "email-invite": "Inviti per retpoŝto",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Sendis retpoŝton",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Via teksto estas nevalida JSON",
+ "error-json-schema": "Via JSON ne enhavas la ĝustajn informojn en ĝusta formato",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Tio listo ne ekzistas",
+ "error-user-doesNotExist": "Tio uzanto ne ekzistas",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "Uzanto ne kreita",
+ "error-username-taken": "Uzantnomo jam prenita",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Nenia etikedo",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Nenia membro",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Plena nomo",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Krei tavolon",
+ "home": "Hejmo",
+ "import": "Importi",
+ "impersonate-user": "Impersonate user",
+ "link": "Ligilo",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etikedoj",
+ "language": "Lingvo",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Ligi al ĉitiu karto",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Movu ĉiujn kartojn en tiu listo.",
+ "list-select-cards": "Elektu ĉiujn kartojn en tiu listo.",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Pli",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listoj",
+ "swimlanes": "Swimlanes",
+ "log-out": "Elsaluti",
+ "log-in": "Ensaluti",
+ "loginPopup-title": "Ensaluti",
+ "memberMenuPopup-title": "Membraj agordoj",
+ "members": "Membroj",
+ "menu": "Menuo",
+ "move-selection": "Movi elekton",
+ "moveCardPopup-title": "Movi karton",
+ "moveCardToBottom-title": "Movi suben",
+ "moveCardToTop-title": "Movi supren",
+ "moveSelectionPopup-title": "Movi elekton",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nomo",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Neniaj rezultoj",
+ "normal": "Normala",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "aŭ",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Netrovita paĝo.",
+ "password": "Pasvorto",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Privata",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profilo",
+ "public": "Publika",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Forigi membron",
+ "remove-member-from-card": "Forigi de karto",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Renomi",
+ "rename-board": "Renomi tavolon",
+ "restore": "Forigi",
+ "save": "Savi",
+ "search": "Serĉi",
+ "rules": "Reguloj",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Aboni",
+ "team": "Teamo",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Tempo",
+ "title": "Titolo",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Tipo",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Alŝuti",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Uzantnomo",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Rigardi",
+ "watching": "Rigardante",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Kion vi volas fari?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Agordoj",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Uzantnomo",
+ "smtp-password": "Pasvorto",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Jes",
+ "no": "Ne",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Defaŭlto",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Regulo",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Aldoni regulon",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Forigi regulon",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "listo",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "nomo",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Aldoni",
+ "r-remove": "Forigi",
+ "r-label": "label",
+ "r-member": "membro",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "kontrololisto",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "temo",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "temo",
+ "r-d-send-email-message": "mesaĝo",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Aldoni membron",
+ "r-d-remove-member": "Forigi membron",
+ "r-d-remove-all-member": "Forigi ĉiujn membrojn",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Aldoni kontrololiston",
+ "r-d-remove-checklist": "Forigi kontrololiston",
+ "r-by": "by",
+ "r-add-checklist": "Aldoni kontrololiston",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Posedanto",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json
index dee7b0f48..198a62459 100644
--- a/i18n/es-AR.i18n.json
+++ b/i18n/es-AR.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Notificación de Actividad",
- "act-addAttachment": "agregado archivo adjunto __attachment__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-deleteAttachment": "eliminado archivo adjunto __attachment__ de la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-addSubtask": "agregada subtarea __subtask__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-addLabel": "Agregada etiqueta __label__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-addedLabel": "Agregada etiqueta __label__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-removeLabel": "Eliminada etiqueta __label__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-removedLabel": "Eliminada etiqueta __label__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-addChecklist": "agregada checklist __checklist__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-addChecklistItem": "agregado ítem __checklistItem__ a checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-removeChecklist": "eliminada checklist __checklist__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-removeChecklistItem": "eliminado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-checkedItem": "marcado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-uncheckedItem": "desmarcado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-completeChecklist": "completada checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "__card__ [__board__] ",
- "actions": "Acciones",
- "activities": "Actividades",
- "activity": "Actividad",
- "activity-added": "agregadas %s a %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "adjuntadas %s a %s",
- "activity-created": "creadas %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluidas %s de %s",
- "activity-imported": "importadas %s en %s de %s",
- "activity-imported-board": "importadas %s de %s",
- "activity-joined": "unidas %s",
- "activity-moved": "movidas %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "eliminadas %s de %s",
- "activity-sent": "enviadas %s a %s",
- "activity-unjoined": "separadas %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "agregada lista de tareas a %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "agregado item de lista de tareas a '%s' en %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Agregar",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completada checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "comentario %s editado",
- "activity-deleteComment": "comentario %s eliminado",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Agregar Adjunto",
- "add-board": "Agregar Tablero",
- "add-card": "Agregar Tarjeta",
- "add-swimlane": "Agregar Calle",
- "add-subtask": "Agregar Subtarea",
- "add-checklist": "Agregar Lista de Tareas",
- "add-checklist-item": "Agregar ítem a lista de tareas",
- "add-cover": "Agregar Portadas",
- "add-label": "Agregar Etiqueta",
- "add-list": "Agregar Lista",
- "add-members": "Agregar Miembros",
- "added": "Agregadas",
- "addMemberPopup-title": "Miembros",
- "admin": "Administrador",
- "admin-desc": "Puede ver y editar tarjetas, eliminar miembros, y cambiar opciones para el tablero.",
- "admin-announcement": "Anuncio",
- "admin-announcement-active": "Anuncio del Sistema Activo",
- "admin-announcement-title": "Anuncio del Administrador",
- "all-boards": "Todos los tableros",
- "and-n-other-card": "Y __count__ otra tarjeta",
- "and-n-other-card_plural": "Y __count__ otras tarjetas",
- "apply": "Aplicar",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Mover al Archivo",
- "archive-all": "Mover Todo al Archivo",
- "archive-board": "Mover Tablero al Archivo",
- "archive-card": "Mover Tarjeta al Archivo",
- "archive-list": "Mover Lista al Archivo",
- "archive-swimlane": "Mover Calle al Archivo",
- "archive-selection": "Mover selección al Archivo",
- "archiveBoardPopup-title": "¿Mover Tablero al Archivo?",
- "archived-items": "Archivar",
- "archived-boards": "Tableros en el Archivo",
- "restore-board": "Restaurar Tablero",
- "no-archived-boards": "No hay Tableros en el Archivo",
- "archives": "Archivar",
- "template": "Plantilla",
- "templates": "Plantillas",
- "assign-member": "Asignar miembro",
- "attached": "adjunto(s)",
- "attachment": "Adjunto",
- "attachment-delete-pop": "Borrar un adjunto es permanente. No hay deshacer.",
- "attachmentDeletePopup-title": "¿Borrar Adjunto?",
- "attachments": "Adjuntos",
- "auto-watch": "Seguir tableros automáticamente al crearlos",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Atrás",
- "board-change-color": "Cambiar color",
- "board-nb-stars": "%s estrellas",
- "board-not-found": "Tablero no encontrado",
- "board-private-info": "Este tablero va a ser privado.",
- "board-public-info": "Este tablero va a ser público.",
- "boardChangeColorPopup-title": "Cambiar Fondo del Tablero",
- "boardChangeTitlePopup-title": "Renombrar Tablero",
- "boardChangeVisibilityPopup-title": "Cambiar Visibilidad",
- "boardChangeWatchPopup-title": "Alternar Seguimiento",
- "boardMenuPopup-title": "Opciones del Tablero",
- "boardChangeViewPopup-title": "Vista de Tablero",
- "boards": "Tableros",
- "board-view": "Vista de Tablero",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Calles",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listas",
- "bucket-example": "Como \"Lista de Contenedores\" por ejemplo",
- "cancel": "Cancelar",
- "card-archived": "Esta tarjeta es movida al Archivo.",
- "board-archived": "Este tablero es movido al Archivo.",
- "card-comments-title": "Esta tarjeta tiene %s comentario.",
- "card-delete-notice": "Borrar es permanente. Perderás todas las acciones asociadas con esta tarjeta.",
- "card-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podrás re-abrir la tarjeta. No hay deshacer.",
- "card-delete-suggest-archive": "Podés mover una tarjeta al Archivo para eliminarla del tablero y preservar la actividad.",
- "card-due": "Vence",
- "card-due-on": "Vence en",
- "card-spent": "Tiempo Empleado",
- "card-edit-attachments": "Editar adjuntos",
- "card-edit-custom-fields": "Editar campos personalizados",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar miembros",
- "card-labels-title": "Cambiar las etiquetas de la tarjeta.",
- "card-members-title": "Agregar o eliminar de la tarjeta miembros del tablero.",
- "card-start": "Empieza",
- "card-start-on": "Empieza el",
- "cardAttachmentsPopup-title": "Adjuntar De",
- "cardCustomField-datePopup-title": "Cambiar fecha",
- "cardCustomFieldsPopup-title": "Editar campos personalizados",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "¿Borrar Tarjeta?",
- "cardDetailsActionsPopup-title": "Acciones de la Tarjeta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Miembros",
- "cardMorePopup-title": "Mas",
- "cardTemplatePopup-title": "Crear plantilla",
- "cards": "Tarjetas",
- "cards-count": "Tarjetas",
- "casSignIn": "Ingresar con CAS",
- "cardType-card": "Tarjeta",
- "cardType-linkedCard": "Tarjeta Vinculada",
- "cardType-linkedBoard": "Tablero Vinculado",
- "change": "Cambiar",
- "change-avatar": "Cambiar Avatar",
- "change-password": "Cambiar Contraseña",
- "change-permissions": "Cambiar permisos",
- "change-settings": "Cambiar Opciones",
- "changeAvatarPopup-title": "Cambiar Avatar",
- "changeLanguagePopup-title": "Cambiar Lenguaje",
- "changePasswordPopup-title": "Cambiar Contraseña",
- "changePermissionsPopup-title": "Cambiar Permisos",
- "changeSettingsPopup-title": "Cambiar Opciones",
- "subtasks": "Subtareas",
- "checklists": "Listas de ítems",
- "click-to-star": "Clickeá para darle una estrella a este tablero.",
- "click-to-unstar": "Clickeá para sacarle la estrella al tablero.",
- "clipboard": "Portapapeles o arrastrar y soltar",
- "close": "Cerrar",
- "close-board": "Cerrar Tablero",
- "close-board-pop": "Podrás restaurar el tablero clickeando el \"Archivo\" desde el encabesado de inicio.",
- "color-black": "negro",
- "color-blue": "azul",
- "color-crimson": "crimson",
- "color-darkgreen": "verdeoscuro",
- "color-gold": "dorado",
- "color-gray": "gris",
- "color-green": "verde",
- "color-indigo": "índigo",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "rosamística",
- "color-navy": "navy",
- "color-orange": "naranja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "plum",
- "color-purple": "púrpura",
- "color-red": "rojo",
- "color-saddlebrown": "marróntriste",
- "color-silver": "plata",
- "color-sky": "cielo",
- "color-slateblue": "slateblue",
- "color-white": "blanco",
- "color-yellow": "amarillo",
- "unset-color": "Deseleccionado",
- "comment": "Comentario",
- "comment-placeholder": "Comentar",
- "comment-only": "Comentar solamente",
- "comment-only-desc": "Puede comentar en tarjetas solamente.",
- "no-comments": "Sin comentarios",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computadora",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copiar enlace a tarjeta en el portapapeles",
- "linkCardPopup-title": "Tarjeta vinculada",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar Tarjeta",
- "copyChecklistToManyCardsPopup-title": "Copiar Plantilla Checklist a Muchas Tarjetas",
- "copyChecklistToManyCardsPopup-instructions": "Títulos y Descripciones de la Tarjeta Destino en este formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de primera tarjeta\", \"description\":\"Descripción de primera tarjeta\"}, {\"title\":\"Título de segunda tarjeta\",\"description\":\"Descripción de segunda tarjeta\"},{\"title\":\"Título de última tarjeta\",\"description\":\"Descripción de última tarjeta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear Tablero",
- "chooseBoardSourcePopup-title": "Importar tablero",
- "createLabelPopup-title": "Crear Etiqueta",
- "createCustomField": "Crear Campo",
- "createCustomFieldPopup-title": "Crear Campo",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Fecha",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(ninguno)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Custom Fields",
- "date": "Fecha",
- "decline": "Rechazar",
- "default-avatar": "Avatar por defecto",
- "delete": "Borrar",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "¿Borrar Etiqueta?",
- "description": "Descripción",
- "disambiguateMultiLabelPopup-title": "Desambiguación de Acción de Etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguación de Acción de Miembro",
- "discard": "Descartar",
- "done": "Hecho",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar Avatar",
- "edit-profile": "Editar Perfil",
- "edit-wip-limit": "Editar Lìmite de TEP",
- "soft-wip-limit": "Límite TEP suave",
- "editCardStartDatePopup-title": "Cambiar fecha de inicio",
- "editCardDueDatePopup-title": "Cambiar fecha de vencimiento",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Cambiar tiempo empleado",
- "editLabelPopup-title": "Cambiar Etiqueta",
- "editNotificationPopup-title": "Editar Notificación",
- "editProfilePopup-title": "Editar Perfil",
- "email": "Email",
- "email-enrollAccount-subject": "Una cuenta creada para vos en __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a usar el servicio, simplemente clickeá en el enlace de abajo.\n\n__url__\n\nGracias.",
- "email-fail": "Fallo envío de email",
- "email-fail-text": "Error intentando enviar email",
- "email-invalid": "Email inválido",
- "email-invite": "Invitar vía Email",
- "email-invite-subject": "__inviter__ te envió una invitación",
- "email-invite-text": "Querido __user__,\n\n__inviter__ te invita a unirte al tablero \"__board__\" para colaborar.\n\nPor favor sigue el enlace de abajo:\n\n__url__\n\nGracias.",
- "email-resetPassword-subject": "Restaurá tu contraseña en __siteName__",
- "email-resetPassword-text": "Hola __user__,\n\nPara restaurar tu contraseña, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
- "email-sent": "Email enviado",
- "email-verifyEmail-subject": "Verificá tu dirección de email en __siteName__",
- "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de email, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
- "enable-wip-limit": "Activar Límite TEP",
- "error-board-doesNotExist": "Este tablero no existe",
- "error-board-notAdmin": "Necesitás ser administrador de este tablero para hacer eso",
- "error-board-notAMember": "Necesitás ser miembro de este tablero para hacer eso",
- "error-json-malformed": "Tu texto no es JSON válido",
- "error-json-schema": "Tus datos JSON no incluyen la información correcta en el formato adecuado",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Esta lista no existe",
- "error-user-doesNotExist": "Este usuario no existe",
- "error-user-notAllowSelf": "No podés invitarte a vos mismo",
- "error-user-notCreated": " El usuario no se creó",
- "error-username-taken": "El nombre de usuario ya existe",
- "error-email-taken": "El email ya existe",
- "export-board": "Exportar tablero",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Exportar tablero",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrar",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Sacar filtro",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Sin etiqueta",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No es miembro",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "El filtro está activado",
- "filter-on-desc": "Estás filtrando cartas en este tablero. Clickeá acá para editar el filtro.",
- "filter-to-selection": "Filtrar en la selección",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nombre Completo",
- "header-logo-title": "Retroceder a tu página de tableros.",
- "hide-system-messages": "Esconder mensajes del sistema",
- "headerBarCreateBoardPopup-title": "Crear Tablero",
- "home": "Inicio",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "importar tablero",
- "import-board-c": "Importar tablero",
- "import-board-title-trello": "Importar tablero de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "De Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego a 'Más', 'Imprimir y Exportar', 'Exportar JSON', y copia el texto resultante.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Pegá tus datos JSON válidos acá",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapear Miembros",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Revisar mapeo de miembros",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Versión",
- "initials": "Iniciales",
- "invalid-date": "Fecha inválida",
- "invalid-time": "Tiempo inválido",
- "invalid-user": "Usuario inválido",
- "joined": "unido",
- "just-invited": "Fuiste invitado a este tablero",
- "keyboard-shortcuts": "Atajos de teclado",
- "label-create": "Crear Etiqueta",
- "label-default": "%s etiqueta (por defecto)",
- "label-delete-pop": "No hay deshacer. Esto va a eliminar esta etiqueta de todas las tarjetas y destruir su historia.",
- "labels": "Etiquetas",
- "language": "Lenguaje",
- "last-admin-desc": "No podés cambiar roles porque tiene que haber al menos un administrador.",
- "leave-board": "Dejar Tablero",
- "leave-board-pop": "¿Estás seguro que querés dejar __boardTitle__? Vas a salir de todas las tarjetas en este tablero.",
- "leaveBoardPopup-title": "¿Dejar Tablero?",
- "link-card": "Enlace a esta tarjeta",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mueve todas las tarjetas en esta lista",
- "list-select-cards": "Selecciona todas las tarjetas en esta lista",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Listar Acciones",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Acciones de la Calle",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Importar una tarjeta Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Mas",
- "link-list": "Enlace a esta lista",
- "list-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podás recuperar la lista. No se puede deshacer.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listas",
- "swimlanes": "Calles",
- "log-out": "Salir",
- "log-in": "Entrar",
- "loginPopup-title": "Entrar",
- "memberMenuPopup-title": "Opciones de Miembros",
- "members": "Miembros",
- "menu": "Menú",
- "move-selection": "Mover selección",
- "moveCardPopup-title": "Mover Tarjeta",
- "moveCardToBottom-title": "Mover al Final",
- "moveCardToTop-title": "Mover al Tope",
- "moveSelectionPopup-title": "Mover selección",
- "multi-selection": "Multi-Selección",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-selección está activo",
- "muted": "Silenciado",
- "muted-info": "No serás notificado de ningún cambio en este tablero",
- "my-boards": "Mis Tableros",
- "name": "Nombre",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No hay resultados",
- "normal": "Normal",
- "normal-desc": "Puede ver y editar tarjetas. No puede cambiar opciones.",
- "not-accepted-yet": "Invitación no aceptada todavía",
- "notify-participate": "Recibí actualizaciones en cualquier tarjeta que participés como creador o miembro",
- "notify-watch": "Recibí actualizaciones en cualquier tablero, lista, o tarjeta que estés siguiendo",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Esta página puede ser privada. Vos podrás verla entrando.",
- "page-not-found": "Página no encontrada.",
- "password": "Contraseña",
- "paste-or-dragdrop": "pegar, arrastrar y soltar el archivo de imagen a esto (imagen sola)",
- "participating": "Participando",
- "preview": "Previsualización",
- "previewAttachedImagePopup-title": "Previsualización",
- "previewClipboardImagePopup-title": "Previsualización",
- "private": "Privado",
- "private-desc": "Este tablero es privado. Solo personas agregadas a este tablero pueden verlo y editarlo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este tablero es público. Es visible para cualquiera con un enlace y se va a mostrar en los motores de búsqueda como Google. Solo personas agregadas a este tablero pueden editarlo.",
- "quick-access-description": "Dale una estrella al tablero para agregar un acceso directo en esta barra.",
- "remove-cover": "Remover Portada",
- "remove-from-board": "Remover del Tablero",
- "remove-label": "Remover Etiqueta",
- "listDeletePopup-title": "¿Borrar Lista?",
- "remove-member": "Remover Miembro",
- "remove-member-from-card": "Remover de Tarjeta",
- "remove-member-pop": "¿Remover __name__ (__username__) de __boardTitle__? Los miembros va a ser removido de todas las tarjetas en este tablero. Serán notificados.",
- "removeMemberPopup-title": "¿Remover Miembro?",
- "rename": "Renombrar",
- "rename-board": "Renombrar Tablero",
- "restore": "Restaurar",
- "save": "Grabar",
- "search": "Buscar",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Seleccionar Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Fijar un límite para el número máximo de tareas en esta lista",
- "setWipLimitPopup-title": "Establecer Límite TEP",
- "shortcut-assign-self": "Asignarte a vos mismo en la tarjeta actual",
- "shortcut-autocomplete-emoji": "Autocompletar emonji",
- "shortcut-autocomplete-members": "Autocompletar miembros",
- "shortcut-clear-filters": "Limpiar todos los filtros",
- "shortcut-close-dialog": "Cerrar Diálogo",
- "shortcut-filter-my-cards": "Filtrar mis tarjetas",
- "shortcut-show-shortcuts": "Traer esta lista de atajos",
- "shortcut-toggle-filterbar": "Activar/Desactivar Barra Lateral de Filtros",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Activar/Desactivar Barra Lateral de Tableros",
- "show-cards-minimum-count": "Mostrar cuenta de tarjetas si la lista contiene más que",
- "sidebar-open": "Abrir Barra Lateral",
- "sidebar-close": "Cerrar Barra Lateral",
- "signupPopup-title": "Crear Cuenta",
- "star-board-title": "Clickear para darle una estrella a este tablero. Se mostrará arriba en el tope de tu lista de tableros.",
- "starred-boards": "Tableros con estrellas",
- "starred-boards-description": "Tableros con estrellas se muestran en el tope de tu lista de tableros.",
- "subscribe": "Suscribirse",
- "team": "Equipo",
- "this-board": "este tablero",
- "this-card": "esta tarjeta",
- "spent-time-hours": "Tiempo empleado (horas)",
- "overtime-hours": "Sobretiempo (horas)",
- "overtime": "Sobretiempo",
- "has-overtime-cards": "Tiene tarjetas con sobretiempo",
- "has-spenttime-cards": "Ha gastado tarjetas de tiempo",
- "time": "Hora",
- "title": "Título",
- "tracking": "Seguimiento",
- "tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.",
- "type": "Type",
- "unassign-member": "Desasignar miembro",
- "unsaved-description": "Tienes una descripción sin guardar.",
- "unwatch": "Dejar de seguir",
- "upload": "Cargar",
- "upload-avatar": "Cargar un avatar",
- "uploaded-avatar": "Cargado un avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nombre de usuario",
- "view-it": "Verlo",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Seguir",
- "watching": "Siguiendo",
- "watching-info": "Serás notificado de cualquier cambio en este tablero",
- "welcome-board": "Tablero de Bienvenida",
- "welcome-swimlane": "Hito 1",
- "welcome-list1": "Básicos",
- "welcome-list2": "Avanzado",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "¿Qué querés hacer?",
- "wipLimitErrorPopup-title": "Límite TEP Inválido",
- "wipLimitErrorPopup-dialog-pt1": " El número de tareas en esta lista es mayor que el límite TEP que definiste.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor mové algunas tareas fuera de esta lista, o seleccioná un límite TEP más alto.",
- "admin-panel": "Panel de Administración",
- "settings": "Opciones",
- "people": "Gente",
- "registration": "Registro",
- "disable-self-registration": "Desactivar auto-registro",
- "invite": "Invitar",
- "invite-people": "Invitar Gente",
- "to-boards": "A tarjeta(s)",
- "email-addresses": "Dirección de Email",
- "smtp-host-description": "La dirección del servidor SMTP que maneja tus emails",
- "smtp-port-description": "El puerto que tu servidor SMTP usa para correos salientes",
- "smtp-tls-description": "Activar soporte TLS para el servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Puerto SMTP",
- "smtp-username": "Usuario",
- "smtp-password": "Contraseña",
- "smtp-tls": "Soporte TLS",
- "send-from": "De",
- "send-smtp-test": "Enviarse un email de prueba",
- "invitation-code": "Código de Invitación",
- "email-invite-register-subject": "__inviter__ te envió una invitación",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Enviaste el correo correctamente",
- "error-invitation-code-not-exist": "El código de invitación no existe",
- "error-notAuthorized": "No estás autorizado para ver esta página.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Ganchos Web Salientes",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Ganchos Web Salientes",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "Nuevo Gancho Web",
- "no-name": "(desconocido)",
- "Node_version": "Versión de Node",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "Arch del SO",
- "OS_Cpus": "Cantidad de CPU del SO",
- "OS_Freemem": "Memoria Libre del SO",
- "OS_Loadavg": "Carga Promedio del SO",
- "OS_Platform": "Plataforma del SO",
- "OS_Release": "Revisión del SO",
- "OS_Totalmem": "Memoria Total del SO",
- "OS_Type": "Tipo de SO",
- "OS_Uptime": "Tiempo encendido del SO",
- "days": "days",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Si",
- "no": "No",
- "accounts": "Cuentas",
- "accounts-allowEmailChange": "Permitir Cambio de Email",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Creado en",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recibido",
- "card-received-on": "Recibido en",
- "card-end": "Termino",
- "card-end-on": "Termina en",
- "editCardReceivedDatePopup-title": "Cambiar fecha de recepción",
- "editCardEndDatePopup-title": "Cambiar fecha de término",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Mover al Archivo",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Agregar",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Notificación de Actividad",
+ "act-addAttachment": "agregado archivo adjunto __attachment__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-deleteAttachment": "eliminado archivo adjunto __attachment__ de la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-addSubtask": "agregada subtarea __subtask__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-addLabel": "Agregada etiqueta __label__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-addedLabel": "Agregada etiqueta __label__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-removeLabel": "Eliminada etiqueta __label__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-removedLabel": "Eliminada etiqueta __label__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-addChecklist": "agregada checklist __checklist__ a tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-addChecklistItem": "agregado ítem __checklistItem__ a checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-removeChecklist": "eliminada checklist __checklist__ de tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-removeChecklistItem": "eliminado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-checkedItem": "marcado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-uncheckedItem": "desmarcado ítem __checklistItem__ de checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-completeChecklist": "completada checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "__card__ [__board__] ",
+ "actions": "Acciones",
+ "activities": "Actividades",
+ "activity": "Actividad",
+ "activity-added": "agregadas %s a %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "adjuntadas %s a %s",
+ "activity-created": "creadas %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluidas %s de %s",
+ "activity-imported": "importadas %s en %s de %s",
+ "activity-imported-board": "importadas %s de %s",
+ "activity-joined": "unidas %s",
+ "activity-moved": "movidas %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "eliminadas %s de %s",
+ "activity-sent": "enviadas %s a %s",
+ "activity-unjoined": "separadas %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "agregada lista de tareas a %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "agregado item de lista de tareas a '%s' en %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Agregar",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completada checklist __checklist__ en la tarjeta __card__ en la lista __list__ en el swimlane __swimlane__ en el tablero __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "comentario %s editado",
+ "activity-deleteComment": "comentario %s eliminado",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Agregar Adjunto",
+ "add-board": "Agregar Tablero",
+ "add-card": "Agregar Tarjeta",
+ "add-swimlane": "Agregar Calle",
+ "add-subtask": "Agregar Subtarea",
+ "add-checklist": "Agregar Lista de Tareas",
+ "add-checklist-item": "Agregar ítem a lista de tareas",
+ "add-cover": "Agregar Portadas",
+ "add-label": "Agregar Etiqueta",
+ "add-list": "Agregar Lista",
+ "add-members": "Agregar Miembros",
+ "added": "Agregadas",
+ "addMemberPopup-title": "Miembros",
+ "admin": "Administrador",
+ "admin-desc": "Puede ver y editar tarjetas, eliminar miembros, y cambiar opciones para el tablero.",
+ "admin-announcement": "Anuncio",
+ "admin-announcement-active": "Anuncio del Sistema Activo",
+ "admin-announcement-title": "Anuncio del Administrador",
+ "all-boards": "Todos los tableros",
+ "and-n-other-card": "Y __count__ otra tarjeta",
+ "and-n-other-card_plural": "Y __count__ otras tarjetas",
+ "apply": "Aplicar",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Mover al Archivo",
+ "archive-all": "Mover Todo al Archivo",
+ "archive-board": "Mover Tablero al Archivo",
+ "archive-card": "Mover Tarjeta al Archivo",
+ "archive-list": "Mover Lista al Archivo",
+ "archive-swimlane": "Mover Calle al Archivo",
+ "archive-selection": "Mover selección al Archivo",
+ "archiveBoardPopup-title": "¿Mover Tablero al Archivo?",
+ "archived-items": "Archivar",
+ "archived-boards": "Tableros en el Archivo",
+ "restore-board": "Restaurar Tablero",
+ "no-archived-boards": "No hay Tableros en el Archivo",
+ "archives": "Archivar",
+ "template": "Plantilla",
+ "templates": "Plantillas",
+ "assign-member": "Asignar miembro",
+ "attached": "adjunto(s)",
+ "attachment": "Adjunto",
+ "attachment-delete-pop": "Borrar un adjunto es permanente. No hay deshacer.",
+ "attachmentDeletePopup-title": "¿Borrar Adjunto?",
+ "attachments": "Adjuntos",
+ "auto-watch": "Seguir tableros automáticamente al crearlos",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Atrás",
+ "board-change-color": "Cambiar color",
+ "board-nb-stars": "%s estrellas",
+ "board-not-found": "Tablero no encontrado",
+ "board-private-info": "Este tablero va a ser privado.",
+ "board-public-info": "Este tablero va a ser público.",
+ "boardChangeColorPopup-title": "Cambiar Fondo del Tablero",
+ "boardChangeTitlePopup-title": "Renombrar Tablero",
+ "boardChangeVisibilityPopup-title": "Cambiar Visibilidad",
+ "boardChangeWatchPopup-title": "Alternar Seguimiento",
+ "boardMenuPopup-title": "Opciones del Tablero",
+ "boardChangeViewPopup-title": "Vista de Tablero",
+ "boards": "Tableros",
+ "board-view": "Vista de Tablero",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Calles",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listas",
+ "bucket-example": "Como \"Lista de Contenedores\" por ejemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Esta tarjeta es movida al Archivo.",
+ "board-archived": "Este tablero es movido al Archivo.",
+ "card-comments-title": "Esta tarjeta tiene %s comentario.",
+ "card-delete-notice": "Borrar es permanente. Perderás todas las acciones asociadas con esta tarjeta.",
+ "card-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podrás re-abrir la tarjeta. No hay deshacer.",
+ "card-delete-suggest-archive": "Podés mover una tarjeta al Archivo para eliminarla del tablero y preservar la actividad.",
+ "card-due": "Vence",
+ "card-due-on": "Vence en",
+ "card-spent": "Tiempo Empleado",
+ "card-edit-attachments": "Editar adjuntos",
+ "card-edit-custom-fields": "Editar campos personalizados",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar miembros",
+ "card-labels-title": "Cambiar las etiquetas de la tarjeta.",
+ "card-members-title": "Agregar o eliminar de la tarjeta miembros del tablero.",
+ "card-start": "Empieza",
+ "card-start-on": "Empieza el",
+ "cardAttachmentsPopup-title": "Adjuntar De",
+ "cardCustomField-datePopup-title": "Cambiar fecha",
+ "cardCustomFieldsPopup-title": "Editar campos personalizados",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "¿Borrar Tarjeta?",
+ "cardDetailsActionsPopup-title": "Acciones de la Tarjeta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Miembros",
+ "cardMorePopup-title": "Mas",
+ "cardTemplatePopup-title": "Crear plantilla",
+ "cards": "Tarjetas",
+ "cards-count": "Tarjetas",
+ "casSignIn": "Ingresar con CAS",
+ "cardType-card": "Tarjeta",
+ "cardType-linkedCard": "Tarjeta Vinculada",
+ "cardType-linkedBoard": "Tablero Vinculado",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar Avatar",
+ "change-password": "Cambiar Contraseña",
+ "change-permissions": "Cambiar permisos",
+ "change-settings": "Cambiar Opciones",
+ "changeAvatarPopup-title": "Cambiar Avatar",
+ "changeLanguagePopup-title": "Cambiar Lenguaje",
+ "changePasswordPopup-title": "Cambiar Contraseña",
+ "changePermissionsPopup-title": "Cambiar Permisos",
+ "changeSettingsPopup-title": "Cambiar Opciones",
+ "subtasks": "Subtareas",
+ "checklists": "Listas de ítems",
+ "click-to-star": "Clickeá para darle una estrella a este tablero.",
+ "click-to-unstar": "Clickeá para sacarle la estrella al tablero.",
+ "clipboard": "Portapapeles o arrastrar y soltar",
+ "close": "Cerrar",
+ "close-board": "Cerrar Tablero",
+ "close-board-pop": "Podrás restaurar el tablero clickeando el \"Archivo\" desde el encabesado de inicio.",
+ "color-black": "negro",
+ "color-blue": "azul",
+ "color-crimson": "crimson",
+ "color-darkgreen": "verdeoscuro",
+ "color-gold": "dorado",
+ "color-gray": "gris",
+ "color-green": "verde",
+ "color-indigo": "índigo",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosamística",
+ "color-navy": "navy",
+ "color-orange": "naranja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "plum",
+ "color-purple": "púrpura",
+ "color-red": "rojo",
+ "color-saddlebrown": "marróntriste",
+ "color-silver": "plata",
+ "color-sky": "cielo",
+ "color-slateblue": "slateblue",
+ "color-white": "blanco",
+ "color-yellow": "amarillo",
+ "unset-color": "Deseleccionado",
+ "comment": "Comentario",
+ "comment-placeholder": "Comentar",
+ "comment-only": "Comentar solamente",
+ "comment-only-desc": "Puede comentar en tarjetas solamente.",
+ "no-comments": "Sin comentarios",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computadora",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copiar enlace a tarjeta en el portapapeles",
+ "linkCardPopup-title": "Tarjeta vinculada",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar Tarjeta",
+ "copyChecklistToManyCardsPopup-title": "Copiar Plantilla Checklist a Muchas Tarjetas",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos y Descripciones de la Tarjeta Destino en este formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de primera tarjeta\", \"description\":\"Descripción de primera tarjeta\"}, {\"title\":\"Título de segunda tarjeta\",\"description\":\"Descripción de segunda tarjeta\"},{\"title\":\"Título de última tarjeta\",\"description\":\"Descripción de última tarjeta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear Tablero",
+ "chooseBoardSourcePopup-title": "Importar tablero",
+ "createLabelPopup-title": "Crear Etiqueta",
+ "createCustomField": "Crear Campo",
+ "createCustomFieldPopup-title": "Crear Campo",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Fecha",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(ninguno)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Custom Fields",
+ "date": "Fecha",
+ "decline": "Rechazar",
+ "default-avatar": "Avatar por defecto",
+ "delete": "Borrar",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "¿Borrar Etiqueta?",
+ "description": "Descripción",
+ "disambiguateMultiLabelPopup-title": "Desambiguación de Acción de Etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguación de Acción de Miembro",
+ "discard": "Descartar",
+ "done": "Hecho",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar Avatar",
+ "edit-profile": "Editar Perfil",
+ "edit-wip-limit": "Editar Lìmite de TEP",
+ "soft-wip-limit": "Límite TEP suave",
+ "editCardStartDatePopup-title": "Cambiar fecha de inicio",
+ "editCardDueDatePopup-title": "Cambiar fecha de vencimiento",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Cambiar tiempo empleado",
+ "editLabelPopup-title": "Cambiar Etiqueta",
+ "editNotificationPopup-title": "Editar Notificación",
+ "editProfilePopup-title": "Editar Perfil",
+ "email": "Email",
+ "email-enrollAccount-subject": "Una cuenta creada para vos en __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a usar el servicio, simplemente clickeá en el enlace de abajo.\n\n__url__\n\nGracias.",
+ "email-fail": "Fallo envío de email",
+ "email-fail-text": "Error intentando enviar email",
+ "email-invalid": "Email inválido",
+ "email-invite": "Invitar vía Email",
+ "email-invite-subject": "__inviter__ te envió una invitación",
+ "email-invite-text": "Querido __user__,\n\n__inviter__ te invita a unirte al tablero \"__board__\" para colaborar.\n\nPor favor sigue el enlace de abajo:\n\n__url__\n\nGracias.",
+ "email-resetPassword-subject": "Restaurá tu contraseña en __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n\nPara restaurar tu contraseña, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
+ "email-sent": "Email enviado",
+ "email-verifyEmail-subject": "Verificá tu dirección de email en __siteName__",
+ "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de email, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
+ "enable-wip-limit": "Activar Límite TEP",
+ "error-board-doesNotExist": "Este tablero no existe",
+ "error-board-notAdmin": "Necesitás ser administrador de este tablero para hacer eso",
+ "error-board-notAMember": "Necesitás ser miembro de este tablero para hacer eso",
+ "error-json-malformed": "Tu texto no es JSON válido",
+ "error-json-schema": "Tus datos JSON no incluyen la información correcta en el formato adecuado",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Esta lista no existe",
+ "error-user-doesNotExist": "Este usuario no existe",
+ "error-user-notAllowSelf": "No podés invitarte a vos mismo",
+ "error-user-notCreated": " El usuario no se creó",
+ "error-username-taken": "El nombre de usuario ya existe",
+ "error-email-taken": "El email ya existe",
+ "export-board": "Exportar tablero",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Exportar tablero",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrar",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Sacar filtro",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Sin etiqueta",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No es miembro",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "El filtro está activado",
+ "filter-on-desc": "Estás filtrando cartas en este tablero. Clickeá acá para editar el filtro.",
+ "filter-to-selection": "Filtrar en la selección",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nombre Completo",
+ "header-logo-title": "Retroceder a tu página de tableros.",
+ "hide-system-messages": "Esconder mensajes del sistema",
+ "headerBarCreateBoardPopup-title": "Crear Tablero",
+ "home": "Inicio",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "importar tablero",
+ "import-board-c": "Importar tablero",
+ "import-board-title-trello": "Importar tablero de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "De Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego a 'Más', 'Imprimir y Exportar', 'Exportar JSON', y copia el texto resultante.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Pegá tus datos JSON válidos acá",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapear Miembros",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Revisar mapeo de miembros",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Versión",
+ "initials": "Iniciales",
+ "invalid-date": "Fecha inválida",
+ "invalid-time": "Tiempo inválido",
+ "invalid-user": "Usuario inválido",
+ "joined": "unido",
+ "just-invited": "Fuiste invitado a este tablero",
+ "keyboard-shortcuts": "Atajos de teclado",
+ "label-create": "Crear Etiqueta",
+ "label-default": "%s etiqueta (por defecto)",
+ "label-delete-pop": "No hay deshacer. Esto va a eliminar esta etiqueta de todas las tarjetas y destruir su historia.",
+ "labels": "Etiquetas",
+ "language": "Lenguaje",
+ "last-admin-desc": "No podés cambiar roles porque tiene que haber al menos un administrador.",
+ "leave-board": "Dejar Tablero",
+ "leave-board-pop": "¿Estás seguro que querés dejar __boardTitle__? Vas a salir de todas las tarjetas en este tablero.",
+ "leaveBoardPopup-title": "¿Dejar Tablero?",
+ "link-card": "Enlace a esta tarjeta",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mueve todas las tarjetas en esta lista",
+ "list-select-cards": "Selecciona todas las tarjetas en esta lista",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Listar Acciones",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Acciones de la Calle",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Importar una tarjeta Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Mas",
+ "link-list": "Enlace a esta lista",
+ "list-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podás recuperar la lista. No se puede deshacer.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listas",
+ "swimlanes": "Calles",
+ "log-out": "Salir",
+ "log-in": "Entrar",
+ "loginPopup-title": "Entrar",
+ "memberMenuPopup-title": "Opciones de Miembros",
+ "members": "Miembros",
+ "menu": "Menú",
+ "move-selection": "Mover selección",
+ "moveCardPopup-title": "Mover Tarjeta",
+ "moveCardToBottom-title": "Mover al Final",
+ "moveCardToTop-title": "Mover al Tope",
+ "moveSelectionPopup-title": "Mover selección",
+ "multi-selection": "Multi-Selección",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-selección está activo",
+ "muted": "Silenciado",
+ "muted-info": "No serás notificado de ningún cambio en este tablero",
+ "my-boards": "Mis Tableros",
+ "name": "Nombre",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No hay resultados",
+ "normal": "Normal",
+ "normal-desc": "Puede ver y editar tarjetas. No puede cambiar opciones.",
+ "not-accepted-yet": "Invitación no aceptada todavía",
+ "notify-participate": "Recibí actualizaciones en cualquier tarjeta que participés como creador o miembro",
+ "notify-watch": "Recibí actualizaciones en cualquier tablero, lista, o tarjeta que estés siguiendo",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Esta página puede ser privada. Vos podrás verla entrando.",
+ "page-not-found": "Página no encontrada.",
+ "password": "Contraseña",
+ "paste-or-dragdrop": "pegar, arrastrar y soltar el archivo de imagen a esto (imagen sola)",
+ "participating": "Participando",
+ "preview": "Previsualización",
+ "previewAttachedImagePopup-title": "Previsualización",
+ "previewClipboardImagePopup-title": "Previsualización",
+ "private": "Privado",
+ "private-desc": "Este tablero es privado. Solo personas agregadas a este tablero pueden verlo y editarlo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este tablero es público. Es visible para cualquiera con un enlace y se va a mostrar en los motores de búsqueda como Google. Solo personas agregadas a este tablero pueden editarlo.",
+ "quick-access-description": "Dale una estrella al tablero para agregar un acceso directo en esta barra.",
+ "remove-cover": "Remover Portada",
+ "remove-from-board": "Remover del Tablero",
+ "remove-label": "Remover Etiqueta",
+ "listDeletePopup-title": "¿Borrar Lista?",
+ "remove-member": "Remover Miembro",
+ "remove-member-from-card": "Remover de Tarjeta",
+ "remove-member-pop": "¿Remover __name__ (__username__) de __boardTitle__? Los miembros va a ser removido de todas las tarjetas en este tablero. Serán notificados.",
+ "removeMemberPopup-title": "¿Remover Miembro?",
+ "rename": "Renombrar",
+ "rename-board": "Renombrar Tablero",
+ "restore": "Restaurar",
+ "save": "Grabar",
+ "search": "Buscar",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Seleccionar Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Fijar un límite para el número máximo de tareas en esta lista",
+ "setWipLimitPopup-title": "Establecer Límite TEP",
+ "shortcut-assign-self": "Asignarte a vos mismo en la tarjeta actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emonji",
+ "shortcut-autocomplete-members": "Autocompletar miembros",
+ "shortcut-clear-filters": "Limpiar todos los filtros",
+ "shortcut-close-dialog": "Cerrar Diálogo",
+ "shortcut-filter-my-cards": "Filtrar mis tarjetas",
+ "shortcut-show-shortcuts": "Traer esta lista de atajos",
+ "shortcut-toggle-filterbar": "Activar/Desactivar Barra Lateral de Filtros",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Activar/Desactivar Barra Lateral de Tableros",
+ "show-cards-minimum-count": "Mostrar cuenta de tarjetas si la lista contiene más que",
+ "sidebar-open": "Abrir Barra Lateral",
+ "sidebar-close": "Cerrar Barra Lateral",
+ "signupPopup-title": "Crear Cuenta",
+ "star-board-title": "Clickear para darle una estrella a este tablero. Se mostrará arriba en el tope de tu lista de tableros.",
+ "starred-boards": "Tableros con estrellas",
+ "starred-boards-description": "Tableros con estrellas se muestran en el tope de tu lista de tableros.",
+ "subscribe": "Suscribirse",
+ "team": "Equipo",
+ "this-board": "este tablero",
+ "this-card": "esta tarjeta",
+ "spent-time-hours": "Tiempo empleado (horas)",
+ "overtime-hours": "Sobretiempo (horas)",
+ "overtime": "Sobretiempo",
+ "has-overtime-cards": "Tiene tarjetas con sobretiempo",
+ "has-spenttime-cards": "Ha gastado tarjetas de tiempo",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Seguimiento",
+ "tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.",
+ "type": "Type",
+ "unassign-member": "Desasignar miembro",
+ "unsaved-description": "Tienes una descripción sin guardar.",
+ "unwatch": "Dejar de seguir",
+ "upload": "Cargar",
+ "upload-avatar": "Cargar un avatar",
+ "uploaded-avatar": "Cargado un avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nombre de usuario",
+ "view-it": "Verlo",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Seguir",
+ "watching": "Siguiendo",
+ "watching-info": "Serás notificado de cualquier cambio en este tablero",
+ "welcome-board": "Tablero de Bienvenida",
+ "welcome-swimlane": "Hito 1",
+ "welcome-list1": "Básicos",
+ "welcome-list2": "Avanzado",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "¿Qué querés hacer?",
+ "wipLimitErrorPopup-title": "Límite TEP Inválido",
+ "wipLimitErrorPopup-dialog-pt1": " El número de tareas en esta lista es mayor que el límite TEP que definiste.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor mové algunas tareas fuera de esta lista, o seleccioná un límite TEP más alto.",
+ "admin-panel": "Panel de Administración",
+ "settings": "Opciones",
+ "people": "Gente",
+ "registration": "Registro",
+ "disable-self-registration": "Desactivar auto-registro",
+ "invite": "Invitar",
+ "invite-people": "Invitar Gente",
+ "to-boards": "A tarjeta(s)",
+ "email-addresses": "Dirección de Email",
+ "smtp-host-description": "La dirección del servidor SMTP que maneja tus emails",
+ "smtp-port-description": "El puerto que tu servidor SMTP usa para correos salientes",
+ "smtp-tls-description": "Activar soporte TLS para el servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Puerto SMTP",
+ "smtp-username": "Usuario",
+ "smtp-password": "Contraseña",
+ "smtp-tls": "Soporte TLS",
+ "send-from": "De",
+ "send-smtp-test": "Enviarse un email de prueba",
+ "invitation-code": "Código de Invitación",
+ "email-invite-register-subject": "__inviter__ te envió una invitación",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Enviaste el correo correctamente",
+ "error-invitation-code-not-exist": "El código de invitación no existe",
+ "error-notAuthorized": "No estás autorizado para ver esta página.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Ganchos Web Salientes",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Ganchos Web Salientes",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "Nuevo Gancho Web",
+ "no-name": "(desconocido)",
+ "Node_version": "Versión de Node",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "Arch del SO",
+ "OS_Cpus": "Cantidad de CPU del SO",
+ "OS_Freemem": "Memoria Libre del SO",
+ "OS_Loadavg": "Carga Promedio del SO",
+ "OS_Platform": "Plataforma del SO",
+ "OS_Release": "Revisión del SO",
+ "OS_Totalmem": "Memoria Total del SO",
+ "OS_Type": "Tipo de SO",
+ "OS_Uptime": "Tiempo encendido del SO",
+ "days": "days",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Si",
+ "no": "No",
+ "accounts": "Cuentas",
+ "accounts-allowEmailChange": "Permitir Cambio de Email",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Creado en",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recibido",
+ "card-received-on": "Recibido en",
+ "card-end": "Termino",
+ "card-end-on": "Termina en",
+ "editCardReceivedDatePopup-title": "Cambiar fecha de recepción",
+ "editCardEndDatePopup-title": "Cambiar fecha de término",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Mover al Archivo",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Agregar",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/es-CL.i18n.json b/i18n/es-CL.i18n.json
index 0a13fda23..1bd973ed3 100644
--- a/i18n/es-CL.i18n.json
+++ b/i18n/es-CL.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Notificación de actividad",
- "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createBoard": "creó el tablero __board__",
- "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
- "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createCustomField": "creado el campo personalizado __customField__ en el tablero __board__",
- "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
- "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createList": "añadida la lista __list__ al tablero __board__",
- "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
- "act-archivedBoard": "El tablero __board__ se ha archivado",
- "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
- "act-importBoard": "importado el tablero __board__",
- "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
- "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
- "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
- "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
- "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acciones",
- "activities": "Actividades",
- "activity": "Actividad",
- "activity-added": "ha añadido %s a %s",
- "activity-archived": "%s se ha archivado",
- "activity-attached": "ha adjuntado %s a %s",
- "activity-created": "ha creado %s",
- "activity-customfield-created": "creó el campo personalizado %s",
- "activity-excluded": "ha excluido %s de %s",
- "activity-imported": "ha importado %s a %s desde %s",
- "activity-imported-board": "ha importado %s desde %s",
- "activity-joined": "se ha unido a %s",
- "activity-moved": "ha movido %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "ha eliminado %s de %s",
- "activity-sent": "ha enviado %s a %s",
- "activity-unjoined": "se ha desvinculado de %s",
- "activity-subtask-added": "ha añadido la subtarea a %s",
- "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
- "activity-unchecked-item": "desmarcado %s en lista %s de %s",
- "activity-checklist-added": "ha añadido una lista de verificación a %s",
- "activity-checklist-removed": "eliminada una lista de verificación desde %s",
- "activity-checklist-completed": "lista de verificación completada %s de %s",
- "activity-checklist-uncompleted": "no completado la lista %s de %s",
- "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
- "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
- "add": "Añadir",
- "activity-checked-item-card": "marcado %s en la lista de verificación %s",
- "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
- "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
- "activity-editComment": "comentario editado",
- "activity-deleteComment": "comentario eliminado",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Añadir adjunto",
- "add-board": "Añadir tablero",
- "add-card": "Añadir una tarjeta",
- "add-swimlane": "Añadir un carril de flujo",
- "add-subtask": "Añadir subtarea",
- "add-checklist": "Añadir una lista de verificación",
- "add-checklist-item": "Añadir un elemento a la lista de verificación",
- "add-cover": "Añadir portada",
- "add-label": "Añadir una etiqueta",
- "add-list": "Añadir una lista",
- "add-members": "Añadir miembros",
- "added": "Añadida el",
- "addMemberPopup-title": "Miembros",
- "admin": "Administrador",
- "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
- "admin-announcement": "Aviso",
- "admin-announcement-active": "Activar el aviso para todo el sistema",
- "admin-announcement-title": "Aviso del administrador",
- "all-boards": "Tableros",
- "and-n-other-card": "y __count__ tarjeta más",
- "and-n-other-card_plural": "y otras __count__ tarjetas",
- "apply": "Aplicar",
- "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
- "archive": "Archivar",
- "archive-all": "Archivar todo",
- "archive-board": "Archivar este tablero",
- "archive-card": "Archivar esta tarjeta",
- "archive-list": "Archivar esta lista",
- "archive-swimlane": "Archivar este carril",
- "archive-selection": "Archivar esta selección",
- "archiveBoardPopup-title": "¿Archivar este tablero?",
- "archived-items": "Archivo",
- "archived-boards": "Tableros en el Archivo",
- "restore-board": "Restaurar el tablero",
- "no-archived-boards": "No hay Tableros en el Archivo",
- "archives": "Archivo",
- "template": "Plantilla",
- "templates": "Plantillas",
- "assign-member": "Asignar miembros",
- "attached": "adjuntado",
- "attachment": "Adjunto",
- "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
- "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
- "attachments": "Adjuntos",
- "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Atrás",
- "board-change-color": "Cambiar el color",
- "board-nb-stars": "%s destacados",
- "board-not-found": "Tablero no encontrado",
- "board-private-info": "Este tablero será privado.",
- "board-public-info": "Este tablero será público.",
- "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
- "boardChangeTitlePopup-title": "Renombrar el tablero",
- "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
- "boardChangeWatchPopup-title": "Cambiar vigilancia",
- "boardMenuPopup-title": "Preferencias del tablero",
- "boardChangeViewPopup-title": "Vista del tablero",
- "boards": "Tableros",
- "board-view": "Vista del tablero",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Carriles",
- "board-view-collapse": "Contraer",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listas",
- "bucket-example": "Como “Cosas por hacer” por ejemplo",
- "cancel": "Cancelar",
- "card-archived": "Se archivó esta tarjeta",
- "board-archived": "Se archivó este tablero",
- "card-comments-title": "Esta tarjeta tiene %s comentarios.",
- "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
- "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
- "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
- "card-due": "Vence",
- "card-due-on": "Vence el",
- "card-spent": "Tiempo consumido",
- "card-edit-attachments": "Editar los adjuntos",
- "card-edit-custom-fields": "Editar los campos personalizados",
- "card-edit-labels": "Editar las etiquetas",
- "card-edit-members": "Editar los miembros",
- "card-labels-title": "Cambia las etiquetas de la tarjeta",
- "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
- "card-start": "Comienza",
- "card-start-on": "Comienza el",
- "cardAttachmentsPopup-title": "Adjuntar desde",
- "cardCustomField-datePopup-title": "Cambiar la fecha",
- "cardCustomFieldsPopup-title": "Editar los campos personalizados",
- "cardStartVotingPopup-title": "Comience a votar",
- "positiveVoteMembersPopup-title": "Favorables",
- "negativeVoteMembersPopup-title": "Contrarios",
- "card-edit-voting": "Editar votación",
- "editVoteEndDatePopup-title": "Cambie fecha de termino del voto",
- "allowNonBoardMembers": "Permitir todos los usuarios autentificados",
- "vote-question": "Pregunta de votación",
- "vote-public": "Mostrar quien voto que",
- "vote-for-it": "por esto",
- "vote-against": "contrarios",
- "deleteVotePopup-title": "¿Borrar voto?",
- "vote-delete-pop": "El Borrado es permanente. Perderá todas las acciones asociadas con este voto.",
- "cardDeletePopup-title": "¿Eliminar la tarjeta?",
- "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Miembros",
- "cardMorePopup-title": "Más",
- "cardTemplatePopup-title": "Crear plantilla",
- "cards": "Tarjetas",
- "cards-count": "Tarjetas",
- "casSignIn": "Iniciar sesión con CAS",
- "cardType-card": "Tarjeta",
- "cardType-linkedCard": "Tarjeta enlazada",
- "cardType-linkedBoard": "Tablero enlazado",
- "change": "Cambiar",
- "change-avatar": "Cambiar el avatar",
- "change-password": "Cambiar la contraseña",
- "change-permissions": "Cambiar los permisos",
- "change-settings": "Cambiar las preferencias",
- "changeAvatarPopup-title": "Cambiar el avatar",
- "changeLanguagePopup-title": "Cambiar el idioma",
- "changePasswordPopup-title": "Cambiar la contraseña",
- "changePermissionsPopup-title": "Cambiar los permisos",
- "changeSettingsPopup-title": "Cambiar las preferencias",
- "subtasks": "Subtareas",
- "checklists": "Lista de verificación",
- "click-to-star": "Haz clic para destacar este tablero.",
- "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
- "clipboard": "el portapapeles o con arrastrar y soltar",
- "close": "Cerrar",
- "close-board": "Cerrar el tablero",
- "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
- "color-black": "negra",
- "color-blue": "azul",
- "color-crimson": "carmesí",
- "color-darkgreen": "verde oscuro",
- "color-gold": "oro",
- "color-gray": "gris",
- "color-green": "verde",
- "color-indigo": "añil",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marino",
- "color-orange": "naranja",
- "color-paleturquoise": "turquesa",
- "color-peachpuff": "melocotón",
- "color-pink": "rosa",
- "color-plum": "púrpura",
- "color-purple": "violeta",
- "color-red": "roja",
- "color-saddlebrown": "marrón",
- "color-silver": "plata",
- "color-sky": "celeste",
- "color-slateblue": "azul",
- "color-white": "blanco",
- "color-yellow": "amarilla",
- "unset-color": "Desmarcar",
- "comment": "Comentar",
- "comment-placeholder": "Escribir comentario",
- "comment-only": "Sólo comentarios",
- "comment-only-desc": "Solo puedes comentar en las tarjetas.",
- "no-comments": "No hay comentarios",
- "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
- "worker": "Trabajador",
- "worker-desc": "Solo puede mover tarjetas, asignarse a la tarjeta y comentar.",
- "computer": "el ordenador",
- "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
- "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
- "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
- "linkCardPopup-title": "Enlazar tarjeta",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar la tarjeta",
- "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
- "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear tablero",
- "chooseBoardSourcePopup-title": "Importar un tablero",
- "createLabelPopup-title": "Crear etiqueta",
- "createCustomField": "Crear un campo",
- "createCustomFieldPopup-title": "Crear un campo",
- "current": "actual",
- "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "custom-field-checkbox": "Casilla de verificación",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Fecha",
- "custom-field-dropdown": "Lista desplegable",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Opciones de la lista",
- "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
- "custom-field-dropdown-unknown": "(desconocido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos personalizados",
- "date": "Fecha",
- "decline": "Declinar",
- "default-avatar": "Avatar por defecto",
- "delete": "Eliminar",
- "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
- "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
- "description": "Descripción",
- "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
- "discard": "Descartarla",
- "done": "Hecho",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar el avatar",
- "edit-profile": "Editar el perfil",
- "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
- "soft-wip-limit": "Límite del trabajo en proceso flexible",
- "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
- "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
- "editCustomFieldPopup-title": "Editar el campo",
- "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
- "editLabelPopup-title": "Cambiar la etiqueta",
- "editNotificationPopup-title": "Editar las notificaciones",
- "editProfilePopup-title": "Editar el perfil",
- "email": "Correo electrónico",
- "email-enrollAccount-subject": "Cuenta creada en __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-fail": "Error al enviar el correo",
- "email-fail-text": "Error al intentar enviar el correo",
- "email-invalid": "Correo no válido",
- "email-invite": "Invitar vía correo electrónico",
- "email-invite-subject": "__inviter__ ha enviado una invitación",
- "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
- "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
- "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-sent": "Correo enviado",
- "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
- "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "enable-wip-limit": "Habilitar el límite del trabajo en proceso",
- "error-board-doesNotExist": "El tablero no existe",
- "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
- "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
- "error-json-malformed": "El texto no es un JSON válido",
- "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
- "error-csv-schema": "Su CSV(Valores separados por coma)/TSV(Valores separados por tab) no incluyen la información apropiada en el formato correcto",
- "error-list-doesNotExist": "La lista no existe",
- "error-user-doesNotExist": "El usuario no existe",
- "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
- "error-user-notCreated": "El usuario no ha sido creado",
- "error-username-taken": "Este nombre de usuario ya está en uso",
- "error-email-taken": "Esta dirección de correo ya está en uso",
- "export-board": "Exportar el tablero",
- "export-board-json": "Exportar tablero a JSON",
- "export-board-csv": "Exportar tablero a CSV",
- "export-board-tsv": "Exportar tablero a TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Exportar el tablero",
- "sort": "Ordenar",
- "sort-desc": "Click para ordenar la lista",
- "list-sort-by": "Ordenar la lista por:",
- "list-label-modifiedAt": "Hora de último acceso",
- "list-label-title": "Nombre de la lista",
- "list-label-sort": "Tu orden manual",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrar",
- "filter-cards": "Filtrar tarjetas o listas",
- "list-filter-label": "Filtrar listas por título",
- "filter-clear": "Limpiar el filtro",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Sin etiqueta",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Sin miembro",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No asignado",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Sin campos personalizados",
- "filter-show-archive": "Mostrar las listas archivadas",
- "filter-hide-empty": "Ocultar las listas vacías",
- "filter-on": "Filtrado activado",
- "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
- "filter-to-selection": "Filtrar la selección",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Filtrado avanzado",
- "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
- "fullname": "Nombre completo",
- "header-logo-title": "Volver a tu página de tableros",
- "hide-system-messages": "Ocultar las notificaciones de actividad",
- "headerBarCreateBoardPopup-title": "Crear tablero",
- "home": "Inicio",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Enlace",
- "import-board": "importar un tablero",
- "import-board-c": "Importar un tablero",
- "import-board-title-trello": "Importar un tablero desde Trello",
- "import-board-title-wekan": "Importar tablero desde una exportación previa",
- "import-board-title-csv": "Importar tablero desde CSV/TSV",
- "from-trello": "Desde Trello",
- "from-wekan": "Desde exportación previa",
- "from-csv": "Desde CSV/TSV",
- "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
- "import-board-instruction-csv": "Pegue en sus Valores separados por coma(CSV)/Valores separados por tab(TSV).",
- "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
- "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
- "import-json-placeholder": "Pega tus datos JSON válidos aquí",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapa de miembros",
- "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
- "import-show-user-mapping": "Revisión de la asignación de miembros",
- "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
- "importMapMembersAddPopup-title": "Seleccionar miembro",
- "info": "Versión",
- "initials": "Iniciales",
- "invalid-date": "Fecha no válida",
- "invalid-time": "Tiempo no válido",
- "invalid-user": "Usuario no válido",
- "joined": "se ha unido",
- "just-invited": "Has sido invitado a este tablero",
- "keyboard-shortcuts": "Atajos de teclado",
- "label-create": "Crear una etiqueta",
- "label-default": "etiqueta %s (por defecto)",
- "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "labels": "Etiquetas",
- "language": "Cambiar el idioma",
- "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
- "leave-board": "Abandonar el tablero",
- "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
- "leaveBoardPopup-title": "¿Abandonar el tablero?",
- "link-card": "Enlazar a esta tarjeta",
- "list-archive-cards": "Archivar todas las tarjetas de esta lista",
- "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
- "list-move-cards": "Mover todas las tarjetas de esta lista",
- "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
- "set-color-list": "Cambiar el color",
- "listActionPopup-title": "Acciones de la lista",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Acciones del carril de flujo",
- "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
- "listImportCardPopup-title": "Importar una tarjeta de Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Más",
- "link-list": "Enlazar a esta lista",
- "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
- "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
- "lists": "Listas",
- "swimlanes": "Carriles",
- "log-out": "Finalizar la sesión",
- "log-in": "Iniciar sesión",
- "loginPopup-title": "Iniciar sesión",
- "memberMenuPopup-title": "Preferencias de miembro",
- "members": "Miembros",
- "menu": "Menú",
- "move-selection": "Mover la selección",
- "moveCardPopup-title": "Mover la tarjeta",
- "moveCardToBottom-title": "Mover al final",
- "moveCardToTop-title": "Mover al principio",
- "moveSelectionPopup-title": "Mover la selección",
- "multi-selection": "Selección múltiple",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Selección múltiple activada",
- "muted": "Silenciado",
- "muted-info": "No serás notificado de ningún cambio en este tablero",
- "my-boards": "Mis tableros",
- "name": "Nombre",
- "no-archived-cards": "No hay tarjetas archivadas.",
- "no-archived-lists": "No hay listas archivadas.",
- "no-archived-swimlanes": "No hay carriles archivados.",
- "no-results": "Sin resultados",
- "normal": "Normal",
- "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
- "not-accepted-yet": "La invitación no ha sido aceptada aún",
- "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
- "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al iniciar sesión.",
- "page-not-found": "Página no encontrada.",
- "password": "Contraseña",
- "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
- "participating": "Participando",
- "preview": "Previsualizar",
- "previewAttachedImagePopup-title": "Previsualizar",
- "previewClipboardImagePopup-title": "Previsualizar",
- "private": "Privado",
- "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
- "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
- "remove-cover": "Eliminar portada",
- "remove-from-board": "Desvincular del tablero",
- "remove-label": "Eliminar la etiqueta",
- "listDeletePopup-title": "¿Eliminar la lista?",
- "remove-member": "Eliminar miembro",
- "remove-member-from-card": "Eliminar de la tarjeta",
- "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
- "removeMemberPopup-title": "¿Eliminar miembro?",
- "rename": "Renombrar",
- "rename-board": "Renombrar el tablero",
- "restore": "Restaurar",
- "save": "Añadir",
- "search": "Buscar",
- "rules": "Reglas",
- "search-cards": "Buscar entre los títulos, las descripciones de las tarjetas/listas y los campos personalizados en este tablero.",
- "search-example": "Write text you search and press Enter",
- "select-color": "Seleccionar el color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
- "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
- "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Autocompletar miembros",
- "shortcut-clear-filters": "Limpiar todos los filtros",
- "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
- "shortcut-filter-my-cards": "Filtrar mis tarjetas",
- "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
- "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
- "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
- "sidebar-open": "Abrir la barra lateral",
- "sidebar-close": "Cerrar la barra lateral",
- "signupPopup-title": "Crear una cuenta",
- "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
- "starred-boards": "Tableros destacados",
- "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
- "subscribe": "Suscribirse",
- "team": "Equipo",
- "this-board": "este tablero",
- "this-card": "esta tarjeta",
- "spent-time-hours": "Tiempo consumido (horas)",
- "overtime-hours": "Tiempo excesivo (horas)",
- "overtime": "Tiempo excesivo",
- "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
- "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
- "time": "Hora",
- "title": "Título",
- "tracking": "Siguiendo",
- "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
- "type": "Tipo",
- "unassign-member": "Desvincular al miembro",
- "unsaved-description": "Tienes una descripción por añadir.",
- "unwatch": "Dejar de vigilar",
- "upload": "Cargar",
- "upload-avatar": "Cargar un avatar",
- "uploaded-avatar": "Avatar cargado",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nombre de usuario",
- "view-it": "Verla",
- "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
- "watch": "Vigilar",
- "watching": "Vigilando",
- "watching-info": "Serás notificado de cualquier cambio en este tablero",
- "welcome-board": "Tablero de bienvenida",
- "welcome-swimlane": "Hito 1",
- "welcome-list1": "Básicos",
- "welcome-list2": "Avanzados",
- "card-templates-swimlane": "Plantilla de tarjeta",
- "list-templates-swimlane": "Listar plantillas",
- "board-templates-swimlane": "Plantilla de tablero",
- "what-to-do": "¿Qué quieres hacer?",
- "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
- "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
- "admin-panel": "Panel del administrador",
- "settings": "Preferencias",
- "people": "Personas",
- "registration": "Registro",
- "disable-self-registration": "Deshabilitar autoregistro",
- "invite": "Invitar",
- "invite-people": "Invitar a personas",
- "to-boards": "A el(los) tablero(s)",
- "email-addresses": "Direcciones de correo electrónico",
- "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
- "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
- "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Puerto SMTP",
- "smtp-username": "Nombre de usuario",
- "smtp-password": "Contraseña",
- "smtp-tls": "Soporte TLS",
- "send-from": "Desde",
- "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
- "invitation-code": "Código de Invitación",
- "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
- "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
- "email-smtp-test-subject": "Prueba de email SMTP",
- "email-smtp-test-text": "El correo se ha enviado correctamente",
- "error-invitation-code-not-exist": "El código de invitación no existe",
- "error-notAuthorized": "No estás autorizado a ver esta página.",
- "webhook-title": "Nombre del Webhook",
- "webhook-token": "Token (opcional para la autenticación)",
- "outgoing-webhooks": "Webhooks salientes",
- "bidirectional-webhooks": "Webhooks de doble sentido",
- "outgoingWebhooksPopup-title": "Webhooks salientes",
- "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
- "disable-webhook": "Deshabilitar este Webhook",
- "global-webhook": "Webhooks globales",
- "new-outgoing-webhook": "Nuevo webhook saliente",
- "no-name": "(Desconocido)",
- "Node_version": "Versión de Node",
- "Meteor_version": "Versión de Meteor",
- "MongoDB_version": "Versión de MongoDB",
- "MongoDB_storage_engine": "Motor de almacenamiento de MongoDB",
- "MongoDB_Oplog_enabled": "Oplog de MongoDB habilitado",
- "OS_Arch": "Arquitectura del sistema",
- "OS_Cpus": "Número de CPUs del sistema",
- "OS_Freemem": "Memoria libre del sistema",
- "OS_Loadavg": "Carga media del sistema",
- "OS_Platform": "Plataforma del sistema",
- "OS_Release": "Publicación del sistema",
- "OS_Totalmem": "Memoria total del sistema",
- "OS_Type": "Tipo de sistema",
- "OS_Uptime": "Tiempo activo del sistema",
- "days": "días",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo en la tarjeta",
- "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
- "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
- "yes": "Sí",
- "no": "No",
- "accounts": "Cuentas",
- "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
- "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
- "createdAt": "Fecha de alta",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recibido",
- "card-received-on": "Recibido el",
- "card-end": "Finalizado",
- "card-end-on": "Finalizado el",
- "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
- "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
- "setCardColorPopup-title": "Cambiar el color",
- "setCardActionsColorPopup-title": "Elegir un color",
- "setSwimlaneColorPopup-title": "Elegir un color",
- "setListColorPopup-title": "Elegir un color",
- "assigned-by": "Asignado por",
- "requested-by": "Solicitado por",
- "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
- "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
- "boardDeletePopup-title": "¿Eliminar el tablero?",
- "delete-board": "Eliminar el tablero",
- "default-subtasks-board": "Subtareas para el tablero __board__",
- "default": "Por defecto",
- "queue": "Cola",
- "subtask-settings": "Preferencias de las subtareas",
- "card-settings": "Preferencias de la tarjeta",
- "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
- "boardCardSettingsPopup-title": "Preferencias de la tarjeta",
- "deposit-subtasks-board": "Depositar subtareas en este tablero:",
- "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
- "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
- "prefix-with-full-path": "Prefijo con ruta completa",
- "prefix-with-parent": "Prefijo con el padre",
- "subtext-with-full-path": "Subtexto con ruta completa",
- "subtext-with-parent": "Subtexto con el padre",
- "change-card-parent": "Cambiar la tarjeta padre",
- "parent-card": "Tarjeta padre",
- "source-board": "Tablero de origen",
- "no-parent": "No mostrar la tarjeta padre",
- "activity-added-label": "añadida etiqueta %s a %s",
- "activity-removed-label": "eliminada etiqueta '%s' desde %s",
- "activity-delete-attach": "eliminado un adjunto desde %s",
- "activity-added-label-card": "añadida etiqueta '%s'",
- "activity-removed-label-card": "eliminada etiqueta '%s'",
- "activity-delete-attach-card": "eliminado un adjunto",
- "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
- "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
- "r-rule": "Regla",
- "r-add-trigger": "Añadir disparador",
- "r-add-action": "Añadir acción",
- "r-board-rules": "Reglas del tablero",
- "r-add-rule": "Añadir regla",
- "r-view-rule": "Ver regla",
- "r-delete-rule": "Eliminar regla",
- "r-new-rule-name": "Nueva título de regla",
- "r-no-rules": "No hay reglas",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Cuando una tarjeta",
- "r-is": "es",
- "r-is-moved": "es movida",
- "r-added-to": "Added to",
- "r-removed-from": "eliminado de",
- "r-the-board": "el tablero",
- "r-list": "la lista",
- "set-filter": "Filtrar",
- "r-moved-to": "Movido a",
- "r-moved-from": "Movido desde",
- "r-archived": "Se archivó",
- "r-unarchived": "Restaurado del archivo",
- "r-a-card": "una tarjeta",
- "r-when-a-label-is": "Cuando una etiqueta es",
- "r-when-the-label": "Cuando la etiqueta es",
- "r-list-name": "Nombre de lista",
- "r-when-a-member": "Cuando un miembro es",
- "r-when-the-member": "Cuando el miembro",
- "r-name": "nombre",
- "r-when-a-attach": "Cuando un adjunto",
- "r-when-a-checklist": "Cuando una lista de verificación es",
- "r-when-the-checklist": "Cuando la lista de verificación",
- "r-completed": "Completada",
- "r-made-incomplete": "Hecha incompleta",
- "r-when-a-item": "Cuando un elemento de la lista de verificación es",
- "r-when-the-item": "Cuando el elemento de la lista de verificación es",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover la tarjeta",
- "r-top-of": "Arriba de",
- "r-bottom-of": "Abajo de",
- "r-its-list": "su lista",
- "r-archive": "Archivar",
- "r-unarchive": "Restaurar del Archivo",
- "r-card": "la tarjeta",
- "r-add": "Añadir",
- "r-remove": "Eliminar",
- "r-label": "etiqueta",
- "r-member": "miembro",
- "r-remove-all": "Eliminar todos los miembros de la tarjeta",
- "r-set-color": "Cambiar el color a",
- "r-checklist": "lista de verificación",
- "r-check-all": "Marcar todo",
- "r-uncheck-all": "Desmarcar todo",
- "r-items-check": "elementos de la lista de verificación",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "elemento",
- "r-of-checklist": "de la lista de verificación",
- "r-send-email": "Enviar un email",
- "r-to": "a",
- "r-of": "of",
- "r-subject": "asunto",
- "r-rule-details": "Detalle de la regla",
- "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
- "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
- "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
- "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
- "r-d-send-email": "Enviar email",
- "r-d-send-email-to": "a",
- "r-d-send-email-subject": "asunto",
- "r-d-send-email-message": "mensaje",
- "r-d-archive": "Archivar la tarjeta",
- "r-d-unarchive": "Restaurar tarjeta del Archivo",
- "r-d-add-label": "Añadir etiqueta",
- "r-d-remove-label": "Eliminar etiqueta",
- "r-create-card": "Crear una nueva tarjeta",
- "r-in-list": "en la lista",
- "r-in-swimlane": "en el carril",
- "r-d-add-member": "Añadir miembro",
- "r-d-remove-member": "Eliminar miembro",
- "r-d-remove-all-member": "Eliminar todos los miembros",
- "r-d-check-all": "Marcar todos los elementos de una lista",
- "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
- "r-d-check-one": "Marcar elemento",
- "r-d-uncheck-one": "Desmarcar elemento",
- "r-d-check-of-list": "de la lista de verificación",
- "r-d-add-checklist": "Añadir una lista de verificación",
- "r-d-remove-checklist": "Eliminar lista de verificación",
- "r-by": "por",
- "r-add-checklist": "Añadir una lista de verificación",
- "r-with-items": "con items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Agregar el carril",
- "r-swimlane-name": "nombre del carril",
- "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
- "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
- "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
- "r-set": "Cambiar",
- "r-update": "Actualizar",
- "r-datefield": "campo de fecha",
- "r-df-start-at": "comienza",
- "r-df-due-at": "vencimiento",
- "r-df-end-at": "finalizado",
- "r-df-received-at": "recibido",
- "r-to-current-datetime": "a la fecha/hora actual",
- "r-remove-value-from": "Eliminar el valor de",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticación",
- "authentication-type": "Tipo de autenticación",
- "custom-product-name": "Nombre de producto personalizado",
- "layout": "Diseño",
- "hide-logo": "Ocultar el logo",
- "add-custom-html-after-body-start": "Añade HTML personalizado después de ",
- "add-custom-html-before-body-end": "Añade HTML personalizado después de ",
- "error-undefined": "Algo no está bien",
- "error-ldap-login": "Ocurrió un error al intentar acceder",
- "display-authentication-method": "Mostrar el método de autenticación",
- "default-authentication-method": "Método de autenticación por defecto",
- "duplicate-board": "Duplicar tablero",
- "people-number": "El número de personas es:",
- "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
- "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
- "restore-all": "Restaurar todas",
- "delete-all": "Borrar todas",
- "loading": "Cargando. Por favor, espere.",
- "previous_as": "el último tiempo fue",
- "act-a-dueAt": "cambiada la hora de vencimiento a \nCuándo: __timeValue__\nDónde: __card__\n el vencimiento anterior fue __timeOldValue__",
- "act-a-endAt": "cambiada la hora de finalización a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "act-a-startAt": "cambiada la hora de comienzo a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "act-a-receivedAt": "cambiada la fecha de recepción a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "a-dueAt": "cambiada la hora de vencimiento a",
- "a-endAt": "cambiada la hora de finalización a",
- "a-startAt": "cambiada la hora de comienzo a",
- "a-receivedAt": "cambiada la hora de recepción a",
- "almostdue": "está próxima la hora de vencimiento actual %s",
- "pastdue": "se sobrepasó la hora de vencimiento actual%s",
- "duenow": "la hora de vencimiento actual %s es hoy",
- "act-newDue": "__list__/__card__ tiene una 1ra notificación de vencimiento [__board__]",
- "act-withDue": "__list__/__card__ notificaciones de vencimiento [__board__]",
- "act-almostdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ está próximo",
- "act-pastdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ se sobrepasó",
- "act-duenow": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ es ahora",
- "act-atUserComment": "Se te mencionó en [__board__] __list__/__card__",
- "delete-user-confirm-popup": "¿Seguro que quieres eliminar esta cuenta? Esta acción no puede deshacerse.",
- "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
- "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
- "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
- "assignee": "Asignado",
- "cardAssigneesPopup-title": "Asignado",
- "addmore-detail": "Añadir una descripción detallada",
- "show-on-card": "Mostrar en la tarjeta",
- "new": "Nuevo",
- "editUserPopup-title": "Editar el usuario",
- "newUserPopup-title": "Nuevo usuario",
- "notifications": "Notificaciones",
- "view-all": "Ver todo",
- "filter-by-unread": "Filtrar por no leído",
- "mark-all-as-read": "Marcar todo como leido",
- "remove-all-read": "Remove all read",
- "allow-rename": "Permitir renombrar",
- "allowRenamePopup-title": "Permitir renombrar",
- "start-day-of-week": "Set day of the week start",
- "monday": "Lunes",
- "tuesday": "Martes",
- "wednesday": "Miércoles",
- "thursday": "Jueves",
- "friday": "Viernes",
- "saturday": "Sábado",
- "sunday": "Domingo",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Notificación de actividad",
+ "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createBoard": "creó el tablero __board__",
+ "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
+ "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createCustomField": "creado el campo personalizado __customField__ en el tablero __board__",
+ "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
+ "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createList": "añadida la lista __list__ al tablero __board__",
+ "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
+ "act-archivedBoard": "El tablero __board__ se ha archivado",
+ "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-importBoard": "importado el tablero __board__",
+ "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
+ "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
+ "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
+ "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
+ "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acciones",
+ "activities": "Actividades",
+ "activity": "Actividad",
+ "activity-added": "ha añadido %s a %s",
+ "activity-archived": "%s se ha archivado",
+ "activity-attached": "ha adjuntado %s a %s",
+ "activity-created": "ha creado %s",
+ "activity-customfield-created": "creó el campo personalizado %s",
+ "activity-excluded": "ha excluido %s de %s",
+ "activity-imported": "ha importado %s a %s desde %s",
+ "activity-imported-board": "ha importado %s desde %s",
+ "activity-joined": "se ha unido a %s",
+ "activity-moved": "ha movido %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "ha eliminado %s de %s",
+ "activity-sent": "ha enviado %s a %s",
+ "activity-unjoined": "se ha desvinculado de %s",
+ "activity-subtask-added": "ha añadido la subtarea a %s",
+ "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
+ "activity-unchecked-item": "desmarcado %s en lista %s de %s",
+ "activity-checklist-added": "ha añadido una lista de verificación a %s",
+ "activity-checklist-removed": "eliminada una lista de verificación desde %s",
+ "activity-checklist-completed": "lista de verificación completada %s de %s",
+ "activity-checklist-uncompleted": "no completado la lista %s de %s",
+ "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
+ "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
+ "add": "Añadir",
+ "activity-checked-item-card": "marcado %s en la lista de verificación %s",
+ "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
+ "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
+ "activity-editComment": "comentario editado",
+ "activity-deleteComment": "comentario eliminado",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Añadir adjunto",
+ "add-board": "Añadir tablero",
+ "add-card": "Añadir una tarjeta",
+ "add-swimlane": "Añadir un carril de flujo",
+ "add-subtask": "Añadir subtarea",
+ "add-checklist": "Añadir una lista de verificación",
+ "add-checklist-item": "Añadir un elemento a la lista de verificación",
+ "add-cover": "Añadir portada",
+ "add-label": "Añadir una etiqueta",
+ "add-list": "Añadir una lista",
+ "add-members": "Añadir miembros",
+ "added": "Añadida el",
+ "addMemberPopup-title": "Miembros",
+ "admin": "Administrador",
+ "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
+ "admin-announcement": "Aviso",
+ "admin-announcement-active": "Activar el aviso para todo el sistema",
+ "admin-announcement-title": "Aviso del administrador",
+ "all-boards": "Tableros",
+ "and-n-other-card": "y __count__ tarjeta más",
+ "and-n-other-card_plural": "y otras __count__ tarjetas",
+ "apply": "Aplicar",
+ "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
+ "archive": "Archivar",
+ "archive-all": "Archivar todo",
+ "archive-board": "Archivar este tablero",
+ "archive-card": "Archivar esta tarjeta",
+ "archive-list": "Archivar esta lista",
+ "archive-swimlane": "Archivar este carril",
+ "archive-selection": "Archivar esta selección",
+ "archiveBoardPopup-title": "¿Archivar este tablero?",
+ "archived-items": "Archivo",
+ "archived-boards": "Tableros en el Archivo",
+ "restore-board": "Restaurar el tablero",
+ "no-archived-boards": "No hay Tableros en el Archivo",
+ "archives": "Archivo",
+ "template": "Plantilla",
+ "templates": "Plantillas",
+ "assign-member": "Asignar miembros",
+ "attached": "adjuntado",
+ "attachment": "Adjunto",
+ "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
+ "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
+ "attachments": "Adjuntos",
+ "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Atrás",
+ "board-change-color": "Cambiar el color",
+ "board-nb-stars": "%s destacados",
+ "board-not-found": "Tablero no encontrado",
+ "board-private-info": "Este tablero será privado.",
+ "board-public-info": "Este tablero será público.",
+ "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
+ "boardChangeTitlePopup-title": "Renombrar el tablero",
+ "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
+ "boardChangeWatchPopup-title": "Cambiar vigilancia",
+ "boardMenuPopup-title": "Preferencias del tablero",
+ "boardChangeViewPopup-title": "Vista del tablero",
+ "boards": "Tableros",
+ "board-view": "Vista del tablero",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Carriles",
+ "board-view-collapse": "Contraer",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listas",
+ "bucket-example": "Como “Cosas por hacer” por ejemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Se archivó esta tarjeta",
+ "board-archived": "Se archivó este tablero",
+ "card-comments-title": "Esta tarjeta tiene %s comentarios.",
+ "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
+ "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
+ "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
+ "card-due": "Vence",
+ "card-due-on": "Vence el",
+ "card-spent": "Tiempo consumido",
+ "card-edit-attachments": "Editar los adjuntos",
+ "card-edit-custom-fields": "Editar los campos personalizados",
+ "card-edit-labels": "Editar las etiquetas",
+ "card-edit-members": "Editar los miembros",
+ "card-labels-title": "Cambia las etiquetas de la tarjeta",
+ "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
+ "card-start": "Comienza",
+ "card-start-on": "Comienza el",
+ "cardAttachmentsPopup-title": "Adjuntar desde",
+ "cardCustomField-datePopup-title": "Cambiar la fecha",
+ "cardCustomFieldsPopup-title": "Editar los campos personalizados",
+ "cardStartVotingPopup-title": "Comience a votar",
+ "positiveVoteMembersPopup-title": "Favorables",
+ "negativeVoteMembersPopup-title": "Contrarios",
+ "card-edit-voting": "Editar votación",
+ "editVoteEndDatePopup-title": "Cambie fecha de termino del voto",
+ "allowNonBoardMembers": "Permitir todos los usuarios autentificados",
+ "vote-question": "Pregunta de votación",
+ "vote-public": "Mostrar quien voto que",
+ "vote-for-it": "por esto",
+ "vote-against": "contrarios",
+ "deleteVotePopup-title": "¿Borrar voto?",
+ "vote-delete-pop": "El Borrado es permanente. Perderá todas las acciones asociadas con este voto.",
+ "cardDeletePopup-title": "¿Eliminar la tarjeta?",
+ "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Miembros",
+ "cardMorePopup-title": "Más",
+ "cardTemplatePopup-title": "Crear plantilla",
+ "cards": "Tarjetas",
+ "cards-count": "Tarjetas",
+ "casSignIn": "Iniciar sesión con CAS",
+ "cardType-card": "Tarjeta",
+ "cardType-linkedCard": "Tarjeta enlazada",
+ "cardType-linkedBoard": "Tablero enlazado",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar el avatar",
+ "change-password": "Cambiar la contraseña",
+ "change-permissions": "Cambiar los permisos",
+ "change-settings": "Cambiar las preferencias",
+ "changeAvatarPopup-title": "Cambiar el avatar",
+ "changeLanguagePopup-title": "Cambiar el idioma",
+ "changePasswordPopup-title": "Cambiar la contraseña",
+ "changePermissionsPopup-title": "Cambiar los permisos",
+ "changeSettingsPopup-title": "Cambiar las preferencias",
+ "subtasks": "Subtareas",
+ "checklists": "Lista de verificación",
+ "click-to-star": "Haz clic para destacar este tablero.",
+ "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
+ "clipboard": "el portapapeles o con arrastrar y soltar",
+ "close": "Cerrar",
+ "close-board": "Cerrar el tablero",
+ "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
+ "color-black": "negra",
+ "color-blue": "azul",
+ "color-crimson": "carmesí",
+ "color-darkgreen": "verde oscuro",
+ "color-gold": "oro",
+ "color-gray": "gris",
+ "color-green": "verde",
+ "color-indigo": "añil",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marino",
+ "color-orange": "naranja",
+ "color-paleturquoise": "turquesa",
+ "color-peachpuff": "melocotón",
+ "color-pink": "rosa",
+ "color-plum": "púrpura",
+ "color-purple": "violeta",
+ "color-red": "roja",
+ "color-saddlebrown": "marrón",
+ "color-silver": "plata",
+ "color-sky": "celeste",
+ "color-slateblue": "azul",
+ "color-white": "blanco",
+ "color-yellow": "amarilla",
+ "unset-color": "Desmarcar",
+ "comment": "Comentar",
+ "comment-placeholder": "Escribir comentario",
+ "comment-only": "Sólo comentarios",
+ "comment-only-desc": "Solo puedes comentar en las tarjetas.",
+ "no-comments": "No hay comentarios",
+ "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
+ "worker": "Trabajador",
+ "worker-desc": "Solo puede mover tarjetas, asignarse a la tarjeta y comentar.",
+ "computer": "el ordenador",
+ "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
+ "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
+ "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
+ "linkCardPopup-title": "Enlazar tarjeta",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar la tarjeta",
+ "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear tablero",
+ "chooseBoardSourcePopup-title": "Importar un tablero",
+ "createLabelPopup-title": "Crear etiqueta",
+ "createCustomField": "Crear un campo",
+ "createCustomFieldPopup-title": "Crear un campo",
+ "current": "actual",
+ "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "custom-field-checkbox": "Casilla de verificación",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Fecha",
+ "custom-field-dropdown": "Lista desplegable",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Opciones de la lista",
+ "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
+ "custom-field-dropdown-unknown": "(desconocido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos personalizados",
+ "date": "Fecha",
+ "decline": "Declinar",
+ "default-avatar": "Avatar por defecto",
+ "delete": "Eliminar",
+ "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
+ "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
+ "description": "Descripción",
+ "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
+ "discard": "Descartarla",
+ "done": "Hecho",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar el avatar",
+ "edit-profile": "Editar el perfil",
+ "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
+ "soft-wip-limit": "Límite del trabajo en proceso flexible",
+ "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
+ "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
+ "editCustomFieldPopup-title": "Editar el campo",
+ "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
+ "editLabelPopup-title": "Cambiar la etiqueta",
+ "editNotificationPopup-title": "Editar las notificaciones",
+ "editProfilePopup-title": "Editar el perfil",
+ "email": "Correo electrónico",
+ "email-enrollAccount-subject": "Cuenta creada en __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-fail": "Error al enviar el correo",
+ "email-fail-text": "Error al intentar enviar el correo",
+ "email-invalid": "Correo no válido",
+ "email-invite": "Invitar vía correo electrónico",
+ "email-invite-subject": "__inviter__ ha enviado una invitación",
+ "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
+ "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-sent": "Correo enviado",
+ "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
+ "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "enable-wip-limit": "Habilitar el límite del trabajo en proceso",
+ "error-board-doesNotExist": "El tablero no existe",
+ "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
+ "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
+ "error-json-malformed": "El texto no es un JSON válido",
+ "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
+ "error-csv-schema": "Su CSV(Valores separados por coma)/TSV(Valores separados por tab) no incluyen la información apropiada en el formato correcto",
+ "error-list-doesNotExist": "La lista no existe",
+ "error-user-doesNotExist": "El usuario no existe",
+ "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
+ "error-user-notCreated": "El usuario no ha sido creado",
+ "error-username-taken": "Este nombre de usuario ya está en uso",
+ "error-email-taken": "Esta dirección de correo ya está en uso",
+ "export-board": "Exportar el tablero",
+ "export-board-json": "Exportar tablero a JSON",
+ "export-board-csv": "Exportar tablero a CSV",
+ "export-board-tsv": "Exportar tablero a TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Exportar el tablero",
+ "sort": "Ordenar",
+ "sort-desc": "Click para ordenar la lista",
+ "list-sort-by": "Ordenar la lista por:",
+ "list-label-modifiedAt": "Hora de último acceso",
+ "list-label-title": "Nombre de la lista",
+ "list-label-sort": "Tu orden manual",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar tarjetas o listas",
+ "list-filter-label": "Filtrar listas por título",
+ "filter-clear": "Limpiar el filtro",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Sin etiqueta",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Sin miembro",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No asignado",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Sin campos personalizados",
+ "filter-show-archive": "Mostrar las listas archivadas",
+ "filter-hide-empty": "Ocultar las listas vacías",
+ "filter-on": "Filtrado activado",
+ "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
+ "filter-to-selection": "Filtrar la selección",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Filtrado avanzado",
+ "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
+ "fullname": "Nombre completo",
+ "header-logo-title": "Volver a tu página de tableros",
+ "hide-system-messages": "Ocultar las notificaciones de actividad",
+ "headerBarCreateBoardPopup-title": "Crear tablero",
+ "home": "Inicio",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Enlace",
+ "import-board": "importar un tablero",
+ "import-board-c": "Importar un tablero",
+ "import-board-title-trello": "Importar un tablero desde Trello",
+ "import-board-title-wekan": "Importar tablero desde una exportación previa",
+ "import-board-title-csv": "Importar tablero desde CSV/TSV",
+ "from-trello": "Desde Trello",
+ "from-wekan": "Desde exportación previa",
+ "from-csv": "Desde CSV/TSV",
+ "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
+ "import-board-instruction-csv": "Pegue en sus Valores separados por coma(CSV)/Valores separados por tab(TSV).",
+ "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
+ "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
+ "import-json-placeholder": "Pega tus datos JSON válidos aquí",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapa de miembros",
+ "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
+ "import-show-user-mapping": "Revisión de la asignación de miembros",
+ "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
+ "importMapMembersAddPopup-title": "Seleccionar miembro",
+ "info": "Versión",
+ "initials": "Iniciales",
+ "invalid-date": "Fecha no válida",
+ "invalid-time": "Tiempo no válido",
+ "invalid-user": "Usuario no válido",
+ "joined": "se ha unido",
+ "just-invited": "Has sido invitado a este tablero",
+ "keyboard-shortcuts": "Atajos de teclado",
+ "label-create": "Crear una etiqueta",
+ "label-default": "etiqueta %s (por defecto)",
+ "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "labels": "Etiquetas",
+ "language": "Cambiar el idioma",
+ "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
+ "leave-board": "Abandonar el tablero",
+ "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
+ "leaveBoardPopup-title": "¿Abandonar el tablero?",
+ "link-card": "Enlazar a esta tarjeta",
+ "list-archive-cards": "Archivar todas las tarjetas de esta lista",
+ "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
+ "list-move-cards": "Mover todas las tarjetas de esta lista",
+ "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
+ "set-color-list": "Cambiar el color",
+ "listActionPopup-title": "Acciones de la lista",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Acciones del carril de flujo",
+ "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
+ "listImportCardPopup-title": "Importar una tarjeta de Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Más",
+ "link-list": "Enlazar a esta lista",
+ "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
+ "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
+ "lists": "Listas",
+ "swimlanes": "Carriles",
+ "log-out": "Finalizar la sesión",
+ "log-in": "Iniciar sesión",
+ "loginPopup-title": "Iniciar sesión",
+ "memberMenuPopup-title": "Preferencias de miembro",
+ "members": "Miembros",
+ "menu": "Menú",
+ "move-selection": "Mover la selección",
+ "moveCardPopup-title": "Mover la tarjeta",
+ "moveCardToBottom-title": "Mover al final",
+ "moveCardToTop-title": "Mover al principio",
+ "moveSelectionPopup-title": "Mover la selección",
+ "multi-selection": "Selección múltiple",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Selección múltiple activada",
+ "muted": "Silenciado",
+ "muted-info": "No serás notificado de ningún cambio en este tablero",
+ "my-boards": "Mis tableros",
+ "name": "Nombre",
+ "no-archived-cards": "No hay tarjetas archivadas.",
+ "no-archived-lists": "No hay listas archivadas.",
+ "no-archived-swimlanes": "No hay carriles archivados.",
+ "no-results": "Sin resultados",
+ "normal": "Normal",
+ "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
+ "not-accepted-yet": "La invitación no ha sido aceptada aún",
+ "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
+ "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al iniciar sesión.",
+ "page-not-found": "Página no encontrada.",
+ "password": "Contraseña",
+ "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
+ "participating": "Participando",
+ "preview": "Previsualizar",
+ "previewAttachedImagePopup-title": "Previsualizar",
+ "previewClipboardImagePopup-title": "Previsualizar",
+ "private": "Privado",
+ "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
+ "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
+ "remove-cover": "Eliminar portada",
+ "remove-from-board": "Desvincular del tablero",
+ "remove-label": "Eliminar la etiqueta",
+ "listDeletePopup-title": "¿Eliminar la lista?",
+ "remove-member": "Eliminar miembro",
+ "remove-member-from-card": "Eliminar de la tarjeta",
+ "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
+ "removeMemberPopup-title": "¿Eliminar miembro?",
+ "rename": "Renombrar",
+ "rename-board": "Renombrar el tablero",
+ "restore": "Restaurar",
+ "save": "Añadir",
+ "search": "Buscar",
+ "rules": "Reglas",
+ "search-cards": "Buscar entre los títulos, las descripciones de las tarjetas/listas y los campos personalizados en este tablero.",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Seleccionar el color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
+ "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
+ "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Autocompletar miembros",
+ "shortcut-clear-filters": "Limpiar todos los filtros",
+ "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
+ "shortcut-filter-my-cards": "Filtrar mis tarjetas",
+ "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
+ "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
+ "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
+ "sidebar-open": "Abrir la barra lateral",
+ "sidebar-close": "Cerrar la barra lateral",
+ "signupPopup-title": "Crear una cuenta",
+ "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
+ "starred-boards": "Tableros destacados",
+ "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
+ "subscribe": "Suscribirse",
+ "team": "Equipo",
+ "this-board": "este tablero",
+ "this-card": "esta tarjeta",
+ "spent-time-hours": "Tiempo consumido (horas)",
+ "overtime-hours": "Tiempo excesivo (horas)",
+ "overtime": "Tiempo excesivo",
+ "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
+ "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Siguiendo",
+ "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
+ "type": "Tipo",
+ "unassign-member": "Desvincular al miembro",
+ "unsaved-description": "Tienes una descripción por añadir.",
+ "unwatch": "Dejar de vigilar",
+ "upload": "Cargar",
+ "upload-avatar": "Cargar un avatar",
+ "uploaded-avatar": "Avatar cargado",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nombre de usuario",
+ "view-it": "Verla",
+ "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
+ "watch": "Vigilar",
+ "watching": "Vigilando",
+ "watching-info": "Serás notificado de cualquier cambio en este tablero",
+ "welcome-board": "Tablero de bienvenida",
+ "welcome-swimlane": "Hito 1",
+ "welcome-list1": "Básicos",
+ "welcome-list2": "Avanzados",
+ "card-templates-swimlane": "Plantilla de tarjeta",
+ "list-templates-swimlane": "Listar plantillas",
+ "board-templates-swimlane": "Plantilla de tablero",
+ "what-to-do": "¿Qué quieres hacer?",
+ "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
+ "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
+ "admin-panel": "Panel del administrador",
+ "settings": "Preferencias",
+ "people": "Personas",
+ "registration": "Registro",
+ "disable-self-registration": "Deshabilitar autoregistro",
+ "invite": "Invitar",
+ "invite-people": "Invitar a personas",
+ "to-boards": "A el(los) tablero(s)",
+ "email-addresses": "Direcciones de correo electrónico",
+ "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
+ "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
+ "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Puerto SMTP",
+ "smtp-username": "Nombre de usuario",
+ "smtp-password": "Contraseña",
+ "smtp-tls": "Soporte TLS",
+ "send-from": "Desde",
+ "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
+ "invitation-code": "Código de Invitación",
+ "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
+ "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
+ "email-smtp-test-subject": "Prueba de email SMTP",
+ "email-smtp-test-text": "El correo se ha enviado correctamente",
+ "error-invitation-code-not-exist": "El código de invitación no existe",
+ "error-notAuthorized": "No estás autorizado a ver esta página.",
+ "webhook-title": "Nombre del Webhook",
+ "webhook-token": "Token (opcional para la autenticación)",
+ "outgoing-webhooks": "Webhooks salientes",
+ "bidirectional-webhooks": "Webhooks de doble sentido",
+ "outgoingWebhooksPopup-title": "Webhooks salientes",
+ "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
+ "disable-webhook": "Deshabilitar este Webhook",
+ "global-webhook": "Webhooks globales",
+ "new-outgoing-webhook": "Nuevo webhook saliente",
+ "no-name": "(Desconocido)",
+ "Node_version": "Versión de Node",
+ "Meteor_version": "Versión de Meteor",
+ "MongoDB_version": "Versión de MongoDB",
+ "MongoDB_storage_engine": "Motor de almacenamiento de MongoDB",
+ "MongoDB_Oplog_enabled": "Oplog de MongoDB habilitado",
+ "OS_Arch": "Arquitectura del sistema",
+ "OS_Cpus": "Número de CPUs del sistema",
+ "OS_Freemem": "Memoria libre del sistema",
+ "OS_Loadavg": "Carga media del sistema",
+ "OS_Platform": "Plataforma del sistema",
+ "OS_Release": "Publicación del sistema",
+ "OS_Totalmem": "Memoria total del sistema",
+ "OS_Type": "Tipo de sistema",
+ "OS_Uptime": "Tiempo activo del sistema",
+ "days": "días",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo en la tarjeta",
+ "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
+ "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
+ "yes": "Sí",
+ "no": "No",
+ "accounts": "Cuentas",
+ "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
+ "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
+ "createdAt": "Fecha de alta",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recibido",
+ "card-received-on": "Recibido el",
+ "card-end": "Finalizado",
+ "card-end-on": "Finalizado el",
+ "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
+ "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
+ "setCardColorPopup-title": "Cambiar el color",
+ "setCardActionsColorPopup-title": "Elegir un color",
+ "setSwimlaneColorPopup-title": "Elegir un color",
+ "setListColorPopup-title": "Elegir un color",
+ "assigned-by": "Asignado por",
+ "requested-by": "Solicitado por",
+ "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
+ "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
+ "boardDeletePopup-title": "¿Eliminar el tablero?",
+ "delete-board": "Eliminar el tablero",
+ "default-subtasks-board": "Subtareas para el tablero __board__",
+ "default": "Por defecto",
+ "queue": "Cola",
+ "subtask-settings": "Preferencias de las subtareas",
+ "card-settings": "Preferencias de la tarjeta",
+ "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
+ "boardCardSettingsPopup-title": "Preferencias de la tarjeta",
+ "deposit-subtasks-board": "Depositar subtareas en este tablero:",
+ "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
+ "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
+ "prefix-with-full-path": "Prefijo con ruta completa",
+ "prefix-with-parent": "Prefijo con el padre",
+ "subtext-with-full-path": "Subtexto con ruta completa",
+ "subtext-with-parent": "Subtexto con el padre",
+ "change-card-parent": "Cambiar la tarjeta padre",
+ "parent-card": "Tarjeta padre",
+ "source-board": "Tablero de origen",
+ "no-parent": "No mostrar la tarjeta padre",
+ "activity-added-label": "añadida etiqueta %s a %s",
+ "activity-removed-label": "eliminada etiqueta '%s' desde %s",
+ "activity-delete-attach": "eliminado un adjunto desde %s",
+ "activity-added-label-card": "añadida etiqueta '%s'",
+ "activity-removed-label-card": "eliminada etiqueta '%s'",
+ "activity-delete-attach-card": "eliminado un adjunto",
+ "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
+ "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
+ "r-rule": "Regla",
+ "r-add-trigger": "Añadir disparador",
+ "r-add-action": "Añadir acción",
+ "r-board-rules": "Reglas del tablero",
+ "r-add-rule": "Añadir regla",
+ "r-view-rule": "Ver regla",
+ "r-delete-rule": "Eliminar regla",
+ "r-new-rule-name": "Nueva título de regla",
+ "r-no-rules": "No hay reglas",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Cuando una tarjeta",
+ "r-is": "es",
+ "r-is-moved": "es movida",
+ "r-added-to": "Added to",
+ "r-removed-from": "eliminado de",
+ "r-the-board": "el tablero",
+ "r-list": "la lista",
+ "set-filter": "Filtrar",
+ "r-moved-to": "Movido a",
+ "r-moved-from": "Movido desde",
+ "r-archived": "Se archivó",
+ "r-unarchived": "Restaurado del archivo",
+ "r-a-card": "una tarjeta",
+ "r-when-a-label-is": "Cuando una etiqueta es",
+ "r-when-the-label": "Cuando la etiqueta es",
+ "r-list-name": "Nombre de lista",
+ "r-when-a-member": "Cuando un miembro es",
+ "r-when-the-member": "Cuando el miembro",
+ "r-name": "nombre",
+ "r-when-a-attach": "Cuando un adjunto",
+ "r-when-a-checklist": "Cuando una lista de verificación es",
+ "r-when-the-checklist": "Cuando la lista de verificación",
+ "r-completed": "Completada",
+ "r-made-incomplete": "Hecha incompleta",
+ "r-when-a-item": "Cuando un elemento de la lista de verificación es",
+ "r-when-the-item": "Cuando el elemento de la lista de verificación es",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover la tarjeta",
+ "r-top-of": "Arriba de",
+ "r-bottom-of": "Abajo de",
+ "r-its-list": "su lista",
+ "r-archive": "Archivar",
+ "r-unarchive": "Restaurar del Archivo",
+ "r-card": "la tarjeta",
+ "r-add": "Añadir",
+ "r-remove": "Eliminar",
+ "r-label": "etiqueta",
+ "r-member": "miembro",
+ "r-remove-all": "Eliminar todos los miembros de la tarjeta",
+ "r-set-color": "Cambiar el color a",
+ "r-checklist": "lista de verificación",
+ "r-check-all": "Marcar todo",
+ "r-uncheck-all": "Desmarcar todo",
+ "r-items-check": "elementos de la lista de verificación",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "elemento",
+ "r-of-checklist": "de la lista de verificación",
+ "r-send-email": "Enviar un email",
+ "r-to": "a",
+ "r-of": "of",
+ "r-subject": "asunto",
+ "r-rule-details": "Detalle de la regla",
+ "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
+ "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
+ "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
+ "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
+ "r-d-send-email": "Enviar email",
+ "r-d-send-email-to": "a",
+ "r-d-send-email-subject": "asunto",
+ "r-d-send-email-message": "mensaje",
+ "r-d-archive": "Archivar la tarjeta",
+ "r-d-unarchive": "Restaurar tarjeta del Archivo",
+ "r-d-add-label": "Añadir etiqueta",
+ "r-d-remove-label": "Eliminar etiqueta",
+ "r-create-card": "Crear una nueva tarjeta",
+ "r-in-list": "en la lista",
+ "r-in-swimlane": "en el carril",
+ "r-d-add-member": "Añadir miembro",
+ "r-d-remove-member": "Eliminar miembro",
+ "r-d-remove-all-member": "Eliminar todos los miembros",
+ "r-d-check-all": "Marcar todos los elementos de una lista",
+ "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
+ "r-d-check-one": "Marcar elemento",
+ "r-d-uncheck-one": "Desmarcar elemento",
+ "r-d-check-of-list": "de la lista de verificación",
+ "r-d-add-checklist": "Añadir una lista de verificación",
+ "r-d-remove-checklist": "Eliminar lista de verificación",
+ "r-by": "por",
+ "r-add-checklist": "Añadir una lista de verificación",
+ "r-with-items": "con items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Agregar el carril",
+ "r-swimlane-name": "nombre del carril",
+ "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
+ "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
+ "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
+ "r-set": "Cambiar",
+ "r-update": "Actualizar",
+ "r-datefield": "campo de fecha",
+ "r-df-start-at": "comienza",
+ "r-df-due-at": "vencimiento",
+ "r-df-end-at": "finalizado",
+ "r-df-received-at": "recibido",
+ "r-to-current-datetime": "a la fecha/hora actual",
+ "r-remove-value-from": "Eliminar el valor de",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticación",
+ "authentication-type": "Tipo de autenticación",
+ "custom-product-name": "Nombre de producto personalizado",
+ "layout": "Diseño",
+ "hide-logo": "Ocultar el logo",
+ "add-custom-html-after-body-start": "Añade HTML personalizado después de ",
+ "add-custom-html-before-body-end": "Añade HTML personalizado después de ",
+ "error-undefined": "Algo no está bien",
+ "error-ldap-login": "Ocurrió un error al intentar acceder",
+ "display-authentication-method": "Mostrar el método de autenticación",
+ "default-authentication-method": "Método de autenticación por defecto",
+ "duplicate-board": "Duplicar tablero",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "El número de personas es:",
+ "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
+ "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
+ "restore-all": "Restaurar todas",
+ "delete-all": "Borrar todas",
+ "loading": "Cargando. Por favor, espere.",
+ "previous_as": "el último tiempo fue",
+ "act-a-dueAt": "cambiada la hora de vencimiento a \nCuándo: __timeValue__\nDónde: __card__\n el vencimiento anterior fue __timeOldValue__",
+ "act-a-endAt": "cambiada la hora de finalización a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "act-a-startAt": "cambiada la hora de comienzo a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "act-a-receivedAt": "cambiada la fecha de recepción a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "a-dueAt": "cambiada la hora de vencimiento a",
+ "a-endAt": "cambiada la hora de finalización a",
+ "a-startAt": "cambiada la hora de comienzo a",
+ "a-receivedAt": "cambiada la hora de recepción a",
+ "almostdue": "está próxima la hora de vencimiento actual %s",
+ "pastdue": "se sobrepasó la hora de vencimiento actual%s",
+ "duenow": "la hora de vencimiento actual %s es hoy",
+ "act-newDue": "__list__/__card__ tiene una 1ra notificación de vencimiento [__board__]",
+ "act-withDue": "__list__/__card__ notificaciones de vencimiento [__board__]",
+ "act-almostdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ está próximo",
+ "act-pastdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ se sobrepasó",
+ "act-duenow": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ es ahora",
+ "act-atUserComment": "Se te mencionó en [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "¿Seguro que quieres eliminar esta cuenta? Esta acción no puede deshacerse.",
+ "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
+ "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
+ "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
+ "assignee": "Asignado",
+ "cardAssigneesPopup-title": "Asignado",
+ "addmore-detail": "Añadir una descripción detallada",
+ "show-on-card": "Mostrar en la tarjeta",
+ "new": "Nuevo",
+ "editUserPopup-title": "Editar el usuario",
+ "newUserPopup-title": "Nuevo usuario",
+ "notifications": "Notificaciones",
+ "view-all": "Ver todo",
+ "filter-by-unread": "Filtrar por no leído",
+ "mark-all-as-read": "Marcar todo como leido",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Permitir renombrar",
+ "allowRenamePopup-title": "Permitir renombrar",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Lunes",
+ "tuesday": "Martes",
+ "wednesday": "Miércoles",
+ "thursday": "Jueves",
+ "friday": "Viernes",
+ "saturday": "Sábado",
+ "sunday": "Domingo",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/es-PE.i18n.json b/i18n/es-PE.i18n.json
index 96a408a79..a8ec7e48c 100644
--- a/i18n/es-PE.i18n.json
+++ b/i18n/es-PE.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Mostrar el método de autenticación",
"default-authentication-method": "Método de autenticación por defecto",
"duplicate-board": "Duplicar tablero",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "El número de personas es:",
"swimlaneDeletePopup-title": "¿Eliminar el carril «swimlane»?",
"swimlane-delete-pop": "Todas las acciones serán eliminadas de la fuente de actividades y no se podrá recuperar el carril «swimlane». Esta acción no puede deshacerse.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Ocultar elementos marcados",
"task": "Tarea",
"create-task": "Crear tarea",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json
index e10c3fd25..42be90427 100644
--- a/i18n/es.i18n.json
+++ b/i18n/es.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Notificación de actividad",
- "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createBoard": "creó el tablero __board__",
- "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
- "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createCustomField": " creado el campo personalizado __customField__ en el tablero __board__",
- "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
- "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createList": "añadida la lista __list__ al tablero __board__",
- "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
- "act-archivedBoard": "El tablero __board__ se ha archivado",
- "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
- "act-importBoard": "importado el tablero __board__",
- "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
- "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
- "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
- "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
- "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acciones",
- "activities": "Actividades",
- "activity": "Actividad",
- "activity-added": "ha añadido %s a %s",
- "activity-archived": "%s se ha archivado",
- "activity-attached": "ha adjuntado %s a %s",
- "activity-created": "ha creado %s",
- "activity-customfield-created": "creó el campo personalizado %s",
- "activity-excluded": "ha excluido %s de %s",
- "activity-imported": "ha importado %s a %s desde %s",
- "activity-imported-board": "ha importado %s desde %s",
- "activity-joined": "se ha unido a %s",
- "activity-moved": "ha movido %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "ha eliminado %s de %s",
- "activity-sent": "ha enviado %s a %s",
- "activity-unjoined": "se ha desvinculado de %s",
- "activity-subtask-added": "ha añadido la subtarea a %s",
- "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
- "activity-unchecked-item": "desmarcado %s en lista %s de %s",
- "activity-checklist-added": "ha añadido una lista de verificación a %s",
- "activity-checklist-removed": "eliminada una lista de verificación desde %s",
- "activity-checklist-completed": "lista de verificación completada %s de %s",
- "activity-checklist-uncompleted": "no completado la lista %s de %s",
- "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
- "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
- "add": "Añadir",
- "activity-checked-item-card": "marcado %s en la lista de verificación %s",
- "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
- "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
- "activity-editComment": "comentario editado",
- "activity-deleteComment": "comentario eliminado",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Añadir adjunto",
- "add-board": "Añadir tablero",
- "add-card": "Añadir una tarjeta",
- "add-swimlane": "Añadir un carril de flujo",
- "add-subtask": "Añadir subtarea",
- "add-checklist": "Añadir una lista de verificación",
- "add-checklist-item": "Añadir un elemento a la lista de verificación",
- "add-cover": "Añadir portada",
- "add-label": "Añadir una etiqueta",
- "add-list": "Añadir una lista",
- "add-members": "Añadir miembros",
- "added": "Añadida el",
- "addMemberPopup-title": "Miembros",
- "admin": "Administrador",
- "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
- "admin-announcement": "Aviso",
- "admin-announcement-active": "Activar el aviso para todo el sistema",
- "admin-announcement-title": "Aviso del administrador",
- "all-boards": "Tableros",
- "and-n-other-card": "y __count__ tarjeta más",
- "and-n-other-card_plural": "y otras __count__ tarjetas",
- "apply": "Aplicar",
- "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
- "archive": "Archivar",
- "archive-all": "Archivar todo",
- "archive-board": "Archivar este tablero",
- "archive-card": "Archivar esta tarjeta",
- "archive-list": "Archivar esta lista",
- "archive-swimlane": "Archivar este carril",
- "archive-selection": "Archivar esta selección",
- "archiveBoardPopup-title": "¿Archivar este tablero?",
- "archived-items": "Archivo",
- "archived-boards": "Tableros en el Archivo",
- "restore-board": "Restaurar el tablero",
- "no-archived-boards": "No hay Tableros en el Archivo",
- "archives": "Archivo",
- "template": "Plantilla",
- "templates": "Plantillas",
- "assign-member": "Asignar miembros",
- "attached": "adjuntado",
- "attachment": "Adjunto",
- "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
- "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
- "attachments": "Adjuntos",
- "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
- "avatar-too-big": "El avatar es demasiado grande (520KB máx.)",
- "back": "Atrás",
- "board-change-color": "Cambiar el color",
- "board-nb-stars": "%s destacados",
- "board-not-found": "Tablero no encontrado",
- "board-private-info": "Este tablero será privado.",
- "board-public-info": "Este tablero será público.",
- "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
- "boardChangeTitlePopup-title": "Renombrar el tablero",
- "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
- "boardChangeWatchPopup-title": "Cambiar vigilancia",
- "boardMenuPopup-title": "Preferencias del tablero",
- "boardChangeViewPopup-title": "Vista del tablero",
- "boards": "Tableros",
- "board-view": "Vista del tablero",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Carriles",
- "board-view-collapse": "Contraer",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listas",
- "bucket-example": "Como “Cosas por hacer” por ejemplo",
- "cancel": "Cancelar",
- "card-archived": "Se archivó esta tarjeta",
- "board-archived": "Se archivó este tablero",
- "card-comments-title": "Esta tarjeta tiene %s comentarios.",
- "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
- "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
- "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
- "card-due": "Vence",
- "card-due-on": "Vence el",
- "card-spent": "Tiempo consumido",
- "card-edit-attachments": "Editar los adjuntos",
- "card-edit-custom-fields": "Editar los campos personalizados",
- "card-edit-labels": "Editar las etiquetas",
- "card-edit-members": "Editar los miembros",
- "card-labels-title": "Cambia las etiquetas de la tarjeta",
- "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
- "card-start": "Comienza",
- "card-start-on": "Comienza el",
- "cardAttachmentsPopup-title": "Adjuntar desde",
- "cardCustomField-datePopup-title": "Cambiar la fecha",
- "cardCustomFieldsPopup-title": "Editar los campos personalizados",
- "cardStartVotingPopup-title": "Comience a votar",
- "positiveVoteMembersPopup-title": "Favorables",
- "negativeVoteMembersPopup-title": "Contrarios",
- "card-edit-voting": "Editar votación",
- "editVoteEndDatePopup-title": "Cambie fecha de termino del voto",
- "allowNonBoardMembers": "Permitir todos los usuarios autentificados",
- "vote-question": "Pregunta de votación",
- "vote-public": "Mostrar quien voto que",
- "vote-for-it": "por esto",
- "vote-against": "contrarios",
- "deleteVotePopup-title": "¿Borrar voto?",
- "vote-delete-pop": "El Borrado es permanente. Perderá todas las acciones asociadas con este voto.",
- "cardDeletePopup-title": "¿Eliminar la tarjeta?",
- "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Miembros",
- "cardMorePopup-title": "Más",
- "cardTemplatePopup-title": "Crear plantilla",
- "cards": "Tarjetas",
- "cards-count": "Tarjetas",
- "casSignIn": "Iniciar sesión con CAS",
- "cardType-card": "Tarjeta",
- "cardType-linkedCard": "Tarjeta enlazada",
- "cardType-linkedBoard": "Tablero enlazado",
- "change": "Cambiar",
- "change-avatar": "Cambiar el avatar",
- "change-password": "Cambiar la contraseña",
- "change-permissions": "Cambiar los permisos",
- "change-settings": "Cambiar las preferencias",
- "changeAvatarPopup-title": "Cambiar el avatar",
- "changeLanguagePopup-title": "Cambiar el idioma",
- "changePasswordPopup-title": "Cambiar la contraseña",
- "changePermissionsPopup-title": "Cambiar los permisos",
- "changeSettingsPopup-title": "Cambiar las preferencias",
- "subtasks": "Subtareas",
- "checklists": "Lista de verificación",
- "click-to-star": "Haz clic para destacar este tablero.",
- "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
- "clipboard": "el portapapeles o con arrastrar y soltar",
- "close": "Cerrar",
- "close-board": "Cerrar el tablero",
- "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
- "color-black": "negra",
- "color-blue": "azul",
- "color-crimson": "carmesí",
- "color-darkgreen": "verde oscuro",
- "color-gold": "oro",
- "color-gray": "gris",
- "color-green": "verde",
- "color-indigo": "añil",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marino",
- "color-orange": "naranja",
- "color-paleturquoise": "turquesa",
- "color-peachpuff": "melocotón",
- "color-pink": "rosa",
- "color-plum": "púrpura",
- "color-purple": "violeta",
- "color-red": "roja",
- "color-saddlebrown": "marrón",
- "color-silver": "plata",
- "color-sky": "celeste",
- "color-slateblue": "azul",
- "color-white": "blanco",
- "color-yellow": "amarilla",
- "unset-color": "Desmarcar",
- "comment": "Comentar",
- "comment-placeholder": "Escribir comentario",
- "comment-only": "Sólo comentarios",
- "comment-only-desc": "Solo puedes comentar en las tarjetas.",
- "no-comments": "No hay comentarios",
- "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
- "worker": "Trabajador",
- "worker-desc": "Solo puede mover tarjetas, asignarse a la tarjeta y comentar.",
- "computer": "el ordenador",
- "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
- "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
- "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
- "linkCardPopup-title": "Enlazar tarjeta",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar la tarjeta",
- "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
- "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear tablero",
- "chooseBoardSourcePopup-title": "Importar un tablero",
- "createLabelPopup-title": "Crear etiqueta",
- "createCustomField": "Crear un campo",
- "createCustomFieldPopup-title": "Crear un campo",
- "current": "actual",
- "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "custom-field-checkbox": "Casilla de verificación",
- "custom-field-currency": "Moneda",
- "custom-field-currency-option": "Código de moneda",
- "custom-field-date": "Fecha",
- "custom-field-dropdown": "Lista desplegable",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Opciones de la lista",
- "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
- "custom-field-dropdown-unknown": "(desconocido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos personalizados",
- "date": "Fecha",
- "decline": "Declinar",
- "default-avatar": "Avatar por defecto",
- "delete": "Eliminar",
- "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
- "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
- "description": "Descripción",
- "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
- "discard": "Descartarla",
- "done": "Hecho",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar el avatar",
- "edit-profile": "Editar el perfil",
- "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
- "soft-wip-limit": "Límite del trabajo en proceso flexible",
- "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
- "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
- "editCustomFieldPopup-title": "Editar el campo",
- "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
- "editLabelPopup-title": "Cambiar la etiqueta",
- "editNotificationPopup-title": "Editar las notificaciones",
- "editProfilePopup-title": "Editar el perfil",
- "email": "Correo electrónico",
- "email-enrollAccount-subject": "Cuenta creada en __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-fail": "Error al enviar el correo",
- "email-fail-text": "Error al intentar enviar el correo",
- "email-invalid": "Correo no válido",
- "email-invite": "Invitar vía correo electrónico",
- "email-invite-subject": "__inviter__ ha enviado una invitación",
- "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
- "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
- "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-sent": "Correo enviado",
- "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
- "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "enable-wip-limit": "Habilitar el límite del trabajo en proceso",
- "error-board-doesNotExist": "El tablero no existe",
- "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
- "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
- "error-json-malformed": "El texto no es un JSON válido",
- "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
- "error-csv-schema": "Su CSV(Valores separados por coma)/TSV(Valores separados por tab) no incluyen la información apropiada en el formato correcto",
- "error-list-doesNotExist": "La lista no existe",
- "error-user-doesNotExist": "El usuario no existe",
- "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
- "error-user-notCreated": "El usuario no ha sido creado",
- "error-username-taken": "Este nombre de usuario ya está en uso",
- "error-email-taken": "Esta dirección de correo ya está en uso",
- "export-board": "Exportar el tablero",
- "export-board-json": "Exportar tablero a JSON",
- "export-board-csv": "Exportar tablero a CSV",
- "export-board-tsv": "Exportar tablero a TSV",
- "export-board-html": "Exportar tablero a HTML",
- "exportBoardPopup-title": "Exportar el tablero",
- "sort": "Ordenar",
- "sort-desc": "Click para ordenar la lista",
- "list-sort-by": "Ordenar la lista por:",
- "list-label-modifiedAt": "Hora de último acceso",
- "list-label-title": "Nombre de la lista",
- "list-label-sort": "Tu orden manual",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrar",
- "filter-cards": "Filtrar tarjetas o listas",
- "list-filter-label": "Filtrar listas por título",
- "filter-clear": "Limpiar el filtro",
- "filter-labels-label": "Filtrar por etiqueta",
- "filter-no-label": "Sin etiqueta",
- "filter-member-label": "Filtrar por miembro",
- "filter-no-member": "Sin miembro",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No asignado",
- "filter-custom-fields-label": "Filtrar por campos personalizados",
- "filter-no-custom-fields": "Sin campos personalizados",
- "filter-show-archive": "Mostrar las listas archivadas",
- "filter-hide-empty": "Ocultar las listas vacías",
- "filter-on": "Filtrado activado",
- "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
- "filter-to-selection": "Filtrar la selección",
- "other-filters-label": "Otros filtros",
- "advanced-filter-label": "Filtrado avanzado",
- "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
- "fullname": "Nombre completo",
- "header-logo-title": "Volver a tu página de tableros",
- "hide-system-messages": "Ocultar las notificaciones de actividad",
- "headerBarCreateBoardPopup-title": "Crear tablero",
- "home": "Inicio",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Enlace",
- "import-board": "importar un tablero",
- "import-board-c": "Importar un tablero",
- "import-board-title-trello": "Importar un tablero desde Trello",
- "import-board-title-wekan": "Importar tablero desde una exportación previa",
- "import-board-title-csv": "Importar tablero desde CSV/TSV",
- "from-trello": "Desde Trello",
- "from-wekan": "Desde exportación previa",
- "from-csv": "Desde CSV/TSV",
- "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
- "import-board-instruction-csv": "Pegue en sus Valores separados por coma(CSV)/Valores separados por tab(TSV).",
- "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
- "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
- "import-json-placeholder": "Pega tus datos JSON válidos aquí",
- "import-csv-placeholder": "Pega tus datos CSV/TSV válidos aquí",
- "import-map-members": "Mapa de miembros",
- "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
- "import-show-user-mapping": "Revisión de la asignación de miembros",
- "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
- "importMapMembersAddPopup-title": "Seleccionar miembro",
- "info": "Versión",
- "initials": "Iniciales",
- "invalid-date": "Fecha no válida",
- "invalid-time": "Tiempo no válido",
- "invalid-user": "Usuario no válido",
- "joined": "se ha unido",
- "just-invited": "Has sido invitado a este tablero",
- "keyboard-shortcuts": "Atajos de teclado",
- "label-create": "Crear una etiqueta",
- "label-default": "etiqueta %s (por defecto)",
- "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "labels": "Etiquetas",
- "language": "Cambiar el idioma",
- "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
- "leave-board": "Abandonar el tablero",
- "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
- "leaveBoardPopup-title": "¿Abandonar el tablero?",
- "link-card": "Enlazar a esta tarjeta",
- "list-archive-cards": "Archivar todas las tarjetas de esta lista",
- "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
- "list-move-cards": "Mover todas las tarjetas de esta lista",
- "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
- "set-color-list": "Cambiar el color",
- "listActionPopup-title": "Acciones de la lista",
- "settingsUserPopup-title": "Preferencias de usuario",
- "swimlaneActionPopup-title": "Acciones del carril de flujo",
- "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
- "listImportCardPopup-title": "Importar una tarjeta de Trello",
- "listImportCardsTsvPopup-title": "Importar CSV/TSV",
- "listMorePopup-title": "Más",
- "link-list": "Enlazar a esta lista",
- "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
- "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
- "lists": "Listas",
- "swimlanes": "Carriles",
- "log-out": "Finalizar la sesión",
- "log-in": "Iniciar sesión",
- "loginPopup-title": "Iniciar sesión",
- "memberMenuPopup-title": "Preferencias de miembro",
- "members": "Miembros",
- "menu": "Menú",
- "move-selection": "Mover la selección",
- "moveCardPopup-title": "Mover la tarjeta",
- "moveCardToBottom-title": "Mover al final",
- "moveCardToTop-title": "Mover al principio",
- "moveSelectionPopup-title": "Mover la selección",
- "multi-selection": "Selección múltiple",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Selección múltiple activada",
- "muted": "Silenciado",
- "muted-info": "No serás notificado de ningún cambio en este tablero",
- "my-boards": "Mis tableros",
- "name": "Nombre",
- "no-archived-cards": "No hay tarjetas archivadas.",
- "no-archived-lists": "No hay listas archivadas.",
- "no-archived-swimlanes": "No hay carriles archivados.",
- "no-results": "Sin resultados",
- "normal": "Normal",
- "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
- "not-accepted-yet": "La invitación no ha sido aceptada aún",
- "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
- "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al iniciar sesión.",
- "page-not-found": "Página no encontrada.",
- "password": "Contraseña",
- "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
- "participating": "Participando",
- "preview": "Previsualizar",
- "previewAttachedImagePopup-title": "Previsualizar",
- "previewClipboardImagePopup-title": "Previsualizar",
- "private": "Privado",
- "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
- "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
- "remove-cover": "Eliminar portada",
- "remove-from-board": "Desvincular del tablero",
- "remove-label": "Eliminar la etiqueta",
- "listDeletePopup-title": "¿Eliminar la lista?",
- "remove-member": "Eliminar miembro",
- "remove-member-from-card": "Eliminar de la tarjeta",
- "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
- "removeMemberPopup-title": "¿Eliminar miembro?",
- "rename": "Renombrar",
- "rename-board": "Renombrar el tablero",
- "restore": "Restaurar",
- "save": "Añadir",
- "search": "Buscar",
- "rules": "Reglas",
- "search-cards": "Buscar entre los títulos, las descripciones de las tarjetas/listas y los campos personalizados en este tablero. ",
- "search-example": "Write text you search and press Enter",
- "select-color": "Seleccionar el color",
- "select-board": "Seleccionar tablero",
- "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
- "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
- "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Autocompletar miembros",
- "shortcut-clear-filters": "Limpiar todos los filtros",
- "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
- "shortcut-filter-my-cards": "Filtrar mis tarjetas",
- "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
- "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
- "shortcut-toggle-searchbar": "Conmutar la barra lateral de búsqueda",
- "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
- "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
- "sidebar-open": "Abrir la barra lateral",
- "sidebar-close": "Cerrar la barra lateral",
- "signupPopup-title": "Crear una cuenta",
- "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
- "starred-boards": "Tableros destacados",
- "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
- "subscribe": "Suscribirse",
- "team": "Equipo",
- "this-board": "este tablero",
- "this-card": "esta tarjeta",
- "spent-time-hours": "Tiempo consumido (horas)",
- "overtime-hours": "Tiempo excesivo (horas)",
- "overtime": "Tiempo excesivo",
- "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
- "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
- "time": "Hora",
- "title": "Título",
- "tracking": "Siguiendo",
- "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
- "type": "Tipo",
- "unassign-member": "Desvincular al miembro",
- "unsaved-description": "Tienes una descripción por añadir.",
- "unwatch": "Dejar de vigilar",
- "upload": "Cargar",
- "upload-avatar": "Cargar un avatar",
- "uploaded-avatar": "Avatar cargado",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nombre de usuario",
- "view-it": "Verla",
- "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
- "watch": "Vigilar",
- "watching": "Vigilando",
- "watching-info": "Serás notificado de cualquier cambio en este tablero",
- "welcome-board": "Tablero de bienvenida",
- "welcome-swimlane": "Hito 1",
- "welcome-list1": "Básicos",
- "welcome-list2": "Avanzados",
- "card-templates-swimlane": "Plantilla de tarjeta",
- "list-templates-swimlane": "Listar plantillas",
- "board-templates-swimlane": "Plantilla de tablero",
- "what-to-do": "¿Qué quieres hacer?",
- "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
- "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
- "admin-panel": "Panel del administrador",
- "settings": "Preferencias",
- "people": "Personas",
- "registration": "Registro",
- "disable-self-registration": "Deshabilitar autoregistro",
- "invite": "Invitar",
- "invite-people": "Invitar a personas",
- "to-boards": "A el(los) tablero(s)",
- "email-addresses": "Direcciones de correo electrónico",
- "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
- "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
- "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Puerto SMTP",
- "smtp-username": "Nombre de usuario",
- "smtp-password": "Contraseña",
- "smtp-tls": "Soporte TLS",
- "send-from": "Desde",
- "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
- "invitation-code": "Código de Invitación",
- "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
- "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
- "email-smtp-test-subject": "Prueba de email SMTP",
- "email-smtp-test-text": "El correo se ha enviado correctamente",
- "error-invitation-code-not-exist": "El código de invitación no existe",
- "error-notAuthorized": "No estás autorizado a ver esta página.",
- "webhook-title": "Nombre del Webhook",
- "webhook-token": "Token (opcional para la autenticación)",
- "outgoing-webhooks": "Webhooks salientes",
- "bidirectional-webhooks": "Webhooks de doble sentido",
- "outgoingWebhooksPopup-title": "Webhooks salientes",
- "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
- "disable-webhook": "Deshabilitar este Webhook",
- "global-webhook": "Webhooks globales",
- "new-outgoing-webhook": "Nuevo webhook saliente",
- "no-name": "(Desconocido)",
- "Node_version": "Versión de Node",
- "Meteor_version": "Versión de Meteor",
- "MongoDB_version": "Versión de MongoDB",
- "MongoDB_storage_engine": "Motor de almacenamiento de MongoDB",
- "MongoDB_Oplog_enabled": "Oplog de MongoDB habilitado",
- "OS_Arch": "Arquitectura del sistema",
- "OS_Cpus": "Número de CPUs del sistema",
- "OS_Freemem": "Memoria libre del sistema",
- "OS_Loadavg": "Carga media del sistema",
- "OS_Platform": "Plataforma del sistema",
- "OS_Release": "Publicación del sistema",
- "OS_Totalmem": "Memoria total del sistema",
- "OS_Type": "Tipo de sistema",
- "OS_Uptime": "Tiempo activo del sistema",
- "days": "días",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo en la tarjeta",
- "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
- "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
- "yes": "Sí",
- "no": "No",
- "accounts": "Cuentas",
- "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
- "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
- "createdAt": "Fecha de alta",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recibido",
- "card-received-on": "Recibido el",
- "card-end": "Finalizado",
- "card-end-on": "Finalizado el",
- "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
- "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
- "setCardColorPopup-title": "Cambiar el color",
- "setCardActionsColorPopup-title": "Elegir un color",
- "setSwimlaneColorPopup-title": "Elegir un color",
- "setListColorPopup-title": "Elegir un color",
- "assigned-by": "Asignado por",
- "requested-by": "Solicitado por",
- "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
- "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
- "boardDeletePopup-title": "¿Eliminar el tablero?",
- "delete-board": "Eliminar el tablero",
- "default-subtasks-board": "Subtareas para el tablero __board__",
- "default": "Por defecto",
- "queue": "Cola",
- "subtask-settings": "Preferencias de las subtareas",
- "card-settings": "Preferencias de la tarjeta",
- "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
- "boardCardSettingsPopup-title": "Preferencias de la tarjeta",
- "deposit-subtasks-board": "Depositar subtareas en este tablero:",
- "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
- "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
- "prefix-with-full-path": "Prefijo con ruta completa",
- "prefix-with-parent": "Prefijo con el padre",
- "subtext-with-full-path": "Subtexto con ruta completa",
- "subtext-with-parent": "Subtexto con el padre",
- "change-card-parent": "Cambiar la tarjeta padre",
- "parent-card": "Tarjeta padre",
- "source-board": "Tablero de origen",
- "no-parent": "No mostrar la tarjeta padre",
- "activity-added-label": "añadida etiqueta %s a %s",
- "activity-removed-label": "eliminada etiqueta '%s' desde %s",
- "activity-delete-attach": "eliminado un adjunto desde %s",
- "activity-added-label-card": "añadida etiqueta '%s'",
- "activity-removed-label-card": "eliminada etiqueta '%s'",
- "activity-delete-attach-card": "eliminado un adjunto",
- "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
- "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
- "r-rule": "Regla",
- "r-add-trigger": "Añadir disparador",
- "r-add-action": "Añadir acción",
- "r-board-rules": "Reglas del tablero",
- "r-add-rule": "Añadir regla",
- "r-view-rule": "Ver regla",
- "r-delete-rule": "Eliminar regla",
- "r-new-rule-name": "Nueva título de regla",
- "r-no-rules": "No hay reglas",
- "r-trigger": "disparador",
- "r-action": "acción",
- "r-when-a-card": "Cuando una tarjeta",
- "r-is": "es",
- "r-is-moved": "es movida",
- "r-added-to": "Añadido a",
- "r-removed-from": "eliminado de",
- "r-the-board": "el tablero",
- "r-list": "la lista",
- "set-filter": "Filtrar",
- "r-moved-to": "Movido a",
- "r-moved-from": "Movido desde",
- "r-archived": "Se archivó",
- "r-unarchived": "Restaurado del archivo",
- "r-a-card": "una tarjeta",
- "r-when-a-label-is": "Cuando una etiqueta es",
- "r-when-the-label": "Cuando la etiqueta es",
- "r-list-name": "Nombre de lista",
- "r-when-a-member": "Cuando un miembro es",
- "r-when-the-member": "Cuando el miembro",
- "r-name": "nombre",
- "r-when-a-attach": "Cuando un adjunto",
- "r-when-a-checklist": "Cuando una lista de verificación es",
- "r-when-the-checklist": "Cuando la lista de verificación",
- "r-completed": "Completada",
- "r-made-incomplete": "Hecha incompleta",
- "r-when-a-item": "Cuando un elemento de la lista de verificación es",
- "r-when-the-item": "Cuando el elemento de la lista de verificación es",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover la tarjeta",
- "r-top-of": "Arriba de",
- "r-bottom-of": "Abajo de",
- "r-its-list": "su lista",
- "r-archive": "Archivar",
- "r-unarchive": "Restaurar del Archivo",
- "r-card": "la tarjeta",
- "r-add": "Añadir",
- "r-remove": "Eliminar",
- "r-label": "etiqueta",
- "r-member": "miembro",
- "r-remove-all": "Eliminar todos los miembros de la tarjeta",
- "r-set-color": "Cambiar el color a",
- "r-checklist": "lista de verificación",
- "r-check-all": "Marcar todo",
- "r-uncheck-all": "Desmarcar todo",
- "r-items-check": "elementos de la lista de verificación",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "elemento",
- "r-of-checklist": "de la lista de verificación",
- "r-send-email": "Enviar un email",
- "r-to": "a",
- "r-of": "de",
- "r-subject": "asunto",
- "r-rule-details": "Detalle de la regla",
- "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
- "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
- "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
- "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
- "r-d-send-email": "Enviar email",
- "r-d-send-email-to": "a",
- "r-d-send-email-subject": "asunto",
- "r-d-send-email-message": "mensaje",
- "r-d-archive": "Archivar la tarjeta",
- "r-d-unarchive": "Restaurar tarjeta del Archivo",
- "r-d-add-label": "Añadir etiqueta",
- "r-d-remove-label": "Eliminar etiqueta",
- "r-create-card": "Crear una nueva tarjeta",
- "r-in-list": "en la lista",
- "r-in-swimlane": "en el carril",
- "r-d-add-member": "Añadir miembro",
- "r-d-remove-member": "Eliminar miembro",
- "r-d-remove-all-member": "Eliminar todos los miembros",
- "r-d-check-all": "Marcar todos los elementos de una lista",
- "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
- "r-d-check-one": "Marcar elemento",
- "r-d-uncheck-one": "Desmarcar elemento",
- "r-d-check-of-list": "de la lista de verificación",
- "r-d-add-checklist": "Añadir una lista de verificación",
- "r-d-remove-checklist": "Eliminar lista de verificación",
- "r-by": "por",
- "r-add-checklist": "Añadir una lista de verificación",
- "r-with-items": "con items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Agregar el carril",
- "r-swimlane-name": "nombre del carril",
- "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
- "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
- "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
- "r-set": "Cambiar",
- "r-update": "Actualizar",
- "r-datefield": "campo de fecha",
- "r-df-start-at": "comienza",
- "r-df-due-at": "vencimiento",
- "r-df-end-at": "finalizado",
- "r-df-received-at": "recibido",
- "r-to-current-datetime": "a la fecha/hora actual",
- "r-remove-value-from": "Eliminar el valor de",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticación",
- "authentication-type": "Tipo de autenticación",
- "custom-product-name": "Nombre de producto personalizado",
- "layout": "Diseño",
- "hide-logo": "Ocultar el logo",
- "add-custom-html-after-body-start": "Añade HTML personalizado después de ",
- "add-custom-html-before-body-end": "Añade HTML personalizado después de ",
- "error-undefined": "Algo no está bien",
- "error-ldap-login": "Ocurrió un error al intentar acceder",
- "display-authentication-method": "Mostrar el método de autenticación",
- "default-authentication-method": "Método de autenticación por defecto",
- "duplicate-board": "Duplicar tablero",
- "people-number": "El número de personas es:",
- "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
- "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
- "restore-all": "Restaurar todas",
- "delete-all": "Borrar todas",
- "loading": "Cargando. Por favor, espere.",
- "previous_as": "el último tiempo fue",
- "act-a-dueAt": "cambiada la hora de vencimiento a \nCuándo: __timeValue__\nDónde: __card__\n el vencimiento anterior fue __timeOldValue__",
- "act-a-endAt": "cambiada la hora de finalización a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "act-a-startAt": "cambiada la hora de comienzo a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "act-a-receivedAt": "cambiada la fecha de recepción a __timeValue__ Fecha anterior: (__timeOldValue__)",
- "a-dueAt": "cambiada la hora de vencimiento a",
- "a-endAt": "cambiada la hora de finalización a",
- "a-startAt": "cambiada la hora de comienzo a",
- "a-receivedAt": "cambiada la hora de recepción a",
- "almostdue": "está próxima la hora de vencimiento actual %s",
- "pastdue": "se sobrepasó la hora de vencimiento actual%s",
- "duenow": "la hora de vencimiento actual %s es hoy",
- "act-newDue": "__list__/__card__ tiene una 1ra notificación de vencimiento [__board__]",
- "act-withDue": "__list__/__card__ notificaciones de vencimiento [__board__]",
- "act-almostdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ está próximo",
- "act-pastdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ se sobrepasó",
- "act-duenow": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ es ahora",
- "act-atUserComment": "Se te mencionó en [__board__] __list__/__card__",
- "delete-user-confirm-popup": "¿Seguro que quieres eliminar esta cuenta? Esta acción no puede deshacerse.",
- "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
- "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
- "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
- "assignee": "Asignado",
- "cardAssigneesPopup-title": "Asignado",
- "addmore-detail": "Añadir una descripción detallada",
- "show-on-card": "Mostrar en la tarjeta",
- "new": "Nuevo",
- "editUserPopup-title": "Editar el usuario",
- "newUserPopup-title": "Nuevo usuario",
- "notifications": "Notificaciones",
- "view-all": "Ver todo",
- "filter-by-unread": "Filtrar por no leído",
- "mark-all-as-read": "Marcar todo como leido",
- "remove-all-read": "Eliminar todos los leídos",
- "allow-rename": "Permitir renombrar",
- "allowRenamePopup-title": "Permitir renombrar",
- "start-day-of-week": "Establecer el dia de comienzo de la semana",
- "monday": "Lunes",
- "tuesday": "Martes",
- "wednesday": "Miércoles",
- "thursday": "Jueves",
- "friday": "Viernes",
- "saturday": "Sábado",
- "sunday": "Domingo",
- "status": "Estado",
- "swimlane": "Carril",
- "owner": "Propietario",
- "last-modified-at": "Última modificación ",
- "last-activity": "Última actividad",
- "voting": "Votar",
- "archived": "Archivado",
- "delete-linked-card-before-this-card": "No puede borrar esta tarjeta antes de borrar la tarjeta enlazada que tiene",
- "delete-linked-cards-before-this-list": "No puede borrar esta lista antes de borrar las tarjetas enlazadas que apuntan a tarjetas en esta lista",
- "hide-checked-items": "Ocultar elementos marcados",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "Vale"
-}
\ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Notificación de actividad",
+ "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createBoard": "creó el tablero __board__",
+ "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
+ "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createCustomField": " creado el campo personalizado __customField__ en el tablero __board__",
+ "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
+ "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createList": "añadida la lista __list__ al tablero __board__",
+ "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
+ "act-archivedBoard": "El tablero __board__ se ha archivado",
+ "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-importBoard": "importado el tablero __board__",
+ "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
+ "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
+ "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
+ "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
+ "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acciones",
+ "activities": "Actividades",
+ "activity": "Actividad",
+ "activity-added": "ha añadido %s a %s",
+ "activity-archived": "%s se ha archivado",
+ "activity-attached": "ha adjuntado %s a %s",
+ "activity-created": "ha creado %s",
+ "activity-customfield-created": "creó el campo personalizado %s",
+ "activity-excluded": "ha excluido %s de %s",
+ "activity-imported": "ha importado %s a %s desde %s",
+ "activity-imported-board": "ha importado %s desde %s",
+ "activity-joined": "se ha unido a %s",
+ "activity-moved": "ha movido %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "ha eliminado %s de %s",
+ "activity-sent": "ha enviado %s a %s",
+ "activity-unjoined": "se ha desvinculado de %s",
+ "activity-subtask-added": "ha añadido la subtarea a %s",
+ "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
+ "activity-unchecked-item": "desmarcado %s en lista %s de %s",
+ "activity-checklist-added": "ha añadido una lista de verificación a %s",
+ "activity-checklist-removed": "eliminada una lista de verificación desde %s",
+ "activity-checklist-completed": "lista de verificación completada %s de %s",
+ "activity-checklist-uncompleted": "no completado la lista %s de %s",
+ "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
+ "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
+ "add": "Añadir",
+ "activity-checked-item-card": "marcado %s en la lista de verificación %s",
+ "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
+ "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
+ "activity-editComment": "comentario editado",
+ "activity-deleteComment": "comentario eliminado",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Añadir adjunto",
+ "add-board": "Añadir tablero",
+ "add-card": "Añadir una tarjeta",
+ "add-swimlane": "Añadir un carril de flujo",
+ "add-subtask": "Añadir subtarea",
+ "add-checklist": "Añadir una lista de verificación",
+ "add-checklist-item": "Añadir un elemento a la lista de verificación",
+ "add-cover": "Añadir portada",
+ "add-label": "Añadir una etiqueta",
+ "add-list": "Añadir una lista",
+ "add-members": "Añadir miembros",
+ "added": "Añadida el",
+ "addMemberPopup-title": "Miembros",
+ "admin": "Administrador",
+ "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
+ "admin-announcement": "Aviso",
+ "admin-announcement-active": "Activar el aviso para todo el sistema",
+ "admin-announcement-title": "Aviso del administrador",
+ "all-boards": "Tableros",
+ "and-n-other-card": "y __count__ tarjeta más",
+ "and-n-other-card_plural": "y otras __count__ tarjetas",
+ "apply": "Aplicar",
+ "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
+ "archive": "Archivar",
+ "archive-all": "Archivar todo",
+ "archive-board": "Archivar este tablero",
+ "archive-card": "Archivar esta tarjeta",
+ "archive-list": "Archivar esta lista",
+ "archive-swimlane": "Archivar este carril",
+ "archive-selection": "Archivar esta selección",
+ "archiveBoardPopup-title": "¿Archivar este tablero?",
+ "archived-items": "Archivo",
+ "archived-boards": "Tableros en el Archivo",
+ "restore-board": "Restaurar el tablero",
+ "no-archived-boards": "No hay Tableros en el Archivo",
+ "archives": "Archivo",
+ "template": "Plantilla",
+ "templates": "Plantillas",
+ "assign-member": "Asignar miembros",
+ "attached": "adjuntado",
+ "attachment": "Adjunto",
+ "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
+ "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
+ "attachments": "Adjuntos",
+ "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
+ "avatar-too-big": "El avatar es demasiado grande (520KB máx.)",
+ "back": "Atrás",
+ "board-change-color": "Cambiar el color",
+ "board-nb-stars": "%s destacados",
+ "board-not-found": "Tablero no encontrado",
+ "board-private-info": "Este tablero será privado.",
+ "board-public-info": "Este tablero será público.",
+ "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
+ "boardChangeTitlePopup-title": "Renombrar el tablero",
+ "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
+ "boardChangeWatchPopup-title": "Cambiar vigilancia",
+ "boardMenuPopup-title": "Preferencias del tablero",
+ "boardChangeViewPopup-title": "Vista del tablero",
+ "boards": "Tableros",
+ "board-view": "Vista del tablero",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Carriles",
+ "board-view-collapse": "Contraer",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listas",
+ "bucket-example": "Como “Cosas por hacer” por ejemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Se archivó esta tarjeta",
+ "board-archived": "Se archivó este tablero",
+ "card-comments-title": "Esta tarjeta tiene %s comentarios.",
+ "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
+ "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
+ "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
+ "card-due": "Vence",
+ "card-due-on": "Vence el",
+ "card-spent": "Tiempo consumido",
+ "card-edit-attachments": "Editar los adjuntos",
+ "card-edit-custom-fields": "Editar los campos personalizados",
+ "card-edit-labels": "Editar las etiquetas",
+ "card-edit-members": "Editar los miembros",
+ "card-labels-title": "Cambia las etiquetas de la tarjeta",
+ "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
+ "card-start": "Comienza",
+ "card-start-on": "Comienza el",
+ "cardAttachmentsPopup-title": "Adjuntar desde",
+ "cardCustomField-datePopup-title": "Cambiar la fecha",
+ "cardCustomFieldsPopup-title": "Editar los campos personalizados",
+ "cardStartVotingPopup-title": "Comience a votar",
+ "positiveVoteMembersPopup-title": "Favorables",
+ "negativeVoteMembersPopup-title": "Contrarios",
+ "card-edit-voting": "Editar votación",
+ "editVoteEndDatePopup-title": "Cambie fecha de termino del voto",
+ "allowNonBoardMembers": "Permitir todos los usuarios autentificados",
+ "vote-question": "Pregunta de votación",
+ "vote-public": "Mostrar quien voto que",
+ "vote-for-it": "por esto",
+ "vote-against": "contrarios",
+ "deleteVotePopup-title": "¿Borrar voto?",
+ "vote-delete-pop": "El Borrado es permanente. Perderá todas las acciones asociadas con este voto.",
+ "cardDeletePopup-title": "¿Eliminar la tarjeta?",
+ "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Miembros",
+ "cardMorePopup-title": "Más",
+ "cardTemplatePopup-title": "Crear plantilla",
+ "cards": "Tarjetas",
+ "cards-count": "Tarjetas",
+ "casSignIn": "Iniciar sesión con CAS",
+ "cardType-card": "Tarjeta",
+ "cardType-linkedCard": "Tarjeta enlazada",
+ "cardType-linkedBoard": "Tablero enlazado",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar el avatar",
+ "change-password": "Cambiar la contraseña",
+ "change-permissions": "Cambiar los permisos",
+ "change-settings": "Cambiar las preferencias",
+ "changeAvatarPopup-title": "Cambiar el avatar",
+ "changeLanguagePopup-title": "Cambiar el idioma",
+ "changePasswordPopup-title": "Cambiar la contraseña",
+ "changePermissionsPopup-title": "Cambiar los permisos",
+ "changeSettingsPopup-title": "Cambiar las preferencias",
+ "subtasks": "Subtareas",
+ "checklists": "Lista de verificación",
+ "click-to-star": "Haz clic para destacar este tablero.",
+ "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
+ "clipboard": "el portapapeles o con arrastrar y soltar",
+ "close": "Cerrar",
+ "close-board": "Cerrar el tablero",
+ "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
+ "color-black": "negra",
+ "color-blue": "azul",
+ "color-crimson": "carmesí",
+ "color-darkgreen": "verde oscuro",
+ "color-gold": "oro",
+ "color-gray": "gris",
+ "color-green": "verde",
+ "color-indigo": "añil",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marino",
+ "color-orange": "naranja",
+ "color-paleturquoise": "turquesa",
+ "color-peachpuff": "melocotón",
+ "color-pink": "rosa",
+ "color-plum": "púrpura",
+ "color-purple": "violeta",
+ "color-red": "roja",
+ "color-saddlebrown": "marrón",
+ "color-silver": "plata",
+ "color-sky": "celeste",
+ "color-slateblue": "azul",
+ "color-white": "blanco",
+ "color-yellow": "amarilla",
+ "unset-color": "Desmarcar",
+ "comment": "Comentar",
+ "comment-placeholder": "Escribir comentario",
+ "comment-only": "Sólo comentarios",
+ "comment-only-desc": "Solo puedes comentar en las tarjetas.",
+ "no-comments": "No hay comentarios",
+ "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
+ "worker": "Trabajador",
+ "worker-desc": "Solo puede mover tarjetas, asignarse a la tarjeta y comentar.",
+ "computer": "el ordenador",
+ "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
+ "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
+ "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
+ "linkCardPopup-title": "Enlazar tarjeta",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar la tarjeta",
+ "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear tablero",
+ "chooseBoardSourcePopup-title": "Importar un tablero",
+ "createLabelPopup-title": "Crear etiqueta",
+ "createCustomField": "Crear un campo",
+ "createCustomFieldPopup-title": "Crear un campo",
+ "current": "actual",
+ "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "custom-field-checkbox": "Casilla de verificación",
+ "custom-field-currency": "Moneda",
+ "custom-field-currency-option": "Código de moneda",
+ "custom-field-date": "Fecha",
+ "custom-field-dropdown": "Lista desplegable",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Opciones de la lista",
+ "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
+ "custom-field-dropdown-unknown": "(desconocido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos personalizados",
+ "date": "Fecha",
+ "decline": "Declinar",
+ "default-avatar": "Avatar por defecto",
+ "delete": "Eliminar",
+ "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
+ "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
+ "description": "Descripción",
+ "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
+ "discard": "Descartarla",
+ "done": "Hecho",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar el avatar",
+ "edit-profile": "Editar el perfil",
+ "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
+ "soft-wip-limit": "Límite del trabajo en proceso flexible",
+ "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
+ "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
+ "editCustomFieldPopup-title": "Editar el campo",
+ "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
+ "editLabelPopup-title": "Cambiar la etiqueta",
+ "editNotificationPopup-title": "Editar las notificaciones",
+ "editProfilePopup-title": "Editar el perfil",
+ "email": "Correo electrónico",
+ "email-enrollAccount-subject": "Cuenta creada en __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-fail": "Error al enviar el correo",
+ "email-fail-text": "Error al intentar enviar el correo",
+ "email-invalid": "Correo no válido",
+ "email-invite": "Invitar vía correo electrónico",
+ "email-invite-subject": "__inviter__ ha enviado una invitación",
+ "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
+ "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-sent": "Correo enviado",
+ "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
+ "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "enable-wip-limit": "Habilitar el límite del trabajo en proceso",
+ "error-board-doesNotExist": "El tablero no existe",
+ "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
+ "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
+ "error-json-malformed": "El texto no es un JSON válido",
+ "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
+ "error-csv-schema": "Su CSV(Valores separados por coma)/TSV(Valores separados por tab) no incluyen la información apropiada en el formato correcto",
+ "error-list-doesNotExist": "La lista no existe",
+ "error-user-doesNotExist": "El usuario no existe",
+ "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
+ "error-user-notCreated": "El usuario no ha sido creado",
+ "error-username-taken": "Este nombre de usuario ya está en uso",
+ "error-email-taken": "Esta dirección de correo ya está en uso",
+ "export-board": "Exportar el tablero",
+ "export-board-json": "Exportar tablero a JSON",
+ "export-board-csv": "Exportar tablero a CSV",
+ "export-board-tsv": "Exportar tablero a TSV",
+ "export-board-html": "Exportar tablero a HTML",
+ "exportBoardPopup-title": "Exportar el tablero",
+ "sort": "Ordenar",
+ "sort-desc": "Click para ordenar la lista",
+ "list-sort-by": "Ordenar la lista por:",
+ "list-label-modifiedAt": "Hora de último acceso",
+ "list-label-title": "Nombre de la lista",
+ "list-label-sort": "Tu orden manual",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar tarjetas o listas",
+ "list-filter-label": "Filtrar listas por título",
+ "filter-clear": "Limpiar el filtro",
+ "filter-labels-label": "Filtrar por etiqueta",
+ "filter-no-label": "Sin etiqueta",
+ "filter-member-label": "Filtrar por miembro",
+ "filter-no-member": "Sin miembro",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No asignado",
+ "filter-custom-fields-label": "Filtrar por campos personalizados",
+ "filter-no-custom-fields": "Sin campos personalizados",
+ "filter-show-archive": "Mostrar las listas archivadas",
+ "filter-hide-empty": "Ocultar las listas vacías",
+ "filter-on": "Filtrado activado",
+ "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
+ "filter-to-selection": "Filtrar la selección",
+ "other-filters-label": "Otros filtros",
+ "advanced-filter-label": "Filtrado avanzado",
+ "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
+ "fullname": "Nombre completo",
+ "header-logo-title": "Volver a tu página de tableros",
+ "hide-system-messages": "Ocultar las notificaciones de actividad",
+ "headerBarCreateBoardPopup-title": "Crear tablero",
+ "home": "Inicio",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Enlace",
+ "import-board": "importar un tablero",
+ "import-board-c": "Importar un tablero",
+ "import-board-title-trello": "Importar un tablero desde Trello",
+ "import-board-title-wekan": "Importar tablero desde una exportación previa",
+ "import-board-title-csv": "Importar tablero desde CSV/TSV",
+ "from-trello": "Desde Trello",
+ "from-wekan": "Desde exportación previa",
+ "from-csv": "Desde CSV/TSV",
+ "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
+ "import-board-instruction-csv": "Pegue en sus Valores separados por coma(CSV)/Valores separados por tab(TSV).",
+ "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
+ "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
+ "import-json-placeholder": "Pega tus datos JSON válidos aquí",
+ "import-csv-placeholder": "Pega tus datos CSV/TSV válidos aquí",
+ "import-map-members": "Mapa de miembros",
+ "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
+ "import-show-user-mapping": "Revisión de la asignación de miembros",
+ "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
+ "importMapMembersAddPopup-title": "Seleccionar miembro",
+ "info": "Versión",
+ "initials": "Iniciales",
+ "invalid-date": "Fecha no válida",
+ "invalid-time": "Tiempo no válido",
+ "invalid-user": "Usuario no válido",
+ "joined": "se ha unido",
+ "just-invited": "Has sido invitado a este tablero",
+ "keyboard-shortcuts": "Atajos de teclado",
+ "label-create": "Crear una etiqueta",
+ "label-default": "etiqueta %s (por defecto)",
+ "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "labels": "Etiquetas",
+ "language": "Cambiar el idioma",
+ "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
+ "leave-board": "Abandonar el tablero",
+ "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
+ "leaveBoardPopup-title": "¿Abandonar el tablero?",
+ "link-card": "Enlazar a esta tarjeta",
+ "list-archive-cards": "Archivar todas las tarjetas de esta lista",
+ "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
+ "list-move-cards": "Mover todas las tarjetas de esta lista",
+ "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
+ "set-color-list": "Cambiar el color",
+ "listActionPopup-title": "Acciones de la lista",
+ "settingsUserPopup-title": "Preferencias de usuario",
+ "swimlaneActionPopup-title": "Acciones del carril de flujo",
+ "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
+ "listImportCardPopup-title": "Importar una tarjeta de Trello",
+ "listImportCardsTsvPopup-title": "Importar CSV/TSV",
+ "listMorePopup-title": "Más",
+ "link-list": "Enlazar a esta lista",
+ "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
+ "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
+ "lists": "Listas",
+ "swimlanes": "Carriles",
+ "log-out": "Finalizar la sesión",
+ "log-in": "Iniciar sesión",
+ "loginPopup-title": "Iniciar sesión",
+ "memberMenuPopup-title": "Preferencias de miembro",
+ "members": "Miembros",
+ "menu": "Menú",
+ "move-selection": "Mover la selección",
+ "moveCardPopup-title": "Mover la tarjeta",
+ "moveCardToBottom-title": "Mover al final",
+ "moveCardToTop-title": "Mover al principio",
+ "moveSelectionPopup-title": "Mover la selección",
+ "multi-selection": "Selección múltiple",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Selección múltiple activada",
+ "muted": "Silenciado",
+ "muted-info": "No serás notificado de ningún cambio en este tablero",
+ "my-boards": "Mis tableros",
+ "name": "Nombre",
+ "no-archived-cards": "No hay tarjetas archivadas.",
+ "no-archived-lists": "No hay listas archivadas.",
+ "no-archived-swimlanes": "No hay carriles archivados.",
+ "no-results": "Sin resultados",
+ "normal": "Normal",
+ "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
+ "not-accepted-yet": "La invitación no ha sido aceptada aún",
+ "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
+ "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al iniciar sesión.",
+ "page-not-found": "Página no encontrada.",
+ "password": "Contraseña",
+ "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
+ "participating": "Participando",
+ "preview": "Previsualizar",
+ "previewAttachedImagePopup-title": "Previsualizar",
+ "previewClipboardImagePopup-title": "Previsualizar",
+ "private": "Privado",
+ "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
+ "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
+ "remove-cover": "Eliminar portada",
+ "remove-from-board": "Desvincular del tablero",
+ "remove-label": "Eliminar la etiqueta",
+ "listDeletePopup-title": "¿Eliminar la lista?",
+ "remove-member": "Eliminar miembro",
+ "remove-member-from-card": "Eliminar de la tarjeta",
+ "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
+ "removeMemberPopup-title": "¿Eliminar miembro?",
+ "rename": "Renombrar",
+ "rename-board": "Renombrar el tablero",
+ "restore": "Restaurar",
+ "save": "Añadir",
+ "search": "Buscar",
+ "rules": "Reglas",
+ "search-cards": "Buscar entre los títulos, las descripciones de las tarjetas/listas y los campos personalizados en este tablero. ",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Seleccionar el color",
+ "select-board": "Seleccionar tablero",
+ "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
+ "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
+ "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Autocompletar miembros",
+ "shortcut-clear-filters": "Limpiar todos los filtros",
+ "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
+ "shortcut-filter-my-cards": "Filtrar mis tarjetas",
+ "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
+ "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
+ "shortcut-toggle-searchbar": "Conmutar la barra lateral de búsqueda",
+ "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
+ "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
+ "sidebar-open": "Abrir la barra lateral",
+ "sidebar-close": "Cerrar la barra lateral",
+ "signupPopup-title": "Crear una cuenta",
+ "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
+ "starred-boards": "Tableros destacados",
+ "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
+ "subscribe": "Suscribirse",
+ "team": "Equipo",
+ "this-board": "este tablero",
+ "this-card": "esta tarjeta",
+ "spent-time-hours": "Tiempo consumido (horas)",
+ "overtime-hours": "Tiempo excesivo (horas)",
+ "overtime": "Tiempo excesivo",
+ "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
+ "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Siguiendo",
+ "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
+ "type": "Tipo",
+ "unassign-member": "Desvincular al miembro",
+ "unsaved-description": "Tienes una descripción por añadir.",
+ "unwatch": "Dejar de vigilar",
+ "upload": "Cargar",
+ "upload-avatar": "Cargar un avatar",
+ "uploaded-avatar": "Avatar cargado",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nombre de usuario",
+ "view-it": "Verla",
+ "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
+ "watch": "Vigilar",
+ "watching": "Vigilando",
+ "watching-info": "Serás notificado de cualquier cambio en este tablero",
+ "welcome-board": "Tablero de bienvenida",
+ "welcome-swimlane": "Hito 1",
+ "welcome-list1": "Básicos",
+ "welcome-list2": "Avanzados",
+ "card-templates-swimlane": "Plantilla de tarjeta",
+ "list-templates-swimlane": "Listar plantillas",
+ "board-templates-swimlane": "Plantilla de tablero",
+ "what-to-do": "¿Qué quieres hacer?",
+ "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
+ "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
+ "admin-panel": "Panel del administrador",
+ "settings": "Preferencias",
+ "people": "Personas",
+ "registration": "Registro",
+ "disable-self-registration": "Deshabilitar autoregistro",
+ "invite": "Invitar",
+ "invite-people": "Invitar a personas",
+ "to-boards": "A el(los) tablero(s)",
+ "email-addresses": "Direcciones de correo electrónico",
+ "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
+ "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
+ "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Puerto SMTP",
+ "smtp-username": "Nombre de usuario",
+ "smtp-password": "Contraseña",
+ "smtp-tls": "Soporte TLS",
+ "send-from": "Desde",
+ "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
+ "invitation-code": "Código de Invitación",
+ "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
+ "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
+ "email-smtp-test-subject": "Prueba de email SMTP",
+ "email-smtp-test-text": "El correo se ha enviado correctamente",
+ "error-invitation-code-not-exist": "El código de invitación no existe",
+ "error-notAuthorized": "No estás autorizado a ver esta página.",
+ "webhook-title": "Nombre del Webhook",
+ "webhook-token": "Token (opcional para la autenticación)",
+ "outgoing-webhooks": "Webhooks salientes",
+ "bidirectional-webhooks": "Webhooks de doble sentido",
+ "outgoingWebhooksPopup-title": "Webhooks salientes",
+ "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
+ "disable-webhook": "Deshabilitar este Webhook",
+ "global-webhook": "Webhooks globales",
+ "new-outgoing-webhook": "Nuevo webhook saliente",
+ "no-name": "(Desconocido)",
+ "Node_version": "Versión de Node",
+ "Meteor_version": "Versión de Meteor",
+ "MongoDB_version": "Versión de MongoDB",
+ "MongoDB_storage_engine": "Motor de almacenamiento de MongoDB",
+ "MongoDB_Oplog_enabled": "Oplog de MongoDB habilitado",
+ "OS_Arch": "Arquitectura del sistema",
+ "OS_Cpus": "Número de CPUs del sistema",
+ "OS_Freemem": "Memoria libre del sistema",
+ "OS_Loadavg": "Carga media del sistema",
+ "OS_Platform": "Plataforma del sistema",
+ "OS_Release": "Publicación del sistema",
+ "OS_Totalmem": "Memoria total del sistema",
+ "OS_Type": "Tipo de sistema",
+ "OS_Uptime": "Tiempo activo del sistema",
+ "days": "días",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo en la tarjeta",
+ "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
+ "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
+ "yes": "Sí",
+ "no": "No",
+ "accounts": "Cuentas",
+ "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
+ "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
+ "createdAt": "Fecha de alta",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recibido",
+ "card-received-on": "Recibido el",
+ "card-end": "Finalizado",
+ "card-end-on": "Finalizado el",
+ "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
+ "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
+ "setCardColorPopup-title": "Cambiar el color",
+ "setCardActionsColorPopup-title": "Elegir un color",
+ "setSwimlaneColorPopup-title": "Elegir un color",
+ "setListColorPopup-title": "Elegir un color",
+ "assigned-by": "Asignado por",
+ "requested-by": "Solicitado por",
+ "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
+ "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
+ "boardDeletePopup-title": "¿Eliminar el tablero?",
+ "delete-board": "Eliminar el tablero",
+ "default-subtasks-board": "Subtareas para el tablero __board__",
+ "default": "Por defecto",
+ "queue": "Cola",
+ "subtask-settings": "Preferencias de las subtareas",
+ "card-settings": "Preferencias de la tarjeta",
+ "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
+ "boardCardSettingsPopup-title": "Preferencias de la tarjeta",
+ "deposit-subtasks-board": "Depositar subtareas en este tablero:",
+ "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
+ "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
+ "prefix-with-full-path": "Prefijo con ruta completa",
+ "prefix-with-parent": "Prefijo con el padre",
+ "subtext-with-full-path": "Subtexto con ruta completa",
+ "subtext-with-parent": "Subtexto con el padre",
+ "change-card-parent": "Cambiar la tarjeta padre",
+ "parent-card": "Tarjeta padre",
+ "source-board": "Tablero de origen",
+ "no-parent": "No mostrar la tarjeta padre",
+ "activity-added-label": "añadida etiqueta %s a %s",
+ "activity-removed-label": "eliminada etiqueta '%s' desde %s",
+ "activity-delete-attach": "eliminado un adjunto desde %s",
+ "activity-added-label-card": "añadida etiqueta '%s'",
+ "activity-removed-label-card": "eliminada etiqueta '%s'",
+ "activity-delete-attach-card": "eliminado un adjunto",
+ "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
+ "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
+ "r-rule": "Regla",
+ "r-add-trigger": "Añadir disparador",
+ "r-add-action": "Añadir acción",
+ "r-board-rules": "Reglas del tablero",
+ "r-add-rule": "Añadir regla",
+ "r-view-rule": "Ver regla",
+ "r-delete-rule": "Eliminar regla",
+ "r-new-rule-name": "Nueva título de regla",
+ "r-no-rules": "No hay reglas",
+ "r-trigger": "disparador",
+ "r-action": "acción",
+ "r-when-a-card": "Cuando una tarjeta",
+ "r-is": "es",
+ "r-is-moved": "es movida",
+ "r-added-to": "Añadido a",
+ "r-removed-from": "eliminado de",
+ "r-the-board": "el tablero",
+ "r-list": "la lista",
+ "set-filter": "Filtrar",
+ "r-moved-to": "Movido a",
+ "r-moved-from": "Movido desde",
+ "r-archived": "Se archivó",
+ "r-unarchived": "Restaurado del archivo",
+ "r-a-card": "una tarjeta",
+ "r-when-a-label-is": "Cuando una etiqueta es",
+ "r-when-the-label": "Cuando la etiqueta es",
+ "r-list-name": "Nombre de lista",
+ "r-when-a-member": "Cuando un miembro es",
+ "r-when-the-member": "Cuando el miembro",
+ "r-name": "nombre",
+ "r-when-a-attach": "Cuando un adjunto",
+ "r-when-a-checklist": "Cuando una lista de verificación es",
+ "r-when-the-checklist": "Cuando la lista de verificación",
+ "r-completed": "Completada",
+ "r-made-incomplete": "Hecha incompleta",
+ "r-when-a-item": "Cuando un elemento de la lista de verificación es",
+ "r-when-the-item": "Cuando el elemento de la lista de verificación es",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover la tarjeta",
+ "r-top-of": "Arriba de",
+ "r-bottom-of": "Abajo de",
+ "r-its-list": "su lista",
+ "r-archive": "Archivar",
+ "r-unarchive": "Restaurar del Archivo",
+ "r-card": "la tarjeta",
+ "r-add": "Añadir",
+ "r-remove": "Eliminar",
+ "r-label": "etiqueta",
+ "r-member": "miembro",
+ "r-remove-all": "Eliminar todos los miembros de la tarjeta",
+ "r-set-color": "Cambiar el color a",
+ "r-checklist": "lista de verificación",
+ "r-check-all": "Marcar todo",
+ "r-uncheck-all": "Desmarcar todo",
+ "r-items-check": "elementos de la lista de verificación",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "elemento",
+ "r-of-checklist": "de la lista de verificación",
+ "r-send-email": "Enviar un email",
+ "r-to": "a",
+ "r-of": "de",
+ "r-subject": "asunto",
+ "r-rule-details": "Detalle de la regla",
+ "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
+ "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
+ "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
+ "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
+ "r-d-send-email": "Enviar email",
+ "r-d-send-email-to": "a",
+ "r-d-send-email-subject": "asunto",
+ "r-d-send-email-message": "mensaje",
+ "r-d-archive": "Archivar la tarjeta",
+ "r-d-unarchive": "Restaurar tarjeta del Archivo",
+ "r-d-add-label": "Añadir etiqueta",
+ "r-d-remove-label": "Eliminar etiqueta",
+ "r-create-card": "Crear una nueva tarjeta",
+ "r-in-list": "en la lista",
+ "r-in-swimlane": "en el carril",
+ "r-d-add-member": "Añadir miembro",
+ "r-d-remove-member": "Eliminar miembro",
+ "r-d-remove-all-member": "Eliminar todos los miembros",
+ "r-d-check-all": "Marcar todos los elementos de una lista",
+ "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
+ "r-d-check-one": "Marcar elemento",
+ "r-d-uncheck-one": "Desmarcar elemento",
+ "r-d-check-of-list": "de la lista de verificación",
+ "r-d-add-checklist": "Añadir una lista de verificación",
+ "r-d-remove-checklist": "Eliminar lista de verificación",
+ "r-by": "por",
+ "r-add-checklist": "Añadir una lista de verificación",
+ "r-with-items": "con items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Agregar el carril",
+ "r-swimlane-name": "nombre del carril",
+ "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
+ "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
+ "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
+ "r-set": "Cambiar",
+ "r-update": "Actualizar",
+ "r-datefield": "campo de fecha",
+ "r-df-start-at": "comienza",
+ "r-df-due-at": "vencimiento",
+ "r-df-end-at": "finalizado",
+ "r-df-received-at": "recibido",
+ "r-to-current-datetime": "a la fecha/hora actual",
+ "r-remove-value-from": "Eliminar el valor de",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticación",
+ "authentication-type": "Tipo de autenticación",
+ "custom-product-name": "Nombre de producto personalizado",
+ "layout": "Diseño",
+ "hide-logo": "Ocultar el logo",
+ "add-custom-html-after-body-start": "Añade HTML personalizado después de ",
+ "add-custom-html-before-body-end": "Añade HTML personalizado después de ",
+ "error-undefined": "Algo no está bien",
+ "error-ldap-login": "Ocurrió un error al intentar acceder",
+ "display-authentication-method": "Mostrar el método de autenticación",
+ "default-authentication-method": "Método de autenticación por defecto",
+ "duplicate-board": "Duplicar tablero",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "El número de personas es:",
+ "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
+ "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
+ "restore-all": "Restaurar todas",
+ "delete-all": "Borrar todas",
+ "loading": "Cargando. Por favor, espere.",
+ "previous_as": "el último tiempo fue",
+ "act-a-dueAt": "cambiada la hora de vencimiento a \nCuándo: __timeValue__\nDónde: __card__\n el vencimiento anterior fue __timeOldValue__",
+ "act-a-endAt": "cambiada la hora de finalización a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "act-a-startAt": "cambiada la hora de comienzo a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "act-a-receivedAt": "cambiada la fecha de recepción a __timeValue__ Fecha anterior: (__timeOldValue__)",
+ "a-dueAt": "cambiada la hora de vencimiento a",
+ "a-endAt": "cambiada la hora de finalización a",
+ "a-startAt": "cambiada la hora de comienzo a",
+ "a-receivedAt": "cambiada la hora de recepción a",
+ "almostdue": "está próxima la hora de vencimiento actual %s",
+ "pastdue": "se sobrepasó la hora de vencimiento actual%s",
+ "duenow": "la hora de vencimiento actual %s es hoy",
+ "act-newDue": "__list__/__card__ tiene una 1ra notificación de vencimiento [__board__]",
+ "act-withDue": "__list__/__card__ notificaciones de vencimiento [__board__]",
+ "act-almostdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ está próximo",
+ "act-pastdue": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ se sobrepasó",
+ "act-duenow": "se ha notificado que el vencimiento actual (__timeValue__) de __card__ es ahora",
+ "act-atUserComment": "Se te mencionó en [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "¿Seguro que quieres eliminar esta cuenta? Esta acción no puede deshacerse.",
+ "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
+ "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
+ "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
+ "assignee": "Asignado",
+ "cardAssigneesPopup-title": "Asignado",
+ "addmore-detail": "Añadir una descripción detallada",
+ "show-on-card": "Mostrar en la tarjeta",
+ "new": "Nuevo",
+ "editUserPopup-title": "Editar el usuario",
+ "newUserPopup-title": "Nuevo usuario",
+ "notifications": "Notificaciones",
+ "view-all": "Ver todo",
+ "filter-by-unread": "Filtrar por no leído",
+ "mark-all-as-read": "Marcar todo como leido",
+ "remove-all-read": "Eliminar todos los leídos",
+ "allow-rename": "Permitir renombrar",
+ "allowRenamePopup-title": "Permitir renombrar",
+ "start-day-of-week": "Establecer el dia de comienzo de la semana",
+ "monday": "Lunes",
+ "tuesday": "Martes",
+ "wednesday": "Miércoles",
+ "thursday": "Jueves",
+ "friday": "Viernes",
+ "saturday": "Sábado",
+ "sunday": "Domingo",
+ "status": "Estado",
+ "swimlane": "Carril",
+ "owner": "Propietario",
+ "last-modified-at": "Última modificación ",
+ "last-activity": "Última actividad",
+ "voting": "Votar",
+ "archived": "Archivado",
+ "delete-linked-card-before-this-card": "No puede borrar esta tarjeta antes de borrar la tarjeta enlazada que tiene",
+ "delete-linked-cards-before-this-list": "No puede borrar esta lista antes de borrar las tarjetas enlazadas que apuntan a tarjetas en esta lista",
+ "hide-checked-items": "Ocultar elementos marcados",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "Vale",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json
index 016b28cf8..aaafd4a5f 100644
--- a/i18n/eu.i18n.json
+++ b/i18n/eu.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Onartu",
- "act-activity-notify": "Jardueraren jakinarazpena",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Ekintzak",
- "activities": "Jarduerak",
- "activity": "Jarduera",
- "activity-added": "%s %s(e)ra gehituta",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s %s(e)ra erantsita",
- "activity-created": "%s sortuta",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "%s %s(e)tik kanpo utzita",
- "activity-imported": "%s inportatuta %s(e)ra %s(e)tik",
- "activity-imported-board": "%s inportatuta %s(e)tik",
- "activity-joined": "%s(e)ra elkartuta",
- "activity-moved": "%s %s(e)tik %s(e)ra eramanda",
- "activity-on": "%s",
- "activity-removed": "%s %s(e)tik kenduta",
- "activity-sent": "%s %s(e)ri bidalita",
- "activity-unjoined": "%s utzita",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "egiaztaketa zerrenda %s(e)ra gehituta",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "egiaztaketa zerrendako elementuak '%s'(e)ra gehituta %s(e)n",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Gehitu",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Gehitu eranskina",
- "add-board": "Gehitu arbela",
- "add-card": "Gehitu txartela",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Gehitu egiaztaketa zerrenda",
- "add-checklist-item": "Gehitu elementu bat egiaztaketa zerrendara",
- "add-cover": "Gehitu azala",
- "add-label": "Gehitu etiketa",
- "add-list": "Gehitu zerrenda",
- "add-members": "Gehitu kideak",
- "added": "Gehituta",
- "addMemberPopup-title": "Kideak",
- "admin": "Kudeatzailea",
- "admin-desc": "Txartelak ikusi eta editatu ditzake, kideak kendu, eta arbelaren ezarpenak aldatu.",
- "admin-announcement": "Jakinarazpena",
- "admin-announcement-active": "Gaitu Sistema-eremuko Jakinarazpena",
- "admin-announcement-title": "Administrariaren jakinarazpena",
- "all-boards": "Arbel guztiak",
- "and-n-other-card": "Eta beste txartel __count__",
- "and-n-other-card_plural": "Eta beste __count__ txartel",
- "apply": "Aplikatu",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Artxibatu",
- "archived-boards": "Boards in Archive",
- "restore-board": "Berreskuratu arbela",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Artxibatu",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Esleitu kidea",
- "attached": "erantsita",
- "attachment": "Eranskina",
- "attachment-delete-pop": "Eranskina ezabatzea behin betikoa da. Ez dago desegiterik.",
- "attachmentDeletePopup-title": "Ezabatu eranskina?",
- "attachments": "Eranskinak",
- "auto-watch": "Automatikoki jarraitu arbelak hauek sortzean",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Atzera",
- "board-change-color": "Aldatu kolorea",
- "board-nb-stars": "%s izar",
- "board-not-found": "Ez da arbela aurkitu",
- "board-private-info": "Arbel hau pribatua izango da.",
- "board-public-info": "Arbel hau publikoa izango da.",
- "boardChangeColorPopup-title": "Aldatu arbelaren atzealdea",
- "boardChangeTitlePopup-title": "Aldatu izena arbelari",
- "boardChangeVisibilityPopup-title": "Aldatu ikusgaitasuna",
- "boardChangeWatchPopup-title": "Aldatu ikuskatzea",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Arbelak",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Zerrendak",
- "bucket-example": "Esaterako \"Pertz zerrenda\"",
- "cancel": "Utzi",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Txartel honek iruzkin %s dauka.",
- "card-delete-notice": "Ezabaketa behin betiko da. Txartel honi lotutako ekintza guztiak galduko dituzu.",
- "card-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu txartela berrireki. Ez dago desegiterik.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Epemuga",
- "card-due-on": "Epemuga",
- "card-spent": "Erabilitako denbora",
- "card-edit-attachments": "Editatu eranskinak",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Editatu etiketak",
- "card-edit-members": "Editatu kideak",
- "card-labels-title": "Aldatu txartelaren etiketak",
- "card-members-title": "Gehitu edo kendu arbeleko kideak txarteletik.",
- "card-start": "Hasiera",
- "card-start-on": "Hasiera",
- "cardAttachmentsPopup-title": "Erantsi hemendik",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Ezabatu txartela?",
- "cardDetailsActionsPopup-title": "Txartel-ekintzak",
- "cardLabelsPopup-title": "Etiketak",
- "cardMembersPopup-title": "Kideak",
- "cardMorePopup-title": "Gehiago",
- "cardTemplatePopup-title": "Create template",
- "cards": "Txartelak",
- "cards-count": "Txartelak",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Aldatu",
- "change-avatar": "Aldatu avatarra",
- "change-password": "Aldatu pasahitza",
- "change-permissions": "Aldatu baimenak",
- "change-settings": "Aldatu ezarpenak",
- "changeAvatarPopup-title": "Aldatu avatarra",
- "changeLanguagePopup-title": "Aldatu hizkuntza",
- "changePasswordPopup-title": "Aldatu pasahitza",
- "changePermissionsPopup-title": "Aldatu baimenak",
- "changeSettingsPopup-title": "Aldatu ezarpenak",
- "subtasks": "Subtasks",
- "checklists": "Egiaztaketa zerrenda",
- "click-to-star": "Egin klik arbel honi izarra jartzeko",
- "click-to-unstar": "Egin klik arbel honi izarra kentzeko",
- "clipboard": "Kopiatu eta itsatsi edo arrastatu eta jaregin",
- "close": "Itxi",
- "close-board": "Itxi arbela",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "beltza",
- "color-blue": "urdina",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "berdea",
- "color-indigo": "indigo",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "laranja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "larrosa",
- "color-plum": "plum",
- "color-purple": "purpura",
- "color-red": "gorria",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "zerua",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "horia",
- "unset-color": "Unset",
- "comment": "Iruzkina",
- "comment-placeholder": "Idatzi iruzkin bat",
- "comment-only": "Iruzkinak besterik ez",
- "comment-only-desc": "Iruzkinak txarteletan soilik egin ditzake",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Ordenagailua",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Kopiatu txartela arbelera",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Bilatu",
- "copyCardPopup-title": "Kopiatu txartela",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Sortu",
- "createBoardPopup-title": "Sortu arbela",
- "chooseBoardSourcePopup-title": "Inportatu arbela",
- "createLabelPopup-title": "Sortu etiketa",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "unekoa",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Data",
- "decline": "Ukatu",
- "default-avatar": "Lehenetsitako avatarra",
- "delete": "Ezabatu",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Ezabatu etiketa?",
- "description": "Deskripzioa",
- "disambiguateMultiLabelPopup-title": "Argitu etiketaren ekintza",
- "disambiguateMultiMemberPopup-title": "Argitu kidearen ekintza",
- "discard": "Baztertu",
- "done": "Egina",
- "download": "Deskargatu",
- "edit": "Editatu",
- "edit-avatar": "Aldatu avatarra",
- "edit-profile": "Editatu profila",
- "edit-wip-limit": "WIP muga editatu",
- "soft-wip-limit": "WIP muga malgua",
- "editCardStartDatePopup-title": "Aldatu hasiera data",
- "editCardDueDatePopup-title": "Aldatu epemuga data",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Aldatu erabilitako denbora",
- "editLabelPopup-title": "Aldatu etiketa",
- "editNotificationPopup-title": "Editatu jakinarazpena",
- "editProfilePopup-title": "Editatu profila",
- "email": "e-posta",
- "email-enrollAccount-subject": "Kontu bat sortu zaizu __siteName__ gunean",
- "email-enrollAccount-text": "Kaixo __user__,\n\nZerbitzua erabiltzen hasteko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "email-fail": "E-posta bidalketak huts egin du",
- "email-fail-text": "Arazoa mezua bidaltzen saiatzen",
- "email-invalid": "Baliogabeko e-posta",
- "email-invite": "Gonbidatu e-posta bidez",
- "email-invite-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
- "email-invite-text": "Kaixo __user__,\n\n__inviter__ erabiltzaileak \"__board__\" arbelera elkartzera gonbidatzen zaitu elkar-lanean aritzeko.\n\nJarraitu mesedez lotura hau:\n\n__url__\n\nEskerrik asko.",
- "email-resetPassword-subject": "Leheneratu zure __siteName__ guneko pasahitza",
- "email-resetPassword-text": "Kaixo __user__,\n\nZure pasahitza berrezartzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "email-sent": "E-posta bidali da",
- "email-verifyEmail-subject": "Egiaztatu __siteName__ guneko zure e-posta helbidea.",
- "email-verifyEmail-text": "Kaixo __user__,\n\nZure e-posta kontua egiaztatzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "enable-wip-limit": "WIP muga gaitu",
- "error-board-doesNotExist": "Arbel hau ez da existitzen",
- "error-board-notAdmin": "Arbel honetako kudeatzailea izan behar zara hori egin ahal izateko",
- "error-board-notAMember": "Arbel honetako kidea izan behar zara hori egin ahal izateko",
- "error-json-malformed": "Zure testua ez da baliozko JSON",
- "error-json-schema": "Zure JSON datuek ez dute formatu zuzenaren informazio egokia",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Zerrenda hau ez da existitzen",
- "error-user-doesNotExist": "Erabiltzaile hau ez da existitzen",
- "error-user-notAllowSelf": "Ezin duzu zure burua gonbidatu",
- "error-user-notCreated": "Erabiltzaile hau sortu gabe dago",
- "error-username-taken": "Erabiltzaile-izen hori hartuta dago",
- "error-email-taken": "E-mail hori hartuta dago",
- "export-board": "Esportatu arbela",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Esportatu arbela",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Iragazi",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Garbitu iragazkia",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Etiketarik ez",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Kiderik ez",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Iragazkia gaituta dago",
- "filter-on-desc": "Arbel honetako txartela iragazten ari zara. Egin klik hemen iragazkia editatzeko.",
- "filter-to-selection": "Iragazketa aukerara",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Izen abizenak",
- "header-logo-title": "Itzuli zure arbelen orrira.",
- "hide-system-messages": "Ezkutatu sistemako mezuak",
- "headerBarCreateBoardPopup-title": "Sortu arbela",
- "home": "Hasiera",
- "import": "Inportatu",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "inportatu arbela",
- "import-board-c": "Inportatu arbela",
- "import-board-title-trello": "Inportatu arbela Trellotik",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Trellotik",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "Zure Trello arbelean, aukeratu 'Menu\", 'More', 'Print and Export', 'Export JSON', eta kopiatu jasotako testua hemen.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Isatsi baliozko JSON datuak hemen",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Kideen mapa",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Berrikusi kideen mapa",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Bertsioa",
- "initials": "Inizialak",
- "invalid-date": "Baliogabeko data",
- "invalid-time": "Baliogabeko denbora",
- "invalid-user": "Baliogabeko erabiltzailea",
- "joined": "elkartu da",
- "just-invited": "Arbel honetara gonbidatu berri zaituzte",
- "keyboard-shortcuts": "Teklatu laster-bideak",
- "label-create": "Sortu etiketa",
- "label-default": "%s etiketa (lehenetsia)",
- "label-delete-pop": "Ez dago desegiterik. Honek etiketa hau kenduko du txartel guztietatik eta bere historiala suntsitu.",
- "labels": "Etiketak",
- "language": "Hizkuntza",
- "last-admin-desc": "Ezin duzu rola aldatu gutxienez kudeatzaile bat behar delako.",
- "leave-board": "Utzi arbela",
- "leave-board-pop": "Ziur zaude __boardTitle__ utzi nahi duzula? Arbel honetako txartel guztietatik ezabatua izango zara.",
- "leaveBoardPopup-title": "Arbela utzi?",
- "link-card": "Lotura txartel honetara",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Lekuz aldatu zerrendako txartel guztiak",
- "list-select-cards": "Aukeratu zerrenda honetako txartel guztiak",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Zerrendaren ekintzak",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Inportatu Trello txartel bat",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Gehiago",
- "link-list": "Lotura zerrenda honetara",
- "list-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu zerrenda berreskuratu. Ez dago desegiterik.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Zerrendak",
- "swimlanes": "Swimlanes",
- "log-out": "Itxi saioa",
- "log-in": "Hasi saioa",
- "loginPopup-title": "Hasi saioa",
- "memberMenuPopup-title": "Kidearen ezarpenak",
- "members": "Kideak",
- "menu": "Menua",
- "move-selection": "Lekuz aldatu hautaketa",
- "moveCardPopup-title": "Lekuz aldatu txartela",
- "moveCardToBottom-title": "Eraman behera",
- "moveCardToTop-title": "Eraman gora",
- "moveSelectionPopup-title": "Lekuz aldatu hautaketa",
- "multi-selection": "Hautaketa anitza",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Hautaketa anitza gaituta dago",
- "muted": "Mututua",
- "muted-info": "Ez zaizkizu jakinaraziko arbel honi egindako aldaketak",
- "my-boards": "Nire arbelak",
- "name": "Izena",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Emaitzarik ez",
- "normal": "Arrunta",
- "normal-desc": "Txartelak ikusi eta editatu ditzake. Ezin ditu ezarpenak aldatu.",
- "not-accepted-yet": "Gonbidapena ez da oraindik onartu",
- "notify-participate": "Jaso sortzaile edo kide zaren txartelen jakinarazpenak",
- "notify-watch": "Jaso ikuskatzen dituzun arbel, zerrenda edo txartelen jakinarazpenak",
- "optional": "aukerazkoa",
- "or": "edo",
- "page-maybe-private": "Orri hau pribatua izan daiteke. Agian saioa hasi eta gero ikusi ahal izango duzu.",
- "page-not-found": "Ez da orria aurkitu.",
- "password": "Pasahitza",
- "paste-or-dragdrop": "itsasteko, edo irudi fitxategia arrastatu eta jaregiteko (irudia besterik ez)",
- "participating": "Parte-hartzen",
- "preview": "Aurreikusi",
- "previewAttachedImagePopup-title": "Aurreikusi",
- "previewClipboardImagePopup-title": "Aurreikusi",
- "private": "Pribatua",
- "private-desc": "Arbel hau pribatua da. Arbelera gehitutako jendeak besterik ezin du ikusi eta editatu.",
- "profile": "Profila",
- "public": "Publikoa",
- "public-desc": "Arbel hau publikoa da lotura duen edonorentzat ikusgai dago eta Google bezalako bilatzaileetan agertuko da. Arbelera gehitutako kideek besterik ezin dute editatu.",
- "quick-access-description": "Jarri izarra arbel bati barra honetan lasterbide bat sortzeko",
- "remove-cover": "Kendu azala",
- "remove-from-board": "Kendu arbeletik",
- "remove-label": "Kendu etiketa",
- "listDeletePopup-title": "Ezabatu zerrenda?",
- "remove-member": "Kendu kidea",
- "remove-member-from-card": "Kendu txarteletik",
- "remove-member-pop": "Kendu __name__ (__username__) __boardTitle__ arbeletik? Kidea arbel honetako txartel guztietatik kenduko da. Jakinarazpenak bidaliko dira.",
- "removeMemberPopup-title": "Kendu kidea?",
- "rename": "Aldatu izena",
- "rename-board": "Aldatu izena arbelari",
- "restore": "Berrezarri",
- "save": "Gorde",
- "search": "Bilatu",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Aukeratu kolorea",
- "select-board": "Select Board",
- "set-wip-limit-value": "Zerrenda honetako atazen muga maximoa ezarri",
- "setWipLimitPopup-title": "WIP muga ezarri",
- "shortcut-assign-self": "Esleitu zure burua txartel honetara",
- "shortcut-autocomplete-emoji": "Automatikoki osatu emojia",
- "shortcut-autocomplete-members": "Automatikoki osatu kideak",
- "shortcut-clear-filters": "Garbitu iragazki guztiak",
- "shortcut-close-dialog": "Itxi elkarrizketa-koadroa",
- "shortcut-filter-my-cards": "Iragazi nire txartelak",
- "shortcut-show-shortcuts": "Erakutsi lasterbideen zerrenda hau",
- "shortcut-toggle-filterbar": "Txandakatu iragazkiaren albo-barra",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Txandakatu arbelaren albo-barra",
- "show-cards-minimum-count": "Erakutsi txartel kopurua hau baino handiagoa denean:",
- "sidebar-open": "Ireki albo-barra",
- "sidebar-close": "Itxi albo-barra",
- "signupPopup-title": "Sortu kontu bat",
- "star-board-title": "Egin klik arbel honi izarra jartzeko, zure arbelen zerrendaren goialdean agertuko da",
- "starred-boards": "Izardun arbelak",
- "starred-boards-description": "Izardun arbelak zure arbelen zerrendaren goialdean agertuko dira",
- "subscribe": "Harpidetu",
- "team": "Taldea",
- "this-board": "arbel hau",
- "this-card": "txartel hau",
- "spent-time-hours": "Erabilitako denbora (orduak)",
- "overtime-hours": "Luzapena (orduak)",
- "overtime": "Luzapena",
- "has-overtime-cards": "Luzapen txartelak ditu",
- "has-spenttime-cards": "Erabilitako denbora txartelak ditu",
- "time": "Ordua",
- "title": "Izenburua",
- "tracking": "Jarraitzen",
- "tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.",
- "type": "Type",
- "unassign-member": "Kendu kidea",
- "unsaved-description": "Gorde gabeko deskripzio bat duzu",
- "unwatch": "Utzi ikuskatzeari",
- "upload": "Igo",
- "upload-avatar": "Igo avatar bat",
- "uploaded-avatar": "Avatar bat igo da",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Erabiltzaile-izena",
- "view-it": "Ikusi",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Ikuskatu",
- "watching": "Ikuskatzen",
- "watching-info": "Arbel honi egindako aldaketak jakinaraziko zaizkizu",
- "welcome-board": "Ongi etorri arbela",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Oinarrizkoa",
- "welcome-list2": "Aurreratua",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Zer egin nahi duzu?",
- "wipLimitErrorPopup-title": "Baliogabeko WIP muga",
- "wipLimitErrorPopup-dialog-pt1": "Zerrenda honetako atazen muga, WIP-en ezarritakoa baina handiagoa da",
- "wipLimitErrorPopup-dialog-pt2": "Mugitu zenbait ataza zerrenda honetatik, edo WIP muga handiagoa ezarri.",
- "admin-panel": "Kudeaketa panela",
- "settings": "Ezarpenak",
- "people": "Jendea",
- "registration": "Izen-ematea",
- "disable-self-registration": "Desgaitu nork bere burua erregistratzea",
- "invite": "Gonbidatu",
- "invite-people": "Gonbidatu jendea",
- "to-boards": "Arbele(ta)ra",
- "email-addresses": "E-posta helbideak",
- "smtp-host-description": "Zure e-posta mezuez arduratzen den SMTP zerbitzariaren helbidea",
- "smtp-port-description": "Zure SMTP zerbitzariak bidalitako e-posta mezuentzat erabiltzen duen kaia.",
- "smtp-tls-description": "Gaitu TLS euskarria SMTP zerbitzariarentzat",
- "smtp-host": "SMTP ostalaria",
- "smtp-port": "SMTP kaia",
- "smtp-username": "Erabiltzaile-izena",
- "smtp-password": "Pasahitza",
- "smtp-tls": "TLS euskarria",
- "send-from": "Nork",
- "send-smtp-test": "Bidali posta elektroniko mezu bat zure buruari",
- "invitation-code": "Gonbidapen kodea",
- "email-invite-register-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Arrakastaz bidali duzu posta elektroniko mezua",
- "error-invitation-code-not-exist": "Gonbidapen kodea ez da existitzen",
- "error-notAuthorized": "Ez duzu orri hau ikusteko baimenik.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Irteerako Webhook-ak",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Irteerako Webhook-ak",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "Irteera-webhook berria",
- "no-name": "(Ezezaguna)",
- "Node_version": "Nodo bertsioa",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "SE Arkitektura",
- "OS_Cpus": "SE PUZ kopurua",
- "OS_Freemem": "SE Memoria librea",
- "OS_Loadavg": "SE batez besteko karga",
- "OS_Platform": "SE plataforma",
- "OS_Release": "SE kaleratzea",
- "OS_Totalmem": "SE memoria guztira",
- "OS_Type": "SE mota",
- "OS_Uptime": "SE denbora abiatuta",
- "days": "days",
- "hours": "ordu",
- "minutes": "minutu",
- "seconds": "segundo",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Bai",
- "no": "Ez",
- "accounts": "Kontuak",
- "accounts-allowEmailChange": "Baimendu e-mail aldaketa",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Noiz sortua",
- "verified": "Egiaztatuta",
- "active": "Gaituta",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Gehitu",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Onartu",
+ "act-activity-notify": "Jardueraren jakinarazpena",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Ekintzak",
+ "activities": "Jarduerak",
+ "activity": "Jarduera",
+ "activity-added": "%s %s(e)ra gehituta",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s %s(e)ra erantsita",
+ "activity-created": "%s sortuta",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "%s %s(e)tik kanpo utzita",
+ "activity-imported": "%s inportatuta %s(e)ra %s(e)tik",
+ "activity-imported-board": "%s inportatuta %s(e)tik",
+ "activity-joined": "%s(e)ra elkartuta",
+ "activity-moved": "%s %s(e)tik %s(e)ra eramanda",
+ "activity-on": "%s",
+ "activity-removed": "%s %s(e)tik kenduta",
+ "activity-sent": "%s %s(e)ri bidalita",
+ "activity-unjoined": "%s utzita",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "egiaztaketa zerrenda %s(e)ra gehituta",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "egiaztaketa zerrendako elementuak '%s'(e)ra gehituta %s(e)n",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Gehitu",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Gehitu eranskina",
+ "add-board": "Gehitu arbela",
+ "add-card": "Gehitu txartela",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Gehitu egiaztaketa zerrenda",
+ "add-checklist-item": "Gehitu elementu bat egiaztaketa zerrendara",
+ "add-cover": "Gehitu azala",
+ "add-label": "Gehitu etiketa",
+ "add-list": "Gehitu zerrenda",
+ "add-members": "Gehitu kideak",
+ "added": "Gehituta",
+ "addMemberPopup-title": "Kideak",
+ "admin": "Kudeatzailea",
+ "admin-desc": "Txartelak ikusi eta editatu ditzake, kideak kendu, eta arbelaren ezarpenak aldatu.",
+ "admin-announcement": "Jakinarazpena",
+ "admin-announcement-active": "Gaitu Sistema-eremuko Jakinarazpena",
+ "admin-announcement-title": "Administrariaren jakinarazpena",
+ "all-boards": "Arbel guztiak",
+ "and-n-other-card": "Eta beste txartel __count__",
+ "and-n-other-card_plural": "Eta beste __count__ txartel",
+ "apply": "Aplikatu",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Artxibatu",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Berreskuratu arbela",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Artxibatu",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Esleitu kidea",
+ "attached": "erantsita",
+ "attachment": "Eranskina",
+ "attachment-delete-pop": "Eranskina ezabatzea behin betikoa da. Ez dago desegiterik.",
+ "attachmentDeletePopup-title": "Ezabatu eranskina?",
+ "attachments": "Eranskinak",
+ "auto-watch": "Automatikoki jarraitu arbelak hauek sortzean",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Atzera",
+ "board-change-color": "Aldatu kolorea",
+ "board-nb-stars": "%s izar",
+ "board-not-found": "Ez da arbela aurkitu",
+ "board-private-info": "Arbel hau pribatua izango da.",
+ "board-public-info": "Arbel hau publikoa izango da.",
+ "boardChangeColorPopup-title": "Aldatu arbelaren atzealdea",
+ "boardChangeTitlePopup-title": "Aldatu izena arbelari",
+ "boardChangeVisibilityPopup-title": "Aldatu ikusgaitasuna",
+ "boardChangeWatchPopup-title": "Aldatu ikuskatzea",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Arbelak",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Zerrendak",
+ "bucket-example": "Esaterako \"Pertz zerrenda\"",
+ "cancel": "Utzi",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Txartel honek iruzkin %s dauka.",
+ "card-delete-notice": "Ezabaketa behin betiko da. Txartel honi lotutako ekintza guztiak galduko dituzu.",
+ "card-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu txartela berrireki. Ez dago desegiterik.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Epemuga",
+ "card-due-on": "Epemuga",
+ "card-spent": "Erabilitako denbora",
+ "card-edit-attachments": "Editatu eranskinak",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Editatu etiketak",
+ "card-edit-members": "Editatu kideak",
+ "card-labels-title": "Aldatu txartelaren etiketak",
+ "card-members-title": "Gehitu edo kendu arbeleko kideak txarteletik.",
+ "card-start": "Hasiera",
+ "card-start-on": "Hasiera",
+ "cardAttachmentsPopup-title": "Erantsi hemendik",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Ezabatu txartela?",
+ "cardDetailsActionsPopup-title": "Txartel-ekintzak",
+ "cardLabelsPopup-title": "Etiketak",
+ "cardMembersPopup-title": "Kideak",
+ "cardMorePopup-title": "Gehiago",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Txartelak",
+ "cards-count": "Txartelak",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Aldatu",
+ "change-avatar": "Aldatu avatarra",
+ "change-password": "Aldatu pasahitza",
+ "change-permissions": "Aldatu baimenak",
+ "change-settings": "Aldatu ezarpenak",
+ "changeAvatarPopup-title": "Aldatu avatarra",
+ "changeLanguagePopup-title": "Aldatu hizkuntza",
+ "changePasswordPopup-title": "Aldatu pasahitza",
+ "changePermissionsPopup-title": "Aldatu baimenak",
+ "changeSettingsPopup-title": "Aldatu ezarpenak",
+ "subtasks": "Subtasks",
+ "checklists": "Egiaztaketa zerrenda",
+ "click-to-star": "Egin klik arbel honi izarra jartzeko",
+ "click-to-unstar": "Egin klik arbel honi izarra kentzeko",
+ "clipboard": "Kopiatu eta itsatsi edo arrastatu eta jaregin",
+ "close": "Itxi",
+ "close-board": "Itxi arbela",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "beltza",
+ "color-blue": "urdina",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "berdea",
+ "color-indigo": "indigo",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "laranja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "larrosa",
+ "color-plum": "plum",
+ "color-purple": "purpura",
+ "color-red": "gorria",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "zerua",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "horia",
+ "unset-color": "Unset",
+ "comment": "Iruzkina",
+ "comment-placeholder": "Idatzi iruzkin bat",
+ "comment-only": "Iruzkinak besterik ez",
+ "comment-only-desc": "Iruzkinak txarteletan soilik egin ditzake",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Ordenagailua",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Kopiatu txartela arbelera",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Bilatu",
+ "copyCardPopup-title": "Kopiatu txartela",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Sortu",
+ "createBoardPopup-title": "Sortu arbela",
+ "chooseBoardSourcePopup-title": "Inportatu arbela",
+ "createLabelPopup-title": "Sortu etiketa",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "unekoa",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Data",
+ "decline": "Ukatu",
+ "default-avatar": "Lehenetsitako avatarra",
+ "delete": "Ezabatu",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Ezabatu etiketa?",
+ "description": "Deskripzioa",
+ "disambiguateMultiLabelPopup-title": "Argitu etiketaren ekintza",
+ "disambiguateMultiMemberPopup-title": "Argitu kidearen ekintza",
+ "discard": "Baztertu",
+ "done": "Egina",
+ "download": "Deskargatu",
+ "edit": "Editatu",
+ "edit-avatar": "Aldatu avatarra",
+ "edit-profile": "Editatu profila",
+ "edit-wip-limit": "WIP muga editatu",
+ "soft-wip-limit": "WIP muga malgua",
+ "editCardStartDatePopup-title": "Aldatu hasiera data",
+ "editCardDueDatePopup-title": "Aldatu epemuga data",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Aldatu erabilitako denbora",
+ "editLabelPopup-title": "Aldatu etiketa",
+ "editNotificationPopup-title": "Editatu jakinarazpena",
+ "editProfilePopup-title": "Editatu profila",
+ "email": "e-posta",
+ "email-enrollAccount-subject": "Kontu bat sortu zaizu __siteName__ gunean",
+ "email-enrollAccount-text": "Kaixo __user__,\n\nZerbitzua erabiltzen hasteko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "email-fail": "E-posta bidalketak huts egin du",
+ "email-fail-text": "Arazoa mezua bidaltzen saiatzen",
+ "email-invalid": "Baliogabeko e-posta",
+ "email-invite": "Gonbidatu e-posta bidez",
+ "email-invite-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
+ "email-invite-text": "Kaixo __user__,\n\n__inviter__ erabiltzaileak \"__board__\" arbelera elkartzera gonbidatzen zaitu elkar-lanean aritzeko.\n\nJarraitu mesedez lotura hau:\n\n__url__\n\nEskerrik asko.",
+ "email-resetPassword-subject": "Leheneratu zure __siteName__ guneko pasahitza",
+ "email-resetPassword-text": "Kaixo __user__,\n\nZure pasahitza berrezartzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "email-sent": "E-posta bidali da",
+ "email-verifyEmail-subject": "Egiaztatu __siteName__ guneko zure e-posta helbidea.",
+ "email-verifyEmail-text": "Kaixo __user__,\n\nZure e-posta kontua egiaztatzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "enable-wip-limit": "WIP muga gaitu",
+ "error-board-doesNotExist": "Arbel hau ez da existitzen",
+ "error-board-notAdmin": "Arbel honetako kudeatzailea izan behar zara hori egin ahal izateko",
+ "error-board-notAMember": "Arbel honetako kidea izan behar zara hori egin ahal izateko",
+ "error-json-malformed": "Zure testua ez da baliozko JSON",
+ "error-json-schema": "Zure JSON datuek ez dute formatu zuzenaren informazio egokia",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Zerrenda hau ez da existitzen",
+ "error-user-doesNotExist": "Erabiltzaile hau ez da existitzen",
+ "error-user-notAllowSelf": "Ezin duzu zure burua gonbidatu",
+ "error-user-notCreated": "Erabiltzaile hau sortu gabe dago",
+ "error-username-taken": "Erabiltzaile-izen hori hartuta dago",
+ "error-email-taken": "E-mail hori hartuta dago",
+ "export-board": "Esportatu arbela",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Esportatu arbela",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Iragazi",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Garbitu iragazkia",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Etiketarik ez",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Kiderik ez",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Iragazkia gaituta dago",
+ "filter-on-desc": "Arbel honetako txartela iragazten ari zara. Egin klik hemen iragazkia editatzeko.",
+ "filter-to-selection": "Iragazketa aukerara",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Izen abizenak",
+ "header-logo-title": "Itzuli zure arbelen orrira.",
+ "hide-system-messages": "Ezkutatu sistemako mezuak",
+ "headerBarCreateBoardPopup-title": "Sortu arbela",
+ "home": "Hasiera",
+ "import": "Inportatu",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "inportatu arbela",
+ "import-board-c": "Inportatu arbela",
+ "import-board-title-trello": "Inportatu arbela Trellotik",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Trellotik",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "Zure Trello arbelean, aukeratu 'Menu\", 'More', 'Print and Export', 'Export JSON', eta kopiatu jasotako testua hemen.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Isatsi baliozko JSON datuak hemen",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Kideen mapa",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Berrikusi kideen mapa",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Bertsioa",
+ "initials": "Inizialak",
+ "invalid-date": "Baliogabeko data",
+ "invalid-time": "Baliogabeko denbora",
+ "invalid-user": "Baliogabeko erabiltzailea",
+ "joined": "elkartu da",
+ "just-invited": "Arbel honetara gonbidatu berri zaituzte",
+ "keyboard-shortcuts": "Teklatu laster-bideak",
+ "label-create": "Sortu etiketa",
+ "label-default": "%s etiketa (lehenetsia)",
+ "label-delete-pop": "Ez dago desegiterik. Honek etiketa hau kenduko du txartel guztietatik eta bere historiala suntsitu.",
+ "labels": "Etiketak",
+ "language": "Hizkuntza",
+ "last-admin-desc": "Ezin duzu rola aldatu gutxienez kudeatzaile bat behar delako.",
+ "leave-board": "Utzi arbela",
+ "leave-board-pop": "Ziur zaude __boardTitle__ utzi nahi duzula? Arbel honetako txartel guztietatik ezabatua izango zara.",
+ "leaveBoardPopup-title": "Arbela utzi?",
+ "link-card": "Lotura txartel honetara",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Lekuz aldatu zerrendako txartel guztiak",
+ "list-select-cards": "Aukeratu zerrenda honetako txartel guztiak",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Zerrendaren ekintzak",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Inportatu Trello txartel bat",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Gehiago",
+ "link-list": "Lotura zerrenda honetara",
+ "list-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu zerrenda berreskuratu. Ez dago desegiterik.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Zerrendak",
+ "swimlanes": "Swimlanes",
+ "log-out": "Itxi saioa",
+ "log-in": "Hasi saioa",
+ "loginPopup-title": "Hasi saioa",
+ "memberMenuPopup-title": "Kidearen ezarpenak",
+ "members": "Kideak",
+ "menu": "Menua",
+ "move-selection": "Lekuz aldatu hautaketa",
+ "moveCardPopup-title": "Lekuz aldatu txartela",
+ "moveCardToBottom-title": "Eraman behera",
+ "moveCardToTop-title": "Eraman gora",
+ "moveSelectionPopup-title": "Lekuz aldatu hautaketa",
+ "multi-selection": "Hautaketa anitza",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Hautaketa anitza gaituta dago",
+ "muted": "Mututua",
+ "muted-info": "Ez zaizkizu jakinaraziko arbel honi egindako aldaketak",
+ "my-boards": "Nire arbelak",
+ "name": "Izena",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Emaitzarik ez",
+ "normal": "Arrunta",
+ "normal-desc": "Txartelak ikusi eta editatu ditzake. Ezin ditu ezarpenak aldatu.",
+ "not-accepted-yet": "Gonbidapena ez da oraindik onartu",
+ "notify-participate": "Jaso sortzaile edo kide zaren txartelen jakinarazpenak",
+ "notify-watch": "Jaso ikuskatzen dituzun arbel, zerrenda edo txartelen jakinarazpenak",
+ "optional": "aukerazkoa",
+ "or": "edo",
+ "page-maybe-private": "Orri hau pribatua izan daiteke. Agian saioa hasi eta gero ikusi ahal izango duzu.",
+ "page-not-found": "Ez da orria aurkitu.",
+ "password": "Pasahitza",
+ "paste-or-dragdrop": "itsasteko, edo irudi fitxategia arrastatu eta jaregiteko (irudia besterik ez)",
+ "participating": "Parte-hartzen",
+ "preview": "Aurreikusi",
+ "previewAttachedImagePopup-title": "Aurreikusi",
+ "previewClipboardImagePopup-title": "Aurreikusi",
+ "private": "Pribatua",
+ "private-desc": "Arbel hau pribatua da. Arbelera gehitutako jendeak besterik ezin du ikusi eta editatu.",
+ "profile": "Profila",
+ "public": "Publikoa",
+ "public-desc": "Arbel hau publikoa da lotura duen edonorentzat ikusgai dago eta Google bezalako bilatzaileetan agertuko da. Arbelera gehitutako kideek besterik ezin dute editatu.",
+ "quick-access-description": "Jarri izarra arbel bati barra honetan lasterbide bat sortzeko",
+ "remove-cover": "Kendu azala",
+ "remove-from-board": "Kendu arbeletik",
+ "remove-label": "Kendu etiketa",
+ "listDeletePopup-title": "Ezabatu zerrenda?",
+ "remove-member": "Kendu kidea",
+ "remove-member-from-card": "Kendu txarteletik",
+ "remove-member-pop": "Kendu __name__ (__username__) __boardTitle__ arbeletik? Kidea arbel honetako txartel guztietatik kenduko da. Jakinarazpenak bidaliko dira.",
+ "removeMemberPopup-title": "Kendu kidea?",
+ "rename": "Aldatu izena",
+ "rename-board": "Aldatu izena arbelari",
+ "restore": "Berrezarri",
+ "save": "Gorde",
+ "search": "Bilatu",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Aukeratu kolorea",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Zerrenda honetako atazen muga maximoa ezarri",
+ "setWipLimitPopup-title": "WIP muga ezarri",
+ "shortcut-assign-self": "Esleitu zure burua txartel honetara",
+ "shortcut-autocomplete-emoji": "Automatikoki osatu emojia",
+ "shortcut-autocomplete-members": "Automatikoki osatu kideak",
+ "shortcut-clear-filters": "Garbitu iragazki guztiak",
+ "shortcut-close-dialog": "Itxi elkarrizketa-koadroa",
+ "shortcut-filter-my-cards": "Iragazi nire txartelak",
+ "shortcut-show-shortcuts": "Erakutsi lasterbideen zerrenda hau",
+ "shortcut-toggle-filterbar": "Txandakatu iragazkiaren albo-barra",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Txandakatu arbelaren albo-barra",
+ "show-cards-minimum-count": "Erakutsi txartel kopurua hau baino handiagoa denean:",
+ "sidebar-open": "Ireki albo-barra",
+ "sidebar-close": "Itxi albo-barra",
+ "signupPopup-title": "Sortu kontu bat",
+ "star-board-title": "Egin klik arbel honi izarra jartzeko, zure arbelen zerrendaren goialdean agertuko da",
+ "starred-boards": "Izardun arbelak",
+ "starred-boards-description": "Izardun arbelak zure arbelen zerrendaren goialdean agertuko dira",
+ "subscribe": "Harpidetu",
+ "team": "Taldea",
+ "this-board": "arbel hau",
+ "this-card": "txartel hau",
+ "spent-time-hours": "Erabilitako denbora (orduak)",
+ "overtime-hours": "Luzapena (orduak)",
+ "overtime": "Luzapena",
+ "has-overtime-cards": "Luzapen txartelak ditu",
+ "has-spenttime-cards": "Erabilitako denbora txartelak ditu",
+ "time": "Ordua",
+ "title": "Izenburua",
+ "tracking": "Jarraitzen",
+ "tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.",
+ "type": "Type",
+ "unassign-member": "Kendu kidea",
+ "unsaved-description": "Gorde gabeko deskripzio bat duzu",
+ "unwatch": "Utzi ikuskatzeari",
+ "upload": "Igo",
+ "upload-avatar": "Igo avatar bat",
+ "uploaded-avatar": "Avatar bat igo da",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Erabiltzaile-izena",
+ "view-it": "Ikusi",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Ikuskatu",
+ "watching": "Ikuskatzen",
+ "watching-info": "Arbel honi egindako aldaketak jakinaraziko zaizkizu",
+ "welcome-board": "Ongi etorri arbela",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Oinarrizkoa",
+ "welcome-list2": "Aurreratua",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Zer egin nahi duzu?",
+ "wipLimitErrorPopup-title": "Baliogabeko WIP muga",
+ "wipLimitErrorPopup-dialog-pt1": "Zerrenda honetako atazen muga, WIP-en ezarritakoa baina handiagoa da",
+ "wipLimitErrorPopup-dialog-pt2": "Mugitu zenbait ataza zerrenda honetatik, edo WIP muga handiagoa ezarri.",
+ "admin-panel": "Kudeaketa panela",
+ "settings": "Ezarpenak",
+ "people": "Jendea",
+ "registration": "Izen-ematea",
+ "disable-self-registration": "Desgaitu nork bere burua erregistratzea",
+ "invite": "Gonbidatu",
+ "invite-people": "Gonbidatu jendea",
+ "to-boards": "Arbele(ta)ra",
+ "email-addresses": "E-posta helbideak",
+ "smtp-host-description": "Zure e-posta mezuez arduratzen den SMTP zerbitzariaren helbidea",
+ "smtp-port-description": "Zure SMTP zerbitzariak bidalitako e-posta mezuentzat erabiltzen duen kaia.",
+ "smtp-tls-description": "Gaitu TLS euskarria SMTP zerbitzariarentzat",
+ "smtp-host": "SMTP ostalaria",
+ "smtp-port": "SMTP kaia",
+ "smtp-username": "Erabiltzaile-izena",
+ "smtp-password": "Pasahitza",
+ "smtp-tls": "TLS euskarria",
+ "send-from": "Nork",
+ "send-smtp-test": "Bidali posta elektroniko mezu bat zure buruari",
+ "invitation-code": "Gonbidapen kodea",
+ "email-invite-register-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Arrakastaz bidali duzu posta elektroniko mezua",
+ "error-invitation-code-not-exist": "Gonbidapen kodea ez da existitzen",
+ "error-notAuthorized": "Ez duzu orri hau ikusteko baimenik.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Irteerako Webhook-ak",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Irteerako Webhook-ak",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "Irteera-webhook berria",
+ "no-name": "(Ezezaguna)",
+ "Node_version": "Nodo bertsioa",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "SE Arkitektura",
+ "OS_Cpus": "SE PUZ kopurua",
+ "OS_Freemem": "SE Memoria librea",
+ "OS_Loadavg": "SE batez besteko karga",
+ "OS_Platform": "SE plataforma",
+ "OS_Release": "SE kaleratzea",
+ "OS_Totalmem": "SE memoria guztira",
+ "OS_Type": "SE mota",
+ "OS_Uptime": "SE denbora abiatuta",
+ "days": "days",
+ "hours": "ordu",
+ "minutes": "minutu",
+ "seconds": "segundo",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Bai",
+ "no": "Ez",
+ "accounts": "Kontuak",
+ "accounts-allowEmailChange": "Baimendu e-mail aldaketa",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Noiz sortua",
+ "verified": "Egiaztatuta",
+ "active": "Gaituta",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Gehitu",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json
index 441a488df..732036911 100644
--- a/i18n/fa.i18n.json
+++ b/i18n/fa.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "تایید",
- "act-activity-notify": "اعلان فعالیت",
- "act-addAttachment": "ضمیمه __attachment__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-deleteAttachment": "ضمیمه __attachment__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
- "act-addSubtask": "زیروظیفه __subtask__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-addLabel": "لیبل __label__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-addedLabel": "لیبل __label__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-removeLabel": "لیبل __label__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
- "act-removedLabel": "لیبل __label__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
- "act-addChecklist": "چکلیست __checklist__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-addChecklistItem": "آیتم چکلیست __checklistItem__ به چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
- "act-removeChecklist": "چکلیست __checklist__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
- "act-removeChecklistItem": "آیتم چکلیست __checklistItem__ از چکلیست __checkList__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
- "act-checkedItem": "آیتم چکلیست __checklistItem__ از چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ انتخابشده",
- "act-uncheckedItem": "آیتم چکلیست __checklistItem__ از چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ از حالت انتخاب خارج شده",
- "act-completeChecklist": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ کامل شده",
- "act-uncompleteChecklist": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ ناتمامشده",
- "act-addComment": "روی کارت __card__ نظر داد: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
- "act-editComment": "نظر روی کارت __card__ ویرایش شده: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
- "act-deleteComment": "نظر روی کارت __card__ حذفشده: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
- "act-createBoard": "برد __board__ ایجاد شده",
- "act-createSwimlane": "مسیر __swimlane__ در برد __board__ ایجاد شده",
- "act-createCard": "کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ ایجاد شده",
- "act-createCustomField": "فیلد سفارشی __customField__ در برد __board__ ایجاد شده",
- "act-deleteCustomField": "فیلد سفارشی __customField__ در برد __board__ حذف شده",
- "act-setCustomField": "فیلد سفارشی __customField__ ویرایش شده: __customFieldValue__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
- "act-createList": "لیست __list__ به برد __board__ اضافه شده",
- "act-addBoardMember": "عضو __member__ به برد __board__ اضافه شده",
- "act-archivedBoard": "برد __board__ به آرشیو منتقل شد",
- "act-archivedCard": "کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ آرشیو شده",
- "act-archivedList": "لیست __list__ در مسیر __swimlane__ در برد __board__ آرشیو شده",
- "act-archivedSwimlane": "مسیر __swimlane__ \\در برد __board__ آرشیو شده",
- "act-importBoard": "برد __board__ وارد شده",
- "act-importCard": "کارت __card__ را به لیست __list__ در مسیر __swimlane__ در برد __board__ وارد کرد",
- "act-importList": "لیست __list__ را به مسیر __swimlane__ در برد __board__ وارد کرد",
- "act-joinMember": "عضو __member__ را به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه کرد",
- "act-moveCard": "کارت __card__ را در برد __board__ از لیست __oldList__ در مسیر __oldSwimlane__ به لیست __list__ در مسیر __swimlane__ منتقل کرد",
- "act-moveCardToOtherBoard": "کارت __card__ را از لیست __oldList__ در مسیر __oldSwimlane__ در برد __oldBoard__ به لیست __list__ در مسیر __swimlane__ در برد __board__ منتقل کرد",
- "act-removeBoardMember": "عضو __member__ را از برد __board__ حذف کرد",
- "act-restoredCard": "کارت __card__ را به لیست __list__ در مسیر __swimlane__ در برد __board__ بازگرداند",
- "act-unjoinMember": "عضو __member__ را از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف کرد",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "اعمال",
- "activities": "فعالیتها",
- "activity": "فعالیت",
- "activity-added": "%s به %s اضافه شد",
- "activity-archived": "%s به آرشیو انتقال یافت",
- "activity-attached": "%s به %s پیوست شد",
- "activity-created": "%s ایجاد شد",
- "activity-customfield-created": " فیلد سفارشی %s ایجاد شد",
- "activity-excluded": "%s از %s مستثنی گردید",
- "activity-imported": "%s از %s وارد %s شد",
- "activity-imported-board": "%s از %s وارد شد",
- "activity-joined": "اتصال به %s",
- "activity-moved": "%s از %s به %s منتقل شد",
- "activity-on": "%s",
- "activity-removed": "%s از %s حذف شد",
- "activity-sent": "ارسال %s به %s",
- "activity-unjoined": "قطع اتصال %s",
- "activity-subtask-added": "زیروظیفه به %s اضافه شد",
- "activity-checked-item": " %s مورد در چکلیست %s از %s انتخابشده",
- "activity-unchecked-item": " %s مورد در چکلیست %s از %s انتخابنشده",
- "activity-checklist-added": "چکلیست به %s اضافه شد",
- "activity-checklist-removed": "یک چکلیست از %s حذف گردید",
- "activity-checklist-completed": "چکلیست %s از %s کامل شدهاست",
- "activity-checklist-uncompleted": "چکلیست %s از %s کامل نشدهاست",
- "activity-checklist-item-added": "آیتم چکلیست به '%s' در %s اضافه شده",
- "activity-checklist-item-removed": "یک آیتم چکلیست از '%s' در %s حذف شده.",
- "add": "افزودن",
- "activity-checked-item-card": " %s در چکلیست %s انتخابشده",
- "activity-unchecked-item-card": "%s در چکلیست %s از حالت انتخاب خارج شده",
- "activity-checklist-completed-card": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ کامل شده",
- "activity-checklist-uncompleted-card": "چکلیست %s تمام نشده ",
- "activity-editComment": "%s نظر ویرایش شد ",
- "activity-deleteComment": "%s نظر حذف شد ",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "افزودن ضمیمه",
- "add-board": "افزودن برد",
- "add-card": "افزودن کارت",
- "add-swimlane": "افزودن مسیر شنا",
- "add-subtask": "افزودن زیر وظیفه",
- "add-checklist": "افزودن چکلیست",
- "add-checklist-item": "افزودن مورد به چکلیست",
- "add-cover": "افزودن کاور",
- "add-label": "افزودن لیبل",
- "add-list": "افزودن لیست",
- "add-members": "افزودن اعضا",
- "added": "اضافه گردید",
- "addMemberPopup-title": "اعضا",
- "admin": "مدیر",
- "admin-desc": "امکان دیدن و ویرایش کارتها، حذف اعضا و تغییرِ تنظیماتِ برد.",
- "admin-announcement": "اعلان",
- "admin-announcement-active": "فعال کردن اعلانهای سمت سیستم",
- "admin-announcement-title": "اعلان از سوی مدیر",
- "all-boards": "تمام بردها",
- "and-n-other-card": "و __count__ کارت دیگر",
- "and-n-other-card_plural": "و __count__ کارت دیگر",
- "apply": "اعمال",
- "app-is-offline": "در حال بارگزاری لطفا منتظر بمانید. بازخوانی صفحه باعث از بین رفتن اطلاعات می شود. اگر بارگذاری کار نمی کند، لطفا بررسی کنید که این سرور متوقف نشده است.",
- "archive": "انتقال به آرشیو",
- "archive-all": "انتقال همه به آرشیو",
- "archive-board": "انتقال برد به آرشیو",
- "archive-card": "انتقال کارت به آرشیو",
- "archive-list": "انتقال لیست به آرشیو",
- "archive-swimlane": "انتقال مسیر به آرشیو",
- "archive-selection": "انتقال انتخاب شده ها به آرشیو",
- "archiveBoardPopup-title": "آیا برد به آرشیو منتقل شود؟",
- "archived-items": "آرشیو",
- "archived-boards": "بردهای داخل آرشیو",
- "restore-board": "بازیابی برد",
- "no-archived-boards": "هیچ بردی داخل آرشیو نیست.",
- "archives": "آرشیو",
- "template": "قالب",
- "templates": "قالبها",
- "assign-member": "انتصاب عضو",
- "attached": "ضمیمه شده",
- "attachment": "ضمیمه",
- "attachment-delete-pop": "حذف پیوست دایمی و بی بازگشت خواهد بود.",
- "attachmentDeletePopup-title": "آیا می خواهید ضمیمه را حذف کنید؟",
- "attachments": "ضمائم",
- "auto-watch": "اضافه شدن خودکار دیدهبانی بردها زمانی که ایجاد میشوند",
- "avatar-too-big": "تصویر آواتار بسیار بزرگ است (حداکثر ۵۲۰ کیلوبایت)",
- "back": "بازگشت",
- "board-change-color": "تغییر رنگ",
- "board-nb-stars": "%s ستاره",
- "board-not-found": "برد مورد نظر پیدا نشد",
- "board-private-info": "این برد خصوصی خواهد بود.",
- "board-public-info": "این برد عمومی خواهد بود.",
- "boardChangeColorPopup-title": "تغییر پس زمینه برد",
- "boardChangeTitlePopup-title": "تغییر نام برد",
- "boardChangeVisibilityPopup-title": "تغییر وضعیت نمایش",
- "boardChangeWatchPopup-title": "تغییر دیدهبانی",
- "boardMenuPopup-title": "تنظیمات برد",
- "boardChangeViewPopup-title": "نمایش برد",
- "boards": "بردها",
- "board-view": "نمایش برد",
- "board-view-cal": "تقویم",
- "board-view-swimlanes": "مسیرها",
- "board-view-collapse": "جمع کردن",
- "board-view-gantt": "گانت",
- "board-view-lists": "لیستها",
- "bucket-example": "برای مثال چیزی شبیه \"لیست سطل\"",
- "cancel": "انصراف",
- "card-archived": "این کارت به آرشیو انتقال دادهشدهاست.",
- "board-archived": "این برد به آرشیو انتقال دادهشدهاست.",
- "card-comments-title": "این کارت دارای %s نظر است.",
- "card-delete-notice": "حذف دائمی. تمامی موارد مرتبط با این کارت از بین خواهند رفت.",
- "card-delete-pop": "همه اقدامات از این پردازه حذف خواهد شد و امکان بازگرداندن کارت وجود نخواهد داشت.",
- "card-delete-suggest-archive": "شما می توانید کارت را به بایگانی منتقل کنید تا آن را از هیئت مدیره حذف کنید و فعالیت را حفظ کنید.",
- "card-due": "موعد",
- "card-due-on": "موعد تا",
- "card-spent": "زمان صرف شده",
- "card-edit-attachments": "ویرایش ضمائم",
- "card-edit-custom-fields": "ویرایش فیلدهای سفارشی",
- "card-edit-labels": "ویرایش لیبلها",
- "card-edit-members": "ویرایش اعضا",
- "card-labels-title": "لیبلهای کارت را تغییر بده.",
- "card-members-title": "اعضا ی برد را از/به کارت حذف/اضافه کنید.",
- "card-start": "شروع",
- "card-start-on": "شروع از",
- "cardAttachmentsPopup-title": "ضمیمه از",
- "cardCustomField-datePopup-title": "تغییر تاریخ",
- "cardCustomFieldsPopup-title": "ویرایش فیلدهای سفارشی",
- "cardStartVotingPopup-title": "شروع یک رایگیری",
- "positiveVoteMembersPopup-title": "طرفداران",
- "negativeVoteMembersPopup-title": "مخالفان",
- "card-edit-voting": "ویرایش رایگیری",
- "editVoteEndDatePopup-title": "تغییر تاریخ پایان رایگیری",
- "allowNonBoardMembers": "اجازه دادن به همه کاربران وارد شده",
- "vote-question": "سوال رای گیری",
- "vote-public": "نمایش چه کسی به چه رای داده است",
- "vote-for-it": "برای این",
- "vote-against": "بر خلاف",
- "deleteVotePopup-title": "رایگیری حذف شود؟",
- "vote-delete-pop": "حذف کردن به صورت دائمی هست و قابل برگشت نیست. تمام اطلاعات مرتبط با این رایگیری حذف خواهدشد.",
- "cardDeletePopup-title": "آیا می خواهید کارت را حذف کنید؟",
- "cardDetailsActionsPopup-title": "اعمال کارت",
- "cardLabelsPopup-title": "لیبل ها",
- "cardMembersPopup-title": "اعضا",
- "cardMorePopup-title": "بیشتر",
- "cardTemplatePopup-title": "ایجاد قالب",
- "cards": "کارتها",
- "cards-count": "کارتها",
- "casSignIn": "ورود با استفاده از CAS",
- "cardType-card": "کارت",
- "cardType-linkedCard": "کارتهای لینکشده",
- "cardType-linkedBoard": "برد لینکشده",
- "change": "تغییر",
- "change-avatar": "تغییر آواتار",
- "change-password": "تغییر کلمه عبور",
- "change-permissions": "تغییر دسترسیها",
- "change-settings": "تغییر تنظیمات",
- "changeAvatarPopup-title": "تغییر آواتار",
- "changeLanguagePopup-title": "تغییر زبان",
- "changePasswordPopup-title": "تغییر کلمه عبور",
- "changePermissionsPopup-title": "تغییر دسترسیها",
- "changeSettingsPopup-title": "تغییر تنظیمات",
- "subtasks": "زیر وظیفه",
- "checklists": "چکلیستها",
- "click-to-star": "با کلیک کردن ستاره بدهید",
- "click-to-unstar": "با کلیک کردن ستاره را کم کنید",
- "clipboard": "ذخیره در حافظه ویا بردار-رهاکن",
- "close": "بستن",
- "close-board": "بستن برد",
- "close-board-pop": "شما می توانید با کلیک کردن بر روی دکمه «بایگانی» از صفحه هدر، صفحه را بازگردانید.",
- "color-black": "مشکی",
- "color-blue": "آبی",
- "color-crimson": "قرمز",
- "color-darkgreen": "سبز تیره",
- "color-gold": "طلایی",
- "color-gray": "خاکستری",
- "color-green": "سبز",
- "color-indigo": "نیلی",
- "color-lime": "لیمویی",
- "color-magenta": "ارغوانی",
- "color-mistyrose": "صورتی روشن",
- "color-navy": "لاجوردی",
- "color-orange": "نارنجی",
- "color-paleturquoise": "فیروزهای کدر",
- "color-peachpuff": "هلویی",
- "color-pink": "صورتی",
- "color-plum": "بنفش کدر",
- "color-purple": "بنفش",
- "color-red": "قرمز",
- "color-saddlebrown": "کاکائویی",
- "color-silver": "نقرهای",
- "color-sky": "آبی آسمانی",
- "color-slateblue": "آبی فولادی",
- "color-white": "سفید",
- "color-yellow": "زرد",
- "unset-color": "بازنشانی",
- "comment": "نظر",
- "comment-placeholder": "درج نظر",
- "comment-only": "فقط نظر",
- "comment-only-desc": "فقط میتواند روی کارتها نظر دهد.",
- "no-comments": "هیچ کامنتی موجود نیست",
- "no-comments-desc": "نظرات و فعالیت ها را نمی توان دید.",
- "worker": "کارگر",
- "worker-desc": "تنها میتوانید کارتها را جابجا کنید، آنها را به خود محول کنید و نظر دهید.",
- "computer": "رایانه",
- "confirm-subtask-delete-dialog": "از حذف این زیر وظیفه اطمینان دارید؟",
- "confirm-checklist-delete-dialog": "آیا مطمئنید میخواهید چکلیست را حذف کنید؟",
- "copy-card-link-to-clipboard": "درج پیوند کارت در حافظه",
- "linkCardPopup-title": "ارتباط دادن کارت",
- "searchElementPopup-title": "جستجو",
- "copyCardPopup-title": "کپی کارت",
- "copyChecklistToManyCardsPopup-title": "کپی قالب چکلیست به کارتهای متعدد",
- "copyChecklistToManyCardsPopup-instructions": "عنوان و توضیحات کارت مقصد در این قالب JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "ایجاد",
- "createBoardPopup-title": "ایجاد برد",
- "chooseBoardSourcePopup-title": "بارگذاری برد",
- "createLabelPopup-title": "ایجاد لیبل",
- "createCustomField": "ایجاد فیلد",
- "createCustomFieldPopup-title": "ایجاد فیلد",
- "current": "جاری",
- "custom-field-delete-pop": "این اقدام فیلد سفارشی را بهمراه تمامی تاریخچه آن از کارت ها پاک می کند و برگشت پذیر نمی باشد",
- "custom-field-checkbox": "جعبه انتخابی",
- "custom-field-currency": "واحد پولی",
- "custom-field-currency-option": "کد واحد پولی",
- "custom-field-date": "تاریخ",
- "custom-field-dropdown": "لیست افتادنی",
- "custom-field-dropdown-none": "(هیچ)",
- "custom-field-dropdown-options": "لیست امکانات",
- "custom-field-dropdown-options-placeholder": "کلید Enter را جهت افزودن امکانات بیشتر فشار دهید",
- "custom-field-dropdown-unknown": "(ناشناخته)",
- "custom-field-number": "عدد",
- "custom-field-text": "متن",
- "custom-fields": "فیلدهای شخصی",
- "date": "تاریخ",
- "decline": "رد",
- "default-avatar": "آواتار پیشفرض",
- "delete": "حذف",
- "deleteCustomFieldPopup-title": "آیا فیلد سفارشی پاک شود؟",
- "deleteLabelPopup-title": "آیا می خواهید لیبل را حذف کنید؟",
- "description": "توضیحات",
- "disambiguateMultiLabelPopup-title": "عمل ابهام زدایی از لیبل",
- "disambiguateMultiMemberPopup-title": "عمل ابهام زدایی از کاربر",
- "discard": "لغو",
- "done": "انجام شده",
- "download": "دریافت",
- "edit": "ویرایش",
- "edit-avatar": "تغییر آواتار",
- "edit-profile": "ویرایش پروفایل",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "تغییر تاریخ آغاز",
- "editCardDueDatePopup-title": "تغییر تاریخ پایان",
- "editCustomFieldPopup-title": "ویرایش فیلد",
- "editCardSpentTimePopup-title": "تغییر زمان صرف شده",
- "editLabelPopup-title": "تغیر لیبل",
- "editNotificationPopup-title": "اصلاح اعلان",
- "editProfilePopup-title": "ویرایش پروفایل",
- "email": "پست الکترونیک",
- "email-enrollAccount-subject": "یک حساب کاربری برای شما در __siteName__ ایجاد شد",
- "email-enrollAccount-text": "سلام __user__ \nبرای شروع به استفاده از این سرویس برروی آدرس زیر کلیک کنید.\n__url__\nبا تشکر.",
- "email-fail": "عدم موفقیت در فرستادن رایانامه",
- "email-fail-text": "خطا در تلاش برای فرستادن رایانامه",
- "email-invalid": "رایانامه نادرست",
- "email-invite": "دعوت از طریق رایانامه",
- "email-invite-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
- "email-invite-text": "__User__ عزیز\n __inviter__ شما را به عضویت برد \"__board__\" برای همکاری دعوت کرده است.\nلطفا لینک زیر را دنبال کنید، باتشکر:\n__url__",
- "email-resetPassword-subject": "تنظیم مجدد کلمه عبور در __siteName__",
- "email-resetPassword-text": "سلام __user__\nجهت تنظیم مجدد کلمه عبور آدرس زیر را دنبال نمایید، باتشکر:\n__url__",
- "email-sent": "نامه الکترونیکی فرستاده شد",
- "email-verifyEmail-subject": "تایید آدرس الکترونیکی شما در __siteName__",
- "email-verifyEmail-text": "سلام __user__\nبه منظور تایید آدرس الکترونیکی حساب خود، آدرس زیر را دنبال نمایید، باتشکر:\n__url__.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "برد مورد نظر وجود ندارد",
- "error-board-notAdmin": "شما جهت انجام آن باید مدیر برد باشید",
- "error-board-notAMember": "شما برای انجام آن، باید عضو این برد باشید",
- "error-json-malformed": "متن در قالب صحیح Json نمی باشد.",
- "error-json-schema": "دادههای Json شما، شامل اطلاعات صحیح در قالب درستی نمیباشد.",
- "error-csv-schema": "مقادیر موجود در فایل CSV (مقادیر جدا شده توسط کاما)/TSV (مقادیر جدا شده تب) در قالب درستی نمیباشد.",
- "error-list-doesNotExist": "این لیست موجود نیست",
- "error-user-doesNotExist": "این کاربر وجود ندارد",
- "error-user-notAllowSelf": "عدم امکان دعوت خود",
- "error-user-notCreated": "این کاربر ایجاد نشده است",
- "error-username-taken": "این نام کاربری استفاده شده است",
- "error-email-taken": "رایانامه توسط گیرنده دریافت شده است",
- "export-board": "انتقال به بیرون برد",
- "export-board-json": "اکسپورت برد به JSON",
- "export-board-csv": "اکسپورت برد به CSV",
- "export-board-tsv": "اکسپورت برد به TSV",
- "export-board-html": "اکسپورت برد به HTML",
- "exportBoardPopup-title": "انتقال به بیرون برد",
- "sort": "مرتب سازی",
- "sort-desc": "برای مرتب سازی لیست کلیک کنید",
- "list-sort-by": "مرتب سازی لیست بر اساس:",
- "list-label-modifiedAt": "زمان دسترسی قبلی",
- "list-label-title": "نام لیست",
- "list-label-sort": "دلخواه شما",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "فیلتر",
- "filter-cards": "فیلتر کارتها یا لیستها",
- "list-filter-label": "فیلتر لیست بر اساس عنوان",
- "filter-clear": "حذف فیلتر",
- "filter-labels-label": "فیلتر کردن با لیبل",
- "filter-no-label": "بدون لیبل",
- "filter-member-label": "فیلتر کردن با عضو",
- "filter-no-member": "بدون عضو",
- "filter-assignee-label": "فیلتر کردن با مسئول",
- "filter-no-assignee": "منتصبنشده",
- "filter-custom-fields-label": "فیلتر کردن با فیلدهای سفارشی",
- "filter-no-custom-fields": "هیچ فیلد سفارشی ای وجود ندارد",
- "filter-show-archive": "نمایش لیستهای آرشیو شده",
- "filter-hide-empty": "مخفی کردن لیستهای خالی",
- "filter-on": "فیلتر فعال است",
- "filter-on-desc": "شما درحال فیلتر کارتهای این برد هستید. برای ویرایش فیلتر کلیک نمایید.",
- "filter-to-selection": "فیلتر برای موارد انتخابی",
- "other-filters-label": "فیلترهای دیگر",
- "advanced-filter-label": "فیلتر پیشرفته",
- "advanced-filter-description": "فیلتر پیشرفته اجازه می دهد تا برای نوشتن رشته حاوی اپراتورهای زیر: ==! = <=> = && || () یک فضای به عنوان یک جداساز بین اپراتورها استفاده می شود. با تایپ کردن نام ها و مقادیر آنها می توانید برای تمام زمینه های سفارشی فیلتر کنید. به عنوان مثال: Field1 == Value1. نکته: اگر فیلدها یا مقادیر حاوی فضاها باشند، شما باید آنها را به یک نقل قول کپسول کنید. برای مثال: 'فیلد 1' == 'مقدار 1'. برای تک تک کاراکترهای کنترل (\\\\) که می توانید از آنها استفاده کنید، می توانید از \\ استفاده کنید. به عنوان مثال: Field1 == I \\ 'm. همچنین شما می توانید شرایط مختلف را ترکیب کنید. برای مثال: F1 == V1 || F1 == V2. به طور معمول همه اپراتورها از چپ به راست تفسیر می شوند. شما می توانید سفارش را با قرار دادن براکت تغییر دهید. برای مثال: F1 == V1 && (F2 == V2 || F2 == V3). همچنین می توانید فیلدهای متنی را با استفاده از regex جستجو کنید: F1 == /Tes.*/i",
- "fullname": "نام و نام خانوادگی",
- "header-logo-title": "بازگشت به صفحه بردها.",
- "hide-system-messages": "عدم نمایش پیامهای سیستمی",
- "headerBarCreateBoardPopup-title": "ایجاد برد",
- "home": "خانه",
- "import": "وارد کردن",
- "impersonate-user": "جعل هویت کاربر",
- "link": "ارتباط",
- "import-board": "وارد کردن برد",
- "import-board-c": "وارد کردن برد",
- "import-board-title-trello": "وارد کردن برد از Trello",
- "import-board-title-wekan": "بارگذاری برد ها از آخرین خروجی",
- "import-board-title-csv": "وارد کردن برد از CSV/TSV",
- "from-trello": "از Trello",
- "from-wekan": "از آخرین خروجی",
- "from-csv": "از CSV/TSV",
- "import-board-instruction-trello": "در Trello-ی خود به 'Menu'، 'More'، 'Print'، 'Export to JSON رفته و متن نهایی را دراینجا وارد نمایید.",
- "import-board-instruction-csv": "مقادیر جداشده با کاما (CSV)/مقادیر جداشده با تبِ (TSV) خود را پیست کنید.",
- "import-board-instruction-wekan": "در هیئت مدیره خود، به 'Menu' بروید، سپس 'Export Board'، و متن را در فایل دانلود شده کپی کنید.",
- "import-board-instruction-about-errors": "اگر هنگام بازگردانی با خطا مواجه شدید بعضی اوقات بازگردانی انجام می شود و تمامی برد ها در داخل صفحه All Boards هستند",
- "import-json-placeholder": "اطلاعات Json معتبر خود را اینجا وارد کنید.",
- "import-csv-placeholder": "اطلاعات CSV/TSV خود را اینجا پیست کنید.",
- "import-map-members": "نگاشت اعضا",
- "import-members-map": "برد ها بازگردانده شده تعدادی کاربر دارند . لطفا کاربر های که می خواهید را انتخاب نمایید",
- "import-show-user-mapping": "بررسی نقشه کاربران",
- "import-user-select": "کاربر فعلی خود را انتخاب نمایید اگر میخواهیپ بعنوان کاربر باشد",
- "importMapMembersAddPopup-title": "انتخاب کاربر",
- "info": "نسخه",
- "initials": "تخصیصات اولیه",
- "invalid-date": "تاریخ نامعتبر",
- "invalid-time": "زمان نامعتبر",
- "invalid-user": "کاربر نامعتبر",
- "joined": "متصل",
- "just-invited": "هم اکنون، شما به این برد دعوت شدهاید.",
- "keyboard-shortcuts": "میانبر کلیدها",
- "label-create": "ایجاد لیبل",
- "label-default": "%s لیبل(پیش فرض)",
- "label-delete-pop": "این اقدام، لیبل را از همه کارتها پاک خواهد کرد و تاریخچه آن را نیز از بین میبرد.",
- "labels": "لیبل ها",
- "language": "زبان",
- "last-admin-desc": "شما نمی توانید نقش ـroleـ را تغییر دهید چراکه باید حداقل یک مدیری وجود داشته باشد.",
- "leave-board": "خروج از برد",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "ارجاع به این کارت",
- "list-archive-cards": "انتقال تمامی کارت های این لیست به آرشیو",
- "list-archive-cards-pop": "این کارتباعث حذف تمامی کارت های این لیست از برد می شود . برای مشاهده کارت ها در آرشیو و برگرداندن آنها به برد بر بروی \"Menu\">\"Archive\" کلیک نمایید",
- "list-move-cards": "انتقال تمام کارت های این لیست",
- "list-select-cards": "انتخاب تمام کارت های این لیست",
- "set-color-list": "انتخاب رنگ",
- "listActionPopup-title": "لیست اقدامات",
- "settingsUserPopup-title": "تنظیمات کاربر",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "اضافه کردن مسیر",
- "listImportCardPopup-title": "وارد کردن کارت Trello",
- "listImportCardsTsvPopup-title": "وارد کردن CSV/TSV اکسل",
- "listMorePopup-title": "بیشتر",
- "link-list": "پیوند به این فهرست",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "شما می توانید لیست را به آرشیو انتقال دهید تا آن را از برد حذف نمایید و فعالیت های خود را حفظ نمایید",
- "lists": "لیست ها",
- "swimlanes": "Swimlanes",
- "log-out": "خروج",
- "log-in": "ورود",
- "loginPopup-title": "ورود",
- "memberMenuPopup-title": "تنظیمات اعضا",
- "members": "اعضا",
- "menu": "منو",
- "move-selection": "حرکت مورد انتخابی",
- "moveCardPopup-title": "حرکت کارت",
- "moveCardToBottom-title": "انتقال به پایین",
- "moveCardToTop-title": "انتقال به بالا",
- "moveSelectionPopup-title": "حرکت مورد انتخابی",
- "multi-selection": "امکان چند انتخابی",
- "multi-selection-label": "تغییر لیبل انتخابشدهها",
- "multi-selection-member": "تغییر عضو برای انتخابشدهها",
- "multi-selection-on": "حالت چند انتخابی روشن است",
- "muted": "بی صدا",
- "muted-info": "شما هیچگاه از تغییرات این برد مطلع نخواهید شد",
- "my-boards": "بردهای من",
- "name": "نام",
- "no-archived-cards": "هیچ کارتی در آرشیو موجود نمی باشد",
- "no-archived-lists": "هیچ لیستی در آرشیو موجود نمی باشد",
- "no-archived-swimlanes": "هیچ مسیری در آرشیو موجود نمی باشد",
- "no-results": "بدون نتیجه",
- "normal": "عادی",
- "normal-desc": "امکان نمایش و تنظیم کارت بدون امکان تغییر تنظیمات",
- "not-accepted-yet": "دعوت نامه هنوز پذیرفته نشده است",
- "notify-participate": "اطلاع رسانی از هرگونه تغییر در کارتهایی که ایجاد کرده اید ویا عضو آن هستید",
- "notify-watch": "اطلاع رسانی از هرگونه تغییر در بردها، لیستها یا کارتهایی که از آنها دیدهبانی میکنید",
- "optional": "انتخابی",
- "or": "یا",
- "page-maybe-private": "این صفحه ممکن است خصوصی باشد. شما باورود میتوانید آن را ببینید.",
- "page-not-found": "صفحه پیدا نشد.",
- "password": "کلمه عبور",
- "paste-or-dragdrop": "جهت چسباندن، یا برداشتن-رهاسازی فایل تصویر به آن (تصویر)",
- "participating": "شرکت کنندگان",
- "preview": "پیشنمایش",
- "previewAttachedImagePopup-title": "پیشنمایش",
- "previewClipboardImagePopup-title": "پیشنمایش",
- "private": "خصوصی",
- "private-desc": "این برد خصوصی است. فقط افراد اضافه شده به برد میتوانند مشاهده و ویرایش کنند.",
- "profile": "حساب کاربری",
- "public": "عمومی",
- "public-desc": "این برد عمومی است. برای هر کسی با آدرس و یا جستجو در موتورها مانند گوگل قابل مشاهده است. فقط افرادی که به برد اضافه شدهاند امکان ویرایش دارند.",
- "quick-access-description": "جهت افزودن یک برد به اینجا، آن را ستاره دار نمایید.",
- "remove-cover": "حذف کاور",
- "remove-from-board": "حذف از برد",
- "remove-label": "حذف لیبل",
- "listDeletePopup-title": "حذف فهرست؟",
- "remove-member": "حذف عضو",
- "remove-member-from-card": "حذف از کارت",
- "remove-member-pop": "آیا __name__ (__username__) را از __boardTitle__ حذف میکنید؟ کاربر از تمام کارتها در این برد حذف خواهد شد. آنها از این اقدام مطلع خواهند شد.",
- "removeMemberPopup-title": "آیا می خواهید کاربر را حذف کنید؟",
- "rename": "تغیر نام",
- "rename-board": "تغییر نام برد",
- "restore": "بازیابی",
- "save": "ذخیره",
- "search": "جستجو",
- "rules": "قواعد",
- "search-cards": "جستجو در عناوین، توضیحات و فیلدهای سفارشیِ کارتها/لیستها در این برد",
- "search-example": "کلمه مورد جستجو را وارد و اینتر را بزنید",
- "select-color": "انتخاب رنگ",
- "select-board": "انتخاب برد",
- "set-wip-limit-value": "تعیین بیشینه تعداد وظایف در این فهرست",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "انتصاب خود به کارت فعلی",
- "shortcut-autocomplete-emoji": "تکمیل خودکار شکلکها",
- "shortcut-autocomplete-members": "تکمیل خودکار کاربرها",
- "shortcut-clear-filters": "حذف تمامی صافیها ـ فیلترها ـ",
- "shortcut-close-dialog": "بستن محاوره",
- "shortcut-filter-my-cards": "کارت های من",
- "shortcut-show-shortcuts": "بالا آوردن میانبر این لیست",
- "shortcut-toggle-filterbar": "ضامن نوار جداکننده فیلتر",
- "shortcut-toggle-searchbar": "کلید نوار جستجوی جانبی",
- "shortcut-toggle-sidebar": "ضامن نوار جداکننده برد",
- "show-cards-minimum-count": "نمایش تعداد کارتها اگر لیست شامل بیشتراز",
- "sidebar-open": "بازکردن جداکننده",
- "sidebar-close": "بستن جداکننده",
- "signupPopup-title": "ایجاد یک کاربر",
- "star-board-title": "برای ستاره دار کردن این برد کلیک کنید. این در بالای لیست بردهای شما نمایش داده خواهد شد.",
- "starred-boards": "بردهای ستاره دار",
- "starred-boards-description": "بردهای ستاره دار در بالای لیست بردها نمایش داده میشود.",
- "subscribe": "عضوشدن",
- "team": "تیم",
- "this-board": "این برد",
- "this-card": "این کارت",
- "spent-time-hours": "زمان صرف شده (ساعت)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "زمان",
- "title": "عنوان",
- "tracking": "پیگردی",
- "tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد",
- "type": "نوع",
- "unassign-member": "عدم انتصاب کاربر",
- "unsaved-description": "شما توضیحات ذخیره نشده دارید.",
- "unwatch": "عدم دیدهبانی",
- "upload": "آپلود",
- "upload-avatar": "ارسال آواتار",
- "uploaded-avatar": "آواتار آپلود شد",
- "custom-top-left-corner-logo-image-url": "آدرس تصویر لوگوی سفارشی در گوشه چپ و بالا",
- "custom-top-left-corner-logo-link-url": "آدرس لینک لوگوی سفارشی در گوشه چپ و بالا",
- "custom-top-left-corner-logo-height": "ارتفاع لوگوی سفارشی در گوشه چپ و بالا. پیشفرض: ۲۷",
- "custom-login-logo-image-url": "آدرس تصویر لوگوی سفارشی در لاگین",
- "custom-login-logo-link-url": "آدرس لینک لوگوی سفارشی در لاگین",
- "text-below-custom-login-logo": "متن پایین لوگوی سفارشی در فرم لاگین",
- "username": "نام کاربری",
- "view-it": "مشاهده",
- "warn-list-archived": "اخطار: این کارت در یک لیست در آرشیو موجود میباشد",
- "watch": "دیدهبانی",
- "watching": "درحال دیدهبانی",
- "watching-info": "شما از هر تغییری در این برد آگاه خواهید شد",
- "welcome-board": "برد خوشآمدگویی",
- "welcome-swimlane": "نقطع عطف 1",
- "welcome-list1": "پایه ای ها",
- "welcome-list2": "پیشرفته",
- "card-templates-swimlane": "قالبهای کارت",
- "list-templates-swimlane": "لیست قالبها",
- "board-templates-swimlane": "قالبهای برد",
- "what-to-do": "چه کاری می خواهید انجام دهید؟",
- "wipLimitErrorPopup-title": "محدودی نامعتبر WIP",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "پیشخوان مدیریتی",
- "settings": "تنظمات",
- "people": "افراد",
- "registration": "ثبت نام",
- "disable-self-registration": "غیرفعالسازی خودثبتنامی",
- "invite": "دعوت",
- "invite-people": "دعوت از افراد",
- "to-boards": "به برد(ها)",
- "email-addresses": "نشانی رایانامه",
- "smtp-host-description": "آدرس سرور SMTP ای که پست الکترونیکی شما برروی آن است",
- "smtp-port-description": "شماره درگاه ـPortـ ای که سرور SMTP شما جهت ارسال از آن استفاده می کند",
- "smtp-tls-description": "پشتیبانی از TLS برای سرور SMTP",
- "smtp-host": "آدرس سرور SMTP",
- "smtp-port": "شماره درگاه ـPortـ سرور SMTP",
- "smtp-username": "نام کاربری",
- "smtp-password": "کلمه عبور",
- "smtp-tls": "پشتیبانی از TLS",
- "send-from": "از",
- "send-smtp-test": "فرستادن رایانامه آزمایشی به خود",
- "invitation-code": "کد دعوت نامه",
- "email-invite-register-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
- "email-invite-register-text": "__user__ عزیز,\n\n__inviter__ شما را به این برد دعوت کرده است.\n\nلطفا روی لینک زیر کلیک نمایید:\n__url__\n\nو کد معرفی شما: __icode__\n\nبا تشکر.",
- "email-smtp-test-subject": "SMTP تست ایمیل",
- "email-smtp-test-text": "با موفقیت، یک رایانامه را فرستادید",
- "error-invitation-code-not-exist": "چنین کد دعوتی یافت نشد",
- "error-notAuthorized": "شما مجاز به دیدن این صفحه نیستید.",
- "webhook-title": "نام وبهوک",
- "webhook-token": "توکن (انتخابی برای اعتبارسنجی)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "وبهوک two-way",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "فیلتر عنوان کارت",
- "disable-webhook": "حذف این وبهوک",
- "global-webhook": "وبهوکهای سراسری",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(ناشناخته)",
- "Node_version": "نسخه Node",
- "Meteor_version": "نسخه متئور",
- "MongoDB_version": "ورژن MongoDB",
- "MongoDB_storage_engine": "موتور ذخیره سازی MongoDB",
- "MongoDB_Oplog_enabled": "MongoDB Oplog فعال است",
- "OS_Arch": "معماری سیستمعامل",
- "OS_Cpus": "تعدا سیپییو سیستمعامل",
- "OS_Freemem": "حافظه سیستمعامل",
- "OS_Loadavg": "میانگین لود سیستمعامل",
- "OS_Platform": "پلتفرم سیستمعامل",
- "OS_Release": "انتشار سیستمعامل",
- "OS_Totalmem": "حافظه کل سیستمعامل",
- "OS_Type": "نوع سیستمعامل",
- "OS_Uptime": "آپتایم سیستمعامل",
- "days": "روزها",
- "hours": "ساعت",
- "minutes": "دقیقه",
- "seconds": "ثانیه",
- "show-field-on-card": "این فیلد را در کارت نمایش بده",
- "automatically-field-on-card": "این فیلد را اتوماتیک در همهٔ کارتها اضافه کن",
- "showLabel-field-on-card": "نمایش لیبل فیلد در کارتهای کوچک",
- "yes": "بله",
- "no": "خیر",
- "accounts": "حسابها",
- "accounts-allowEmailChange": "اجازه تغییر ایمیل",
- "accounts-allowUserNameChange": "اجازه تغییر نام کاربری",
- "createdAt": "ساخته شده در",
- "verified": "معتبر",
- "active": "فعال",
- "card-received": "رسیده",
- "card-received-on": "رسیده در",
- "card-end": "پایان",
- "card-end-on": "پایان در",
- "editCardReceivedDatePopup-title": "تغییر تاریخ رسید",
- "editCardEndDatePopup-title": "تغییر تاریخ پایان",
- "setCardColorPopup-title": "انتخاب رنگ",
- "setCardActionsColorPopup-title": "انتخاب کردن رنگ",
- "setSwimlaneColorPopup-title": "انتخاب کردن رنگ",
- "setListColorPopup-title": "انتخاب کردن رنگ",
- "assigned-by": "محول شده توسط",
- "requested-by": "تقاضا شده توسط",
- "board-delete-notice": "حذف دائمی است شما تمام لیست ها، کارت ها و اقدامات مرتبط با این برد را از دست خواهید داد.",
- "delete-board-confirm-popup": "تمام لیست ها، کارت ها، لیبل ها و فعالیت ها حذف خواهند شد و شما نمی توانید محتوای برد را بازیابی کنید. هیچ واکنشی وجود ندارد",
- "boardDeletePopup-title": "حذف برد؟",
- "delete-board": "حذف برد",
- "default-subtasks-board": "زیروظایفِ برد __board__",
- "default": "پیشفرض",
- "queue": "صف",
- "subtask-settings": "تنظیمات زیروظایف",
- "card-settings": "تنظیمات کارت",
- "boardSubtaskSettingsPopup-title": "تنظیمات زیروظایف برد",
- "boardCardSettingsPopup-title": "تنظیمات کارت",
- "deposit-subtasks-board": "افزودن ریزکار به برد:",
- "deposit-subtasks-list": "لیست برای ریزکار های افزوده شده",
- "show-parent-in-minicard": "نمایش خانواده در ریز کارت",
- "prefix-with-full-path": "پیشوند با مسیر کامل",
- "prefix-with-parent": "پیشوند با خانواده",
- "subtext-with-full-path": "زیرنویس با مسیر کامل",
- "subtext-with-parent": "زیرنویس با خانواده",
- "change-card-parent": "تغییرخانواده کارت",
- "parent-card": "کارت پدر",
- "source-board": "برد مرجع",
- "no-parent": "پدر را نمایش نده",
- "activity-added-label": "افزودن لیبل '%s' به %s",
- "activity-removed-label": "حذف لیبل '%s' از %s",
- "activity-delete-attach": "حذف ضمیمه از %s",
- "activity-added-label-card": "لیبل افزودهشده '%s'",
- "activity-removed-label-card": "لیبل حذفشده '%s'",
- "activity-delete-attach-card": "حذف ضمیمه",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "قاعده",
- "r-add-trigger": "افزودن گیره",
- "r-add-action": "افزودن عملیات",
- "r-board-rules": "قواعد برد",
- "r-add-rule": "افزودن قاعده",
- "r-view-rule": "نمایش قاعده",
- "r-delete-rule": "حذف قاعده",
- "r-new-rule-name": "تیتر قاعده جدید",
- "r-no-rules": "بدون قواعد",
- "r-trigger": "تریگر",
- "r-action": "عملیات",
- "r-when-a-card": "زمانی که کارت",
- "r-is": "هست",
- "r-is-moved": "جابهجا شده",
- "r-added-to": "افزودهشده به",
- "r-removed-from": "حذف از",
- "r-the-board": "برد",
- "r-list": "لیست",
- "set-filter": "اضافه کردن فیلتر",
- "r-moved-to": "انتقال به",
- "r-moved-from": "انتقال از",
- "r-archived": "انتقال به آرشیو",
- "r-unarchived": "بازگردانی از آرشیو",
- "r-a-card": "کارت",
- "r-when-a-label-is": "زمانی که لیبل هست",
- "r-when-the-label": "زمانی که لیبل هست",
- "r-list-name": "نام لیست",
- "r-when-a-member": "زمانی که کاربر هست",
- "r-when-the-member": "زمانی که کاربر",
- "r-name": "نام",
- "r-when-a-attach": "زمانی که ضمیمه",
- "r-when-a-checklist": "زمانی که چکلیست هست",
- "r-when-the-checklist": "زمانی که چکلیست",
- "r-completed": "تمام شده",
- "r-made-incomplete": "تمام نشده",
- "r-when-a-item": "زمانی که آیتم چکلیست هست",
- "r-when-the-item": "زمانی که آیتم چکلیست",
- "r-checked": "انتخاب شده",
- "r-unchecked": "لغو انتخاب",
- "r-move-card-to": "انتقال کارت به",
- "r-top-of": "بالای",
- "r-bottom-of": "پایین",
- "r-its-list": "لیست خود",
- "r-archive": "انتقال به آرشیو",
- "r-unarchive": "بازگردانی از آرشیو",
- "r-card": "کارت",
- "r-add": "افزودن",
- "r-remove": "حذف",
- "r-label": "لیبل",
- "r-member": "عضو",
- "r-remove-all": "حذف همه کاربران از کارت",
- "r-set-color": "انتخاب رنگ به",
- "r-checklist": "چکلیست",
- "r-check-all": "انتخاب همه",
- "r-uncheck-all": "لغو انتخاب همه",
- "r-items-check": "آیتمهای چکلیست",
- "r-check": "انتخاب",
- "r-uncheck": "لغو انتخاب",
- "r-item": "آیتم",
- "r-of-checklist": "از چکلیست",
- "r-send-email": "ارسال ایمیل",
- "r-to": "به",
- "r-of": "از",
- "r-subject": "عنوان",
- "r-rule-details": "جزئیات قاعده",
- "r-d-move-to-top-gen": "انتقال کارت به ابتدای لیست خود",
- "r-d-move-to-top-spec": "انتقال کارت به ابتدای لیست",
- "r-d-move-to-bottom-gen": "انتقال کارت به انتهای لیست خود",
- "r-d-move-to-bottom-spec": "انتقال کارت به انتهای لیست",
- "r-d-send-email": "ارسال ایمیل",
- "r-d-send-email-to": "به",
- "r-d-send-email-subject": "عنوان",
- "r-d-send-email-message": "پیام",
- "r-d-archive": "انتقال کارت به آرشیو",
- "r-d-unarchive": "بازگردانی کارت از آرشیو",
- "r-d-add-label": "افزودن لیبل",
- "r-d-remove-label": "حذف لیبل",
- "r-create-card": "ساخت کارت جدید",
- "r-in-list": "در لیست",
- "r-in-swimlane": "در مسیرِ",
- "r-d-add-member": "افزودن عضو",
- "r-d-remove-member": "حذف عضو",
- "r-d-remove-all-member": "حذف تمامی کاربران",
- "r-d-check-all": "انتخاب تمام آیتم های لیست",
- "r-d-uncheck-all": "لغوانتخاب تمام آیتم های لیست",
- "r-d-check-one": "انتخاب آیتم",
- "r-d-uncheck-one": "لغو انتخاب آیتم",
- "r-d-check-of-list": "از چکلیست",
- "r-d-add-checklist": "افزودن چکلیست",
- "r-d-remove-checklist": "حذف چکلیست",
- "r-by": "توسط",
- "r-add-checklist": "افزودن چکلیست",
- "r-with-items": "با آیتمهای",
- "r-items-list": "آیتم1،آیتم2،آیتم3",
- "r-add-swimlane": "افزودن مسیر",
- "r-swimlane-name": "نام مسیر",
- "r-board-note": "نکته: برای نمایش موارد ممکن کادر را خالی بگذارید.",
- "r-checklist-note": "نکته: چکلیستها باید توسط کاما از یکدیگر جدا شوند.",
- "r-when-a-card-is-moved": "زمانی که یک کارت به لیست دیگری منتقل شد",
- "r-set": "تنظیم",
- "r-update": "به روز رسانی",
- "r-datefield": "تاریخ",
- "r-df-start-at": "شروع",
- "r-df-due-at": "ناشی از",
- "r-df-end-at": "پایان",
- "r-df-received-at": "رسیده",
- "r-to-current-datetime": "به تاریخ/زمان فعلی",
- "r-remove-value-from": "حذف مقدار از",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "متد اعتبارسنجی",
- "authentication-type": "نوع اعتبارسنجی",
- "custom-product-name": "نام سفارشی محصول",
- "layout": "لایه",
- "hide-logo": "مخفی سازی نماد",
- "add-custom-html-after-body-start": "افزودن کد های HTML بعد از شروع",
- "add-custom-html-before-body-end": "افزودن کد های HTML قبل از پایان",
- "error-undefined": "یک اشتباه رخ داده شده است",
- "error-ldap-login": "هنگام تلاش برای ورود به یک خطا رخ داد",
- "display-authentication-method": "نمایش نوع اعتبارسنجی",
- "default-authentication-method": "نوع اعتبارسنجی پیشفرض",
- "duplicate-board": "برد تکراری",
- "people-number": "تعدا افراد:",
- "swimlaneDeletePopup-title": "مسیر حذف شود؟",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "بازگردانی همه",
- "delete-all": "حذف همه",
- "loading": "در حال بارگزاری، لطفاً منتظر بمانید.",
- "previous_as": "آخرین زمان بوده",
- "act-a-dueAt": "اصلاح زمان انجام به \nکِی: __timeValue__\nکجا: __card__\n زمان قبلی انجام __timeOldValue__ بوده",
- "act-a-endAt": "زمان پایان ویرایششده به __timeValue__ از (__timeOldValue__)",
- "act-a-startAt": "زمان آغاز ویرایششده به __timeValue__ از (__timeOldValue__)",
- "act-a-receivedAt": "زمان رسیدن ویرایش شده به __timeValue__ از (__timeOldValue__)",
- "a-dueAt": "زمان سررسید ویرایششده به",
- "a-endAt": "زمان پایان ویرایششده به",
- "a-startAt": "زمان شروع ویرایششده به",
- "a-receivedAt": "زمان رسیدن ویرایش شده به",
- "almostdue": "زمان سررسید فعلی %s د رحال رسیدن است",
- "pastdue": "زمان سررسید فعلی %s گذشتهاست",
- "duenow": "زمان سررسید فعلی %s امروز است",
- "act-newDue": "__list__/__card__ اولین یادآوری سررسید در برد [__board__] را دارد",
- "act-withDue": "__list__/__card__ یادآوریهای سررسید [__board__]",
- "act-almostdue": "یاآوری سررسید (__timeValue__) از __card__ در حال رسیدن است",
- "act-pastdue": "یاآوری سررسید (__timeValue__) از __card__ گذشتهاست",
- "act-duenow": "یاآوری سررسید (__timeValue__) از __card__ هماکنون است",
- "act-atUserComment": "به شما در [__board__] __list__/__card__ اشارهشدهاست.",
- "delete-user-confirm-popup": "از حذف این اکانت مطمئن هستید؟ این عملیات برگشتناپذیر است.",
- "accounts-allowUserDelete": "به کاربران اجازه دهید خودشان اکانتشان را حذف کنند",
- "hide-minicard-label-text": "مخفی کردن اسم لیبل مینی کارت",
- "show-desktop-drag-handles": "نمایش دستگیرههای درگکردن دسکتاپ",
- "assignee": "محول شده",
- "cardAssigneesPopup-title": "محولشده",
- "addmore-detail": "افزودن توضیحات کامل تر",
- "show-on-card": "نمایش در کارت",
- "new": "جدید",
- "editUserPopup-title": "ویرایش کاربر",
- "newUserPopup-title": "کاربر جدید",
- "notifications": "اعلانها",
- "view-all": "مشاهده همه",
- "filter-by-unread": "فیلتر با خوانده نشده",
- "mark-all-as-read": "علامت همه به خوانده شده",
- "remove-all-read": "حذف همه خوانده شده",
- "allow-rename": "اجازه تغییر نام",
- "allowRenamePopup-title": "اجازه تغییر نام",
- "start-day-of-week": "تنظیم روز شروع هفته",
- "monday": "دوشنبه",
- "tuesday": "سه شنبه",
- "wednesday": "چهارشنبه",
- "thursday": "پنجشنبه",
- "friday": "جمعه",
- "saturday": "شنبه",
- "sunday": "یکشنبه",
- "status": "وضعیت",
- "swimlane": "مسیر",
- "owner": "صاحب",
- "last-modified-at": "آخرین ویرایش در ",
- "last-activity": "آخرین فعالیت",
- "voting": "رأی دهی",
- "archived": "بایگانی شده",
- "delete-linked-card-before-this-card": "پیش از اینکه کارتهای لینک شده به این کارت را حذف نکنید، نمیتوانید این کارت را حذف کنید.",
- "delete-linked-cards-before-this-list": "پیش از حذف کارتهایی که به کارتهای این لیست لینک شدهاند نمیتوانید این لیست را حذف کنید.",
- "hide-checked-items": "مخفی کردن انتخابشدهها",
- "task": "کار",
- "create-task": "ایجاد کار",
- "ok": "تأیید"
-}
\ No newline at end of file
+ "accept": "تایید",
+ "act-activity-notify": "اعلان فعالیت",
+ "act-addAttachment": "ضمیمه __attachment__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-deleteAttachment": "ضمیمه __attachment__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
+ "act-addSubtask": "زیروظیفه __subtask__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-addLabel": "لیبل __label__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-addedLabel": "لیبل __label__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-removeLabel": "لیبل __label__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
+ "act-removedLabel": "لیبل __label__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
+ "act-addChecklist": "چکلیست __checklist__ به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-addChecklistItem": "آیتم چکلیست __checklistItem__ به چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه شده",
+ "act-removeChecklist": "چکلیست __checklist__ از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
+ "act-removeChecklistItem": "آیتم چکلیست __checklistItem__ از چکلیست __checkList__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف شده",
+ "act-checkedItem": "آیتم چکلیست __checklistItem__ از چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ انتخابشده",
+ "act-uncheckedItem": "آیتم چکلیست __checklistItem__ از چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ از حالت انتخاب خارج شده",
+ "act-completeChecklist": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ کامل شده",
+ "act-uncompleteChecklist": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ ناتمامشده",
+ "act-addComment": "روی کارت __card__ نظر داد: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
+ "act-editComment": "نظر روی کارت __card__ ویرایش شده: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
+ "act-deleteComment": "نظر روی کارت __card__ حذفشده: __comment__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
+ "act-createBoard": "برد __board__ ایجاد شده",
+ "act-createSwimlane": "مسیر __swimlane__ در برد __board__ ایجاد شده",
+ "act-createCard": "کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ ایجاد شده",
+ "act-createCustomField": "فیلد سفارشی __customField__ در برد __board__ ایجاد شده",
+ "act-deleteCustomField": "فیلد سفارشی __customField__ در برد __board__ حذف شده",
+ "act-setCustomField": "فیلد سفارشی __customField__ ویرایش شده: __customFieldValue__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__",
+ "act-createList": "لیست __list__ به برد __board__ اضافه شده",
+ "act-addBoardMember": "عضو __member__ به برد __board__ اضافه شده",
+ "act-archivedBoard": "برد __board__ به آرشیو منتقل شد",
+ "act-archivedCard": "کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ آرشیو شده",
+ "act-archivedList": "لیست __list__ در مسیر __swimlane__ در برد __board__ آرشیو شده",
+ "act-archivedSwimlane": "مسیر __swimlane__ \\در برد __board__ آرشیو شده",
+ "act-importBoard": "برد __board__ وارد شده",
+ "act-importCard": "کارت __card__ را به لیست __list__ در مسیر __swimlane__ در برد __board__ وارد کرد",
+ "act-importList": "لیست __list__ را به مسیر __swimlane__ در برد __board__ وارد کرد",
+ "act-joinMember": "عضو __member__ را به کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ اضافه کرد",
+ "act-moveCard": "کارت __card__ را در برد __board__ از لیست __oldList__ در مسیر __oldSwimlane__ به لیست __list__ در مسیر __swimlane__ منتقل کرد",
+ "act-moveCardToOtherBoard": "کارت __card__ را از لیست __oldList__ در مسیر __oldSwimlane__ در برد __oldBoard__ به لیست __list__ در مسیر __swimlane__ در برد __board__ منتقل کرد",
+ "act-removeBoardMember": "عضو __member__ را از برد __board__ حذف کرد",
+ "act-restoredCard": "کارت __card__ را به لیست __list__ در مسیر __swimlane__ در برد __board__ بازگرداند",
+ "act-unjoinMember": "عضو __member__ را از کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ حذف کرد",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "اعمال",
+ "activities": "فعالیتها",
+ "activity": "فعالیت",
+ "activity-added": "%s به %s اضافه شد",
+ "activity-archived": "%s به آرشیو انتقال یافت",
+ "activity-attached": "%s به %s پیوست شد",
+ "activity-created": "%s ایجاد شد",
+ "activity-customfield-created": " فیلد سفارشی %s ایجاد شد",
+ "activity-excluded": "%s از %s مستثنی گردید",
+ "activity-imported": "%s از %s وارد %s شد",
+ "activity-imported-board": "%s از %s وارد شد",
+ "activity-joined": "اتصال به %s",
+ "activity-moved": "%s از %s به %s منتقل شد",
+ "activity-on": "%s",
+ "activity-removed": "%s از %s حذف شد",
+ "activity-sent": "ارسال %s به %s",
+ "activity-unjoined": "قطع اتصال %s",
+ "activity-subtask-added": "زیروظیفه به %s اضافه شد",
+ "activity-checked-item": " %s مورد در چکلیست %s از %s انتخابشده",
+ "activity-unchecked-item": " %s مورد در چکلیست %s از %s انتخابنشده",
+ "activity-checklist-added": "چکلیست به %s اضافه شد",
+ "activity-checklist-removed": "یک چکلیست از %s حذف گردید",
+ "activity-checklist-completed": "چکلیست %s از %s کامل شدهاست",
+ "activity-checklist-uncompleted": "چکلیست %s از %s کامل نشدهاست",
+ "activity-checklist-item-added": "آیتم چکلیست به '%s' در %s اضافه شده",
+ "activity-checklist-item-removed": "یک آیتم چکلیست از '%s' در %s حذف شده.",
+ "add": "افزودن",
+ "activity-checked-item-card": " %s در چکلیست %s انتخابشده",
+ "activity-unchecked-item-card": "%s در چکلیست %s از حالت انتخاب خارج شده",
+ "activity-checklist-completed-card": "چکلیست __checklist__ در کارت __card__ در لیست __list__ در مسیر __swimlane__ در برد __board__ کامل شده",
+ "activity-checklist-uncompleted-card": "چکلیست %s تمام نشده ",
+ "activity-editComment": "%s نظر ویرایش شد ",
+ "activity-deleteComment": "%s نظر حذف شد ",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "افزودن ضمیمه",
+ "add-board": "افزودن برد",
+ "add-card": "افزودن کارت",
+ "add-swimlane": "افزودن مسیر شنا",
+ "add-subtask": "افزودن زیر وظیفه",
+ "add-checklist": "افزودن چکلیست",
+ "add-checklist-item": "افزودن مورد به چکلیست",
+ "add-cover": "افزودن کاور",
+ "add-label": "افزودن لیبل",
+ "add-list": "افزودن لیست",
+ "add-members": "افزودن اعضا",
+ "added": "اضافه گردید",
+ "addMemberPopup-title": "اعضا",
+ "admin": "مدیر",
+ "admin-desc": "امکان دیدن و ویرایش کارتها، حذف اعضا و تغییرِ تنظیماتِ برد.",
+ "admin-announcement": "اعلان",
+ "admin-announcement-active": "فعال کردن اعلانهای سمت سیستم",
+ "admin-announcement-title": "اعلان از سوی مدیر",
+ "all-boards": "تمام بردها",
+ "and-n-other-card": "و __count__ کارت دیگر",
+ "and-n-other-card_plural": "و __count__ کارت دیگر",
+ "apply": "اعمال",
+ "app-is-offline": "در حال بارگزاری لطفا منتظر بمانید. بازخوانی صفحه باعث از بین رفتن اطلاعات می شود. اگر بارگذاری کار نمی کند، لطفا بررسی کنید که این سرور متوقف نشده است.",
+ "archive": "انتقال به آرشیو",
+ "archive-all": "انتقال همه به آرشیو",
+ "archive-board": "انتقال برد به آرشیو",
+ "archive-card": "انتقال کارت به آرشیو",
+ "archive-list": "انتقال لیست به آرشیو",
+ "archive-swimlane": "انتقال مسیر به آرشیو",
+ "archive-selection": "انتقال انتخاب شده ها به آرشیو",
+ "archiveBoardPopup-title": "آیا برد به آرشیو منتقل شود؟",
+ "archived-items": "آرشیو",
+ "archived-boards": "بردهای داخل آرشیو",
+ "restore-board": "بازیابی برد",
+ "no-archived-boards": "هیچ بردی داخل آرشیو نیست.",
+ "archives": "آرشیو",
+ "template": "قالب",
+ "templates": "قالبها",
+ "assign-member": "انتصاب عضو",
+ "attached": "ضمیمه شده",
+ "attachment": "ضمیمه",
+ "attachment-delete-pop": "حذف پیوست دایمی و بی بازگشت خواهد بود.",
+ "attachmentDeletePopup-title": "آیا می خواهید ضمیمه را حذف کنید؟",
+ "attachments": "ضمائم",
+ "auto-watch": "اضافه شدن خودکار دیدهبانی بردها زمانی که ایجاد میشوند",
+ "avatar-too-big": "تصویر آواتار بسیار بزرگ است (حداکثر ۵۲۰ کیلوبایت)",
+ "back": "بازگشت",
+ "board-change-color": "تغییر رنگ",
+ "board-nb-stars": "%s ستاره",
+ "board-not-found": "برد مورد نظر پیدا نشد",
+ "board-private-info": "این برد خصوصی خواهد بود.",
+ "board-public-info": "این برد عمومی خواهد بود.",
+ "boardChangeColorPopup-title": "تغییر پس زمینه برد",
+ "boardChangeTitlePopup-title": "تغییر نام برد",
+ "boardChangeVisibilityPopup-title": "تغییر وضعیت نمایش",
+ "boardChangeWatchPopup-title": "تغییر دیدهبانی",
+ "boardMenuPopup-title": "تنظیمات برد",
+ "boardChangeViewPopup-title": "نمایش برد",
+ "boards": "بردها",
+ "board-view": "نمایش برد",
+ "board-view-cal": "تقویم",
+ "board-view-swimlanes": "مسیرها",
+ "board-view-collapse": "جمع کردن",
+ "board-view-gantt": "گانت",
+ "board-view-lists": "لیستها",
+ "bucket-example": "برای مثال چیزی شبیه \"لیست سطل\"",
+ "cancel": "انصراف",
+ "card-archived": "این کارت به آرشیو انتقال دادهشدهاست.",
+ "board-archived": "این برد به آرشیو انتقال دادهشدهاست.",
+ "card-comments-title": "این کارت دارای %s نظر است.",
+ "card-delete-notice": "حذف دائمی. تمامی موارد مرتبط با این کارت از بین خواهند رفت.",
+ "card-delete-pop": "همه اقدامات از این پردازه حذف خواهد شد و امکان بازگرداندن کارت وجود نخواهد داشت.",
+ "card-delete-suggest-archive": "شما می توانید کارت را به بایگانی منتقل کنید تا آن را از هیئت مدیره حذف کنید و فعالیت را حفظ کنید.",
+ "card-due": "موعد",
+ "card-due-on": "موعد تا",
+ "card-spent": "زمان صرف شده",
+ "card-edit-attachments": "ویرایش ضمائم",
+ "card-edit-custom-fields": "ویرایش فیلدهای سفارشی",
+ "card-edit-labels": "ویرایش لیبلها",
+ "card-edit-members": "ویرایش اعضا",
+ "card-labels-title": "لیبلهای کارت را تغییر بده.",
+ "card-members-title": "اعضا ی برد را از/به کارت حذف/اضافه کنید.",
+ "card-start": "شروع",
+ "card-start-on": "شروع از",
+ "cardAttachmentsPopup-title": "ضمیمه از",
+ "cardCustomField-datePopup-title": "تغییر تاریخ",
+ "cardCustomFieldsPopup-title": "ویرایش فیلدهای سفارشی",
+ "cardStartVotingPopup-title": "شروع یک رایگیری",
+ "positiveVoteMembersPopup-title": "طرفداران",
+ "negativeVoteMembersPopup-title": "مخالفان",
+ "card-edit-voting": "ویرایش رایگیری",
+ "editVoteEndDatePopup-title": "تغییر تاریخ پایان رایگیری",
+ "allowNonBoardMembers": "اجازه دادن به همه کاربران وارد شده",
+ "vote-question": "سوال رای گیری",
+ "vote-public": "نمایش چه کسی به چه رای داده است",
+ "vote-for-it": "برای این",
+ "vote-against": "بر خلاف",
+ "deleteVotePopup-title": "رایگیری حذف شود؟",
+ "vote-delete-pop": "حذف کردن به صورت دائمی هست و قابل برگشت نیست. تمام اطلاعات مرتبط با این رایگیری حذف خواهدشد.",
+ "cardDeletePopup-title": "آیا می خواهید کارت را حذف کنید؟",
+ "cardDetailsActionsPopup-title": "اعمال کارت",
+ "cardLabelsPopup-title": "لیبل ها",
+ "cardMembersPopup-title": "اعضا",
+ "cardMorePopup-title": "بیشتر",
+ "cardTemplatePopup-title": "ایجاد قالب",
+ "cards": "کارتها",
+ "cards-count": "کارتها",
+ "casSignIn": "ورود با استفاده از CAS",
+ "cardType-card": "کارت",
+ "cardType-linkedCard": "کارتهای لینکشده",
+ "cardType-linkedBoard": "برد لینکشده",
+ "change": "تغییر",
+ "change-avatar": "تغییر آواتار",
+ "change-password": "تغییر کلمه عبور",
+ "change-permissions": "تغییر دسترسیها",
+ "change-settings": "تغییر تنظیمات",
+ "changeAvatarPopup-title": "تغییر آواتار",
+ "changeLanguagePopup-title": "تغییر زبان",
+ "changePasswordPopup-title": "تغییر کلمه عبور",
+ "changePermissionsPopup-title": "تغییر دسترسیها",
+ "changeSettingsPopup-title": "تغییر تنظیمات",
+ "subtasks": "زیر وظیفه",
+ "checklists": "چکلیستها",
+ "click-to-star": "با کلیک کردن ستاره بدهید",
+ "click-to-unstar": "با کلیک کردن ستاره را کم کنید",
+ "clipboard": "ذخیره در حافظه ویا بردار-رهاکن",
+ "close": "بستن",
+ "close-board": "بستن برد",
+ "close-board-pop": "شما می توانید با کلیک کردن بر روی دکمه «بایگانی» از صفحه هدر، صفحه را بازگردانید.",
+ "color-black": "مشکی",
+ "color-blue": "آبی",
+ "color-crimson": "قرمز",
+ "color-darkgreen": "سبز تیره",
+ "color-gold": "طلایی",
+ "color-gray": "خاکستری",
+ "color-green": "سبز",
+ "color-indigo": "نیلی",
+ "color-lime": "لیمویی",
+ "color-magenta": "ارغوانی",
+ "color-mistyrose": "صورتی روشن",
+ "color-navy": "لاجوردی",
+ "color-orange": "نارنجی",
+ "color-paleturquoise": "فیروزهای کدر",
+ "color-peachpuff": "هلویی",
+ "color-pink": "صورتی",
+ "color-plum": "بنفش کدر",
+ "color-purple": "بنفش",
+ "color-red": "قرمز",
+ "color-saddlebrown": "کاکائویی",
+ "color-silver": "نقرهای",
+ "color-sky": "آبی آسمانی",
+ "color-slateblue": "آبی فولادی",
+ "color-white": "سفید",
+ "color-yellow": "زرد",
+ "unset-color": "بازنشانی",
+ "comment": "نظر",
+ "comment-placeholder": "درج نظر",
+ "comment-only": "فقط نظر",
+ "comment-only-desc": "فقط میتواند روی کارتها نظر دهد.",
+ "no-comments": "هیچ کامنتی موجود نیست",
+ "no-comments-desc": "نظرات و فعالیت ها را نمی توان دید.",
+ "worker": "کارگر",
+ "worker-desc": "تنها میتوانید کارتها را جابجا کنید، آنها را به خود محول کنید و نظر دهید.",
+ "computer": "رایانه",
+ "confirm-subtask-delete-dialog": "از حذف این زیر وظیفه اطمینان دارید؟",
+ "confirm-checklist-delete-dialog": "آیا مطمئنید میخواهید چکلیست را حذف کنید؟",
+ "copy-card-link-to-clipboard": "درج پیوند کارت در حافظه",
+ "linkCardPopup-title": "ارتباط دادن کارت",
+ "searchElementPopup-title": "جستجو",
+ "copyCardPopup-title": "کپی کارت",
+ "copyChecklistToManyCardsPopup-title": "کپی قالب چکلیست به کارتهای متعدد",
+ "copyChecklistToManyCardsPopup-instructions": "عنوان و توضیحات کارت مقصد در این قالب JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "ایجاد",
+ "createBoardPopup-title": "ایجاد برد",
+ "chooseBoardSourcePopup-title": "بارگذاری برد",
+ "createLabelPopup-title": "ایجاد لیبل",
+ "createCustomField": "ایجاد فیلد",
+ "createCustomFieldPopup-title": "ایجاد فیلد",
+ "current": "جاری",
+ "custom-field-delete-pop": "این اقدام فیلد سفارشی را بهمراه تمامی تاریخچه آن از کارت ها پاک می کند و برگشت پذیر نمی باشد",
+ "custom-field-checkbox": "جعبه انتخابی",
+ "custom-field-currency": "واحد پولی",
+ "custom-field-currency-option": "کد واحد پولی",
+ "custom-field-date": "تاریخ",
+ "custom-field-dropdown": "لیست افتادنی",
+ "custom-field-dropdown-none": "(هیچ)",
+ "custom-field-dropdown-options": "لیست امکانات",
+ "custom-field-dropdown-options-placeholder": "کلید Enter را جهت افزودن امکانات بیشتر فشار دهید",
+ "custom-field-dropdown-unknown": "(ناشناخته)",
+ "custom-field-number": "عدد",
+ "custom-field-text": "متن",
+ "custom-fields": "فیلدهای شخصی",
+ "date": "تاریخ",
+ "decline": "رد",
+ "default-avatar": "آواتار پیشفرض",
+ "delete": "حذف",
+ "deleteCustomFieldPopup-title": "آیا فیلد سفارشی پاک شود؟",
+ "deleteLabelPopup-title": "آیا می خواهید لیبل را حذف کنید؟",
+ "description": "توضیحات",
+ "disambiguateMultiLabelPopup-title": "عمل ابهام زدایی از لیبل",
+ "disambiguateMultiMemberPopup-title": "عمل ابهام زدایی از کاربر",
+ "discard": "لغو",
+ "done": "انجام شده",
+ "download": "دریافت",
+ "edit": "ویرایش",
+ "edit-avatar": "تغییر آواتار",
+ "edit-profile": "ویرایش پروفایل",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "تغییر تاریخ آغاز",
+ "editCardDueDatePopup-title": "تغییر تاریخ پایان",
+ "editCustomFieldPopup-title": "ویرایش فیلد",
+ "editCardSpentTimePopup-title": "تغییر زمان صرف شده",
+ "editLabelPopup-title": "تغیر لیبل",
+ "editNotificationPopup-title": "اصلاح اعلان",
+ "editProfilePopup-title": "ویرایش پروفایل",
+ "email": "پست الکترونیک",
+ "email-enrollAccount-subject": "یک حساب کاربری برای شما در __siteName__ ایجاد شد",
+ "email-enrollAccount-text": "سلام __user__ \nبرای شروع به استفاده از این سرویس برروی آدرس زیر کلیک کنید.\n__url__\nبا تشکر.",
+ "email-fail": "عدم موفقیت در فرستادن رایانامه",
+ "email-fail-text": "خطا در تلاش برای فرستادن رایانامه",
+ "email-invalid": "رایانامه نادرست",
+ "email-invite": "دعوت از طریق رایانامه",
+ "email-invite-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
+ "email-invite-text": "__User__ عزیز\n __inviter__ شما را به عضویت برد \"__board__\" برای همکاری دعوت کرده است.\nلطفا لینک زیر را دنبال کنید، باتشکر:\n__url__",
+ "email-resetPassword-subject": "تنظیم مجدد کلمه عبور در __siteName__",
+ "email-resetPassword-text": "سلام __user__\nجهت تنظیم مجدد کلمه عبور آدرس زیر را دنبال نمایید، باتشکر:\n__url__",
+ "email-sent": "نامه الکترونیکی فرستاده شد",
+ "email-verifyEmail-subject": "تایید آدرس الکترونیکی شما در __siteName__",
+ "email-verifyEmail-text": "سلام __user__\nبه منظور تایید آدرس الکترونیکی حساب خود، آدرس زیر را دنبال نمایید، باتشکر:\n__url__.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "برد مورد نظر وجود ندارد",
+ "error-board-notAdmin": "شما جهت انجام آن باید مدیر برد باشید",
+ "error-board-notAMember": "شما برای انجام آن، باید عضو این برد باشید",
+ "error-json-malformed": "متن در قالب صحیح Json نمی باشد.",
+ "error-json-schema": "دادههای Json شما، شامل اطلاعات صحیح در قالب درستی نمیباشد.",
+ "error-csv-schema": "مقادیر موجود در فایل CSV (مقادیر جدا شده توسط کاما)/TSV (مقادیر جدا شده تب) در قالب درستی نمیباشد.",
+ "error-list-doesNotExist": "این لیست موجود نیست",
+ "error-user-doesNotExist": "این کاربر وجود ندارد",
+ "error-user-notAllowSelf": "عدم امکان دعوت خود",
+ "error-user-notCreated": "این کاربر ایجاد نشده است",
+ "error-username-taken": "این نام کاربری استفاده شده است",
+ "error-email-taken": "رایانامه توسط گیرنده دریافت شده است",
+ "export-board": "انتقال به بیرون برد",
+ "export-board-json": "اکسپورت برد به JSON",
+ "export-board-csv": "اکسپورت برد به CSV",
+ "export-board-tsv": "اکسپورت برد به TSV",
+ "export-board-html": "اکسپورت برد به HTML",
+ "exportBoardPopup-title": "انتقال به بیرون برد",
+ "sort": "مرتب سازی",
+ "sort-desc": "برای مرتب سازی لیست کلیک کنید",
+ "list-sort-by": "مرتب سازی لیست بر اساس:",
+ "list-label-modifiedAt": "زمان دسترسی قبلی",
+ "list-label-title": "نام لیست",
+ "list-label-sort": "دلخواه شما",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "فیلتر",
+ "filter-cards": "فیلتر کارتها یا لیستها",
+ "list-filter-label": "فیلتر لیست بر اساس عنوان",
+ "filter-clear": "حذف فیلتر",
+ "filter-labels-label": "فیلتر کردن با لیبل",
+ "filter-no-label": "بدون لیبل",
+ "filter-member-label": "فیلتر کردن با عضو",
+ "filter-no-member": "بدون عضو",
+ "filter-assignee-label": "فیلتر کردن با مسئول",
+ "filter-no-assignee": "منتصبنشده",
+ "filter-custom-fields-label": "فیلتر کردن با فیلدهای سفارشی",
+ "filter-no-custom-fields": "هیچ فیلد سفارشی ای وجود ندارد",
+ "filter-show-archive": "نمایش لیستهای آرشیو شده",
+ "filter-hide-empty": "مخفی کردن لیستهای خالی",
+ "filter-on": "فیلتر فعال است",
+ "filter-on-desc": "شما درحال فیلتر کارتهای این برد هستید. برای ویرایش فیلتر کلیک نمایید.",
+ "filter-to-selection": "فیلتر برای موارد انتخابی",
+ "other-filters-label": "فیلترهای دیگر",
+ "advanced-filter-label": "فیلتر پیشرفته",
+ "advanced-filter-description": "فیلتر پیشرفته اجازه می دهد تا برای نوشتن رشته حاوی اپراتورهای زیر: ==! = <=> = && || () یک فضای به عنوان یک جداساز بین اپراتورها استفاده می شود. با تایپ کردن نام ها و مقادیر آنها می توانید برای تمام زمینه های سفارشی فیلتر کنید. به عنوان مثال: Field1 == Value1. نکته: اگر فیلدها یا مقادیر حاوی فضاها باشند، شما باید آنها را به یک نقل قول کپسول کنید. برای مثال: 'فیلد 1' == 'مقدار 1'. برای تک تک کاراکترهای کنترل (\\\\) که می توانید از آنها استفاده کنید، می توانید از \\ استفاده کنید. به عنوان مثال: Field1 == I \\ 'm. همچنین شما می توانید شرایط مختلف را ترکیب کنید. برای مثال: F1 == V1 || F1 == V2. به طور معمول همه اپراتورها از چپ به راست تفسیر می شوند. شما می توانید سفارش را با قرار دادن براکت تغییر دهید. برای مثال: F1 == V1 && (F2 == V2 || F2 == V3). همچنین می توانید فیلدهای متنی را با استفاده از regex جستجو کنید: F1 == /Tes.*/i",
+ "fullname": "نام و نام خانوادگی",
+ "header-logo-title": "بازگشت به صفحه بردها.",
+ "hide-system-messages": "عدم نمایش پیامهای سیستمی",
+ "headerBarCreateBoardPopup-title": "ایجاد برد",
+ "home": "خانه",
+ "import": "وارد کردن",
+ "impersonate-user": "جعل هویت کاربر",
+ "link": "ارتباط",
+ "import-board": "وارد کردن برد",
+ "import-board-c": "وارد کردن برد",
+ "import-board-title-trello": "وارد کردن برد از Trello",
+ "import-board-title-wekan": "بارگذاری برد ها از آخرین خروجی",
+ "import-board-title-csv": "وارد کردن برد از CSV/TSV",
+ "from-trello": "از Trello",
+ "from-wekan": "از آخرین خروجی",
+ "from-csv": "از CSV/TSV",
+ "import-board-instruction-trello": "در Trello-ی خود به 'Menu'، 'More'، 'Print'، 'Export to JSON رفته و متن نهایی را دراینجا وارد نمایید.",
+ "import-board-instruction-csv": "مقادیر جداشده با کاما (CSV)/مقادیر جداشده با تبِ (TSV) خود را پیست کنید.",
+ "import-board-instruction-wekan": "در هیئت مدیره خود، به 'Menu' بروید، سپس 'Export Board'، و متن را در فایل دانلود شده کپی کنید.",
+ "import-board-instruction-about-errors": "اگر هنگام بازگردانی با خطا مواجه شدید بعضی اوقات بازگردانی انجام می شود و تمامی برد ها در داخل صفحه All Boards هستند",
+ "import-json-placeholder": "اطلاعات Json معتبر خود را اینجا وارد کنید.",
+ "import-csv-placeholder": "اطلاعات CSV/TSV خود را اینجا پیست کنید.",
+ "import-map-members": "نگاشت اعضا",
+ "import-members-map": "برد ها بازگردانده شده تعدادی کاربر دارند . لطفا کاربر های که می خواهید را انتخاب نمایید",
+ "import-show-user-mapping": "بررسی نقشه کاربران",
+ "import-user-select": "کاربر فعلی خود را انتخاب نمایید اگر میخواهیپ بعنوان کاربر باشد",
+ "importMapMembersAddPopup-title": "انتخاب کاربر",
+ "info": "نسخه",
+ "initials": "تخصیصات اولیه",
+ "invalid-date": "تاریخ نامعتبر",
+ "invalid-time": "زمان نامعتبر",
+ "invalid-user": "کاربر نامعتبر",
+ "joined": "متصل",
+ "just-invited": "هم اکنون، شما به این برد دعوت شدهاید.",
+ "keyboard-shortcuts": "میانبر کلیدها",
+ "label-create": "ایجاد لیبل",
+ "label-default": "%s لیبل(پیش فرض)",
+ "label-delete-pop": "این اقدام، لیبل را از همه کارتها پاک خواهد کرد و تاریخچه آن را نیز از بین میبرد.",
+ "labels": "لیبل ها",
+ "language": "زبان",
+ "last-admin-desc": "شما نمی توانید نقش ـroleـ را تغییر دهید چراکه باید حداقل یک مدیری وجود داشته باشد.",
+ "leave-board": "خروج از برد",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "ارجاع به این کارت",
+ "list-archive-cards": "انتقال تمامی کارت های این لیست به آرشیو",
+ "list-archive-cards-pop": "این کارتباعث حذف تمامی کارت های این لیست از برد می شود . برای مشاهده کارت ها در آرشیو و برگرداندن آنها به برد بر بروی \"Menu\">\"Archive\" کلیک نمایید",
+ "list-move-cards": "انتقال تمام کارت های این لیست",
+ "list-select-cards": "انتخاب تمام کارت های این لیست",
+ "set-color-list": "انتخاب رنگ",
+ "listActionPopup-title": "لیست اقدامات",
+ "settingsUserPopup-title": "تنظیمات کاربر",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "اضافه کردن مسیر",
+ "listImportCardPopup-title": "وارد کردن کارت Trello",
+ "listImportCardsTsvPopup-title": "وارد کردن CSV/TSV اکسل",
+ "listMorePopup-title": "بیشتر",
+ "link-list": "پیوند به این فهرست",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "شما می توانید لیست را به آرشیو انتقال دهید تا آن را از برد حذف نمایید و فعالیت های خود را حفظ نمایید",
+ "lists": "لیست ها",
+ "swimlanes": "Swimlanes",
+ "log-out": "خروج",
+ "log-in": "ورود",
+ "loginPopup-title": "ورود",
+ "memberMenuPopup-title": "تنظیمات اعضا",
+ "members": "اعضا",
+ "menu": "منو",
+ "move-selection": "حرکت مورد انتخابی",
+ "moveCardPopup-title": "حرکت کارت",
+ "moveCardToBottom-title": "انتقال به پایین",
+ "moveCardToTop-title": "انتقال به بالا",
+ "moveSelectionPopup-title": "حرکت مورد انتخابی",
+ "multi-selection": "امکان چند انتخابی",
+ "multi-selection-label": "تغییر لیبل انتخابشدهها",
+ "multi-selection-member": "تغییر عضو برای انتخابشدهها",
+ "multi-selection-on": "حالت چند انتخابی روشن است",
+ "muted": "بی صدا",
+ "muted-info": "شما هیچگاه از تغییرات این برد مطلع نخواهید شد",
+ "my-boards": "بردهای من",
+ "name": "نام",
+ "no-archived-cards": "هیچ کارتی در آرشیو موجود نمی باشد",
+ "no-archived-lists": "هیچ لیستی در آرشیو موجود نمی باشد",
+ "no-archived-swimlanes": "هیچ مسیری در آرشیو موجود نمی باشد",
+ "no-results": "بدون نتیجه",
+ "normal": "عادی",
+ "normal-desc": "امکان نمایش و تنظیم کارت بدون امکان تغییر تنظیمات",
+ "not-accepted-yet": "دعوت نامه هنوز پذیرفته نشده است",
+ "notify-participate": "اطلاع رسانی از هرگونه تغییر در کارتهایی که ایجاد کرده اید ویا عضو آن هستید",
+ "notify-watch": "اطلاع رسانی از هرگونه تغییر در بردها، لیستها یا کارتهایی که از آنها دیدهبانی میکنید",
+ "optional": "انتخابی",
+ "or": "یا",
+ "page-maybe-private": "این صفحه ممکن است خصوصی باشد. شما باورود میتوانید آن را ببینید.",
+ "page-not-found": "صفحه پیدا نشد.",
+ "password": "کلمه عبور",
+ "paste-or-dragdrop": "جهت چسباندن، یا برداشتن-رهاسازی فایل تصویر به آن (تصویر)",
+ "participating": "شرکت کنندگان",
+ "preview": "پیشنمایش",
+ "previewAttachedImagePopup-title": "پیشنمایش",
+ "previewClipboardImagePopup-title": "پیشنمایش",
+ "private": "خصوصی",
+ "private-desc": "این برد خصوصی است. فقط افراد اضافه شده به برد میتوانند مشاهده و ویرایش کنند.",
+ "profile": "حساب کاربری",
+ "public": "عمومی",
+ "public-desc": "این برد عمومی است. برای هر کسی با آدرس و یا جستجو در موتورها مانند گوگل قابل مشاهده است. فقط افرادی که به برد اضافه شدهاند امکان ویرایش دارند.",
+ "quick-access-description": "جهت افزودن یک برد به اینجا، آن را ستاره دار نمایید.",
+ "remove-cover": "حذف کاور",
+ "remove-from-board": "حذف از برد",
+ "remove-label": "حذف لیبل",
+ "listDeletePopup-title": "حذف فهرست؟",
+ "remove-member": "حذف عضو",
+ "remove-member-from-card": "حذف از کارت",
+ "remove-member-pop": "آیا __name__ (__username__) را از __boardTitle__ حذف میکنید؟ کاربر از تمام کارتها در این برد حذف خواهد شد. آنها از این اقدام مطلع خواهند شد.",
+ "removeMemberPopup-title": "آیا می خواهید کاربر را حذف کنید؟",
+ "rename": "تغیر نام",
+ "rename-board": "تغییر نام برد",
+ "restore": "بازیابی",
+ "save": "ذخیره",
+ "search": "جستجو",
+ "rules": "قواعد",
+ "search-cards": "جستجو در عناوین، توضیحات و فیلدهای سفارشیِ کارتها/لیستها در این برد",
+ "search-example": "کلمه مورد جستجو را وارد و اینتر را بزنید",
+ "select-color": "انتخاب رنگ",
+ "select-board": "انتخاب برد",
+ "set-wip-limit-value": "تعیین بیشینه تعداد وظایف در این فهرست",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "انتصاب خود به کارت فعلی",
+ "shortcut-autocomplete-emoji": "تکمیل خودکار شکلکها",
+ "shortcut-autocomplete-members": "تکمیل خودکار کاربرها",
+ "shortcut-clear-filters": "حذف تمامی صافیها ـ فیلترها ـ",
+ "shortcut-close-dialog": "بستن محاوره",
+ "shortcut-filter-my-cards": "کارت های من",
+ "shortcut-show-shortcuts": "بالا آوردن میانبر این لیست",
+ "shortcut-toggle-filterbar": "ضامن نوار جداکننده فیلتر",
+ "shortcut-toggle-searchbar": "کلید نوار جستجوی جانبی",
+ "shortcut-toggle-sidebar": "ضامن نوار جداکننده برد",
+ "show-cards-minimum-count": "نمایش تعداد کارتها اگر لیست شامل بیشتراز",
+ "sidebar-open": "بازکردن جداکننده",
+ "sidebar-close": "بستن جداکننده",
+ "signupPopup-title": "ایجاد یک کاربر",
+ "star-board-title": "برای ستاره دار کردن این برد کلیک کنید. این در بالای لیست بردهای شما نمایش داده خواهد شد.",
+ "starred-boards": "بردهای ستاره دار",
+ "starred-boards-description": "بردهای ستاره دار در بالای لیست بردها نمایش داده میشود.",
+ "subscribe": "عضوشدن",
+ "team": "تیم",
+ "this-board": "این برد",
+ "this-card": "این کارت",
+ "spent-time-hours": "زمان صرف شده (ساعت)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "زمان",
+ "title": "عنوان",
+ "tracking": "پیگردی",
+ "tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد",
+ "type": "نوع",
+ "unassign-member": "عدم انتصاب کاربر",
+ "unsaved-description": "شما توضیحات ذخیره نشده دارید.",
+ "unwatch": "عدم دیدهبانی",
+ "upload": "آپلود",
+ "upload-avatar": "ارسال آواتار",
+ "uploaded-avatar": "آواتار آپلود شد",
+ "custom-top-left-corner-logo-image-url": "آدرس تصویر لوگوی سفارشی در گوشه چپ و بالا",
+ "custom-top-left-corner-logo-link-url": "آدرس لینک لوگوی سفارشی در گوشه چپ و بالا",
+ "custom-top-left-corner-logo-height": "ارتفاع لوگوی سفارشی در گوشه چپ و بالا. پیشفرض: ۲۷",
+ "custom-login-logo-image-url": "آدرس تصویر لوگوی سفارشی در لاگین",
+ "custom-login-logo-link-url": "آدرس لینک لوگوی سفارشی در لاگین",
+ "text-below-custom-login-logo": "متن پایین لوگوی سفارشی در فرم لاگین",
+ "username": "نام کاربری",
+ "view-it": "مشاهده",
+ "warn-list-archived": "اخطار: این کارت در یک لیست در آرشیو موجود میباشد",
+ "watch": "دیدهبانی",
+ "watching": "درحال دیدهبانی",
+ "watching-info": "شما از هر تغییری در این برد آگاه خواهید شد",
+ "welcome-board": "برد خوشآمدگویی",
+ "welcome-swimlane": "نقطع عطف 1",
+ "welcome-list1": "پایه ای ها",
+ "welcome-list2": "پیشرفته",
+ "card-templates-swimlane": "قالبهای کارت",
+ "list-templates-swimlane": "لیست قالبها",
+ "board-templates-swimlane": "قالبهای برد",
+ "what-to-do": "چه کاری می خواهید انجام دهید؟",
+ "wipLimitErrorPopup-title": "محدودی نامعتبر WIP",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "پیشخوان مدیریتی",
+ "settings": "تنظمات",
+ "people": "افراد",
+ "registration": "ثبت نام",
+ "disable-self-registration": "غیرفعالسازی خودثبتنامی",
+ "invite": "دعوت",
+ "invite-people": "دعوت از افراد",
+ "to-boards": "به برد(ها)",
+ "email-addresses": "نشانی رایانامه",
+ "smtp-host-description": "آدرس سرور SMTP ای که پست الکترونیکی شما برروی آن است",
+ "smtp-port-description": "شماره درگاه ـPortـ ای که سرور SMTP شما جهت ارسال از آن استفاده می کند",
+ "smtp-tls-description": "پشتیبانی از TLS برای سرور SMTP",
+ "smtp-host": "آدرس سرور SMTP",
+ "smtp-port": "شماره درگاه ـPortـ سرور SMTP",
+ "smtp-username": "نام کاربری",
+ "smtp-password": "کلمه عبور",
+ "smtp-tls": "پشتیبانی از TLS",
+ "send-from": "از",
+ "send-smtp-test": "فرستادن رایانامه آزمایشی به خود",
+ "invitation-code": "کد دعوت نامه",
+ "email-invite-register-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
+ "email-invite-register-text": "__user__ عزیز,\n\n__inviter__ شما را به این برد دعوت کرده است.\n\nلطفا روی لینک زیر کلیک نمایید:\n__url__\n\nو کد معرفی شما: __icode__\n\nبا تشکر.",
+ "email-smtp-test-subject": "SMTP تست ایمیل",
+ "email-smtp-test-text": "با موفقیت، یک رایانامه را فرستادید",
+ "error-invitation-code-not-exist": "چنین کد دعوتی یافت نشد",
+ "error-notAuthorized": "شما مجاز به دیدن این صفحه نیستید.",
+ "webhook-title": "نام وبهوک",
+ "webhook-token": "توکن (انتخابی برای اعتبارسنجی)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "وبهوک two-way",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "فیلتر عنوان کارت",
+ "disable-webhook": "حذف این وبهوک",
+ "global-webhook": "وبهوکهای سراسری",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(ناشناخته)",
+ "Node_version": "نسخه Node",
+ "Meteor_version": "نسخه متئور",
+ "MongoDB_version": "ورژن MongoDB",
+ "MongoDB_storage_engine": "موتور ذخیره سازی MongoDB",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog فعال است",
+ "OS_Arch": "معماری سیستمعامل",
+ "OS_Cpus": "تعدا سیپییو سیستمعامل",
+ "OS_Freemem": "حافظه سیستمعامل",
+ "OS_Loadavg": "میانگین لود سیستمعامل",
+ "OS_Platform": "پلتفرم سیستمعامل",
+ "OS_Release": "انتشار سیستمعامل",
+ "OS_Totalmem": "حافظه کل سیستمعامل",
+ "OS_Type": "نوع سیستمعامل",
+ "OS_Uptime": "آپتایم سیستمعامل",
+ "days": "روزها",
+ "hours": "ساعت",
+ "minutes": "دقیقه",
+ "seconds": "ثانیه",
+ "show-field-on-card": "این فیلد را در کارت نمایش بده",
+ "automatically-field-on-card": "این فیلد را اتوماتیک در همهٔ کارتها اضافه کن",
+ "showLabel-field-on-card": "نمایش لیبل فیلد در کارتهای کوچک",
+ "yes": "بله",
+ "no": "خیر",
+ "accounts": "حسابها",
+ "accounts-allowEmailChange": "اجازه تغییر ایمیل",
+ "accounts-allowUserNameChange": "اجازه تغییر نام کاربری",
+ "createdAt": "ساخته شده در",
+ "verified": "معتبر",
+ "active": "فعال",
+ "card-received": "رسیده",
+ "card-received-on": "رسیده در",
+ "card-end": "پایان",
+ "card-end-on": "پایان در",
+ "editCardReceivedDatePopup-title": "تغییر تاریخ رسید",
+ "editCardEndDatePopup-title": "تغییر تاریخ پایان",
+ "setCardColorPopup-title": "انتخاب رنگ",
+ "setCardActionsColorPopup-title": "انتخاب کردن رنگ",
+ "setSwimlaneColorPopup-title": "انتخاب کردن رنگ",
+ "setListColorPopup-title": "انتخاب کردن رنگ",
+ "assigned-by": "محول شده توسط",
+ "requested-by": "تقاضا شده توسط",
+ "board-delete-notice": "حذف دائمی است شما تمام لیست ها، کارت ها و اقدامات مرتبط با این برد را از دست خواهید داد.",
+ "delete-board-confirm-popup": "تمام لیست ها، کارت ها، لیبل ها و فعالیت ها حذف خواهند شد و شما نمی توانید محتوای برد را بازیابی کنید. هیچ واکنشی وجود ندارد",
+ "boardDeletePopup-title": "حذف برد؟",
+ "delete-board": "حذف برد",
+ "default-subtasks-board": "زیروظایفِ برد __board__",
+ "default": "پیشفرض",
+ "queue": "صف",
+ "subtask-settings": "تنظیمات زیروظایف",
+ "card-settings": "تنظیمات کارت",
+ "boardSubtaskSettingsPopup-title": "تنظیمات زیروظایف برد",
+ "boardCardSettingsPopup-title": "تنظیمات کارت",
+ "deposit-subtasks-board": "افزودن ریزکار به برد:",
+ "deposit-subtasks-list": "لیست برای ریزکار های افزوده شده",
+ "show-parent-in-minicard": "نمایش خانواده در ریز کارت",
+ "prefix-with-full-path": "پیشوند با مسیر کامل",
+ "prefix-with-parent": "پیشوند با خانواده",
+ "subtext-with-full-path": "زیرنویس با مسیر کامل",
+ "subtext-with-parent": "زیرنویس با خانواده",
+ "change-card-parent": "تغییرخانواده کارت",
+ "parent-card": "کارت پدر",
+ "source-board": "برد مرجع",
+ "no-parent": "پدر را نمایش نده",
+ "activity-added-label": "افزودن لیبل '%s' به %s",
+ "activity-removed-label": "حذف لیبل '%s' از %s",
+ "activity-delete-attach": "حذف ضمیمه از %s",
+ "activity-added-label-card": "لیبل افزودهشده '%s'",
+ "activity-removed-label-card": "لیبل حذفشده '%s'",
+ "activity-delete-attach-card": "حذف ضمیمه",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "قاعده",
+ "r-add-trigger": "افزودن گیره",
+ "r-add-action": "افزودن عملیات",
+ "r-board-rules": "قواعد برد",
+ "r-add-rule": "افزودن قاعده",
+ "r-view-rule": "نمایش قاعده",
+ "r-delete-rule": "حذف قاعده",
+ "r-new-rule-name": "تیتر قاعده جدید",
+ "r-no-rules": "بدون قواعد",
+ "r-trigger": "تریگر",
+ "r-action": "عملیات",
+ "r-when-a-card": "زمانی که کارت",
+ "r-is": "هست",
+ "r-is-moved": "جابهجا شده",
+ "r-added-to": "افزودهشده به",
+ "r-removed-from": "حذف از",
+ "r-the-board": "برد",
+ "r-list": "لیست",
+ "set-filter": "اضافه کردن فیلتر",
+ "r-moved-to": "انتقال به",
+ "r-moved-from": "انتقال از",
+ "r-archived": "انتقال به آرشیو",
+ "r-unarchived": "بازگردانی از آرشیو",
+ "r-a-card": "کارت",
+ "r-when-a-label-is": "زمانی که لیبل هست",
+ "r-when-the-label": "زمانی که لیبل هست",
+ "r-list-name": "نام لیست",
+ "r-when-a-member": "زمانی که کاربر هست",
+ "r-when-the-member": "زمانی که کاربر",
+ "r-name": "نام",
+ "r-when-a-attach": "زمانی که ضمیمه",
+ "r-when-a-checklist": "زمانی که چکلیست هست",
+ "r-when-the-checklist": "زمانی که چکلیست",
+ "r-completed": "تمام شده",
+ "r-made-incomplete": "تمام نشده",
+ "r-when-a-item": "زمانی که آیتم چکلیست هست",
+ "r-when-the-item": "زمانی که آیتم چکلیست",
+ "r-checked": "انتخاب شده",
+ "r-unchecked": "لغو انتخاب",
+ "r-move-card-to": "انتقال کارت به",
+ "r-top-of": "بالای",
+ "r-bottom-of": "پایین",
+ "r-its-list": "لیست خود",
+ "r-archive": "انتقال به آرشیو",
+ "r-unarchive": "بازگردانی از آرشیو",
+ "r-card": "کارت",
+ "r-add": "افزودن",
+ "r-remove": "حذف",
+ "r-label": "لیبل",
+ "r-member": "عضو",
+ "r-remove-all": "حذف همه کاربران از کارت",
+ "r-set-color": "انتخاب رنگ به",
+ "r-checklist": "چکلیست",
+ "r-check-all": "انتخاب همه",
+ "r-uncheck-all": "لغو انتخاب همه",
+ "r-items-check": "آیتمهای چکلیست",
+ "r-check": "انتخاب",
+ "r-uncheck": "لغو انتخاب",
+ "r-item": "آیتم",
+ "r-of-checklist": "از چکلیست",
+ "r-send-email": "ارسال ایمیل",
+ "r-to": "به",
+ "r-of": "از",
+ "r-subject": "عنوان",
+ "r-rule-details": "جزئیات قاعده",
+ "r-d-move-to-top-gen": "انتقال کارت به ابتدای لیست خود",
+ "r-d-move-to-top-spec": "انتقال کارت به ابتدای لیست",
+ "r-d-move-to-bottom-gen": "انتقال کارت به انتهای لیست خود",
+ "r-d-move-to-bottom-spec": "انتقال کارت به انتهای لیست",
+ "r-d-send-email": "ارسال ایمیل",
+ "r-d-send-email-to": "به",
+ "r-d-send-email-subject": "عنوان",
+ "r-d-send-email-message": "پیام",
+ "r-d-archive": "انتقال کارت به آرشیو",
+ "r-d-unarchive": "بازگردانی کارت از آرشیو",
+ "r-d-add-label": "افزودن لیبل",
+ "r-d-remove-label": "حذف لیبل",
+ "r-create-card": "ساخت کارت جدید",
+ "r-in-list": "در لیست",
+ "r-in-swimlane": "در مسیرِ",
+ "r-d-add-member": "افزودن عضو",
+ "r-d-remove-member": "حذف عضو",
+ "r-d-remove-all-member": "حذف تمامی کاربران",
+ "r-d-check-all": "انتخاب تمام آیتم های لیست",
+ "r-d-uncheck-all": "لغوانتخاب تمام آیتم های لیست",
+ "r-d-check-one": "انتخاب آیتم",
+ "r-d-uncheck-one": "لغو انتخاب آیتم",
+ "r-d-check-of-list": "از چکلیست",
+ "r-d-add-checklist": "افزودن چکلیست",
+ "r-d-remove-checklist": "حذف چکلیست",
+ "r-by": "توسط",
+ "r-add-checklist": "افزودن چکلیست",
+ "r-with-items": "با آیتمهای",
+ "r-items-list": "آیتم1،آیتم2،آیتم3",
+ "r-add-swimlane": "افزودن مسیر",
+ "r-swimlane-name": "نام مسیر",
+ "r-board-note": "نکته: برای نمایش موارد ممکن کادر را خالی بگذارید.",
+ "r-checklist-note": "نکته: چکلیستها باید توسط کاما از یکدیگر جدا شوند.",
+ "r-when-a-card-is-moved": "زمانی که یک کارت به لیست دیگری منتقل شد",
+ "r-set": "تنظیم",
+ "r-update": "به روز رسانی",
+ "r-datefield": "تاریخ",
+ "r-df-start-at": "شروع",
+ "r-df-due-at": "ناشی از",
+ "r-df-end-at": "پایان",
+ "r-df-received-at": "رسیده",
+ "r-to-current-datetime": "به تاریخ/زمان فعلی",
+ "r-remove-value-from": "حذف مقدار از",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "متد اعتبارسنجی",
+ "authentication-type": "نوع اعتبارسنجی",
+ "custom-product-name": "نام سفارشی محصول",
+ "layout": "لایه",
+ "hide-logo": "مخفی سازی نماد",
+ "add-custom-html-after-body-start": "افزودن کد های HTML بعد از شروع",
+ "add-custom-html-before-body-end": "افزودن کد های HTML قبل از پایان",
+ "error-undefined": "یک اشتباه رخ داده شده است",
+ "error-ldap-login": "هنگام تلاش برای ورود به یک خطا رخ داد",
+ "display-authentication-method": "نمایش نوع اعتبارسنجی",
+ "default-authentication-method": "نوع اعتبارسنجی پیشفرض",
+ "duplicate-board": "برد تکراری",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "تعدا افراد:",
+ "swimlaneDeletePopup-title": "مسیر حذف شود؟",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "بازگردانی همه",
+ "delete-all": "حذف همه",
+ "loading": "در حال بارگزاری، لطفاً منتظر بمانید.",
+ "previous_as": "آخرین زمان بوده",
+ "act-a-dueAt": "اصلاح زمان انجام به \nکِی: __timeValue__\nکجا: __card__\n زمان قبلی انجام __timeOldValue__ بوده",
+ "act-a-endAt": "زمان پایان ویرایششده به __timeValue__ از (__timeOldValue__)",
+ "act-a-startAt": "زمان آغاز ویرایششده به __timeValue__ از (__timeOldValue__)",
+ "act-a-receivedAt": "زمان رسیدن ویرایش شده به __timeValue__ از (__timeOldValue__)",
+ "a-dueAt": "زمان سررسید ویرایششده به",
+ "a-endAt": "زمان پایان ویرایششده به",
+ "a-startAt": "زمان شروع ویرایششده به",
+ "a-receivedAt": "زمان رسیدن ویرایش شده به",
+ "almostdue": "زمان سررسید فعلی %s د رحال رسیدن است",
+ "pastdue": "زمان سررسید فعلی %s گذشتهاست",
+ "duenow": "زمان سررسید فعلی %s امروز است",
+ "act-newDue": "__list__/__card__ اولین یادآوری سررسید در برد [__board__] را دارد",
+ "act-withDue": "__list__/__card__ یادآوریهای سررسید [__board__]",
+ "act-almostdue": "یاآوری سررسید (__timeValue__) از __card__ در حال رسیدن است",
+ "act-pastdue": "یاآوری سررسید (__timeValue__) از __card__ گذشتهاست",
+ "act-duenow": "یاآوری سررسید (__timeValue__) از __card__ هماکنون است",
+ "act-atUserComment": "به شما در [__board__] __list__/__card__ اشارهشدهاست.",
+ "delete-user-confirm-popup": "از حذف این اکانت مطمئن هستید؟ این عملیات برگشتناپذیر است.",
+ "accounts-allowUserDelete": "به کاربران اجازه دهید خودشان اکانتشان را حذف کنند",
+ "hide-minicard-label-text": "مخفی کردن اسم لیبل مینی کارت",
+ "show-desktop-drag-handles": "نمایش دستگیرههای درگکردن دسکتاپ",
+ "assignee": "محول شده",
+ "cardAssigneesPopup-title": "محولشده",
+ "addmore-detail": "افزودن توضیحات کامل تر",
+ "show-on-card": "نمایش در کارت",
+ "new": "جدید",
+ "editUserPopup-title": "ویرایش کاربر",
+ "newUserPopup-title": "کاربر جدید",
+ "notifications": "اعلانها",
+ "view-all": "مشاهده همه",
+ "filter-by-unread": "فیلتر با خوانده نشده",
+ "mark-all-as-read": "علامت همه به خوانده شده",
+ "remove-all-read": "حذف همه خوانده شده",
+ "allow-rename": "اجازه تغییر نام",
+ "allowRenamePopup-title": "اجازه تغییر نام",
+ "start-day-of-week": "تنظیم روز شروع هفته",
+ "monday": "دوشنبه",
+ "tuesday": "سه شنبه",
+ "wednesday": "چهارشنبه",
+ "thursday": "پنجشنبه",
+ "friday": "جمعه",
+ "saturday": "شنبه",
+ "sunday": "یکشنبه",
+ "status": "وضعیت",
+ "swimlane": "مسیر",
+ "owner": "صاحب",
+ "last-modified-at": "آخرین ویرایش در ",
+ "last-activity": "آخرین فعالیت",
+ "voting": "رأی دهی",
+ "archived": "بایگانی شده",
+ "delete-linked-card-before-this-card": "پیش از اینکه کارتهای لینک شده به این کارت را حذف نکنید، نمیتوانید این کارت را حذف کنید.",
+ "delete-linked-cards-before-this-list": "پیش از حذف کارتهایی که به کارتهای این لیست لینک شدهاند نمیتوانید این لیست را حذف کنید.",
+ "hide-checked-items": "مخفی کردن انتخابشدهها",
+ "task": "کار",
+ "create-task": "ایجاد کار",
+ "ok": "تأیید",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json
index 7b0d76a3c..bd2d3b93e 100644
--- a/i18n/fi.i18n.json
+++ b/i18n/fi.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Hyväksy",
- "act-activity-notify": "Toimintailmoitus",
- "act-addAttachment": "lisätty liite __attachment__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-deleteAttachment": "poistettu liite __attachment__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addSubtask": "lisätty alitehtävä __subtask__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addLabel": "Lisätty nimilappu __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addedLabel": "Lisätty nimilappu __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeLabel": "Poistettu nimilappu __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removedLabel": "Poistettu nimilappu __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addChecklist": "lisätty tarkistuslista __checklist__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addChecklistItem": "lisätty tarkistuslistan kohta __checklistItem__ tarkistuslistalle __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeChecklist": "poistettu tarkistuslista __checklist__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeChecklistItem": "poistettu tarkistuslistan kohta __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-checkedItem": "ruksattu __checklistItem__ tarkistuslistalla __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-uncheckedItem": "poistettu ruksi __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-completeChecklist": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-uncompleteChecklist": "tehty ei valmistuneeksi tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addComment": "kommentoitu kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-editComment": "muokkasi kommenttia kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ at taululla __board__",
- "act-deleteComment": "poisti kommentin kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-createBoard": "luotu taulu __board__",
- "act-createSwimlane": "loi swimlanen __swimlane__ taululle __board__",
- "act-createCard": "luotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-createCustomField": "loi mukautetun kentän __customField__ taululla __board__",
- "act-deleteCustomField": "poisti mukautetun kentän __customField__ taululla __board__",
- "act-setCustomField": "muokkasi mukautettua kenttää __customField__: __customFieldValue__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-createList": "lisätty lista __list__ taululle __board__",
- "act-addBoardMember": "lisätty jäsen __member__ taululle __board__",
- "act-archivedBoard": "Taulu __board__ siirretty Arkistoon",
- "act-archivedCard": "Kortti __card__ listalla __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-archivedList": "Lista __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-archivedSwimlane": "Swimlane __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-importBoard": "tuotu taulu __board__",
- "act-importCard": "tuotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-importList": "tuotu lista __list__ swimlanelle __swimlane__ taululla __board__",
- "act-joinMember": "lisätty jäsen __member__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-moveCard": "siirsi kortin __card__ taululla __board__ listasta __oldList__ swimlanelta __oldSwimlane__ listalle __list__ swimlanelle __swimlane__",
- "act-moveCardToOtherBoard": "siirretty kortti __card__ listasta __oldList__ swimlanella __oldSwimlane__ taululla __oldBoard__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeBoardMember": "poistettu jäsen __member__ taululta __board__",
- "act-restoredCard": "palautettu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-unjoinMember": "poistettu jäsen __member__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Toimet",
- "activities": "Toimet",
- "activity": "Toiminta",
- "activity-added": "lisätty %s kohteeseen %s",
- "activity-archived": "%s siirretty Arkistoon",
- "activity-attached": "liitetty %s kohteeseen %s",
- "activity-created": "luotu %s",
- "activity-customfield-created": "luotu mukautettu kenttä %s",
- "activity-excluded": "poistettu %s kohteesta %s",
- "activity-imported": "tuotu %s kohteeseen %s lähteestä %s",
- "activity-imported-board": "tuotu %s lähteestä %s",
- "activity-joined": "liitytty kohteeseen %s",
- "activity-moved": "siirretty %s kohteesta %s kohteeseen %s",
- "activity-on": "kohteessa %s",
- "activity-removed": "poistettu %s kohteesta %s",
- "activity-sent": "lähetetty %s kohteeseen %s",
- "activity-unjoined": "peruttu %s liittyminen",
- "activity-subtask-added": "lisätty alitehtävä kohteeseen %s",
- "activity-checked-item": "ruksattu %s tarkistuslistassa %s / %s",
- "activity-unchecked-item": "poistettu ruksi %s tarkistuslistassa %s / %s",
- "activity-checklist-added": "lisätty tarkistuslista kortille %s",
- "activity-checklist-removed": "poistettu tarkistuslista kohteesta %s",
- "activity-checklist-completed": "saatiin valmiiksi tarkistuslista %s / %s",
- "activity-checklist-uncompleted": "ei saatu valmiiksi tarkistuslista %s / %s",
- "activity-checklist-item-added": "lisäsi kohdan tarkistuslistaan '%s' kortilla %s",
- "activity-checklist-item-removed": "poistettu tarkistuslistan kohta '%s' / %s",
- "add": "Lisää",
- "activity-checked-item-card": "ruksattu %s tarkistuslistassa %s",
- "activity-unchecked-item-card": "poistettu ruksi %s tarkistuslistassa %s",
- "activity-checklist-completed-card": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "activity-checklist-uncompleted-card": "ei valmistunut tarkistuslista %s",
- "activity-editComment": "muokkasi kommenttia %s",
- "activity-deleteComment": "poisti kommentin %s",
- "activity-receivedDate": "muokkasi vastaanotettu päiväksi %s / %s",
- "activity-startDate": "muokkasi aloituspäiväksi %s / %s",
- "activity-dueDate": "muokkasi eräpäiväksi %s / %s",
- "activity-endDate": "muokkasi loppumispäiväksi %s / %s",
- "add-attachment": "Lisää liite",
- "add-board": "Lisää taulu",
- "add-card": "Lisää kortti",
- "add-swimlane": "Lisää Swimlane",
- "add-subtask": "Lisää alitehtävä",
- "add-checklist": "Lisää tarkistuslista",
- "add-checklist-item": "Lisää kohta tarkistuslistaan",
- "add-cover": "Lisää kansi",
- "add-label": "Lisää nimilappu",
- "add-list": "Lisää lista",
- "add-members": "Lisää jäseniä",
- "added": "Lisätty",
- "addMemberPopup-title": "Jäsenet",
- "admin": "Ylläpitäjä",
- "admin-desc": "Voi nähdä ja muokata kortteja, poistaa jäseniä, ja muuttaa taulun asetuksia.",
- "admin-announcement": "Ilmoitus",
- "admin-announcement-active": "Aktiivinen järjestelmänlaajuinen ilmoitus",
- "admin-announcement-title": "Ilmoitus ylläpitäjältä",
- "all-boards": "Kaikki taulut",
- "and-n-other-card": "Ja __count__ muu kortti",
- "and-n-other-card_plural": "Ja __count__ muuta korttia",
- "apply": "Käytä",
- "app-is-offline": "Ladataan, odota. Sivun uudelleenlataus aiheuttaa tietojen menettämisen. Jos lataaminen ei toimi, tarkista että palvelin ei ole pysähtynyt.",
- "archive": "Siirrä Arkistoon",
- "archive-all": "Siirrä kaikki Arkistoon",
- "archive-board": "Siirrä taulu Arkistoon",
- "archive-card": "Siirrä kortti Arkistoon",
- "archive-list": "Siirrä lista Arkistoon",
- "archive-swimlane": "Siirrä Swimlane Arkistoon",
- "archive-selection": "Siirrä valinta Arkistoon",
- "archiveBoardPopup-title": "Siirrä taulu Arkistoon?",
- "archived-items": "Arkisto",
- "archived-boards": "Taulut Arkistossa",
- "restore-board": "Palauta taulu",
- "no-archived-boards": "Ei tauluja Arkistossa.",
- "archives": "Arkisto",
- "template": "Malli",
- "templates": "Mallit",
- "assign-member": "Valitse jäsen",
- "attached": "liitetty",
- "attachment": "Liitetiedosto",
- "attachment-delete-pop": "Liitetiedoston poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "attachmentDeletePopup-title": "Poista liitetiedosto?",
- "attachments": "Liitetiedostot",
- "auto-watch": "Automaattisesti seuraa tauluja kun ne on luotu",
- "avatar-too-big": "Profiilikuva on liian suuri (enintään 520 kt)",
- "back": "Takaisin",
- "board-change-color": "Muokkaa väriä",
- "board-nb-stars": "%s tähteä",
- "board-not-found": "Taulua ei löytynyt",
- "board-private-info": "Tämä taulu tulee olemaan yksityinen.",
- "board-public-info": "Tämä taulu tulee olemaan julkinen.",
- "boardChangeColorPopup-title": "Muokkaa taulun taustaa",
- "boardChangeTitlePopup-title": "Nimeä taulu uudelleen",
- "boardChangeVisibilityPopup-title": "Muokkaa näkyvyyttä",
- "boardChangeWatchPopup-title": "Muokkaa seuraamista",
- "boardMenuPopup-title": "Tauluasetukset",
- "boardChangeViewPopup-title": "Taulunäkymä",
- "boards": "Taulut",
- "board-view": "Taulunäkymä",
- "board-view-cal": "Kalenteri",
- "board-view-swimlanes": "Swimlanet",
- "board-view-collapse": "Pienennä",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listat",
- "bucket-example": "Kuten “Laatikko lista” esimerkiksi",
- "cancel": "Peruuta",
- "card-archived": "Tämä kortti on siirretty Arkistoon.",
- "board-archived": "Tämä taulu on siirretty Arkistoon.",
- "card-comments-title": "Tässä kortissa on %s kommenttia.",
- "card-delete-notice": "Poistaminen on lopullista. Menetät kaikki tähän korttiin liitetyt toimet.",
- "card-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä, etkä pysty avata korttia uudelleen. Tätä ei voi peruuttaa.",
- "card-delete-suggest-archive": "Voit siirtää kortin Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
- "card-due": "Erääntyy",
- "card-due-on": "Erääntyy",
- "card-spent": "Käytetty aika",
- "card-edit-attachments": "Muokkaa liitetiedostoja",
- "card-edit-custom-fields": "Muokkaa mukautettuja kenttiä",
- "card-edit-labels": "Muokkaa nimilappuja",
- "card-edit-members": "Muokkaa jäseniä",
- "card-labels-title": "Muokkaa kortin nimilappuja.",
- "card-members-title": "Lisää tai poista taulun jäseniä tältä kortilta.",
- "card-start": "Alkaa",
- "card-start-on": "Alkaa",
- "cardAttachmentsPopup-title": "Liitä mistä",
- "cardCustomField-datePopup-title": "Muokkaa päivää",
- "cardCustomFieldsPopup-title": "Muokkaa mukautettuja kenttiä",
- "cardStartVotingPopup-title": "Äänestä",
- "positiveVoteMembersPopup-title": "Kannattajat",
- "negativeVoteMembersPopup-title": "Vastustajat",
- "card-edit-voting": "Muokkaa äänestystä",
- "editVoteEndDatePopup-title": "Muokkaa äänestyksen loppumispäivää",
- "allowNonBoardMembers": "Salli kaikki kirjautuneet käyttäjät",
- "vote-question": "Äänestys kysymys",
- "vote-public": "Näytä kuka äänesti mitäkin",
- "vote-for-it": "puolesta",
- "vote-against": "vastaan",
- "deleteVotePopup-title": "Poista ääni?",
- "vote-delete-pop": "Poistaminen on lopullista. Menetät kaikki tähän äänestykseen liitetyt toimet.",
- "cardDeletePopup-title": "Poista kortti?",
- "cardDetailsActionsPopup-title": "Korttitoimet",
- "cardLabelsPopup-title": "Nimilaput",
- "cardMembersPopup-title": "Jäsenet",
- "cardMorePopup-title": "Lisää",
- "cardTemplatePopup-title": "Luo malli",
- "cards": "Kortit",
- "cards-count": "korttia",
- "casSignIn": "CAS-kirjautuminen",
- "cardType-card": "Kortti",
- "cardType-linkedCard": "Linkitetty kortti",
- "cardType-linkedBoard": "Linkitetty taulu",
- "change": "Muokkaa",
- "change-avatar": "Muokkaa profiilikuvaa",
- "change-password": "Vaihda salasana",
- "change-permissions": "Muokkaa oikeuksia",
- "change-settings": "Muokkaa asetuksia",
- "changeAvatarPopup-title": "Muokkaa profiilikuvaa",
- "changeLanguagePopup-title": "Vaihda kieltä",
- "changePasswordPopup-title": "Vaihda salasana",
- "changePermissionsPopup-title": "Muokkaa oikeuksia",
- "changeSettingsPopup-title": "Muokkaa asetuksia",
- "subtasks": "Alitehtävät",
- "checklists": "Tarkistuslistat",
- "click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.",
- "click-to-unstar": "Klikkaa poistaaksesi tähtimerkintä taululta.",
- "clipboard": "Leikepöytä tai raahaa ja pudota",
- "close": "Sulje",
- "close-board": "Sulje taulu",
- "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkisto”-painiketta taululistan yläpalkista.",
- "color-black": "musta",
- "color-blue": "sininen",
- "color-crimson": "karmiininpunainen",
- "color-darkgreen": "tummanvihreä",
- "color-gold": "kulta",
- "color-gray": "harmaa",
- "color-green": "vihreä",
- "color-indigo": "syvän sininen",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "vaaleanpunainen ruusu",
- "color-navy": "laivastonsininen",
- "color-orange": "oranssi",
- "color-paleturquoise": "vaalean turkoosi",
- "color-peachpuff": "persikanpunainen",
- "color-pink": "vaaleanpunainen",
- "color-plum": "luumunvärinen",
- "color-purple": "violetti",
- "color-red": "punainen",
- "color-saddlebrown": "satulanruskea",
- "color-silver": "hopea",
- "color-sky": "taivas",
- "color-slateblue": "liuskekivi sininen",
- "color-white": "valkoinen",
- "color-yellow": "keltainen",
- "unset-color": "Peru väri",
- "comment": "Kommentti",
- "comment-placeholder": "Kirjoita kommentti",
- "comment-only": "Vain kommentointi",
- "comment-only-desc": "Voi vain kommentoida kortteja",
- "no-comments": "Ei kommentteja",
- "no-comments-desc": "Ei voi nähdä kommentteja ja toimintaa.",
- "worker": "Työntekijä",
- "worker-desc": "Voi vain siirtää kortteja, ilmoittautua kortin käsittelijäksi ja kommentoida.",
- "computer": "Tietokone",
- "confirm-subtask-delete-dialog": "Haluatko varmasti poistaa alitehtävän?",
- "confirm-checklist-delete-dialog": "Haluatko varmasti poistaa tarkistuslistan?",
- "copy-card-link-to-clipboard": "Kopioi kortin linkki leikepöydälle",
- "linkCardPopup-title": "Linkitä kortti",
- "searchElementPopup-title": "Etsi",
- "copyCardPopup-title": "Kopioi kortti",
- "copyChecklistToManyCardsPopup-title": "Kopioi tarkistuslistan malli monille korteille",
- "copyChecklistToManyCardsPopup-instructions": "Kohde korttien otsikot ja kuvaukset JSON-muodossa",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Ensimmäisen kortin otsikko\", \"description\":\"Ensimmäisen kortin kuvaus\"}, {\"title\":\"Toisen kortin otsikko\",\"description\":\"Toisen kortin kuvaus\"},{\"title\":\"Viimeisen kortin otsikko\",\"description\":\"Viimeisen kortin kuvaus\"} ]",
- "create": "Luo",
- "createBoardPopup-title": "Luo taulu",
- "chooseBoardSourcePopup-title": "Tuo taulu",
- "createLabelPopup-title": "Luo nimilappu",
- "createCustomField": "Luo kenttä",
- "createCustomFieldPopup-title": "Luo kenttä",
- "current": "nykyinen",
- "custom-field-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän mukautetun kentän kaikista korteista ja poistaa sen historian.",
- "custom-field-checkbox": "Valintaruutu",
- "custom-field-currency": "Valuutta",
- "custom-field-currency-option": "Valuutta koodi",
- "custom-field-date": "Päivämäärä",
- "custom-field-dropdown": "Pudotusvalikko",
- "custom-field-dropdown-none": "(ei mitään)",
- "custom-field-dropdown-options": "Listan vaihtoehdot",
- "custom-field-dropdown-options-placeholder": "Paina Enter lisätäksesi lisää vaihtoehtoja",
- "custom-field-dropdown-unknown": "(tuntematon)",
- "custom-field-number": "Numero",
- "custom-field-text": "Teksti",
- "custom-fields": "Mukautetut kentät",
- "date": "Päivämäärä",
- "decline": "Kieltäydy",
- "default-avatar": "Oletusprofiilikuva",
- "delete": "Poista",
- "deleteCustomFieldPopup-title": "Poista mukautettu kenttä?",
- "deleteLabelPopup-title": "Poista nimilappu?",
- "description": "Kuvaus",
- "disambiguateMultiLabelPopup-title": "Yksikäsitteistä nimilapputoiminta",
- "disambiguateMultiMemberPopup-title": "Yksikäsitteistä jäsentoiminta",
- "discard": "Hylkää",
- "done": "Valmis",
- "download": "Lataa",
- "edit": "Muokkaa",
- "edit-avatar": "Muokkaa profiilikuvaa",
- "edit-profile": "Muokkaa profiilia",
- "edit-wip-limit": "Muokkaa WIP-rajaa",
- "soft-wip-limit": "Pehmeä WIP-raja",
- "editCardStartDatePopup-title": "Muokkaa aloituspäivää",
- "editCardDueDatePopup-title": "Muokkaa eräpäivää",
- "editCustomFieldPopup-title": "Muokkaa kenttää",
- "editCardSpentTimePopup-title": "Muuta käytettyä aikaa",
- "editLabelPopup-title": "Muokkaa nimilappua",
- "editNotificationPopup-title": "Muokkaa ilmoituksia",
- "editProfilePopup-title": "Muokkaa profiilia",
- "email": "Sähköposti",
- "email-enrollAccount-subject": "Sinulle on luotu tili palveluun __siteName__",
- "email-enrollAccount-text": "Hei __user__,\n\nKlikkaa alla olevaa linkkiä aloittaaksesi palvelun käytön.\n\n__url__\n\nKiitos.",
- "email-fail": "Sähköpostin lähettäminen epäonnistui",
- "email-fail-text": "Virhe yrittäessä lähettää sähköpostia",
- "email-invalid": "Virheellinen sähköposti",
- "email-invite": "Kutsu sähköpostilla",
- "email-invite-subject": "__inviter__ lähetti sinulle kutsun",
- "email-invite-text": "Hyvä __user__,\n\n__inviter__ kutsuu sinut liittymään taululle \"__board__\" yhteistyötä varten.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n\n__url__\n\nKiitos.",
- "email-resetPassword-subject": "Nollaa salasanasi palvelussa __siteName__",
- "email-resetPassword-text": "Hei __user__,\n\nNollataksesi salasanasi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
- "email-sent": "Sähköposti lähetetty",
- "email-verifyEmail-subject": "Varmista sähköpostiosoitteesi osoitteessa __url__",
- "email-verifyEmail-text": "Hei __user__,\n\nvahvistaaksesi sähköpostiosoitteesi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
- "enable-wip-limit": "Ota käyttöön WIP-raja",
- "error-board-doesNotExist": "Tätä taulua ei ole olemassa",
- "error-board-notAdmin": "Tehdäksesi tämän sinun täytyy olla tämän taulun ylläpitäjä",
- "error-board-notAMember": "Tehdäksesi tämän sinun täytyy olla tämän taulun jäsen",
- "error-json-malformed": "Tekstisi ei ole kelvollisessa JSON-muodossa",
- "error-json-schema": "JSON-tietosi ei sisällä oikeaa tietoa oikeassa muodossa",
- "error-csv-schema": "CSV tietosi (pilkulla erotetut arvot)/TSV (tabilla erotetut arvot) ei sisällä oikeaa tietoa oikeassa muodossa",
- "error-list-doesNotExist": "Tätä listaa ei ole olemassa",
- "error-user-doesNotExist": "Tätä käyttäjää ei ole olemassa",
- "error-user-notAllowSelf": "Et voi kutsua itseäsi",
- "error-user-notCreated": "Tätä käyttäjää ei ole luotu",
- "error-username-taken": "Tämä käyttäjätunnus on jo käytössä",
- "error-email-taken": "Sähköpostiosoite on jo käytössä",
- "export-board": "Vie taulu",
- "export-board-json": "Vie taulu JSON",
- "export-board-csv": "Vie taulu CSV",
- "export-board-tsv": "Vie taulu TSV",
- "export-board-html": "Vie taulu HTML",
- "exportBoardPopup-title": "Vie taulu",
- "sort": "Lajittele",
- "sort-desc": "Klikkaa lajitellaksesi listan",
- "list-sort-by": "Lajittele lista:",
- "list-label-modifiedAt": "Viimeinen käyttöaika",
- "list-label-title": "Listan nimi",
- "list-label-sort": "Oma manuaalinen järjestys",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Suodata",
- "filter-cards": "Suodata kortit tai listat",
- "list-filter-label": "Suodata listat otsikon mukaan",
- "filter-clear": "Poista suodatin",
- "filter-labels-label": "Suodata nimilappu",
- "filter-no-label": "Ei nimilappua",
- "filter-member-label": "Suodata jäsen",
- "filter-no-member": "Ei jäseniä",
- "filter-assignee-label": "Suodata käsittelijä",
- "filter-no-assignee": "Ei käsittelijää",
- "filter-custom-fields-label": "Suodata mukautettu kenttä",
- "filter-no-custom-fields": "Ei mukautettuja kenttiä",
- "filter-show-archive": "Näytä arkistoidut listat",
- "filter-hide-empty": "Näytä tyhjät listat",
- "filter-on": "Suodatus on päällä",
- "filter-on-desc": "Suodatat kortteja tällä taululla. Klikkaa tästä muokataksesi suodatinta.",
- "filter-to-selection": "Suodata valintaan",
- "other-filters-label": "Muut suodattimet",
- "advanced-filter-label": "Edistynyt suodatin",
- "advanced-filter-description": "Edistynyt suodatin mahdollistaa merkkijonon, joka sisältää seuraavat operaattorit: == != <= >= && || ( ) Operaattorien välissä käytetään välilyöntiä. Voit suodattaa kaikki mukautetut kentät kirjoittamalla niiden nimet ja arvot. Esimerkiksi: Field1 == Value1. Huom: Jos kentillä tai arvoilla on välilyöntejä, sinun on sijoitettava ne yksittäisiin lainausmerkkeihin. Esimerkki: 'Kenttä 1' == 'Arvo 1'. Voit hypätä yksittäisen kontrollimerkkien (' \\/) yli käyttämällä \\. Esimerkki: Field1 = I\\'m. Voit myös yhdistää useita ehtoja. Esimerkiksi: F1 == V1 || F1 == V2. Yleensä kaikki operaattorit tulkitaan vasemmalta oikealle. Voit muuttaa järjestystä asettamalla sulkuja. Esimerkiksi: F1 == V1 && (F2 == V2 || F2 == V3). Voit myös etsiä tekstikentistä regexillä: F1 == /Tes.*/i",
- "fullname": "Koko nimi",
- "header-logo-title": "Palaa taulut sivullesi.",
- "hide-system-messages": "Piilota järjestelmäviestit",
- "headerBarCreateBoardPopup-title": "Luo taulu",
- "home": "Koti",
- "import": "Tuo",
- "impersonate-user": "Esiinny käyttäjänä",
- "link": "Linkitä",
- "import-board": "tuo taulu",
- "import-board-c": "Tuo taulu",
- "import-board-title-trello": "Tuo taulu Trellosta",
- "import-board-title-wekan": "Tuo taulu edellisestä viennistä",
- "import-board-title-csv": "Tuo taulu CSV/TSV",
- "from-trello": "Trellosta",
- "from-wekan": "Edellisestä viennistä",
- "from-csv": "CSV/TSV muodosta",
- "import-board-instruction-trello": "Mene Trello-taulullasi 'Menu', sitten 'More', 'Print and Export', 'Export JSON', ja kopioi tuloksena saamasi teksti",
- "import-board-instruction-csv": "Liitä pilkulla erotellut arvot (CSV)/ tabilla erotetut arvot (TSV).",
- "import-board-instruction-wekan": "Taulullasi, mene 'Valikko', sitten 'Vie taulu', ja kopioi teksti ladatusta tiedostosta.",
- "import-board-instruction-about-errors": "Jos virheitä tulee taulua tuotaessa, joskus tuonti silti toimii, ja taulu on Kaikki taulut sivulla.",
- "import-json-placeholder": "Liitä kelvollinen JSON-tietosi tähän",
- "import-csv-placeholder": "Liitä kelvollinen CSV/TSV tietosi tähän",
- "import-map-members": "Vastaavat jäsenet",
- "import-members-map": "Tuomallasi taululla on muutamia jäseniä. Ole hyvä ja valitse tuomiasi jäseniä vastaavat käyttäjäsi",
- "import-show-user-mapping": "Tarkasta vastaavat jäsenet",
- "import-user-select": "Valitse olemassaoleva käyttäjä jota haluat käyttää tänä käyttäjänä",
- "importMapMembersAddPopup-title": "Valitse käyttäjä",
- "info": "Versio",
- "initials": "Nimikirjaimet",
- "invalid-date": "Virheellinen päivämäärä",
- "invalid-time": "Virheellinen aika",
- "invalid-user": "Virheellinen käyttäjä",
- "joined": "liittyi",
- "just-invited": "Sinut on juuri kutsuttu tälle taululle",
- "keyboard-shortcuts": "Pikanäppäimet",
- "label-create": "Luo nimilappu",
- "label-default": "%s nimilappu (oletus)",
- "label-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän nimilapun kaikista korteista ja tuhoaa sen historian.",
- "labels": "Nimilaput",
- "language": "Kieli",
- "last-admin-desc": "Et voi vaihtaa rooleja koska täytyy olla olemassa ainakin yksi ylläpitäjä.",
- "leave-board": "Jää pois taululta",
- "leave-board-pop": "Haluatko varmasti poistua taululta __boardTitle__? Sinut poistetaan kaikista tämän taulun korteista.",
- "leaveBoardPopup-title": "Poistu taululta?",
- "link-card": "Linkki tähän korttiin",
- "list-archive-cards": "Siirrä kaikki tämän listan kortit Arkistoon",
- "list-archive-cards-pop": "Tämä poistaa kaikki tämän listan kortit taululta. Nähdäksesi Arkistossa olevat kortit ja tuodaksesi ne takaisin taululle, klikkaa “Valikko” > “Arkisto”.",
- "list-move-cards": "Siirrä kaikki kortit tässä listassa",
- "list-select-cards": "Valitse kaikki kortit tässä listassa",
- "set-color-list": "Aseta väri",
- "listActionPopup-title": "Listatoimet",
- "settingsUserPopup-title": "Käyttäjäasetukset",
- "swimlaneActionPopup-title": "Swimlane-toimet",
- "swimlaneAddPopup-title": "Lisää Swimlane alle",
- "listImportCardPopup-title": "Tuo Trello-kortti",
- "listImportCardsTsvPopup-title": "Tuo Excel CSV/TSV",
- "listMorePopup-title": "Lisää",
- "link-list": "Linkki tähän listaan",
- "list-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja listan poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "list-delete-suggest-archive": "Voit siirtää listan Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
- "lists": "Listat",
- "swimlanes": "Swimlanet",
- "log-out": "Kirjaudu ulos",
- "log-in": "Kirjaudu sisään",
- "loginPopup-title": "Kirjaudu sisään",
- "memberMenuPopup-title": "Jäsenasetukset",
- "members": "Jäsenet",
- "menu": "Valikko",
- "move-selection": "Siirrä valinta",
- "moveCardPopup-title": "Siirrä kortti",
- "moveCardToBottom-title": "Siirrä alimmaiseksi",
- "moveCardToTop-title": "Siirrä ylimmäiseksi",
- "moveSelectionPopup-title": "Siirrä valinta",
- "multi-selection": "Monivalinta",
- "multi-selection-label": "Aseta nimilappu valinnalle",
- "multi-selection-member": "Aseta jäsen valinnalle",
- "multi-selection-on": "Monivalinta on päällä",
- "muted": "Vaimennettu",
- "muted-info": "Et saa koskaan ilmoituksia tämän taulun muutoksista",
- "my-boards": "Tauluni",
- "name": "Nimi",
- "no-archived-cards": "Ei kortteja Arkistossa.",
- "no-archived-lists": "Ei listoja Arkistossa.",
- "no-archived-swimlanes": "Ei Swimlaneja Arkistossa.",
- "no-results": "Ei tuloksia",
- "normal": "Normaali",
- "normal-desc": "Voi nähdä ja muokata kortteja. Ei voi muokata asetuksia.",
- "not-accepted-yet": "Kutsua ei ole hyväksytty vielä",
- "notify-participate": "Vastaanota päivityksiä kaikilta korteilta jotka olet tehnyt tai joihin osallistut.",
- "notify-watch": "Vastaanota päivityksiä kaikilta tauluilta, listoilta tai korteilta joita seuraat.",
- "optional": "valinnainen",
- "or": "tai",
- "page-maybe-private": "Tämä sivu voi olla yksityinen. Saatat nähdä sen kirjautumalla sisään.",
- "page-not-found": "Sivua ei löytynyt.",
- "password": "Salasana",
- "paste-or-dragdrop": "liittääksesi, tai vedä & pudota kuvatiedosto siihen (vain kuva)",
- "participating": "Osallistutaan",
- "preview": "Esikatsele",
- "previewAttachedImagePopup-title": "Esikatsele",
- "previewClipboardImagePopup-title": "Esikatsele",
- "private": "Yksityinen",
- "private-desc": "Tämä taulu on yksityinen. Vain taululle lisätyt henkilöt voivat nähdä ja muokata sitä.",
- "profile": "Profiili",
- "public": "Julkinen",
- "public-desc": "Tämä taulu on julkinen. Se näkyy kenelle tahansa jolla on linkki ja näkyy myös hakukoneissa kuten Google. Vain taululle lisätyt henkilöt voivat muokata sitä.",
- "quick-access-description": "Merkkaa taulu tähdellä lisätäksesi pikavalinta tähän palkkiin.",
- "remove-cover": "Poista kansi",
- "remove-from-board": "Poista taululta",
- "remove-label": "Poista nimilappu",
- "listDeletePopup-title": "Poista lista?",
- "remove-member": "Poista jäsen",
- "remove-member-from-card": "Poista kortilta",
- "remove-member-pop": "Poista __name__ (__username__) taululta __boardTitle__? Jäsen poistetaan kaikilta taulun korteilta. Heille lähetetään ilmoitus.",
- "removeMemberPopup-title": "Poista jäsen?",
- "rename": "Nimeä uudelleen",
- "rename-board": "Nimeä taulu uudelleen",
- "restore": "Palauta",
- "save": "Tallenna",
- "search": "Etsi",
- "rules": "Säännöt",
- "search-cards": "Etsi kortin/listan otsikoista, kuvauksista ja mukautetuista kentistä tällä taululla ",
- "search-example": "Kirjoita teksti jota etsit ja paina Enter",
- "select-color": "Valitse väri",
- "select-board": "Valitse taulu",
- "set-wip-limit-value": "Aseta tämän listan tehtävien enimmäismäärä",
- "setWipLimitPopup-title": "Aseta WIP-raja",
- "shortcut-assign-self": "Valitse itsesi nykyiselle kortille",
- "shortcut-autocomplete-emoji": "Automaattinen täydennys emojille",
- "shortcut-autocomplete-members": "Automaattinen täydennys jäsenille",
- "shortcut-clear-filters": "Poista kaikki suodattimet",
- "shortcut-close-dialog": "Sulje valintaikkuna",
- "shortcut-filter-my-cards": "Suodata korttini",
- "shortcut-show-shortcuts": "Tuo esiin tämä pikavalintalista",
- "shortcut-toggle-filterbar": "Muokkaa suodatussivupalkin näkyvyyttä",
- "shortcut-toggle-searchbar": "Muokkaa etsintäsivupalkin näkyvyyttä",
- "shortcut-toggle-sidebar": "Muokkaa taulusivupalkin näkyvyyttä",
- "show-cards-minimum-count": "Näytä korttien lukumäärä jos lista sisältää enemmän kuin",
- "sidebar-open": "Avaa sivupalkki",
- "sidebar-close": "Sulje sivupalkki",
- "signupPopup-title": "Luo tili",
- "star-board-title": "Klikkaa merkataksesi taulu tähdellä. Se tulee näkymään ylimpänä taululistallasi.",
- "starred-boards": "Tähdellä merkatut taulut",
- "starred-boards-description": "Tähdellä merkatut taulut näkyvät ylimpänä taululistallasi.",
- "subscribe": "Tilaa",
- "team": "Tiimi",
- "this-board": "tämä taulu",
- "this-card": "tämä kortti",
- "spent-time-hours": "Käytetty aika (tuntia)",
- "overtime-hours": "Ylityö (tuntia)",
- "overtime": "Ylityö",
- "has-overtime-cards": "Sisältää ylityökortteja",
- "has-spenttime-cards": "Sisältää käytetty aika -kortteja",
- "time": "Aika",
- "title": "Otsikko",
- "tracking": "Ilmoitukset",
- "tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.",
- "type": "Tyyppi",
- "unassign-member": "Peru jäsenvalinta",
- "unsaved-description": "Sinulla on tallentamaton kuvaus.",
- "unwatch": "Lopeta seuraaminen",
- "upload": "Lähetä",
- "upload-avatar": "Lähetä profiilikuva",
- "uploaded-avatar": "Profiilikuva lähetetty",
- "custom-top-left-corner-logo-image-url": "Mukautettu oikean yläkulman logo kuvan URL",
- "custom-top-left-corner-logo-link-url": "Mukautettu oikean yläkulma logon linkki URL",
- "custom-top-left-corner-logo-height": "Mukautettu oikean yläkulman logokuvan korkeus. Oletus: 27",
- "custom-login-logo-image-url": "Mukautettu kirjautumis logo kuvan URL",
- "custom-login-logo-link-url": "Mukautettu kirjautumis logon linkki URL",
- "text-below-custom-login-logo": "Teksti mukautetun kirjautumis logon alla",
- "username": "Käyttäjätunnus",
- "view-it": "Näytä se",
- "warn-list-archived": "varoitus: tämä kortti on Arkistossa olevassa listassa",
- "watch": "Seuraa",
- "watching": "Seurataan",
- "watching-info": "Sinulle ilmoitetaan tämän taulun muutoksista",
- "welcome-board": "Tervetuloa-taulu",
- "welcome-swimlane": "Merkkipaalu 1",
- "welcome-list1": "Perusasiat",
- "welcome-list2": "Edistynyt",
- "card-templates-swimlane": "Korttimallit",
- "list-templates-swimlane": "Listamallit",
- "board-templates-swimlane": "Taulumallit",
- "what-to-do": "Mitä haluat tehdä?",
- "wipLimitErrorPopup-title": "Virheellinen WIP-raja",
- "wipLimitErrorPopup-dialog-pt1": "Tässä listassa olevien tehtävien määrä on korkeampi kuin asettamasi WIP-raja.",
- "wipLimitErrorPopup-dialog-pt2": "Siirrä joitain tehtäviä pois tästä listasta tai määritä korkeampi WIP-raja.",
- "admin-panel": "Hallintapaneeli",
- "settings": "Asetukset",
- "people": "Ihmiset",
- "registration": "Rekisteröinti",
- "disable-self-registration": "Poista käytöstä itserekisteröityminen",
- "invite": "Kutsu",
- "invite-people": "Kutsu ihmisiä",
- "to-boards": "Taulu(i)lle",
- "email-addresses": "Sähköpostiosoite",
- "smtp-host-description": "SMTP-palvelimen osoite jolla sähköpostit lähetetään.",
- "smtp-port-description": "STMP-palvelimesi käyttämä lähteville sähköposteille tarkoitettu portti.",
- "smtp-tls-description": "Ota käyttöön TLS-tuki SMTP-palvelimelle",
- "smtp-host": "SMTP-isäntä",
- "smtp-port": "SMTP-portti",
- "smtp-username": "Käyttäjätunnus",
- "smtp-password": "Salasana",
- "smtp-tls": "TLS-tuki",
- "send-from": "Lähettäjä",
- "send-smtp-test": "Lähetä testisähköposti itsellesi",
- "invitation-code": "Kutsukoodi",
- "email-invite-register-subject": "__inviter__ lähetti sinulle kutsun",
- "email-invite-register-text": "Hei __user__,\n\n__inviter__ kutsuu sinut mukaan kanban-taulun käyttöön.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n__url__\n\nKutsukoodisi on: __icode__\n\nKiitos.",
- "email-smtp-test-subject": "SMTP-testisähköposti",
- "email-smtp-test-text": "Olet onnistuneesti lähettänyt sähköpostin",
- "error-invitation-code-not-exist": "Kutsukoodia ei ole olemassa",
- "error-notAuthorized": "Sinulla ei ole oikeutta tarkastella tätä sivua.",
- "webhook-title": "Webkoukun nimi",
- "webhook-token": "Token (Valinnainen autentikoinnissa)",
- "outgoing-webhooks": "Lähtevät Webkoukut",
- "bidirectional-webhooks": "Kaksisuuntaiset Webkoukut",
- "outgoingWebhooksPopup-title": "Lähtevät Webkoukut",
- "boardCardTitlePopup-title": "Kortin otsikkosuodatin",
- "disable-webhook": "Poista käytöstä tämä Webkoukku",
- "global-webhook": "Kaikenkattavat Webkoukut",
- "new-outgoing-webhook": "Uusi lähtevä Webkoukku",
- "no-name": "(Tuntematon)",
- "Node_version": "Node-versio",
- "Meteor_version": "Meteor-versio",
- "MongoDB_version": "MongoDB-versio",
- "MongoDB_storage_engine": "MongoDB tallennusmoottori",
- "MongoDB_Oplog_enabled": "MongoDB Oplog käytössä",
- "OS_Arch": "Käyttöjärjestelmän arkkitehtuuri",
- "OS_Cpus": "Käyttöjärjestelmän CPU-määrä",
- "OS_Freemem": "Käyttöjärjestelmän vapaa muisti",
- "OS_Loadavg": "Käyttöjärjestelmän kuorman keskiarvo",
- "OS_Platform": "Käyttöjärjestelmäalusta",
- "OS_Release": "Käyttöjärjestelmän julkaisu",
- "OS_Totalmem": "Käyttöjärjestelmän muistin kokonaismäärä",
- "OS_Type": "Käyttöjärjestelmän tyyppi",
- "OS_Uptime": "Käyttöjärjestelmä ollut käynnissä",
- "days": "päivää",
- "hours": "tuntia",
- "minutes": "minuuttia",
- "seconds": "sekuntia",
- "show-field-on-card": "Näytä tämä kenttä kortilla",
- "automatically-field-on-card": "Luo kenttä automaattisesti kaikille korteille",
- "showLabel-field-on-card": "Näytä kentän nimilappu minikortilla",
- "yes": "Kyllä",
- "no": "Ei",
- "accounts": "Tilit",
- "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen",
- "accounts-allowUserNameChange": "Salli käyttäjätunnuksen muuttaminen",
- "createdAt": "Luotu",
- "verified": "Varmistettu",
- "active": "Aktiivinen",
- "card-received": "Vastaanotettu",
- "card-received-on": "Vastaanotettu",
- "card-end": "Loppuu",
- "card-end-on": "Loppuu",
- "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää",
- "editCardEndDatePopup-title": "Vaihda loppumispäivää",
- "setCardColorPopup-title": "Aseta väri",
- "setCardActionsColorPopup-title": "Valitse väri",
- "setSwimlaneColorPopup-title": "Valitse väri",
- "setListColorPopup-title": "Valitse väri",
- "assigned-by": "Tehtävänantaja",
- "requested-by": "Pyytäjä",
- "board-delete-notice": "Poistaminen on lopullista. Menetät kaikki listat, kortit ja toimet tällä taululla.",
- "delete-board-confirm-popup": "Kaikki listat, kortit, nimilaput ja toimet poistetaan ja et pysty palauttamaan taulun sisältöä. Tätä ei voi peruuttaa.",
- "boardDeletePopup-title": "Poista taulu?",
- "delete-board": "Poista taulu",
- "default-subtasks-board": "Alitehtävät taululle __board__",
- "default": "Oletus",
- "queue": "Jono",
- "subtask-settings": "Alitehtävä-asetukset",
- "card-settings": "Kortin asetukset",
- "boardSubtaskSettingsPopup-title": "Taulualitehtävien asetukset",
- "boardCardSettingsPopup-title": "Kortin asetukset",
- "deposit-subtasks-board": "Talleta alitehtävät tälle taululle:",
- "deposit-subtasks-list": "Laskeutumislista alatehtäville tallennettu tänne:",
- "show-parent-in-minicard": "Näytä ylätehtävä minikortilla:",
- "prefix-with-full-path": "Etuliite koko polulla",
- "prefix-with-parent": "Etuliite ylätehtävällä",
- "subtext-with-full-path": "Aliteksti koko polulla",
- "subtext-with-parent": "Aliteksti ylätehtävällä",
- "change-card-parent": "Muuta kortin ylätehtävää",
- "parent-card": "Ylätehtäväkortti",
- "source-board": "Lähdetaulu",
- "no-parent": "Älä näytä ylätehtävää",
- "activity-added-label": "lisätty nimilappu '%s' kohteeseen %s",
- "activity-removed-label": "poistettu nimilappu '%s' kohteesta %s",
- "activity-delete-attach": "poistettu liitetiedosto kohteesta %s",
- "activity-added-label-card": "lisätty nimilappu '%s'",
- "activity-removed-label-card": "poistettu nimilappu '%s'",
- "activity-delete-attach-card": "poistettu liitetiedosto",
- "activity-set-customfield": "asetettu mukautettu kentän '%s' sisällöksi '%s' kortilla %s",
- "activity-unset-customfield": "poistettu mukautettu kenttä '%s' kortilla %s",
- "r-rule": "Sääntö",
- "r-add-trigger": "Lisää liipaisin",
- "r-add-action": "Lisää toimi",
- "r-board-rules": "Taulusäännöt",
- "r-add-rule": "Lisää sääntö",
- "r-view-rule": "Näytä sääntö",
- "r-delete-rule": "Poista sääntö",
- "r-new-rule-name": "Uuden säännön otsikko",
- "r-no-rules": "Ei sääntöjä",
- "r-trigger": "Liipaisin",
- "r-action": "Toimi",
- "r-when-a-card": "Kun kortti",
- "r-is": "on",
- "r-is-moved": "on siirretty",
- "r-added-to": "Lisätty kohteeseen",
- "r-removed-from": "Poistettu kohteesta",
- "r-the-board": "taulu",
- "r-list": "lista",
- "set-filter": "Aseta suodatin",
- "r-moved-to": "Siirretty kohteeseen",
- "r-moved-from": "Siirretty kohteesta",
- "r-archived": "Siirretty Arkistoon",
- "r-unarchived": "Palautettu Arkistosta",
- "r-a-card": "kortti",
- "r-when-a-label-is": "Kun nimilappu on",
- "r-when-the-label": "Kun nimilappu on",
- "r-list-name": "listan nimi",
- "r-when-a-member": "Kun jäsen on",
- "r-when-the-member": "Kun käyttäjä",
- "r-name": "nimi",
- "r-when-a-attach": "Kun liitetiedosto",
- "r-when-a-checklist": "Kun tarkistuslista on",
- "r-when-the-checklist": "Kun tarkistuslista",
- "r-completed": "Valmistunut",
- "r-made-incomplete": "Tehty ei valmistuneeksi",
- "r-when-a-item": "Kun tarkistuslistan kohta on",
- "r-when-the-item": "Kun tarkistuslistan kohta",
- "r-checked": "Ruksattu",
- "r-unchecked": "Poistettu ruksi",
- "r-move-card-to": "Siirrä kortti kohteeseen",
- "r-top-of": "Ylimmäiseksi",
- "r-bottom-of": "Alimmaiseksi",
- "r-its-list": "sen lista",
- "r-archive": "Siirrä Arkistoon",
- "r-unarchive": "Palauta Arkistosta",
- "r-card": "kortti",
- "r-add": "Lisää",
- "r-remove": "Poista",
- "r-label": "nimilappu",
- "r-member": "jäsen",
- "r-remove-all": "Poista kaikki jäsenet kortilta",
- "r-set-color": "Aseta väriksi",
- "r-checklist": "tarkistuslista",
- "r-check-all": "Ruksaa kaikki",
- "r-uncheck-all": "Poista ruksi kaikista",
- "r-items-check": "kohtaa tarkistuslistassa",
- "r-check": "Ruksaa",
- "r-uncheck": "Poista ruksi",
- "r-item": "kohta",
- "r-of-checklist": "tarkistuslistasta",
- "r-send-email": "Lähetä sähköposti",
- "r-to": "vastaanottajalle",
- "r-of": "/",
- "r-subject": "aihe",
- "r-rule-details": "Säännön yksityiskohdat",
- "r-d-move-to-top-gen": "Siirrä kortti listansa alkuun",
- "r-d-move-to-top-spec": "Siirrä kortti listan alkuun",
- "r-d-move-to-bottom-gen": "Siirrä kortti listansa loppuun",
- "r-d-move-to-bottom-spec": "Siirrä kortti listan loppuun",
- "r-d-send-email": "Lähetä sähköposti",
- "r-d-send-email-to": "vastaanottajalle",
- "r-d-send-email-subject": "aihe",
- "r-d-send-email-message": "viesti",
- "r-d-archive": "Siirrä kortti Arkistoon",
- "r-d-unarchive": "Palauta kortti Arkistosta",
- "r-d-add-label": "Lisää nimilappu",
- "r-d-remove-label": "Poista nimilappu",
- "r-create-card": "Luo uusi kortti",
- "r-in-list": "listassa",
- "r-in-swimlane": "swimlanessa",
- "r-d-add-member": "Lisää jäsen",
- "r-d-remove-member": "Poista jäsen",
- "r-d-remove-all-member": "Poista kaikki jäsenet",
- "r-d-check-all": "Ruksaa kaikki listan kohdat",
- "r-d-uncheck-all": "Poista ruksi kaikista listan kohdista",
- "r-d-check-one": "Ruksaa kohta",
- "r-d-uncheck-one": "Poista ruksi kohdasta",
- "r-d-check-of-list": "tarkistuslistasta",
- "r-d-add-checklist": "Lisää tarkistuslista",
- "r-d-remove-checklist": "Poista tarkistuslista",
- "r-by": "mennessä",
- "r-add-checklist": "Lisää tarkistuslista",
- "r-with-items": "kohteiden kanssa",
- "r-items-list": "kohde1,kohde2,kohde3",
- "r-add-swimlane": "Lisää swimlane",
- "r-swimlane-name": "swimlanen nimi",
- "r-board-note": "Huom: jätä kenttä tyhjäksi täsmätäksesi jokaiseen mahdolliseen arvoon.",
- "r-checklist-note": "Huom: tarkistuslistan kohteet täytyy kirjoittaa pilkulla eroteltuina.",
- "r-when-a-card-is-moved": "Kun kortti on siirretty toiseen listaan",
- "r-set": "Aseta",
- "r-update": "Päivitä",
- "r-datefield": "päivämäärä kenttä",
- "r-df-start-at": "alkaa",
- "r-df-due-at": "erääntyy",
- "r-df-end-at": "loppuu",
- "r-df-received-at": "vastaanotettu",
- "r-to-current-datetime": "nykyiseen päivään/aikaan",
- "r-remove-value-from": "Poista arvo kohteesta",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Kirjautumistapa",
- "authentication-type": "Kirjautumistyyppi",
- "custom-product-name": "Mukautettu tuotenimi",
- "layout": "Ulkoasu",
- "hide-logo": "Piilota Logo",
- "add-custom-html-after-body-start": "Lisää HTML alun jälkeen",
- "add-custom-html-before-body-end": "Lisä HTML ennen loppua",
- "error-undefined": "Jotain meni pieleen",
- "error-ldap-login": "Virhe tapahtui yrittäessä kirjautua sisään",
- "display-authentication-method": "Näytä kirjautumistapa",
- "default-authentication-method": "Oletuskirjautumistapa",
- "duplicate-board": "Tee kaksoiskappale taulusta",
- "people-number": "Ihmisten määrä on:",
- "swimlaneDeletePopup-title": "Poista Swimlane?",
- "swimlane-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja swimlanen poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "restore-all": "Palauta kaikki",
- "delete-all": "Poista kaikki",
- "loading": "Ladataan, odota hetki.",
- "previous_as": "viimeksi oli",
- "act-a-dueAt": "muokattu eräätymisaikaa \nMilloin: __timeValue__\nMissä: __card__\n edellinen erääntymisaika oli __timeOldValue__",
- "act-a-endAt": "muokattu loppumisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "act-a-startAt": "muokattu aloitusajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "act-a-receivedAt": "muutettu vastaanottamisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "a-dueAt": "muutettu vastaanottamisajaksi",
- "a-endAt": "muokattu loppumisajaksi",
- "a-startAt": "muokattu aloitusajaksi",
- "a-receivedAt": "muokattu vastaanottamisajaksi",
- "almostdue": "nykyinen eräaika %s lähestyy",
- "pastdue": "nykyinen eräaika %s on mennyt",
- "duenow": "nykyinen eräaika %s on tänään",
- "act-newDue": "__list__/__card__ on 1. erääntymismuistutus [__board__]",
- "act-withDue": "__list__/__card__ erääntymismuistutukset [__board__]",
- "act-almostdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ lähestyvän",
- "act-pastdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ menneen",
- "act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
- "act-atUserComment": "Sinut mainittiin [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
- "accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse",
- "hide-minicard-label-text": "Piilota minikortin nimilappu teksti",
- "show-desktop-drag-handles": "Näytä työpöydän vedon kahvat",
- "assignee": "Käsittelijä",
- "cardAssigneesPopup-title": "Käsittelijä",
- "addmore-detail": "Lisää tarkempi kuvaus",
- "show-on-card": "Näytä kortilla",
- "new": "Uusi",
- "editUserPopup-title": "Muokkaa käyttäjää",
- "newUserPopup-title": "Uusi käyttäjä",
- "notifications": "Ilmoitukset",
- "view-all": "Näytä kaikki",
- "filter-by-unread": "Suodata lukemattomat",
- "mark-all-as-read": "Merkkaa kaikki luetuksi",
- "remove-all-read": "Poista kaikki luetut",
- "allow-rename": "Salli uudelleennimeäminen",
- "allowRenamePopup-title": "Salli uudelleennimeäminen",
- "start-day-of-week": "Aseta viikon alkamispäivä",
- "monday": "Maanantai",
- "tuesday": "Tiistai",
- "wednesday": "Keskiviikko",
- "thursday": "Torstai",
- "friday": "Perjantai",
- "saturday": "Lauantai",
- "sunday": "Sunnuntai",
- "status": "Tilanne",
- "swimlane": "Swimlane",
- "owner": "Omistaja",
- "last-modified-at": "Viimeksi muokattu",
- "last-activity": "Viimeisin toiminta",
- "voting": "Äänestys",
- "archived": "Arkistoitu",
- "delete-linked-card-before-this-card": "Et voi poistaa tätä korttia ennenkuin ensin poistat linkitetyn kortin jolla on",
- "delete-linked-cards-before-this-list": "Et voi poistaa tätä listaa ennenkuin poistat linkitetyt kortit jotka osoittavat kortteihin tässä listassa",
- "hide-checked-items": "Piilota ruksatut kohdat",
- "task": "Tehtävä",
- "create-task": "Luo tehtävä",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Hyväksy",
+ "act-activity-notify": "Toimintailmoitus",
+ "act-addAttachment": "lisätty liite __attachment__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-deleteAttachment": "poistettu liite __attachment__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addSubtask": "lisätty alitehtävä __subtask__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addLabel": "Lisätty nimilappu __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addedLabel": "Lisätty nimilappu __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeLabel": "Poistettu nimilappu __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removedLabel": "Poistettu nimilappu __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addChecklist": "lisätty tarkistuslista __checklist__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addChecklistItem": "lisätty tarkistuslistan kohta __checklistItem__ tarkistuslistalle __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeChecklist": "poistettu tarkistuslista __checklist__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeChecklistItem": "poistettu tarkistuslistan kohta __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-checkedItem": "ruksattu __checklistItem__ tarkistuslistalla __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-uncheckedItem": "poistettu ruksi __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-completeChecklist": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-uncompleteChecklist": "tehty ei valmistuneeksi tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addComment": "kommentoitu kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-editComment": "muokkasi kommenttia kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ at taululla __board__",
+ "act-deleteComment": "poisti kommentin kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createBoard": "luotu taulu __board__",
+ "act-createSwimlane": "loi swimlanen __swimlane__ taululle __board__",
+ "act-createCard": "luotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createCustomField": "loi mukautetun kentän __customField__ taululla __board__",
+ "act-deleteCustomField": "poisti mukautetun kentän __customField__ taululla __board__",
+ "act-setCustomField": "muokkasi mukautettua kenttää __customField__: __customFieldValue__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createList": "lisätty lista __list__ taululle __board__",
+ "act-addBoardMember": "lisätty jäsen __member__ taululle __board__",
+ "act-archivedBoard": "Taulu __board__ siirretty Arkistoon",
+ "act-archivedCard": "Kortti __card__ listalla __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-archivedList": "Lista __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-archivedSwimlane": "Swimlane __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-importBoard": "tuotu taulu __board__",
+ "act-importCard": "tuotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-importList": "tuotu lista __list__ swimlanelle __swimlane__ taululla __board__",
+ "act-joinMember": "lisätty jäsen __member__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-moveCard": "siirsi kortin __card__ taululla __board__ listasta __oldList__ swimlanelta __oldSwimlane__ listalle __list__ swimlanelle __swimlane__",
+ "act-moveCardToOtherBoard": "siirretty kortti __card__ listasta __oldList__ swimlanella __oldSwimlane__ taululla __oldBoard__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeBoardMember": "poistettu jäsen __member__ taululta __board__",
+ "act-restoredCard": "palautettu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-unjoinMember": "poistettu jäsen __member__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Toimet",
+ "activities": "Toimet",
+ "activity": "Toiminta",
+ "activity-added": "lisätty %s kohteeseen %s",
+ "activity-archived": "%s siirretty Arkistoon",
+ "activity-attached": "liitetty %s kohteeseen %s",
+ "activity-created": "luotu %s",
+ "activity-customfield-created": "luotu mukautettu kenttä %s",
+ "activity-excluded": "poistettu %s kohteesta %s",
+ "activity-imported": "tuotu %s kohteeseen %s lähteestä %s",
+ "activity-imported-board": "tuotu %s lähteestä %s",
+ "activity-joined": "liitytty kohteeseen %s",
+ "activity-moved": "siirretty %s kohteesta %s kohteeseen %s",
+ "activity-on": "kohteessa %s",
+ "activity-removed": "poistettu %s kohteesta %s",
+ "activity-sent": "lähetetty %s kohteeseen %s",
+ "activity-unjoined": "peruttu %s liittyminen",
+ "activity-subtask-added": "lisätty alitehtävä kohteeseen %s",
+ "activity-checked-item": "ruksattu %s tarkistuslistassa %s / %s",
+ "activity-unchecked-item": "poistettu ruksi %s tarkistuslistassa %s / %s",
+ "activity-checklist-added": "lisätty tarkistuslista kortille %s",
+ "activity-checklist-removed": "poistettu tarkistuslista kohteesta %s",
+ "activity-checklist-completed": "saatiin valmiiksi tarkistuslista %s / %s",
+ "activity-checklist-uncompleted": "ei saatu valmiiksi tarkistuslista %s / %s",
+ "activity-checklist-item-added": "lisäsi kohdan tarkistuslistaan '%s' kortilla %s",
+ "activity-checklist-item-removed": "poistettu tarkistuslistan kohta '%s' / %s",
+ "add": "Lisää",
+ "activity-checked-item-card": "ruksattu %s tarkistuslistassa %s",
+ "activity-unchecked-item-card": "poistettu ruksi %s tarkistuslistassa %s",
+ "activity-checklist-completed-card": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "activity-checklist-uncompleted-card": "ei valmistunut tarkistuslista %s",
+ "activity-editComment": "muokkasi kommenttia %s",
+ "activity-deleteComment": "poisti kommentin %s",
+ "activity-receivedDate": "muokkasi vastaanotettu päiväksi %s / %s",
+ "activity-startDate": "muokkasi aloituspäiväksi %s / %s",
+ "activity-dueDate": "muokkasi eräpäiväksi %s / %s",
+ "activity-endDate": "muokkasi loppumispäiväksi %s / %s",
+ "add-attachment": "Lisää liite",
+ "add-board": "Lisää taulu",
+ "add-card": "Lisää kortti",
+ "add-swimlane": "Lisää Swimlane",
+ "add-subtask": "Lisää alitehtävä",
+ "add-checklist": "Lisää tarkistuslista",
+ "add-checklist-item": "Lisää kohta tarkistuslistaan",
+ "add-cover": "Lisää kansi",
+ "add-label": "Lisää nimilappu",
+ "add-list": "Lisää lista",
+ "add-members": "Lisää jäseniä",
+ "added": "Lisätty",
+ "addMemberPopup-title": "Jäsenet",
+ "admin": "Ylläpitäjä",
+ "admin-desc": "Voi nähdä ja muokata kortteja, poistaa jäseniä, ja muuttaa taulun asetuksia.",
+ "admin-announcement": "Ilmoitus",
+ "admin-announcement-active": "Aktiivinen järjestelmänlaajuinen ilmoitus",
+ "admin-announcement-title": "Ilmoitus ylläpitäjältä",
+ "all-boards": "Kaikki taulut",
+ "and-n-other-card": "Ja __count__ muu kortti",
+ "and-n-other-card_plural": "Ja __count__ muuta korttia",
+ "apply": "Käytä",
+ "app-is-offline": "Ladataan, odota. Sivun uudelleenlataus aiheuttaa tietojen menettämisen. Jos lataaminen ei toimi, tarkista että palvelin ei ole pysähtynyt.",
+ "archive": "Siirrä Arkistoon",
+ "archive-all": "Siirrä kaikki Arkistoon",
+ "archive-board": "Siirrä taulu Arkistoon",
+ "archive-card": "Siirrä kortti Arkistoon",
+ "archive-list": "Siirrä lista Arkistoon",
+ "archive-swimlane": "Siirrä Swimlane Arkistoon",
+ "archive-selection": "Siirrä valinta Arkistoon",
+ "archiveBoardPopup-title": "Siirrä taulu Arkistoon?",
+ "archived-items": "Arkisto",
+ "archived-boards": "Taulut Arkistossa",
+ "restore-board": "Palauta taulu",
+ "no-archived-boards": "Ei tauluja Arkistossa.",
+ "archives": "Arkisto",
+ "template": "Malli",
+ "templates": "Mallit",
+ "assign-member": "Valitse jäsen",
+ "attached": "liitetty",
+ "attachment": "Liitetiedosto",
+ "attachment-delete-pop": "Liitetiedoston poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "attachmentDeletePopup-title": "Poista liitetiedosto?",
+ "attachments": "Liitetiedostot",
+ "auto-watch": "Automaattisesti seuraa tauluja kun ne on luotu",
+ "avatar-too-big": "Profiilikuva on liian suuri (enintään 520 kt)",
+ "back": "Takaisin",
+ "board-change-color": "Muokkaa väriä",
+ "board-nb-stars": "%s tähteä",
+ "board-not-found": "Taulua ei löytynyt",
+ "board-private-info": "Tämä taulu tulee olemaan yksityinen.",
+ "board-public-info": "Tämä taulu tulee olemaan julkinen.",
+ "boardChangeColorPopup-title": "Muokkaa taulun taustaa",
+ "boardChangeTitlePopup-title": "Nimeä taulu uudelleen",
+ "boardChangeVisibilityPopup-title": "Muokkaa näkyvyyttä",
+ "boardChangeWatchPopup-title": "Muokkaa seuraamista",
+ "boardMenuPopup-title": "Tauluasetukset",
+ "boardChangeViewPopup-title": "Taulunäkymä",
+ "boards": "Taulut",
+ "board-view": "Taulunäkymä",
+ "board-view-cal": "Kalenteri",
+ "board-view-swimlanes": "Swimlanet",
+ "board-view-collapse": "Pienennä",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listat",
+ "bucket-example": "Kuten “Laatikko lista” esimerkiksi",
+ "cancel": "Peruuta",
+ "card-archived": "Tämä kortti on siirretty Arkistoon.",
+ "board-archived": "Tämä taulu on siirretty Arkistoon.",
+ "card-comments-title": "Tässä kortissa on %s kommenttia.",
+ "card-delete-notice": "Poistaminen on lopullista. Menetät kaikki tähän korttiin liitetyt toimet.",
+ "card-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä, etkä pysty avata korttia uudelleen. Tätä ei voi peruuttaa.",
+ "card-delete-suggest-archive": "Voit siirtää kortin Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
+ "card-due": "Erääntyy",
+ "card-due-on": "Erääntyy",
+ "card-spent": "Käytetty aika",
+ "card-edit-attachments": "Muokkaa liitetiedostoja",
+ "card-edit-custom-fields": "Muokkaa mukautettuja kenttiä",
+ "card-edit-labels": "Muokkaa nimilappuja",
+ "card-edit-members": "Muokkaa jäseniä",
+ "card-labels-title": "Muokkaa kortin nimilappuja.",
+ "card-members-title": "Lisää tai poista taulun jäseniä tältä kortilta.",
+ "card-start": "Alkaa",
+ "card-start-on": "Alkaa",
+ "cardAttachmentsPopup-title": "Liitä mistä",
+ "cardCustomField-datePopup-title": "Muokkaa päivää",
+ "cardCustomFieldsPopup-title": "Muokkaa mukautettuja kenttiä",
+ "cardStartVotingPopup-title": "Äänestä",
+ "positiveVoteMembersPopup-title": "Kannattajat",
+ "negativeVoteMembersPopup-title": "Vastustajat",
+ "card-edit-voting": "Muokkaa äänestystä",
+ "editVoteEndDatePopup-title": "Muokkaa äänestyksen loppumispäivää",
+ "allowNonBoardMembers": "Salli kaikki kirjautuneet käyttäjät",
+ "vote-question": "Äänestys kysymys",
+ "vote-public": "Näytä kuka äänesti mitäkin",
+ "vote-for-it": "puolesta",
+ "vote-against": "vastaan",
+ "deleteVotePopup-title": "Poista ääni?",
+ "vote-delete-pop": "Poistaminen on lopullista. Menetät kaikki tähän äänestykseen liitetyt toimet.",
+ "cardDeletePopup-title": "Poista kortti?",
+ "cardDetailsActionsPopup-title": "Korttitoimet",
+ "cardLabelsPopup-title": "Nimilaput",
+ "cardMembersPopup-title": "Jäsenet",
+ "cardMorePopup-title": "Lisää",
+ "cardTemplatePopup-title": "Luo malli",
+ "cards": "Kortit",
+ "cards-count": "korttia",
+ "casSignIn": "CAS-kirjautuminen",
+ "cardType-card": "Kortti",
+ "cardType-linkedCard": "Linkitetty kortti",
+ "cardType-linkedBoard": "Linkitetty taulu",
+ "change": "Muokkaa",
+ "change-avatar": "Muokkaa profiilikuvaa",
+ "change-password": "Vaihda salasana",
+ "change-permissions": "Muokkaa oikeuksia",
+ "change-settings": "Muokkaa asetuksia",
+ "changeAvatarPopup-title": "Muokkaa profiilikuvaa",
+ "changeLanguagePopup-title": "Vaihda kieltä",
+ "changePasswordPopup-title": "Vaihda salasana",
+ "changePermissionsPopup-title": "Muokkaa oikeuksia",
+ "changeSettingsPopup-title": "Muokkaa asetuksia",
+ "subtasks": "Alitehtävät",
+ "checklists": "Tarkistuslistat",
+ "click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.",
+ "click-to-unstar": "Klikkaa poistaaksesi tähtimerkintä taululta.",
+ "clipboard": "Leikepöytä tai raahaa ja pudota",
+ "close": "Sulje",
+ "close-board": "Sulje taulu",
+ "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkisto”-painiketta taululistan yläpalkista.",
+ "color-black": "musta",
+ "color-blue": "sininen",
+ "color-crimson": "karmiininpunainen",
+ "color-darkgreen": "tummanvihreä",
+ "color-gold": "kulta",
+ "color-gray": "harmaa",
+ "color-green": "vihreä",
+ "color-indigo": "syvän sininen",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "vaaleanpunainen ruusu",
+ "color-navy": "laivastonsininen",
+ "color-orange": "oranssi",
+ "color-paleturquoise": "vaalean turkoosi",
+ "color-peachpuff": "persikanpunainen",
+ "color-pink": "vaaleanpunainen",
+ "color-plum": "luumunvärinen",
+ "color-purple": "violetti",
+ "color-red": "punainen",
+ "color-saddlebrown": "satulanruskea",
+ "color-silver": "hopea",
+ "color-sky": "taivas",
+ "color-slateblue": "liuskekivi sininen",
+ "color-white": "valkoinen",
+ "color-yellow": "keltainen",
+ "unset-color": "Peru väri",
+ "comment": "Kommentti",
+ "comment-placeholder": "Kirjoita kommentti",
+ "comment-only": "Vain kommentointi",
+ "comment-only-desc": "Voi vain kommentoida kortteja",
+ "no-comments": "Ei kommentteja",
+ "no-comments-desc": "Ei voi nähdä kommentteja ja toimintaa.",
+ "worker": "Työntekijä",
+ "worker-desc": "Voi vain siirtää kortteja, ilmoittautua kortin käsittelijäksi ja kommentoida.",
+ "computer": "Tietokone",
+ "confirm-subtask-delete-dialog": "Haluatko varmasti poistaa alitehtävän?",
+ "confirm-checklist-delete-dialog": "Haluatko varmasti poistaa tarkistuslistan?",
+ "copy-card-link-to-clipboard": "Kopioi kortin linkki leikepöydälle",
+ "linkCardPopup-title": "Linkitä kortti",
+ "searchElementPopup-title": "Etsi",
+ "copyCardPopup-title": "Kopioi kortti",
+ "copyChecklistToManyCardsPopup-title": "Kopioi tarkistuslistan malli monille korteille",
+ "copyChecklistToManyCardsPopup-instructions": "Kohde korttien otsikot ja kuvaukset JSON-muodossa",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Ensimmäisen kortin otsikko\", \"description\":\"Ensimmäisen kortin kuvaus\"}, {\"title\":\"Toisen kortin otsikko\",\"description\":\"Toisen kortin kuvaus\"},{\"title\":\"Viimeisen kortin otsikko\",\"description\":\"Viimeisen kortin kuvaus\"} ]",
+ "create": "Luo",
+ "createBoardPopup-title": "Luo taulu",
+ "chooseBoardSourcePopup-title": "Tuo taulu",
+ "createLabelPopup-title": "Luo nimilappu",
+ "createCustomField": "Luo kenttä",
+ "createCustomFieldPopup-title": "Luo kenttä",
+ "current": "nykyinen",
+ "custom-field-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän mukautetun kentän kaikista korteista ja poistaa sen historian.",
+ "custom-field-checkbox": "Valintaruutu",
+ "custom-field-currency": "Valuutta",
+ "custom-field-currency-option": "Valuutta koodi",
+ "custom-field-date": "Päivämäärä",
+ "custom-field-dropdown": "Pudotusvalikko",
+ "custom-field-dropdown-none": "(ei mitään)",
+ "custom-field-dropdown-options": "Listan vaihtoehdot",
+ "custom-field-dropdown-options-placeholder": "Paina Enter lisätäksesi lisää vaihtoehtoja",
+ "custom-field-dropdown-unknown": "(tuntematon)",
+ "custom-field-number": "Numero",
+ "custom-field-text": "Teksti",
+ "custom-fields": "Mukautetut kentät",
+ "date": "Päivämäärä",
+ "decline": "Kieltäydy",
+ "default-avatar": "Oletusprofiilikuva",
+ "delete": "Poista",
+ "deleteCustomFieldPopup-title": "Poista mukautettu kenttä?",
+ "deleteLabelPopup-title": "Poista nimilappu?",
+ "description": "Kuvaus",
+ "disambiguateMultiLabelPopup-title": "Yksikäsitteistä nimilapputoiminta",
+ "disambiguateMultiMemberPopup-title": "Yksikäsitteistä jäsentoiminta",
+ "discard": "Hylkää",
+ "done": "Valmis",
+ "download": "Lataa",
+ "edit": "Muokkaa",
+ "edit-avatar": "Muokkaa profiilikuvaa",
+ "edit-profile": "Muokkaa profiilia",
+ "edit-wip-limit": "Muokkaa WIP-rajaa",
+ "soft-wip-limit": "Pehmeä WIP-raja",
+ "editCardStartDatePopup-title": "Muokkaa aloituspäivää",
+ "editCardDueDatePopup-title": "Muokkaa eräpäivää",
+ "editCustomFieldPopup-title": "Muokkaa kenttää",
+ "editCardSpentTimePopup-title": "Muuta käytettyä aikaa",
+ "editLabelPopup-title": "Muokkaa nimilappua",
+ "editNotificationPopup-title": "Muokkaa ilmoituksia",
+ "editProfilePopup-title": "Muokkaa profiilia",
+ "email": "Sähköposti",
+ "email-enrollAccount-subject": "Sinulle on luotu tili palveluun __siteName__",
+ "email-enrollAccount-text": "Hei __user__,\n\nKlikkaa alla olevaa linkkiä aloittaaksesi palvelun käytön.\n\n__url__\n\nKiitos.",
+ "email-fail": "Sähköpostin lähettäminen epäonnistui",
+ "email-fail-text": "Virhe yrittäessä lähettää sähköpostia",
+ "email-invalid": "Virheellinen sähköposti",
+ "email-invite": "Kutsu sähköpostilla",
+ "email-invite-subject": "__inviter__ lähetti sinulle kutsun",
+ "email-invite-text": "Hyvä __user__,\n\n__inviter__ kutsuu sinut liittymään taululle \"__board__\" yhteistyötä varten.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n\n__url__\n\nKiitos.",
+ "email-resetPassword-subject": "Nollaa salasanasi palvelussa __siteName__",
+ "email-resetPassword-text": "Hei __user__,\n\nNollataksesi salasanasi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
+ "email-sent": "Sähköposti lähetetty",
+ "email-verifyEmail-subject": "Varmista sähköpostiosoitteesi osoitteessa __url__",
+ "email-verifyEmail-text": "Hei __user__,\n\nvahvistaaksesi sähköpostiosoitteesi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
+ "enable-wip-limit": "Ota käyttöön WIP-raja",
+ "error-board-doesNotExist": "Tätä taulua ei ole olemassa",
+ "error-board-notAdmin": "Tehdäksesi tämän sinun täytyy olla tämän taulun ylläpitäjä",
+ "error-board-notAMember": "Tehdäksesi tämän sinun täytyy olla tämän taulun jäsen",
+ "error-json-malformed": "Tekstisi ei ole kelvollisessa JSON-muodossa",
+ "error-json-schema": "JSON-tietosi ei sisällä oikeaa tietoa oikeassa muodossa",
+ "error-csv-schema": "CSV tietosi (pilkulla erotetut arvot)/TSV (tabilla erotetut arvot) ei sisällä oikeaa tietoa oikeassa muodossa",
+ "error-list-doesNotExist": "Tätä listaa ei ole olemassa",
+ "error-user-doesNotExist": "Tätä käyttäjää ei ole olemassa",
+ "error-user-notAllowSelf": "Et voi kutsua itseäsi",
+ "error-user-notCreated": "Tätä käyttäjää ei ole luotu",
+ "error-username-taken": "Tämä käyttäjätunnus on jo käytössä",
+ "error-email-taken": "Sähköpostiosoite on jo käytössä",
+ "export-board": "Vie taulu",
+ "export-board-json": "Vie taulu JSON",
+ "export-board-csv": "Vie taulu CSV",
+ "export-board-tsv": "Vie taulu TSV",
+ "export-board-html": "Vie taulu HTML",
+ "exportBoardPopup-title": "Vie taulu",
+ "sort": "Lajittele",
+ "sort-desc": "Klikkaa lajitellaksesi listan",
+ "list-sort-by": "Lajittele lista:",
+ "list-label-modifiedAt": "Viimeinen käyttöaika",
+ "list-label-title": "Listan nimi",
+ "list-label-sort": "Oma manuaalinen järjestys",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Suodata",
+ "filter-cards": "Suodata kortit tai listat",
+ "list-filter-label": "Suodata listat otsikon mukaan",
+ "filter-clear": "Poista suodatin",
+ "filter-labels-label": "Suodata nimilappu",
+ "filter-no-label": "Ei nimilappua",
+ "filter-member-label": "Suodata jäsen",
+ "filter-no-member": "Ei jäseniä",
+ "filter-assignee-label": "Suodata käsittelijä",
+ "filter-no-assignee": "Ei käsittelijää",
+ "filter-custom-fields-label": "Suodata mukautettu kenttä",
+ "filter-no-custom-fields": "Ei mukautettuja kenttiä",
+ "filter-show-archive": "Näytä arkistoidut listat",
+ "filter-hide-empty": "Näytä tyhjät listat",
+ "filter-on": "Suodatus on päällä",
+ "filter-on-desc": "Suodatat kortteja tällä taululla. Klikkaa tästä muokataksesi suodatinta.",
+ "filter-to-selection": "Suodata valintaan",
+ "other-filters-label": "Muut suodattimet",
+ "advanced-filter-label": "Edistynyt suodatin",
+ "advanced-filter-description": "Edistynyt suodatin mahdollistaa merkkijonon, joka sisältää seuraavat operaattorit: == != <= >= && || ( ) Operaattorien välissä käytetään välilyöntiä. Voit suodattaa kaikki mukautetut kentät kirjoittamalla niiden nimet ja arvot. Esimerkiksi: Field1 == Value1. Huom: Jos kentillä tai arvoilla on välilyöntejä, sinun on sijoitettava ne yksittäisiin lainausmerkkeihin. Esimerkki: 'Kenttä 1' == 'Arvo 1'. Voit hypätä yksittäisen kontrollimerkkien (' \\/) yli käyttämällä \\. Esimerkki: Field1 = I\\'m. Voit myös yhdistää useita ehtoja. Esimerkiksi: F1 == V1 || F1 == V2. Yleensä kaikki operaattorit tulkitaan vasemmalta oikealle. Voit muuttaa järjestystä asettamalla sulkuja. Esimerkiksi: F1 == V1 && (F2 == V2 || F2 == V3). Voit myös etsiä tekstikentistä regexillä: F1 == /Tes.*/i",
+ "fullname": "Koko nimi",
+ "header-logo-title": "Palaa taulut sivullesi.",
+ "hide-system-messages": "Piilota järjestelmäviestit",
+ "headerBarCreateBoardPopup-title": "Luo taulu",
+ "home": "Koti",
+ "import": "Tuo",
+ "impersonate-user": "Esiinny käyttäjänä",
+ "link": "Linkitä",
+ "import-board": "tuo taulu",
+ "import-board-c": "Tuo taulu",
+ "import-board-title-trello": "Tuo taulu Trellosta",
+ "import-board-title-wekan": "Tuo taulu edellisestä viennistä",
+ "import-board-title-csv": "Tuo taulu CSV/TSV",
+ "from-trello": "Trellosta",
+ "from-wekan": "Edellisestä viennistä",
+ "from-csv": "CSV/TSV muodosta",
+ "import-board-instruction-trello": "Mene Trello-taulullasi 'Menu', sitten 'More', 'Print and Export', 'Export JSON', ja kopioi tuloksena saamasi teksti",
+ "import-board-instruction-csv": "Liitä pilkulla erotellut arvot (CSV)/ tabilla erotetut arvot (TSV).",
+ "import-board-instruction-wekan": "Taulullasi, mene 'Valikko', sitten 'Vie taulu', ja kopioi teksti ladatusta tiedostosta.",
+ "import-board-instruction-about-errors": "Jos virheitä tulee taulua tuotaessa, joskus tuonti silti toimii, ja taulu on Kaikki taulut sivulla.",
+ "import-json-placeholder": "Liitä kelvollinen JSON-tietosi tähän",
+ "import-csv-placeholder": "Liitä kelvollinen CSV/TSV tietosi tähän",
+ "import-map-members": "Vastaavat jäsenet",
+ "import-members-map": "Tuomallasi taululla on muutamia jäseniä. Ole hyvä ja valitse tuomiasi jäseniä vastaavat käyttäjäsi",
+ "import-show-user-mapping": "Tarkasta vastaavat jäsenet",
+ "import-user-select": "Valitse olemassaoleva käyttäjä jota haluat käyttää tänä käyttäjänä",
+ "importMapMembersAddPopup-title": "Valitse käyttäjä",
+ "info": "Versio",
+ "initials": "Nimikirjaimet",
+ "invalid-date": "Virheellinen päivämäärä",
+ "invalid-time": "Virheellinen aika",
+ "invalid-user": "Virheellinen käyttäjä",
+ "joined": "liittyi",
+ "just-invited": "Sinut on juuri kutsuttu tälle taululle",
+ "keyboard-shortcuts": "Pikanäppäimet",
+ "label-create": "Luo nimilappu",
+ "label-default": "%s nimilappu (oletus)",
+ "label-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän nimilapun kaikista korteista ja tuhoaa sen historian.",
+ "labels": "Nimilaput",
+ "language": "Kieli",
+ "last-admin-desc": "Et voi vaihtaa rooleja koska täytyy olla olemassa ainakin yksi ylläpitäjä.",
+ "leave-board": "Jää pois taululta",
+ "leave-board-pop": "Haluatko varmasti poistua taululta __boardTitle__? Sinut poistetaan kaikista tämän taulun korteista.",
+ "leaveBoardPopup-title": "Poistu taululta?",
+ "link-card": "Linkki tähän korttiin",
+ "list-archive-cards": "Siirrä kaikki tämän listan kortit Arkistoon",
+ "list-archive-cards-pop": "Tämä poistaa kaikki tämän listan kortit taululta. Nähdäksesi Arkistossa olevat kortit ja tuodaksesi ne takaisin taululle, klikkaa “Valikko” > “Arkisto”.",
+ "list-move-cards": "Siirrä kaikki kortit tässä listassa",
+ "list-select-cards": "Valitse kaikki kortit tässä listassa",
+ "set-color-list": "Aseta väri",
+ "listActionPopup-title": "Listatoimet",
+ "settingsUserPopup-title": "Käyttäjäasetukset",
+ "swimlaneActionPopup-title": "Swimlane-toimet",
+ "swimlaneAddPopup-title": "Lisää Swimlane alle",
+ "listImportCardPopup-title": "Tuo Trello-kortti",
+ "listImportCardsTsvPopup-title": "Tuo Excel CSV/TSV",
+ "listMorePopup-title": "Lisää",
+ "link-list": "Linkki tähän listaan",
+ "list-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja listan poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "list-delete-suggest-archive": "Voit siirtää listan Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
+ "lists": "Listat",
+ "swimlanes": "Swimlanet",
+ "log-out": "Kirjaudu ulos",
+ "log-in": "Kirjaudu sisään",
+ "loginPopup-title": "Kirjaudu sisään",
+ "memberMenuPopup-title": "Jäsenasetukset",
+ "members": "Jäsenet",
+ "menu": "Valikko",
+ "move-selection": "Siirrä valinta",
+ "moveCardPopup-title": "Siirrä kortti",
+ "moveCardToBottom-title": "Siirrä alimmaiseksi",
+ "moveCardToTop-title": "Siirrä ylimmäiseksi",
+ "moveSelectionPopup-title": "Siirrä valinta",
+ "multi-selection": "Monivalinta",
+ "multi-selection-label": "Aseta nimilappu valinnalle",
+ "multi-selection-member": "Aseta jäsen valinnalle",
+ "multi-selection-on": "Monivalinta on päällä",
+ "muted": "Vaimennettu",
+ "muted-info": "Et saa koskaan ilmoituksia tämän taulun muutoksista",
+ "my-boards": "Tauluni",
+ "name": "Nimi",
+ "no-archived-cards": "Ei kortteja Arkistossa.",
+ "no-archived-lists": "Ei listoja Arkistossa.",
+ "no-archived-swimlanes": "Ei Swimlaneja Arkistossa.",
+ "no-results": "Ei tuloksia",
+ "normal": "Normaali",
+ "normal-desc": "Voi nähdä ja muokata kortteja. Ei voi muokata asetuksia.",
+ "not-accepted-yet": "Kutsua ei ole hyväksytty vielä",
+ "notify-participate": "Vastaanota päivityksiä kaikilta korteilta jotka olet tehnyt tai joihin osallistut.",
+ "notify-watch": "Vastaanota päivityksiä kaikilta tauluilta, listoilta tai korteilta joita seuraat.",
+ "optional": "valinnainen",
+ "or": "tai",
+ "page-maybe-private": "Tämä sivu voi olla yksityinen. Saatat nähdä sen kirjautumalla sisään.",
+ "page-not-found": "Sivua ei löytynyt.",
+ "password": "Salasana",
+ "paste-or-dragdrop": "liittääksesi, tai vedä & pudota kuvatiedosto siihen (vain kuva)",
+ "participating": "Osallistutaan",
+ "preview": "Esikatsele",
+ "previewAttachedImagePopup-title": "Esikatsele",
+ "previewClipboardImagePopup-title": "Esikatsele",
+ "private": "Yksityinen",
+ "private-desc": "Tämä taulu on yksityinen. Vain taululle lisätyt henkilöt voivat nähdä ja muokata sitä.",
+ "profile": "Profiili",
+ "public": "Julkinen",
+ "public-desc": "Tämä taulu on julkinen. Se näkyy kenelle tahansa jolla on linkki ja näkyy myös hakukoneissa kuten Google. Vain taululle lisätyt henkilöt voivat muokata sitä.",
+ "quick-access-description": "Merkkaa taulu tähdellä lisätäksesi pikavalinta tähän palkkiin.",
+ "remove-cover": "Poista kansi",
+ "remove-from-board": "Poista taululta",
+ "remove-label": "Poista nimilappu",
+ "listDeletePopup-title": "Poista lista?",
+ "remove-member": "Poista jäsen",
+ "remove-member-from-card": "Poista kortilta",
+ "remove-member-pop": "Poista __name__ (__username__) taululta __boardTitle__? Jäsen poistetaan kaikilta taulun korteilta. Heille lähetetään ilmoitus.",
+ "removeMemberPopup-title": "Poista jäsen?",
+ "rename": "Nimeä uudelleen",
+ "rename-board": "Nimeä taulu uudelleen",
+ "restore": "Palauta",
+ "save": "Tallenna",
+ "search": "Etsi",
+ "rules": "Säännöt",
+ "search-cards": "Etsi kortin/listan otsikoista, kuvauksista ja mukautetuista kentistä tällä taululla ",
+ "search-example": "Kirjoita teksti jota etsit ja paina Enter",
+ "select-color": "Valitse väri",
+ "select-board": "Valitse taulu",
+ "set-wip-limit-value": "Aseta tämän listan tehtävien enimmäismäärä",
+ "setWipLimitPopup-title": "Aseta WIP-raja",
+ "shortcut-assign-self": "Valitse itsesi nykyiselle kortille",
+ "shortcut-autocomplete-emoji": "Automaattinen täydennys emojille",
+ "shortcut-autocomplete-members": "Automaattinen täydennys jäsenille",
+ "shortcut-clear-filters": "Poista kaikki suodattimet",
+ "shortcut-close-dialog": "Sulje valintaikkuna",
+ "shortcut-filter-my-cards": "Suodata korttini",
+ "shortcut-show-shortcuts": "Tuo esiin tämä pikavalintalista",
+ "shortcut-toggle-filterbar": "Muokkaa suodatussivupalkin näkyvyyttä",
+ "shortcut-toggle-searchbar": "Muokkaa etsintäsivupalkin näkyvyyttä",
+ "shortcut-toggle-sidebar": "Muokkaa taulusivupalkin näkyvyyttä",
+ "show-cards-minimum-count": "Näytä korttien lukumäärä jos lista sisältää enemmän kuin",
+ "sidebar-open": "Avaa sivupalkki",
+ "sidebar-close": "Sulje sivupalkki",
+ "signupPopup-title": "Luo tili",
+ "star-board-title": "Klikkaa merkataksesi taulu tähdellä. Se tulee näkymään ylimpänä taululistallasi.",
+ "starred-boards": "Tähdellä merkatut taulut",
+ "starred-boards-description": "Tähdellä merkatut taulut näkyvät ylimpänä taululistallasi.",
+ "subscribe": "Tilaa",
+ "team": "Tiimi",
+ "this-board": "tämä taulu",
+ "this-card": "tämä kortti",
+ "spent-time-hours": "Käytetty aika (tuntia)",
+ "overtime-hours": "Ylityö (tuntia)",
+ "overtime": "Ylityö",
+ "has-overtime-cards": "Sisältää ylityökortteja",
+ "has-spenttime-cards": "Sisältää käytetty aika -kortteja",
+ "time": "Aika",
+ "title": "Otsikko",
+ "tracking": "Ilmoitukset",
+ "tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.",
+ "type": "Tyyppi",
+ "unassign-member": "Peru jäsenvalinta",
+ "unsaved-description": "Sinulla on tallentamaton kuvaus.",
+ "unwatch": "Lopeta seuraaminen",
+ "upload": "Lähetä",
+ "upload-avatar": "Lähetä profiilikuva",
+ "uploaded-avatar": "Profiilikuva lähetetty",
+ "custom-top-left-corner-logo-image-url": "Mukautettu oikean yläkulman logo kuvan URL",
+ "custom-top-left-corner-logo-link-url": "Mukautettu oikean yläkulma logon linkki URL",
+ "custom-top-left-corner-logo-height": "Mukautettu oikean yläkulman logokuvan korkeus. Oletus: 27",
+ "custom-login-logo-image-url": "Mukautettu kirjautumis logo kuvan URL",
+ "custom-login-logo-link-url": "Mukautettu kirjautumis logon linkki URL",
+ "text-below-custom-login-logo": "Teksti mukautetun kirjautumis logon alla",
+ "username": "Käyttäjätunnus",
+ "view-it": "Näytä se",
+ "warn-list-archived": "varoitus: tämä kortti on Arkistossa olevassa listassa",
+ "watch": "Seuraa",
+ "watching": "Seurataan",
+ "watching-info": "Sinulle ilmoitetaan tämän taulun muutoksista",
+ "welcome-board": "Tervetuloa-taulu",
+ "welcome-swimlane": "Merkkipaalu 1",
+ "welcome-list1": "Perusasiat",
+ "welcome-list2": "Edistynyt",
+ "card-templates-swimlane": "Korttimallit",
+ "list-templates-swimlane": "Listamallit",
+ "board-templates-swimlane": "Taulumallit",
+ "what-to-do": "Mitä haluat tehdä?",
+ "wipLimitErrorPopup-title": "Virheellinen WIP-raja",
+ "wipLimitErrorPopup-dialog-pt1": "Tässä listassa olevien tehtävien määrä on korkeampi kuin asettamasi WIP-raja.",
+ "wipLimitErrorPopup-dialog-pt2": "Siirrä joitain tehtäviä pois tästä listasta tai määritä korkeampi WIP-raja.",
+ "admin-panel": "Hallintapaneeli",
+ "settings": "Asetukset",
+ "people": "Ihmiset",
+ "registration": "Rekisteröinti",
+ "disable-self-registration": "Poista käytöstä itserekisteröityminen",
+ "invite": "Kutsu",
+ "invite-people": "Kutsu ihmisiä",
+ "to-boards": "Taulu(i)lle",
+ "email-addresses": "Sähköpostiosoite",
+ "smtp-host-description": "SMTP-palvelimen osoite jolla sähköpostit lähetetään.",
+ "smtp-port-description": "STMP-palvelimesi käyttämä lähteville sähköposteille tarkoitettu portti.",
+ "smtp-tls-description": "Ota käyttöön TLS-tuki SMTP-palvelimelle",
+ "smtp-host": "SMTP-isäntä",
+ "smtp-port": "SMTP-portti",
+ "smtp-username": "Käyttäjätunnus",
+ "smtp-password": "Salasana",
+ "smtp-tls": "TLS-tuki",
+ "send-from": "Lähettäjä",
+ "send-smtp-test": "Lähetä testisähköposti itsellesi",
+ "invitation-code": "Kutsukoodi",
+ "email-invite-register-subject": "__inviter__ lähetti sinulle kutsun",
+ "email-invite-register-text": "Hei __user__,\n\n__inviter__ kutsuu sinut mukaan kanban-taulun käyttöön.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n__url__\n\nKutsukoodisi on: __icode__\n\nKiitos.",
+ "email-smtp-test-subject": "SMTP-testisähköposti",
+ "email-smtp-test-text": "Olet onnistuneesti lähettänyt sähköpostin",
+ "error-invitation-code-not-exist": "Kutsukoodia ei ole olemassa",
+ "error-notAuthorized": "Sinulla ei ole oikeutta tarkastella tätä sivua.",
+ "webhook-title": "Webkoukun nimi",
+ "webhook-token": "Token (Valinnainen autentikoinnissa)",
+ "outgoing-webhooks": "Lähtevät Webkoukut",
+ "bidirectional-webhooks": "Kaksisuuntaiset Webkoukut",
+ "outgoingWebhooksPopup-title": "Lähtevät Webkoukut",
+ "boardCardTitlePopup-title": "Kortin otsikkosuodatin",
+ "disable-webhook": "Poista käytöstä tämä Webkoukku",
+ "global-webhook": "Kaikenkattavat Webkoukut",
+ "new-outgoing-webhook": "Uusi lähtevä Webkoukku",
+ "no-name": "(Tuntematon)",
+ "Node_version": "Node-versio",
+ "Meteor_version": "Meteor-versio",
+ "MongoDB_version": "MongoDB-versio",
+ "MongoDB_storage_engine": "MongoDB tallennusmoottori",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog käytössä",
+ "OS_Arch": "Käyttöjärjestelmän arkkitehtuuri",
+ "OS_Cpus": "Käyttöjärjestelmän CPU-määrä",
+ "OS_Freemem": "Käyttöjärjestelmän vapaa muisti",
+ "OS_Loadavg": "Käyttöjärjestelmän kuorman keskiarvo",
+ "OS_Platform": "Käyttöjärjestelmäalusta",
+ "OS_Release": "Käyttöjärjestelmän julkaisu",
+ "OS_Totalmem": "Käyttöjärjestelmän muistin kokonaismäärä",
+ "OS_Type": "Käyttöjärjestelmän tyyppi",
+ "OS_Uptime": "Käyttöjärjestelmä ollut käynnissä",
+ "days": "päivää",
+ "hours": "tuntia",
+ "minutes": "minuuttia",
+ "seconds": "sekuntia",
+ "show-field-on-card": "Näytä tämä kenttä kortilla",
+ "automatically-field-on-card": "Luo kenttä automaattisesti kaikille korteille",
+ "showLabel-field-on-card": "Näytä kentän nimilappu minikortilla",
+ "yes": "Kyllä",
+ "no": "Ei",
+ "accounts": "Tilit",
+ "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen",
+ "accounts-allowUserNameChange": "Salli käyttäjätunnuksen muuttaminen",
+ "createdAt": "Luotu",
+ "verified": "Varmistettu",
+ "active": "Aktiivinen",
+ "card-received": "Vastaanotettu",
+ "card-received-on": "Vastaanotettu",
+ "card-end": "Loppuu",
+ "card-end-on": "Loppuu",
+ "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää",
+ "editCardEndDatePopup-title": "Vaihda loppumispäivää",
+ "setCardColorPopup-title": "Aseta väri",
+ "setCardActionsColorPopup-title": "Valitse väri",
+ "setSwimlaneColorPopup-title": "Valitse väri",
+ "setListColorPopup-title": "Valitse väri",
+ "assigned-by": "Tehtävänantaja",
+ "requested-by": "Pyytäjä",
+ "board-delete-notice": "Poistaminen on lopullista. Menetät kaikki listat, kortit ja toimet tällä taululla.",
+ "delete-board-confirm-popup": "Kaikki listat, kortit, nimilaput ja toimet poistetaan ja et pysty palauttamaan taulun sisältöä. Tätä ei voi peruuttaa.",
+ "boardDeletePopup-title": "Poista taulu?",
+ "delete-board": "Poista taulu",
+ "default-subtasks-board": "Alitehtävät taululle __board__",
+ "default": "Oletus",
+ "queue": "Jono",
+ "subtask-settings": "Alitehtävä-asetukset",
+ "card-settings": "Kortin asetukset",
+ "boardSubtaskSettingsPopup-title": "Taulualitehtävien asetukset",
+ "boardCardSettingsPopup-title": "Kortin asetukset",
+ "deposit-subtasks-board": "Talleta alitehtävät tälle taululle:",
+ "deposit-subtasks-list": "Laskeutumislista alatehtäville tallennettu tänne:",
+ "show-parent-in-minicard": "Näytä ylätehtävä minikortilla:",
+ "prefix-with-full-path": "Etuliite koko polulla",
+ "prefix-with-parent": "Etuliite ylätehtävällä",
+ "subtext-with-full-path": "Aliteksti koko polulla",
+ "subtext-with-parent": "Aliteksti ylätehtävällä",
+ "change-card-parent": "Muuta kortin ylätehtävää",
+ "parent-card": "Ylätehtäväkortti",
+ "source-board": "Lähdetaulu",
+ "no-parent": "Älä näytä ylätehtävää",
+ "activity-added-label": "lisätty nimilappu '%s' kohteeseen %s",
+ "activity-removed-label": "poistettu nimilappu '%s' kohteesta %s",
+ "activity-delete-attach": "poistettu liitetiedosto kohteesta %s",
+ "activity-added-label-card": "lisätty nimilappu '%s'",
+ "activity-removed-label-card": "poistettu nimilappu '%s'",
+ "activity-delete-attach-card": "poistettu liitetiedosto",
+ "activity-set-customfield": "asetettu mukautettu kentän '%s' sisällöksi '%s' kortilla %s",
+ "activity-unset-customfield": "poistettu mukautettu kenttä '%s' kortilla %s",
+ "r-rule": "Sääntö",
+ "r-add-trigger": "Lisää liipaisin",
+ "r-add-action": "Lisää toimi",
+ "r-board-rules": "Taulusäännöt",
+ "r-add-rule": "Lisää sääntö",
+ "r-view-rule": "Näytä sääntö",
+ "r-delete-rule": "Poista sääntö",
+ "r-new-rule-name": "Uuden säännön otsikko",
+ "r-no-rules": "Ei sääntöjä",
+ "r-trigger": "Liipaisin",
+ "r-action": "Toimi",
+ "r-when-a-card": "Kun kortti",
+ "r-is": "on",
+ "r-is-moved": "on siirretty",
+ "r-added-to": "Lisätty kohteeseen",
+ "r-removed-from": "Poistettu kohteesta",
+ "r-the-board": "taulu",
+ "r-list": "lista",
+ "set-filter": "Aseta suodatin",
+ "r-moved-to": "Siirretty kohteeseen",
+ "r-moved-from": "Siirretty kohteesta",
+ "r-archived": "Siirretty Arkistoon",
+ "r-unarchived": "Palautettu Arkistosta",
+ "r-a-card": "kortti",
+ "r-when-a-label-is": "Kun nimilappu on",
+ "r-when-the-label": "Kun nimilappu on",
+ "r-list-name": "listan nimi",
+ "r-when-a-member": "Kun jäsen on",
+ "r-when-the-member": "Kun käyttäjä",
+ "r-name": "nimi",
+ "r-when-a-attach": "Kun liitetiedosto",
+ "r-when-a-checklist": "Kun tarkistuslista on",
+ "r-when-the-checklist": "Kun tarkistuslista",
+ "r-completed": "Valmistunut",
+ "r-made-incomplete": "Tehty ei valmistuneeksi",
+ "r-when-a-item": "Kun tarkistuslistan kohta on",
+ "r-when-the-item": "Kun tarkistuslistan kohta",
+ "r-checked": "Ruksattu",
+ "r-unchecked": "Poistettu ruksi",
+ "r-move-card-to": "Siirrä kortti kohteeseen",
+ "r-top-of": "Ylimmäiseksi",
+ "r-bottom-of": "Alimmaiseksi",
+ "r-its-list": "sen lista",
+ "r-archive": "Siirrä Arkistoon",
+ "r-unarchive": "Palauta Arkistosta",
+ "r-card": "kortti",
+ "r-add": "Lisää",
+ "r-remove": "Poista",
+ "r-label": "nimilappu",
+ "r-member": "jäsen",
+ "r-remove-all": "Poista kaikki jäsenet kortilta",
+ "r-set-color": "Aseta väriksi",
+ "r-checklist": "tarkistuslista",
+ "r-check-all": "Ruksaa kaikki",
+ "r-uncheck-all": "Poista ruksi kaikista",
+ "r-items-check": "kohtaa tarkistuslistassa",
+ "r-check": "Ruksaa",
+ "r-uncheck": "Poista ruksi",
+ "r-item": "kohta",
+ "r-of-checklist": "tarkistuslistasta",
+ "r-send-email": "Lähetä sähköposti",
+ "r-to": "vastaanottajalle",
+ "r-of": "/",
+ "r-subject": "aihe",
+ "r-rule-details": "Säännön yksityiskohdat",
+ "r-d-move-to-top-gen": "Siirrä kortti listansa alkuun",
+ "r-d-move-to-top-spec": "Siirrä kortti listan alkuun",
+ "r-d-move-to-bottom-gen": "Siirrä kortti listansa loppuun",
+ "r-d-move-to-bottom-spec": "Siirrä kortti listan loppuun",
+ "r-d-send-email": "Lähetä sähköposti",
+ "r-d-send-email-to": "vastaanottajalle",
+ "r-d-send-email-subject": "aihe",
+ "r-d-send-email-message": "viesti",
+ "r-d-archive": "Siirrä kortti Arkistoon",
+ "r-d-unarchive": "Palauta kortti Arkistosta",
+ "r-d-add-label": "Lisää nimilappu",
+ "r-d-remove-label": "Poista nimilappu",
+ "r-create-card": "Luo uusi kortti",
+ "r-in-list": "listassa",
+ "r-in-swimlane": "swimlanessa",
+ "r-d-add-member": "Lisää jäsen",
+ "r-d-remove-member": "Poista jäsen",
+ "r-d-remove-all-member": "Poista kaikki jäsenet",
+ "r-d-check-all": "Ruksaa kaikki listan kohdat",
+ "r-d-uncheck-all": "Poista ruksi kaikista listan kohdista",
+ "r-d-check-one": "Ruksaa kohta",
+ "r-d-uncheck-one": "Poista ruksi kohdasta",
+ "r-d-check-of-list": "tarkistuslistasta",
+ "r-d-add-checklist": "Lisää tarkistuslista",
+ "r-d-remove-checklist": "Poista tarkistuslista",
+ "r-by": "mennessä",
+ "r-add-checklist": "Lisää tarkistuslista",
+ "r-with-items": "kohteiden kanssa",
+ "r-items-list": "kohde1,kohde2,kohde3",
+ "r-add-swimlane": "Lisää swimlane",
+ "r-swimlane-name": "swimlanen nimi",
+ "r-board-note": "Huom: jätä kenttä tyhjäksi täsmätäksesi jokaiseen mahdolliseen arvoon.",
+ "r-checklist-note": "Huom: tarkistuslistan kohteet täytyy kirjoittaa pilkulla eroteltuina.",
+ "r-when-a-card-is-moved": "Kun kortti on siirretty toiseen listaan",
+ "r-set": "Aseta",
+ "r-update": "Päivitä",
+ "r-datefield": "päivämäärä kenttä",
+ "r-df-start-at": "alkaa",
+ "r-df-due-at": "erääntyy",
+ "r-df-end-at": "loppuu",
+ "r-df-received-at": "vastaanotettu",
+ "r-to-current-datetime": "nykyiseen päivään/aikaan",
+ "r-remove-value-from": "Poista arvo kohteesta",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Kirjautumistapa",
+ "authentication-type": "Kirjautumistyyppi",
+ "custom-product-name": "Mukautettu tuotenimi",
+ "layout": "Ulkoasu",
+ "hide-logo": "Piilota Logo",
+ "add-custom-html-after-body-start": "Lisää HTML alun jälkeen",
+ "add-custom-html-before-body-end": "Lisä HTML ennen loppua",
+ "error-undefined": "Jotain meni pieleen",
+ "error-ldap-login": "Virhe tapahtui yrittäessä kirjautua sisään",
+ "display-authentication-method": "Näytä kirjautumistapa",
+ "default-authentication-method": "Oletuskirjautumistapa",
+ "duplicate-board": "Tee kaksoiskappale taulusta",
+ "org-number": "Organisaatioiden määrä on:",
+ "team-number": "Tiimien määrä on:",
+ "people-number": "Ihmisten määrä on:",
+ "swimlaneDeletePopup-title": "Poista Swimlane?",
+ "swimlane-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja swimlanen poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "restore-all": "Palauta kaikki",
+ "delete-all": "Poista kaikki",
+ "loading": "Ladataan, odota hetki.",
+ "previous_as": "viimeksi oli",
+ "act-a-dueAt": "muokattu eräätymisaikaa \nMilloin: __timeValue__\nMissä: __card__\n edellinen erääntymisaika oli __timeOldValue__",
+ "act-a-endAt": "muokattu loppumisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "act-a-startAt": "muokattu aloitusajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "act-a-receivedAt": "muutettu vastaanottamisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "a-dueAt": "muutettu vastaanottamisajaksi",
+ "a-endAt": "muokattu loppumisajaksi",
+ "a-startAt": "muokattu aloitusajaksi",
+ "a-receivedAt": "muokattu vastaanottamisajaksi",
+ "almostdue": "nykyinen eräaika %s lähestyy",
+ "pastdue": "nykyinen eräaika %s on mennyt",
+ "duenow": "nykyinen eräaika %s on tänään",
+ "act-newDue": "__list__/__card__ on 1. erääntymismuistutus [__board__]",
+ "act-withDue": "__list__/__card__ erääntymismuistutukset [__board__]",
+ "act-almostdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ lähestyvän",
+ "act-pastdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ menneen",
+ "act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
+ "act-atUserComment": "Sinut mainittiin [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
+ "accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse",
+ "hide-minicard-label-text": "Piilota minikortin nimilappu teksti",
+ "show-desktop-drag-handles": "Näytä työpöydän vedon kahvat",
+ "assignee": "Käsittelijä",
+ "cardAssigneesPopup-title": "Käsittelijä",
+ "addmore-detail": "Lisää tarkempi kuvaus",
+ "show-on-card": "Näytä kortilla",
+ "new": "Uusi",
+ "editUserPopup-title": "Muokkaa käyttäjää",
+ "newUserPopup-title": "Uusi käyttäjä",
+ "notifications": "Ilmoitukset",
+ "view-all": "Näytä kaikki",
+ "filter-by-unread": "Suodata lukemattomat",
+ "mark-all-as-read": "Merkkaa kaikki luetuksi",
+ "remove-all-read": "Poista kaikki luetut",
+ "allow-rename": "Salli uudelleennimeäminen",
+ "allowRenamePopup-title": "Salli uudelleennimeäminen",
+ "start-day-of-week": "Aseta viikon alkamispäivä",
+ "monday": "Maanantai",
+ "tuesday": "Tiistai",
+ "wednesday": "Keskiviikko",
+ "thursday": "Torstai",
+ "friday": "Perjantai",
+ "saturday": "Lauantai",
+ "sunday": "Sunnuntai",
+ "status": "Tilanne",
+ "swimlane": "Swimlane",
+ "owner": "Omistaja",
+ "last-modified-at": "Viimeksi muokattu",
+ "last-activity": "Viimeisin toiminta",
+ "voting": "Äänestys",
+ "archived": "Arkistoitu",
+ "delete-linked-card-before-this-card": "Et voi poistaa tätä korttia ennenkuin ensin poistat linkitetyn kortin jolla on",
+ "delete-linked-cards-before-this-list": "Et voi poistaa tätä listaa ennenkuin poistat linkitetyt kortit jotka osoittavat kortteihin tässä listassa",
+ "hide-checked-items": "Piilota ruksatut kohdat",
+ "task": "Tehtävä",
+ "create-task": "Luo tehtävä",
+ "ok": "OK",
+ "organizations": "Organisaatiot",
+ "teams": "Tiimit",
+ "displayName": "Näyttönimi",
+ "shortName": "Lyhyt nimi",
+ "website": "Verkkosivusto",
+ "person": "Henkilö"
+}
diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json
index e086132d9..192a1bc61 100644
--- a/i18n/fr.i18n.json
+++ b/i18n/fr.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Afficher la méthode d'authentification",
"default-authentication-method": "Méthode d'authentification par défaut",
"duplicate-board": "Dupliquer le tableau",
+ "org-number": "Le nombre d'organisations est de :",
+ "team-number": "Le nombre d'équipes est de :",
"people-number": "Le nombre d'utilisateurs est de :",
"swimlaneDeletePopup-title": "Supprimer le couloir ?",
"swimlane-delete-pop": "Toutes les actions vont être supprimées du suivi d'activités et vous ne pourrez plus utiliser ce couloir. Cette action est irréversible.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Cacher les éléments cochés",
"task": "Tâche",
"create-task": "Créer une tâche",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organisations",
+ "teams": "Équipes",
+ "displayName": "Nom d'Affichage",
+ "shortName": "Nom Court",
+ "website": "Site Web",
+ "person": "Personne"
}
diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json
index 7876117c5..d24adc248 100644
--- a/i18n/gl.i18n.json
+++ b/i18n/gl.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Accións",
- "activities": "Actividades",
- "activity": "Actividade",
- "activity-added": "engadiuse %s a %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Engadir",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Engadir anexo",
- "add-board": "Engadir taboleiro",
- "add-card": "Engadir tarxeta",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Engadir etiqueta",
- "add-list": "Engadir lista",
- "add-members": "Engadir membros",
- "added": "Added",
- "addMemberPopup-title": "Membros",
- "admin": "Admin",
- "admin-desc": "Pode ver e editar tarxetas, retirar membros e cambiar a configuración do taboleiro.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Todos os taboleiros",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arquivar",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restaurar taboleiro",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arquivar",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Anexo",
- "attachment-delete-pop": "A eliminación de anexos é permanente. Non se pode desfacer.",
- "attachmentDeletePopup-title": "Eliminar anexo?",
- "attachments": "Anexos",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Cambiar cor",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Taboleiros",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listas",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancelar",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Editar anexos",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar membros",
- "card-labels-title": "Cambiar as etiquetas da tarxeta.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Membros",
- "cardMorePopup-title": "Máis",
- "cardTemplatePopup-title": "Create template",
- "cards": "Tarxetas",
- "cards-count": "Tarxetas",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Cambiar",
- "change-avatar": "Cambiar o avatar",
- "change-password": "Cambiar o contrasinal",
- "change-permissions": "Cambiar os permisos",
- "change-settings": "Cambiar a configuración",
- "changeAvatarPopup-title": "Cambiar o avatar",
- "changeLanguagePopup-title": "Cambiar de idioma",
- "changePasswordPopup-title": "Cambiar o contrasinal",
- "changePermissionsPopup-title": "Cambiar os permisos",
- "changeSettingsPopup-title": "Cambiar a configuración",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "negro",
- "color-blue": "azul",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "verde",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "laranxa",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "vermello",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "celeste",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "amarelo",
- "unset-color": "Unset",
- "comment": "Comentario",
- "comment-placeholder": "Escribir un comentario",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computador",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear taboleiro",
- "chooseBoardSourcePopup-title": "Importar taboleiro",
- "createLabelPopup-title": "Crear etiqueta",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Data",
- "decline": "Rexeitar",
- "default-avatar": "Avatar predeterminado",
- "delete": "Eliminar",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Eliminar a etiqueta?",
- "description": "Descrición",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Desbotar",
- "done": "Feito",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar de avatar",
- "edit-profile": "Editar o perfil",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Cambiar a data de inicio",
- "editCardDueDatePopup-title": "Cambiar a data límite",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Cambiar a etiqueta",
- "editNotificationPopup-title": "Editar a notificación",
- "editProfilePopup-title": "Editar o perfil",
- "email": "Correo electrónico",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Esta lista non existe",
- "error-user-doesNotExist": "Este usuario non existe",
- "error-user-notAllowSelf": "Non é posíbel convidarse a un mesmo",
- "error-user-notCreated": "Este usuario non está creado",
- "error-username-taken": "Este nome de usuario xa está collido",
- "error-email-taken": "Email has already been taken",
- "export-board": "Exportar taboleiro",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Exportar taboleiro",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtro",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Limpar filtro",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Non hai etiquetas",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Non hai membros",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "O filtro está activado",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nome completo",
- "header-logo-title": "Retornar á páxina dos seus taboleiros.",
- "hide-system-messages": "Agochar as mensaxes do sistema",
- "headerBarCreateBoardPopup-title": "Crear taboleiro",
- "home": "Inicio",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "importar taboleiro",
- "import-board-c": "Importar taboleiro",
- "import-board-title-trello": "Importar taboleiro de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "De Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Iniciais",
- "invalid-date": "A data é incorrecta",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Crear etiqueta",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiquetas",
- "language": "Idioma",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Saír do taboleiro",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Máis",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listas",
- "swimlanes": "Swimlanes",
- "log-out": "Pechar a sesión",
- "log-in": "Acceder",
- "loginPopup-title": "Acceder",
- "memberMenuPopup-title": "Member Settings",
- "members": "Membros",
- "menu": "Menú",
- "move-selection": "Mover selección",
- "moveCardPopup-title": "Mover tarxeta",
- "moveCardToBottom-title": "Mover abaixo de todo",
- "moveCardToTop-title": "Mover arriba de todo",
- "moveSelectionPopup-title": "Mover selección",
- "multi-selection": "Selección múltipla",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nome",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Non hai resultados",
- "normal": "Normal",
- "normal-desc": "Pode ver e editar tarxetas. Non pode cambiar a configuración.",
- "not-accepted-yet": "O convite aínda non foi aceptado",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "opcional",
- "or": "ou",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Non se atopou a páxina.",
- "password": "Contrasinal",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribir",
- "team": "Equipo",
- "this-board": "este taboleiro",
- "this-card": "esta tarxeta",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Hora",
- "title": "Título",
- "tracking": "Seguimento",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Enviar",
- "upload-avatar": "Enviar un avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nome de usuario",
- "view-it": "Velo",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Vixiar",
- "watching": "Vixiando",
- "watching-info": "Recibirá unha notificación sobre calquera cambio que se produza neste taboleiro",
- "welcome-board": "Taboleiro de benvida",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Fundamentos",
- "welcome-list2": "Avanzado",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Que desexa facer?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Panel de administración",
- "settings": "Configuración",
- "people": "Persoas",
- "registration": "Rexistro",
- "disable-self-registration": "Desactivar o auto-rexistro",
- "invite": "Convidar",
- "invite-people": "Convidar persoas",
- "to-boards": "Ao(s) taboleiro(s)",
- "email-addresses": "Enderezos de correo",
- "smtp-host-description": "O enderezo do servidor de SMTP que xestiona os seu correo electrónico.",
- "smtp-port-description": "O porto que o servidor de SMTP emprega para o correo saínte.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "Servidor de SMTP",
- "smtp-port": "Porto de SMTP",
- "smtp-username": "Nome de usuario",
- "smtp-password": "Contrasinal",
- "smtp-tls": "TLS support",
- "send-from": "De",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Engadir",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Accións",
+ "activities": "Actividades",
+ "activity": "Actividade",
+ "activity-added": "engadiuse %s a %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Engadir",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Engadir anexo",
+ "add-board": "Engadir taboleiro",
+ "add-card": "Engadir tarxeta",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Engadir etiqueta",
+ "add-list": "Engadir lista",
+ "add-members": "Engadir membros",
+ "added": "Added",
+ "addMemberPopup-title": "Membros",
+ "admin": "Admin",
+ "admin-desc": "Pode ver e editar tarxetas, retirar membros e cambiar a configuración do taboleiro.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Todos os taboleiros",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arquivar",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restaurar taboleiro",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arquivar",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Anexo",
+ "attachment-delete-pop": "A eliminación de anexos é permanente. Non se pode desfacer.",
+ "attachmentDeletePopup-title": "Eliminar anexo?",
+ "attachments": "Anexos",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Cambiar cor",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Taboleiros",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listas",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancelar",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Editar anexos",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar membros",
+ "card-labels-title": "Cambiar as etiquetas da tarxeta.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Membros",
+ "cardMorePopup-title": "Máis",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Tarxetas",
+ "cards-count": "Tarxetas",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar o avatar",
+ "change-password": "Cambiar o contrasinal",
+ "change-permissions": "Cambiar os permisos",
+ "change-settings": "Cambiar a configuración",
+ "changeAvatarPopup-title": "Cambiar o avatar",
+ "changeLanguagePopup-title": "Cambiar de idioma",
+ "changePasswordPopup-title": "Cambiar o contrasinal",
+ "changePermissionsPopup-title": "Cambiar os permisos",
+ "changeSettingsPopup-title": "Cambiar a configuración",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "negro",
+ "color-blue": "azul",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "verde",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "laranxa",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "vermello",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "celeste",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "amarelo",
+ "unset-color": "Unset",
+ "comment": "Comentario",
+ "comment-placeholder": "Escribir un comentario",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computador",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear taboleiro",
+ "chooseBoardSourcePopup-title": "Importar taboleiro",
+ "createLabelPopup-title": "Crear etiqueta",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Data",
+ "decline": "Rexeitar",
+ "default-avatar": "Avatar predeterminado",
+ "delete": "Eliminar",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Eliminar a etiqueta?",
+ "description": "Descrición",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Desbotar",
+ "done": "Feito",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar de avatar",
+ "edit-profile": "Editar o perfil",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Cambiar a data de inicio",
+ "editCardDueDatePopup-title": "Cambiar a data límite",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Cambiar a etiqueta",
+ "editNotificationPopup-title": "Editar a notificación",
+ "editProfilePopup-title": "Editar o perfil",
+ "email": "Correo electrónico",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Esta lista non existe",
+ "error-user-doesNotExist": "Este usuario non existe",
+ "error-user-notAllowSelf": "Non é posíbel convidarse a un mesmo",
+ "error-user-notCreated": "Este usuario non está creado",
+ "error-username-taken": "Este nome de usuario xa está collido",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Exportar taboleiro",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Exportar taboleiro",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtro",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Limpar filtro",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Non hai etiquetas",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Non hai membros",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "O filtro está activado",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nome completo",
+ "header-logo-title": "Retornar á páxina dos seus taboleiros.",
+ "hide-system-messages": "Agochar as mensaxes do sistema",
+ "headerBarCreateBoardPopup-title": "Crear taboleiro",
+ "home": "Inicio",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "importar taboleiro",
+ "import-board-c": "Importar taboleiro",
+ "import-board-title-trello": "Importar taboleiro de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "De Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Iniciais",
+ "invalid-date": "A data é incorrecta",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Crear etiqueta",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiquetas",
+ "language": "Idioma",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Saír do taboleiro",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Máis",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listas",
+ "swimlanes": "Swimlanes",
+ "log-out": "Pechar a sesión",
+ "log-in": "Acceder",
+ "loginPopup-title": "Acceder",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Membros",
+ "menu": "Menú",
+ "move-selection": "Mover selección",
+ "moveCardPopup-title": "Mover tarxeta",
+ "moveCardToBottom-title": "Mover abaixo de todo",
+ "moveCardToTop-title": "Mover arriba de todo",
+ "moveSelectionPopup-title": "Mover selección",
+ "multi-selection": "Selección múltipla",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nome",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Non hai resultados",
+ "normal": "Normal",
+ "normal-desc": "Pode ver e editar tarxetas. Non pode cambiar a configuración.",
+ "not-accepted-yet": "O convite aínda non foi aceptado",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "opcional",
+ "or": "ou",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Non se atopou a páxina.",
+ "password": "Contrasinal",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribir",
+ "team": "Equipo",
+ "this-board": "este taboleiro",
+ "this-card": "esta tarxeta",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Seguimento",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Enviar",
+ "upload-avatar": "Enviar un avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nome de usuario",
+ "view-it": "Velo",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Vixiar",
+ "watching": "Vixiando",
+ "watching-info": "Recibirá unha notificación sobre calquera cambio que se produza neste taboleiro",
+ "welcome-board": "Taboleiro de benvida",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Fundamentos",
+ "welcome-list2": "Avanzado",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Que desexa facer?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Panel de administración",
+ "settings": "Configuración",
+ "people": "Persoas",
+ "registration": "Rexistro",
+ "disable-self-registration": "Desactivar o auto-rexistro",
+ "invite": "Convidar",
+ "invite-people": "Convidar persoas",
+ "to-boards": "Ao(s) taboleiro(s)",
+ "email-addresses": "Enderezos de correo",
+ "smtp-host-description": "O enderezo do servidor de SMTP que xestiona os seu correo electrónico.",
+ "smtp-port-description": "O porto que o servidor de SMTP emprega para o correo saínte.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "Servidor de SMTP",
+ "smtp-port": "Porto de SMTP",
+ "smtp-username": "Nome de usuario",
+ "smtp-password": "Contrasinal",
+ "smtp-tls": "TLS support",
+ "send-from": "De",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Engadir",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json
index f0bbf6083..17819022d 100644
--- a/i18n/he.i18n.json
+++ b/i18n/he.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "הצגת שיטת אימות",
"default-authentication-method": "שיטת אימות כבררת מחדל",
"duplicate-board": "שכפול לוח",
+ "org-number": "מספר הארגונים הוא:",
+ "team-number": "מספר הצוותים הוא:",
"people-number": "מספר האנשים הוא:",
"swimlaneDeletePopup-title": "למחוק מסלול?",
"swimlane-delete-pop": "כל הפעולות יוסרו מהזנת הפעילות ולא תהיה לך אפשרות לשחזר את המסלול. אי אפשר לחזור אחורה.",
@@ -836,5 +838,11 @@
"hide-checked-items": "הסתרת הפריטים שסומנו",
"task": "משימה",
"create-task": "צירת משימה",
- "ok": "אישור"
+ "ok": "אישור",
+ "organizations": "ארגונים",
+ "teams": "צוותים",
+ "displayName": "שם התצוגה",
+ "shortName": "שם קצר",
+ "website": "אתר",
+ "person": "איש/ה"
}
diff --git a/i18n/hi.i18n.json b/i18n/hi.i18n.json
index 76200eeaf..3ed67e0b0 100644
--- a/i18n/hi.i18n.json
+++ b/i18n/hi.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "स्वीकार",
- "act-activity-notify": "गतिविधि अधिसूचना",
- "act-addAttachment": "अनुलग्नक जोड़ा __attachment__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-deleteAttachment": "हटाए गए अनुलग्नक __attachment__ कार्ड पर __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addSubtask": "जोड़ा उपकार्य __checklist__ को __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addedLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "कार्ड पर संपादित टिप्पणी __card__: __comment__ सूची में __list__ स्विमलेन में __swimlane__ बोर्ड पर __board__",
- "act-deleteComment": "कार्ड पर हटाई गई टिप्पणी __card__: __comment__ सूची में __list__ स्विमलेन में __swimlane__ बोर्ड पर __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "बोर्ड पर कस्टम फ़ील्ड __customField__ __board__",
- "act-deleteCustomField": "बोर्ड पर कस्टम फ़ील्ड __customField__ हटा दिया गया __board__",
- "act-setCustomField": "कस्टम फ़ील्ड __customField__ संपादित करें: __customFieldValue__ कार्ड पर __card__ सूची में __list__ स्विमलेन __swimlane__ पर बोर्ड __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "कार्रवाई",
- "activities": "गतिविधि",
- "activity": "क्रियाएँ",
- "activity-added": "जोड़ा गया %s से %s",
- "activity-archived": "%sसंग्रह में ले जाया गया",
- "activity-attached": "संलग्न %s से %s",
- "activity-created": "बनाया %s",
- "activity-customfield-created": "बनाया रिवाज क्षेत्र %s",
- "activity-excluded": "छोड़ा %s से %s",
- "activity-imported": "सूचित कर %s के अंदर %s से %s",
- "activity-imported-board": "सूचित कर %s से %s",
- "activity-joined": "शामिल %s",
- "activity-moved": "स्थानांतरित %s से %s तक %s",
- "activity-on": "पर %s",
- "activity-removed": "हटा दिया %s से %s",
- "activity-sent": "प्रेषित %s तक %s",
- "activity-unjoined": "शामिल नहीं %s",
- "activity-subtask-added": "जोड़ा उप कार्य तक %s",
- "activity-checked-item": "चिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
- "activity-unchecked-item": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
- "activity-checklist-added": "संकलित चिह्नांकन-सूची तक %s",
- "activity-checklist-removed": "हटा दिया एक चिह्नांकन-सूची से %s",
- "activity-checklist-completed": "पूरी जाँच सूची%sकी %s",
- "activity-checklist-uncompleted": "अपूर्ण चिह्नांकन-सूची %s of %s",
- "activity-checklist-item-added": "संकलित चिह्नांकन-सूची विषय तक '%s' अंदर में %s",
- "activity-checklist-item-removed": "हटा दिया एक चिह्नांकन-सूची विषय से '%s' अंदर में %s",
- "add": "जोड़ें",
- "activity-checked-item-card": "चिह्नित %s अंदर में चिह्नांकन-सूची %s",
- "activity-unchecked-item-card": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "अपूर्ण चिह्नांकन-सूची %s",
- "activity-editComment": "संपादित टिप्पणी",
- "activity-deleteComment": "टिप्पणी हटा दी गई",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "संलग्न करें",
- "add-board": "बोर्ड जोड़ें",
- "add-card": "कार्ड जोड़ें",
- "add-swimlane": "तैरन जोड़ें",
- "add-subtask": "उप कार्य जोड़ें",
- "add-checklist": "चिह्नांकन-सूची जोड़ें",
- "add-checklist-item": "चिह्नांकन-सूची विषय कोई तक जोड़ें",
- "add-cover": "आवरण जोड़ें",
- "add-label": "नामपत्र जोड़ें",
- "add-list": "सूची जोड़ें",
- "add-members": "सदस्य जोड़ें",
- "added": "जोड़ा गया",
- "addMemberPopup-title": "सदस्य",
- "admin": "Admin",
- "admin-desc": "कार्ड देख और संपादित कर सकते हैं, सदस्यों को हटा सकते हैं, और बोर्ड के लिए सेटिंग्स बदल सकते हैं।",
- "admin-announcement": "घोषणा",
- "admin-announcement-active": "सक्रिय सिस्टम-व्यापी घोषणा",
- "admin-announcement-title": "घोषणा प्रशासक से",
- "all-boards": "सभी बोर्ड",
- "and-n-other-card": "और __count__ other कार्ड",
- "and-n-other-card_plural": "और __count__ other कार्ड",
- "apply": "Apply",
- "app-is-offline": "लोड हो रहा है, कृपया प्रतीक्षा करें । पृष्ठ को ताज़ा करना डेटा की हानि का कारण होगा । यदि लोड करना कार्य नहीं करता है, तो कृपया जांचें कि सर्वर बंद नहीं हुआ है ।",
- "archive": "संग्रह में ले जाएं",
- "archive-all": "सभी को संग्रह में ले जाएं",
- "archive-board": "संग्रह करने के लिए बोर्ड ले जाएँ",
- "archive-card": "कार्ड को संग्रह में ले जाएं",
- "archive-list": "सूची को संग्रह में ले जाएं",
- "archive-swimlane": "संग्रह करने के लिए स्विमलेन ले जाएँ",
- "archive-selection": "चयन को संग्रह में ले जाएं",
- "archiveBoardPopup-title": "बोर्ड को संग्रह में स्थानांतरित करें?",
- "archived-items": "संग्रह",
- "archived-boards": "संग्रह में बोर्ड",
- "restore-board": "पुनर्स्थापना बोर्ड",
- "no-archived-boards": "संग्रह में कोई बोर्ड नहीं ।",
- "archives": "पुरालेख",
- "template": "खाका",
- "templates": "खाका",
- "assign-member": "आवंटित सदस्य",
- "attached": "संलग्न",
- "attachment": "संलग्नक",
- "attachment-delete-pop": "किसी संलग्नक को हटाना स्थाई है । कोई पूर्ववत् नहीं है ।",
- "attachmentDeletePopup-title": "मिटाएँ संलग्नक?",
- "attachments": "संलग्नक",
- "auto-watch": "स्वचालित रूप से देखो बोर्डों जब वे बनाए जाते हैं",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "वापस",
- "board-change-color": "रंग बदलना",
- "board-nb-stars": "%s पसंद होना",
- "board-not-found": "बोर्ड नहीं मिला",
- "board-private-info": "यह बोर्ड हो जाएगा निजी.",
- "board-public-info": "यह बोर्ड हो जाएगा सार्वजनिक.",
- "boardChangeColorPopup-title": "बोर्ड पृष्ठभूमि बदलें",
- "boardChangeTitlePopup-title": "बोर्ड का नाम बदलें",
- "boardChangeVisibilityPopup-title": "दृश्यता बदलें",
- "boardChangeWatchPopup-title": "बदलें वॉच",
- "boardMenuPopup-title": "बोर्ड सेटिंग्स",
- "boardChangeViewPopup-title": "बोर्ड दृष्टिकोण",
- "boards": "बोर्डों",
- "board-view": "बोर्ड दृष्टिकोण",
- "board-view-cal": "तिथि-पत्र",
- "board-view-swimlanes": "तैरना",
- "board-view-collapse": "संक्षिप्त करें",
- "board-view-gantt": "Gantt",
- "board-view-lists": "सूचियाँ",
- "bucket-example": "उदाहरण के लिए “बाल्टी सूची” की तरह",
- "cancel": "रद्द करें",
- "card-archived": "यह कार्ड संग्रह करने के लिए ले जाया गया है ।",
- "board-archived": "यह बोर्ड संग्रह करने के लिए ले जाया जाता है ।",
- "card-comments-title": "इस कार्ड में %s टिप्पणी है।",
- "card-delete-notice": "हटाना स्थायी है। आप इस कार्ड से जुड़े सभी कार्यों को खो देंगे।",
- "card-delete-pop": "सभी कार्रवाइयां गतिविधि फ़ीड से निकाल दी जाएंगी और आप कार्ड को फिर से खोलने में सक्षम नहीं होंगे । कोई पूर्ववत् नहीं है ।",
- "card-delete-suggest-archive": "आप एक कार्ड को बोर्ड से हटाने और गतिविधि को संरक्षित करने के लिए संग्रह में ले जा सकते हैं ।",
- "card-due": "नियत",
- "card-due-on": "पर नियत",
- "card-spent": "समय बिताया",
- "card-edit-attachments": "संपादित संलग्नक",
- "card-edit-custom-fields": "संपादित प्रचलन क्षेत्र",
- "card-edit-labels": "संपादित नामपत्र",
- "card-edit-members": "संपादित सदस्य",
- "card-labels-title": "कार्ड के लिए नामपत्र परिवर्तित करें ।",
- "card-members-title": "कार्ड से बोर्ड के सदस्यों को जोड़ें या हटाएं।",
- "card-start": "प्रारंभ",
- "card-start-on": "पर शुरू होता है",
- "cardAttachmentsPopup-title": "से अनुलग्न करें",
- "cardCustomField-datePopup-title": "तारीख बदलें",
- "cardCustomFieldsPopup-title": "संपादित करें प्रचलन क्षेत्र",
- "cardStartVotingPopup-title": "वोट शुरू करें",
- "positiveVoteMembersPopup-title": "समर्थकों का",
- "negativeVoteMembersPopup-title": "प्रतिद्वंद्वी",
- "card-edit-voting": "मतदान संपादित करें",
- "editVoteEndDatePopup-title": "मतदान समाप्ति की तारीख बदलें",
- "allowNonBoardMembers": "सभी लॉग इन उपयोगकर्ताओं को अनुमति दें",
- "vote-question": "मतदान का सवाल",
- "vote-public": "दिखाएँ कि किसने क्या मतदान किया",
- "vote-for-it": "इसके लिए",
- "vote-against": "के प्रतिकूल",
- "deleteVotePopup-title": "मतदान हटाएं?",
- "vote-delete-pop": "हटाना स्थायी है। आप इस मतदान से जुड़े सभी कार्यों को खो देंगे।",
- "cardDeletePopup-title": "मिटाएँ कार्ड?",
- "cardDetailsActionsPopup-title": "कार्ड क्रियाएँ",
- "cardLabelsPopup-title": "नामपत्र",
- "cardMembersPopup-title": "सदस्य",
- "cardMorePopup-title": "अतिरिक्त",
- "cardTemplatePopup-title": "खाका बनाएं",
- "cards": "कार्ड्स",
- "cards-count": "कार्ड्स",
- "casSignIn": "सीएएस के साथ साइन इन करें",
- "cardType-card": "कार्ड",
- "cardType-linkedCard": "जुड़े हुए कार्ड",
- "cardType-linkedBoard": "जुड़े हुए बोर्ड",
- "change": "तब्दीली",
- "change-avatar": "अवतार परिवर्तन करें",
- "change-password": "गोपनीयता परिवर्तन करें",
- "change-permissions": "अनुमतियां परिवर्तित करें",
- "change-settings": "व्यवस्था परिवर्तित करें",
- "changeAvatarPopup-title": "अवतार परिवर्तन करें",
- "changeLanguagePopup-title": "भाषा परिवर्तन करें",
- "changePasswordPopup-title": "गोपनीयता परिवर्तन करें",
- "changePermissionsPopup-title": "अनुमतियां परिवर्तित करें",
- "changeSettingsPopup-title": "व्यवस्था परिवर्तित करें",
- "subtasks": "उप-कार्य",
- "checklists": "जांच सूची",
- "click-to-star": "इस बोर्ड को स्टार करने के लिए क्लिक करें ।",
- "click-to-unstar": "इस बोर्ड को अनस्टार करने के लिए क्लिक करें।",
- "clipboard": "क्लिपबोर्ड या खींचें और छोड़ें",
- "close": "बंद करे",
- "close-board": "बोर्ड बंद करे",
- "close-board-pop": "आप होम हेडर से \"संग्रह\" बटन पर क्लिक करके बोर्ड को पुनर्स्थापित करने में सक्षम होंगे।",
- "color-black": "काला",
- "color-blue": "नीला",
- "color-crimson": "गहरा लाल",
- "color-darkgreen": "गहरा हरा",
- "color-gold": "स्वर्ण",
- "color-gray": "भूरे",
- "color-green": "हरा",
- "color-indigo": "नील",
- "color-lime": "हल्का हरा",
- "color-magenta": "मैजंटा",
- "color-mistyrose": "हल्का गुलाबी",
- "color-navy": "navy",
- "color-orange": "नारंगी",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "गुलाबी",
- "color-plum": "plum",
- "color-purple": "बैंगनी",
- "color-red": "लाल",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "आकाशिया नीला",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "पीला",
- "unset-color": "Unset",
- "comment": "टिप्पणी",
- "comment-placeholder": "टिप्पणी लिखें",
- "comment-only": "केवल टिप्पणी करें",
- "comment-only-desc": "केवल कार्ड पर टिप्पणी कर सकते हैं।",
- "no-comments": "कोई टिप्पणी नहीं",
- "no-comments-desc": "टिप्पणियां और गतिविधियां नहीं देख पा रहे हैं।",
- "worker": "कामगार",
- "worker-desc": "केवल कार्ड ले जा सकते हैं, खुद को कार्ड और टिप्पणी करने के लिए असाइन करें।",
- "computer": "संगणक",
- "confirm-subtask-delete-dialog": "क्या आप वाकई उपकार्य हटाना चाहते हैं?",
- "confirm-checklist-delete-dialog": "क्या आप वाकई जांचसूची हटाना चाहते हैं?",
- "copy-card-link-to-clipboard": "कॉपी कार्ड क्लिपबोर्ड करने के लिए लिंक",
- "linkCardPopup-title": "कार्ड कड़ी",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "कार्ड प्रतिलिपि",
- "copyChecklistToManyCardsPopup-title": "कई कार्ड के लिए जांचसूची खाके की प्रतिलिपि बनाएँ",
- "copyChecklistToManyCardsPopup-instructions": "इस JSON प्रारूप में गंतव्य कार्ड शीर्षक और विवरण",
- "copyChecklistToManyCardsPopup-format": "[{\"title\":\"पहला कार्ड शीर्षक\",\"description\":\"पहला कार्ड विवरण\"},{\"title\":\"दूसरा कार्ड शीर्षक\",\"description\":\"दूसरा कार्ड विवरण\"},{\"title\":\"अंतिम कार्ड शीर्षक\",\"description\":\"अंतिम कार्ड विवरण\" }]",
- "create": "निर्माण करना",
- "createBoardPopup-title": "बोर्ड निर्माण करना",
- "chooseBoardSourcePopup-title": "बोर्ड आयात",
- "createLabelPopup-title": "नामपत्र निर्माण",
- "createCustomField": "क्षेत्र निर्माण करना",
- "createCustomFieldPopup-title": "क्षेत्र निर्माण",
- "current": "वर्तमान",
- "custom-field-delete-pop": "कोई पूर्ववत् नहीं है । यह सभी कार्ड से इस कस्टम क्षेत्र को हटा दें और इसके इतिहास को नष्ट कर देगा ।",
- "custom-field-checkbox": "निशानबक्से",
- "custom-field-currency": "मुद्रा",
- "custom-field-currency-option": "मुद्रा संहिता",
- "custom-field-date": "दिनांक",
- "custom-field-dropdown": "ड्रॉपडाउन सूची",
- "custom-field-dropdown-none": "(कोई नहीं)",
- "custom-field-dropdown-options": "सूची विकल्प",
- "custom-field-dropdown-options-placeholder": "Press enter तक जोड़ें more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "प्रचलन क्षेत्र",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "मिटाएँ प्रचलन क्षेत्र?",
- "deleteLabelPopup-title": "मिटाएँ Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate सदस्य Action",
- "discard": "Disकार्ड",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "संपादित करें Profile",
- "edit-wip-limit": "संपादित करें WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "संपादित करें Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "संपादित करें Notification",
- "editProfilePopup-title": "संपादित करें Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying तक send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ प्रेषित you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you तक join बोर्ड \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "नमस्ते __user __, \n\n अपना खाता ईमेल सत्यापित करने के लिए, बस नीचे दिए गए लिंक पर क्लिक करें। \n\n__url __ \n\n धन्यवाद।",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "यह बोर्ड does not exist",
- "error-board-notAdmin": "You need तक be व्यवस्थापक of यह बोर्ड तक do that",
- "error-board-notAMember": "You need तक be एक सदस्य of यह बोर्ड तक do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "आपके JSON डेटा में सही प्रारूप में सही जानकारी शामिल नहीं है",
- "error-csv-schema": "आपके CSV (कोमा सेपरेटेड वैल्यूज़) / TSV (टैब सेपरेटेड वैल्यूज़) में सही फॉर्मेट में उचित जानकारी शामिल नहीं है",
- "error-list-doesNotExist": "यह सूची does not exist",
- "error-user-doesNotExist": "यह user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "यह user is not created",
- "error-username-taken": "यह username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export बोर्ड",
- "export-board-json": "JSON को निर्यात बोर्ड",
- "export-board-csv": "निर्यात बोर्ड को सी.एस.वी.",
- "export-board-tsv": "टी.एस.वी. को निर्यात बोर्ड",
- "export-board-html": "HTML को निर्यात बोर्ड",
- "exportBoardPopup-title": "Export बोर्ड",
- "sort": "भांति",
- "sort-desc": "क्रमबद्ध सूची पर क्लिक करें",
- "list-sort-by": "सूची क्रमबद्ध करें:",
- "list-label-modifiedAt": "अंतिम पहुंच समय",
- "list-label-title": "सूची का नाम",
- "list-label-sort": "आपका नियमावलीआदेश",
- "list-label-short-modifiedAt": "(बड़ा)",
- "list-label-short-title": "(साधारण)",
- "list-label-short-sort": "(मध्यम)",
- "filter": "Filter",
- "filter-cards": "निस्पंदन पत्ते या सूची",
- "list-filter-label": "शीर्षक द्वारा निस्पंदन सूची",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No सदस्य",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "कोई अभिहस्तांकिती नहीं",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No प्रचलन क्षेत्र",
- "filter-show-archive": "संग्रहित सूची दिखाएं",
- "filter-hide-empty": "खाली सूची छिपाएं",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering कार्ड इस पर बोर्ड. Click here तक संपादित करें filter.",
- "filter-to-selection": "Filter तक selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows तक write एक string containing following operators: == != <= >= && || ( ) एक space is used as एक separator between the Operators. You can filter for संपूर्ण प्रचलन क्षेत्र by typing their names और values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need तक encapsulate them के अंदर single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) तक be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally संपूर्ण operators are interpreted से left तक right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back तक your बोर्डों page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create बोर्ड",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import बोर्ड",
- "import-board-c": "Import बोर्ड",
- "import-board-title-trello": "Import बोर्ड से Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "CSV / TSV से आयात बोर्ड",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "CSV / TSV से",
- "import-board-instruction-trello": "In your Trello बोर्ड, go तक 'Menu', then 'More', 'Print और Export', 'Export JSON', और copy the resulting text.",
- "import-board-instruction-csv": "अपने कोमा सेपरेटेड वैल्यू (CSV) / टैब सेपरेटेड वैल्यू (TSV) में पेस्ट करें।",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "अपना वैध CSV / TSV सामग्री यहां पेस्ट करें",
- "import-map-members": "Map सदस्य",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Re आलोकन सदस्य mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited तक यह बोर्ड",
- "keyboard-shortcuts": "Keyबोर्ड shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. यह will हटा यह label से संपूर्ण कार्ड और destroy its history.",
- "labels": "नामपत्र",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave बोर्ड",
- "leave-board-pop": "Are you sure you want तक leave __boardTitle__? You हो जाएगा हटा दिया से संपूर्ण कार्ड इस पर बोर्ड.",
- "leaveBoardPopup-title": "Leave बोर्ड ?",
- "link-card": "Link तक यह कार्ड",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "स्थानांतरित संपूर्ण कार्ड अंदर में यह list",
- "list-select-cards": "Select संपूर्ण कार्ड अंदर में यह list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "सूची Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "तैरन Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import एक Trello कार्ड",
- "listImportCardsTsvPopup-title": "एक्सेल CSV / TSV आयात करें",
- "listMorePopup-title": "More",
- "link-list": "Link तक यह list",
- "list-delete-pop": "All actions हो जाएगा हटा दिया से the activity feed और you won't be able तक recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "तैरन",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "सदस्य व्यवस्था",
- "members": "सदस्य",
- "menu": "Menu",
- "move-selection": "स्थानांतरित selection",
- "moveCardPopup-title": "स्थानांतरित कार्ड",
- "moveCardToBottom-title": "स्थानांतरित तक Bottom",
- "moveCardToTop-title": "स्थानांतरित तक Top",
- "moveSelectionPopup-title": "स्थानांतरित selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "आप किसी भी परिवर्तन के अधिसूचित नहीं किया जाएगा अंदर में यह बोर्ड",
- "my-boards": "My बोर्ड",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can आलोकन और संपादित करें कार्ड. Can't change व्यवस्था.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates तक any कार्ड you participate as creater or सदस्य",
- "notify-watch": "Receive updates तक any बोर्ड, lists, or कार्ड you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "यह page may be private. You may be able तक आलोकन it by logging in.",
- "page-not-found": "Page नहीं मिला.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file तक it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "यह बोर्ड is private. Only people संकलित तक the बोर्ड can आलोकन और संपादित करें it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "यह बोर्ड is public. It's visible तक anyone साथ में the link और will show up अंदर में गूगल की तरह खोज इंजन । केवल लोग संकलित तक बोर्ड संपादित कर सकते हैं.",
- "quick-access-description": "Star एक बोर्ड तक जोड़ें एक shortcut अंदर में यह पट्टी .",
- "remove-cover": "हटाएँ Cover",
- "remove-from-board": "हटाएँ से बोर्ड",
- "remove-label": "हटाएँ Label",
- "listDeletePopup-title": "मिटाएँ सूची ?",
- "remove-member": "हटाएँ सदस्य",
- "remove-member-from-card": "हटाएँ से कार्ड",
- "remove-member-pop": "हटाएँ __name__ (__username__) से __boardTitle__? इस बोर्ड पर सभी कार्ड से सदस्य हटा दिया जाएगा। उन्हें एक अधिसूचना प्राप्त होगी।",
- "removeMemberPopup-title": "हटाएँ सदस्य?",
- "rename": "Rename",
- "rename-board": "Rename बोर्ड",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "इस बोर्ड पर कार्ड / सूची शीर्षक, विवरण और आदत क्षेत्र से खोजें",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set एक limit for the maximum number of tasks अंदर में यह list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself तक current कार्ड",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete सदस्य",
- "shortcut-clear-filters": "Clear संपूर्ण filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my कार्ड",
- "shortcut-show-shortcuts": "Bring up यह shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle बोर्ड Sidebar",
- "show-cards-minimum-count": "Show कार्ड count if सूची contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click तक star यह बोर्ड. It will show up at top of your बोर्डों list.",
- "starred-boards": "Starred बोर्ड",
- "starred-boards-description": "Starred बोर्डों show up at the top of your बोर्डों list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "यह बोर्ड",
- "this-card": "यह कार्ड",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime कार्ड",
- "has-spenttime-cards": "Has spent time कार्ड",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
- "type": "Type",
- "unassign-member": "Unassign सदस्य",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "आलोकन it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You हो जाएगा notified of any change अंदर में यह बोर्ड",
- "welcome-board": "Welcome बोर्ड",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "कार्ड का खाका",
- "list-templates-swimlane": "सूची का खाका",
- "board-templates-swimlane": "बोर्ड का खाका",
- "what-to-do": "What do you want तक do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks अंदर में यह सूची is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please स्थानांतरित some tasks out of यह list, or set एक higher WIP limit.",
- "admin-panel": "व्यवस्थापक Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To बोर्ड(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send एक test email तक yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ प्रेषित you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully प्रेषित an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized तक आलोकन यह page.",
- "webhook-title": "वेबहुक नाम",
- "webhook-token": "टोकन (प्रमाणीकरण के लिए वैकल्पिक)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show यह field on कार्ड",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose संपूर्ण lists, कार्ड और actions associated साथ में यह बोर्ड.",
- "delete-board-confirm-popup": "All lists, कार्ड,नामपत्र , और activities हो जाएगा deleted और you won't be able तक recover the बोर्ड contents. There is no undo.",
- "boardDeletePopup-title": "मिटाएँ बोर्ड?",
- "delete-board": "मिटाएँ बोर्ड",
- "default-subtasks-board": "Subtasks for __board__ बोर्ड",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks व्यवस्था",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "बोर्ड Subtasks व्यवस्था",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks तक यह बोर्ड:",
- "deposit-subtasks-list": "Landing सूची for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent अंदर में minicard:",
- "prefix-with-full-path": "Prefix साथ में full path",
- "prefix-with-parent": "Prefix साथ में parent",
- "subtext-with-full-path": "Subtext साथ में full path",
- "subtext-with-parent": "Subtext साथ में parent",
- "change-card-parent": "Change कार्ड's parent",
- "parent-card": "Parent कार्ड",
- "source-board": "Source बोर्ड",
- "no-parent": "Don't show parent",
- "activity-added-label": "संकलित label '%s' तक %s",
- "activity-removed-label": "हटा दिया label '%s' से %s",
- "activity-delete-attach": "deleted an संलग्नक से %s",
- "activity-added-label-card": "संकलित label '%s'",
- "activity-removed-label-card": "हटा दिया label '%s'",
- "activity-delete-attach-card": "deleted an संलग्नक",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "जोड़ें trigger",
- "r-add-action": "जोड़ें action",
- "r-board-rules": "बोर्ड rules",
- "r-add-rule": "जोड़ें rule",
- "r-view-rule": "आलोकन rule",
- "r-delete-rule": "मिटाएँ rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "हटा दिया from",
- "r-the-board": "the बोर्ड",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "स्थानांतरित to",
- "r-moved-from": "स्थानांतरित from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a कार्ड",
- "r-when-a-label-is": "जब एक नामपत्र है",
- "r-when-the-label": "जब नामपत्र है",
- "r-list-name": "list name",
- "r-when-a-member": "जब एक सदस्य is",
- "r-when-the-member": "जब the सदस्य",
- "r-name": "name",
- "r-when-a-attach": "जब an संलग्नक",
- "r-when-a-checklist": "जब एक चिह्नांकन-सूची is",
- "r-when-the-checklist": "जब the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "जब एक चिह्नांकन-सूची विषय is",
- "r-when-the-item": "जब the चिह्नांकन-सूची item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "स्थानांतरित कार्ड to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "संग्रह में ले जाएं",
- "r-unarchive": "Restore from Archive",
- "r-card": "कार्ड",
- "r-add": "जोड़ें",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "हटाएँ संपूर्ण सदस्य से the कार्ड",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "स्थानांतरित कार्ड तक top of its list",
- "r-d-move-to-top-spec": "स्थानांतरित कार्ड तक top of list",
- "r-d-move-to-bottom-gen": "स्थानांतरित कार्ड तक bottom of its list",
- "r-d-move-to-bottom-spec": "स्थानांतरित कार्ड तक bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "जोड़ें label",
- "r-d-remove-label": "हटाएँ label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "जोड़ें सदस्य",
- "r-d-remove-member": "हटाएँ सदस्य",
- "r-d-remove-all-member": "हटाएँ संपूर्ण सदस्य",
- "r-d-check-all": "Check संपूर्ण items of एक list",
- "r-d-uncheck-all": "Uncheck संपूर्ण items of एक list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "जोड़ें checklist",
- "r-d-remove-checklist": "हटाएँ checklist",
- "r-by": "by",
- "r-add-checklist": "जोड़ें checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "जब एक कार्ड is स्थानांतरित तक another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "स्वीकार",
+ "act-activity-notify": "गतिविधि अधिसूचना",
+ "act-addAttachment": "अनुलग्नक जोड़ा __attachment__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-deleteAttachment": "हटाए गए अनुलग्नक __attachment__ कार्ड पर __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addSubtask": "जोड़ा उपकार्य __checklist__ को __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addedLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "कार्ड पर संपादित टिप्पणी __card__: __comment__ सूची में __list__ स्विमलेन में __swimlane__ बोर्ड पर __board__",
+ "act-deleteComment": "कार्ड पर हटाई गई टिप्पणी __card__: __comment__ सूची में __list__ स्विमलेन में __swimlane__ बोर्ड पर __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "बोर्ड पर कस्टम फ़ील्ड __customField__ __board__",
+ "act-deleteCustomField": "बोर्ड पर कस्टम फ़ील्ड __customField__ हटा दिया गया __board__",
+ "act-setCustomField": "कस्टम फ़ील्ड __customField__ संपादित करें: __customFieldValue__ कार्ड पर __card__ सूची में __list__ स्विमलेन __swimlane__ पर बोर्ड __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "कार्रवाई",
+ "activities": "गतिविधि",
+ "activity": "क्रियाएँ",
+ "activity-added": "जोड़ा गया %s से %s",
+ "activity-archived": "%sसंग्रह में ले जाया गया",
+ "activity-attached": "संलग्न %s से %s",
+ "activity-created": "बनाया %s",
+ "activity-customfield-created": "बनाया रिवाज क्षेत्र %s",
+ "activity-excluded": "छोड़ा %s से %s",
+ "activity-imported": "सूचित कर %s के अंदर %s से %s",
+ "activity-imported-board": "सूचित कर %s से %s",
+ "activity-joined": "शामिल %s",
+ "activity-moved": "स्थानांतरित %s से %s तक %s",
+ "activity-on": "पर %s",
+ "activity-removed": "हटा दिया %s से %s",
+ "activity-sent": "प्रेषित %s तक %s",
+ "activity-unjoined": "शामिल नहीं %s",
+ "activity-subtask-added": "जोड़ा उप कार्य तक %s",
+ "activity-checked-item": "चिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
+ "activity-unchecked-item": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
+ "activity-checklist-added": "संकलित चिह्नांकन-सूची तक %s",
+ "activity-checklist-removed": "हटा दिया एक चिह्नांकन-सूची से %s",
+ "activity-checklist-completed": "पूरी जाँच सूची%sकी %s",
+ "activity-checklist-uncompleted": "अपूर्ण चिह्नांकन-सूची %s of %s",
+ "activity-checklist-item-added": "संकलित चिह्नांकन-सूची विषय तक '%s' अंदर में %s",
+ "activity-checklist-item-removed": "हटा दिया एक चिह्नांकन-सूची विषय से '%s' अंदर में %s",
+ "add": "जोड़ें",
+ "activity-checked-item-card": "चिह्नित %s अंदर में चिह्नांकन-सूची %s",
+ "activity-unchecked-item-card": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "अपूर्ण चिह्नांकन-सूची %s",
+ "activity-editComment": "संपादित टिप्पणी",
+ "activity-deleteComment": "टिप्पणी हटा दी गई",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "संलग्न करें",
+ "add-board": "बोर्ड जोड़ें",
+ "add-card": "कार्ड जोड़ें",
+ "add-swimlane": "तैरन जोड़ें",
+ "add-subtask": "उप कार्य जोड़ें",
+ "add-checklist": "चिह्नांकन-सूची जोड़ें",
+ "add-checklist-item": "चिह्नांकन-सूची विषय कोई तक जोड़ें",
+ "add-cover": "आवरण जोड़ें",
+ "add-label": "नामपत्र जोड़ें",
+ "add-list": "सूची जोड़ें",
+ "add-members": "सदस्य जोड़ें",
+ "added": "जोड़ा गया",
+ "addMemberPopup-title": "सदस्य",
+ "admin": "Admin",
+ "admin-desc": "कार्ड देख और संपादित कर सकते हैं, सदस्यों को हटा सकते हैं, और बोर्ड के लिए सेटिंग्स बदल सकते हैं।",
+ "admin-announcement": "घोषणा",
+ "admin-announcement-active": "सक्रिय सिस्टम-व्यापी घोषणा",
+ "admin-announcement-title": "घोषणा प्रशासक से",
+ "all-boards": "सभी बोर्ड",
+ "and-n-other-card": "और __count__ other कार्ड",
+ "and-n-other-card_plural": "और __count__ other कार्ड",
+ "apply": "Apply",
+ "app-is-offline": "लोड हो रहा है, कृपया प्रतीक्षा करें । पृष्ठ को ताज़ा करना डेटा की हानि का कारण होगा । यदि लोड करना कार्य नहीं करता है, तो कृपया जांचें कि सर्वर बंद नहीं हुआ है ।",
+ "archive": "संग्रह में ले जाएं",
+ "archive-all": "सभी को संग्रह में ले जाएं",
+ "archive-board": "संग्रह करने के लिए बोर्ड ले जाएँ",
+ "archive-card": "कार्ड को संग्रह में ले जाएं",
+ "archive-list": "सूची को संग्रह में ले जाएं",
+ "archive-swimlane": "संग्रह करने के लिए स्विमलेन ले जाएँ",
+ "archive-selection": "चयन को संग्रह में ले जाएं",
+ "archiveBoardPopup-title": "बोर्ड को संग्रह में स्थानांतरित करें?",
+ "archived-items": "संग्रह",
+ "archived-boards": "संग्रह में बोर्ड",
+ "restore-board": "पुनर्स्थापना बोर्ड",
+ "no-archived-boards": "संग्रह में कोई बोर्ड नहीं ।",
+ "archives": "पुरालेख",
+ "template": "खाका",
+ "templates": "खाका",
+ "assign-member": "आवंटित सदस्य",
+ "attached": "संलग्न",
+ "attachment": "संलग्नक",
+ "attachment-delete-pop": "किसी संलग्नक को हटाना स्थाई है । कोई पूर्ववत् नहीं है ।",
+ "attachmentDeletePopup-title": "मिटाएँ संलग्नक?",
+ "attachments": "संलग्नक",
+ "auto-watch": "स्वचालित रूप से देखो बोर्डों जब वे बनाए जाते हैं",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "वापस",
+ "board-change-color": "रंग बदलना",
+ "board-nb-stars": "%s पसंद होना",
+ "board-not-found": "बोर्ड नहीं मिला",
+ "board-private-info": "यह बोर्ड हो जाएगा निजी.",
+ "board-public-info": "यह बोर्ड हो जाएगा सार्वजनिक.",
+ "boardChangeColorPopup-title": "बोर्ड पृष्ठभूमि बदलें",
+ "boardChangeTitlePopup-title": "बोर्ड का नाम बदलें",
+ "boardChangeVisibilityPopup-title": "दृश्यता बदलें",
+ "boardChangeWatchPopup-title": "बदलें वॉच",
+ "boardMenuPopup-title": "बोर्ड सेटिंग्स",
+ "boardChangeViewPopup-title": "बोर्ड दृष्टिकोण",
+ "boards": "बोर्डों",
+ "board-view": "बोर्ड दृष्टिकोण",
+ "board-view-cal": "तिथि-पत्र",
+ "board-view-swimlanes": "तैरना",
+ "board-view-collapse": "संक्षिप्त करें",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "सूचियाँ",
+ "bucket-example": "उदाहरण के लिए “बाल्टी सूची” की तरह",
+ "cancel": "रद्द करें",
+ "card-archived": "यह कार्ड संग्रह करने के लिए ले जाया गया है ।",
+ "board-archived": "यह बोर्ड संग्रह करने के लिए ले जाया जाता है ।",
+ "card-comments-title": "इस कार्ड में %s टिप्पणी है।",
+ "card-delete-notice": "हटाना स्थायी है। आप इस कार्ड से जुड़े सभी कार्यों को खो देंगे।",
+ "card-delete-pop": "सभी कार्रवाइयां गतिविधि फ़ीड से निकाल दी जाएंगी और आप कार्ड को फिर से खोलने में सक्षम नहीं होंगे । कोई पूर्ववत् नहीं है ।",
+ "card-delete-suggest-archive": "आप एक कार्ड को बोर्ड से हटाने और गतिविधि को संरक्षित करने के लिए संग्रह में ले जा सकते हैं ।",
+ "card-due": "नियत",
+ "card-due-on": "पर नियत",
+ "card-spent": "समय बिताया",
+ "card-edit-attachments": "संपादित संलग्नक",
+ "card-edit-custom-fields": "संपादित प्रचलन क्षेत्र",
+ "card-edit-labels": "संपादित नामपत्र",
+ "card-edit-members": "संपादित सदस्य",
+ "card-labels-title": "कार्ड के लिए नामपत्र परिवर्तित करें ।",
+ "card-members-title": "कार्ड से बोर्ड के सदस्यों को जोड़ें या हटाएं।",
+ "card-start": "प्रारंभ",
+ "card-start-on": "पर शुरू होता है",
+ "cardAttachmentsPopup-title": "से अनुलग्न करें",
+ "cardCustomField-datePopup-title": "तारीख बदलें",
+ "cardCustomFieldsPopup-title": "संपादित करें प्रचलन क्षेत्र",
+ "cardStartVotingPopup-title": "वोट शुरू करें",
+ "positiveVoteMembersPopup-title": "समर्थकों का",
+ "negativeVoteMembersPopup-title": "प्रतिद्वंद्वी",
+ "card-edit-voting": "मतदान संपादित करें",
+ "editVoteEndDatePopup-title": "मतदान समाप्ति की तारीख बदलें",
+ "allowNonBoardMembers": "सभी लॉग इन उपयोगकर्ताओं को अनुमति दें",
+ "vote-question": "मतदान का सवाल",
+ "vote-public": "दिखाएँ कि किसने क्या मतदान किया",
+ "vote-for-it": "इसके लिए",
+ "vote-against": "के प्रतिकूल",
+ "deleteVotePopup-title": "मतदान हटाएं?",
+ "vote-delete-pop": "हटाना स्थायी है। आप इस मतदान से जुड़े सभी कार्यों को खो देंगे।",
+ "cardDeletePopup-title": "मिटाएँ कार्ड?",
+ "cardDetailsActionsPopup-title": "कार्ड क्रियाएँ",
+ "cardLabelsPopup-title": "नामपत्र",
+ "cardMembersPopup-title": "सदस्य",
+ "cardMorePopup-title": "अतिरिक्त",
+ "cardTemplatePopup-title": "खाका बनाएं",
+ "cards": "कार्ड्स",
+ "cards-count": "कार्ड्स",
+ "casSignIn": "सीएएस के साथ साइन इन करें",
+ "cardType-card": "कार्ड",
+ "cardType-linkedCard": "जुड़े हुए कार्ड",
+ "cardType-linkedBoard": "जुड़े हुए बोर्ड",
+ "change": "तब्दीली",
+ "change-avatar": "अवतार परिवर्तन करें",
+ "change-password": "गोपनीयता परिवर्तन करें",
+ "change-permissions": "अनुमतियां परिवर्तित करें",
+ "change-settings": "व्यवस्था परिवर्तित करें",
+ "changeAvatarPopup-title": "अवतार परिवर्तन करें",
+ "changeLanguagePopup-title": "भाषा परिवर्तन करें",
+ "changePasswordPopup-title": "गोपनीयता परिवर्तन करें",
+ "changePermissionsPopup-title": "अनुमतियां परिवर्तित करें",
+ "changeSettingsPopup-title": "व्यवस्था परिवर्तित करें",
+ "subtasks": "उप-कार्य",
+ "checklists": "जांच सूची",
+ "click-to-star": "इस बोर्ड को स्टार करने के लिए क्लिक करें ।",
+ "click-to-unstar": "इस बोर्ड को अनस्टार करने के लिए क्लिक करें।",
+ "clipboard": "क्लिपबोर्ड या खींचें और छोड़ें",
+ "close": "बंद करे",
+ "close-board": "बोर्ड बंद करे",
+ "close-board-pop": "आप होम हेडर से \"संग्रह\" बटन पर क्लिक करके बोर्ड को पुनर्स्थापित करने में सक्षम होंगे।",
+ "color-black": "काला",
+ "color-blue": "नीला",
+ "color-crimson": "गहरा लाल",
+ "color-darkgreen": "गहरा हरा",
+ "color-gold": "स्वर्ण",
+ "color-gray": "भूरे",
+ "color-green": "हरा",
+ "color-indigo": "नील",
+ "color-lime": "हल्का हरा",
+ "color-magenta": "मैजंटा",
+ "color-mistyrose": "हल्का गुलाबी",
+ "color-navy": "navy",
+ "color-orange": "नारंगी",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "गुलाबी",
+ "color-plum": "plum",
+ "color-purple": "बैंगनी",
+ "color-red": "लाल",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "आकाशिया नीला",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "पीला",
+ "unset-color": "Unset",
+ "comment": "टिप्पणी",
+ "comment-placeholder": "टिप्पणी लिखें",
+ "comment-only": "केवल टिप्पणी करें",
+ "comment-only-desc": "केवल कार्ड पर टिप्पणी कर सकते हैं।",
+ "no-comments": "कोई टिप्पणी नहीं",
+ "no-comments-desc": "टिप्पणियां और गतिविधियां नहीं देख पा रहे हैं।",
+ "worker": "कामगार",
+ "worker-desc": "केवल कार्ड ले जा सकते हैं, खुद को कार्ड और टिप्पणी करने के लिए असाइन करें।",
+ "computer": "संगणक",
+ "confirm-subtask-delete-dialog": "क्या आप वाकई उपकार्य हटाना चाहते हैं?",
+ "confirm-checklist-delete-dialog": "क्या आप वाकई जांचसूची हटाना चाहते हैं?",
+ "copy-card-link-to-clipboard": "कॉपी कार्ड क्लिपबोर्ड करने के लिए लिंक",
+ "linkCardPopup-title": "कार्ड कड़ी",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "कार्ड प्रतिलिपि",
+ "copyChecklistToManyCardsPopup-title": "कई कार्ड के लिए जांचसूची खाके की प्रतिलिपि बनाएँ",
+ "copyChecklistToManyCardsPopup-instructions": "इस JSON प्रारूप में गंतव्य कार्ड शीर्षक और विवरण",
+ "copyChecklistToManyCardsPopup-format": "[{\"title\":\"पहला कार्ड शीर्षक\",\"description\":\"पहला कार्ड विवरण\"},{\"title\":\"दूसरा कार्ड शीर्षक\",\"description\":\"दूसरा कार्ड विवरण\"},{\"title\":\"अंतिम कार्ड शीर्षक\",\"description\":\"अंतिम कार्ड विवरण\" }]",
+ "create": "निर्माण करना",
+ "createBoardPopup-title": "बोर्ड निर्माण करना",
+ "chooseBoardSourcePopup-title": "बोर्ड आयात",
+ "createLabelPopup-title": "नामपत्र निर्माण",
+ "createCustomField": "क्षेत्र निर्माण करना",
+ "createCustomFieldPopup-title": "क्षेत्र निर्माण",
+ "current": "वर्तमान",
+ "custom-field-delete-pop": "कोई पूर्ववत् नहीं है । यह सभी कार्ड से इस कस्टम क्षेत्र को हटा दें और इसके इतिहास को नष्ट कर देगा ।",
+ "custom-field-checkbox": "निशानबक्से",
+ "custom-field-currency": "मुद्रा",
+ "custom-field-currency-option": "मुद्रा संहिता",
+ "custom-field-date": "दिनांक",
+ "custom-field-dropdown": "ड्रॉपडाउन सूची",
+ "custom-field-dropdown-none": "(कोई नहीं)",
+ "custom-field-dropdown-options": "सूची विकल्प",
+ "custom-field-dropdown-options-placeholder": "Press enter तक जोड़ें more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "प्रचलन क्षेत्र",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "मिटाएँ प्रचलन क्षेत्र?",
+ "deleteLabelPopup-title": "मिटाएँ Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate सदस्य Action",
+ "discard": "Disकार्ड",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "संपादित करें Profile",
+ "edit-wip-limit": "संपादित करें WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "संपादित करें Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "संपादित करें Notification",
+ "editProfilePopup-title": "संपादित करें Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying तक send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ प्रेषित you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you तक join बोर्ड \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "नमस्ते __user __, \n\n अपना खाता ईमेल सत्यापित करने के लिए, बस नीचे दिए गए लिंक पर क्लिक करें। \n\n__url __ \n\n धन्यवाद।",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "यह बोर्ड does not exist",
+ "error-board-notAdmin": "You need तक be व्यवस्थापक of यह बोर्ड तक do that",
+ "error-board-notAMember": "You need तक be एक सदस्य of यह बोर्ड तक do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "आपके JSON डेटा में सही प्रारूप में सही जानकारी शामिल नहीं है",
+ "error-csv-schema": "आपके CSV (कोमा सेपरेटेड वैल्यूज़) / TSV (टैब सेपरेटेड वैल्यूज़) में सही फॉर्मेट में उचित जानकारी शामिल नहीं है",
+ "error-list-doesNotExist": "यह सूची does not exist",
+ "error-user-doesNotExist": "यह user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "यह user is not created",
+ "error-username-taken": "यह username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export बोर्ड",
+ "export-board-json": "JSON को निर्यात बोर्ड",
+ "export-board-csv": "निर्यात बोर्ड को सी.एस.वी.",
+ "export-board-tsv": "टी.एस.वी. को निर्यात बोर्ड",
+ "export-board-html": "HTML को निर्यात बोर्ड",
+ "exportBoardPopup-title": "Export बोर्ड",
+ "sort": "भांति",
+ "sort-desc": "क्रमबद्ध सूची पर क्लिक करें",
+ "list-sort-by": "सूची क्रमबद्ध करें:",
+ "list-label-modifiedAt": "अंतिम पहुंच समय",
+ "list-label-title": "सूची का नाम",
+ "list-label-sort": "आपका नियमावलीआदेश",
+ "list-label-short-modifiedAt": "(बड़ा)",
+ "list-label-short-title": "(साधारण)",
+ "list-label-short-sort": "(मध्यम)",
+ "filter": "Filter",
+ "filter-cards": "निस्पंदन पत्ते या सूची",
+ "list-filter-label": "शीर्षक द्वारा निस्पंदन सूची",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No सदस्य",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "कोई अभिहस्तांकिती नहीं",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No प्रचलन क्षेत्र",
+ "filter-show-archive": "संग्रहित सूची दिखाएं",
+ "filter-hide-empty": "खाली सूची छिपाएं",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering कार्ड इस पर बोर्ड. Click here तक संपादित करें filter.",
+ "filter-to-selection": "Filter तक selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows तक write एक string containing following operators: == != <= >= && || ( ) एक space is used as एक separator between the Operators. You can filter for संपूर्ण प्रचलन क्षेत्र by typing their names और values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need तक encapsulate them के अंदर single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) तक be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally संपूर्ण operators are interpreted से left तक right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back तक your बोर्डों page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create बोर्ड",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import बोर्ड",
+ "import-board-c": "Import बोर्ड",
+ "import-board-title-trello": "Import बोर्ड से Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "CSV / TSV से आयात बोर्ड",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "CSV / TSV से",
+ "import-board-instruction-trello": "In your Trello बोर्ड, go तक 'Menu', then 'More', 'Print और Export', 'Export JSON', और copy the resulting text.",
+ "import-board-instruction-csv": "अपने कोमा सेपरेटेड वैल्यू (CSV) / टैब सेपरेटेड वैल्यू (TSV) में पेस्ट करें।",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "अपना वैध CSV / TSV सामग्री यहां पेस्ट करें",
+ "import-map-members": "Map सदस्य",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Re आलोकन सदस्य mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited तक यह बोर्ड",
+ "keyboard-shortcuts": "Keyबोर्ड shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. यह will हटा यह label से संपूर्ण कार्ड और destroy its history.",
+ "labels": "नामपत्र",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave बोर्ड",
+ "leave-board-pop": "Are you sure you want तक leave __boardTitle__? You हो जाएगा हटा दिया से संपूर्ण कार्ड इस पर बोर्ड.",
+ "leaveBoardPopup-title": "Leave बोर्ड ?",
+ "link-card": "Link तक यह कार्ड",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "स्थानांतरित संपूर्ण कार्ड अंदर में यह list",
+ "list-select-cards": "Select संपूर्ण कार्ड अंदर में यह list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "सूची Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "तैरन Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import एक Trello कार्ड",
+ "listImportCardsTsvPopup-title": "एक्सेल CSV / TSV आयात करें",
+ "listMorePopup-title": "More",
+ "link-list": "Link तक यह list",
+ "list-delete-pop": "All actions हो जाएगा हटा दिया से the activity feed और you won't be able तक recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "तैरन",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "सदस्य व्यवस्था",
+ "members": "सदस्य",
+ "menu": "Menu",
+ "move-selection": "स्थानांतरित selection",
+ "moveCardPopup-title": "स्थानांतरित कार्ड",
+ "moveCardToBottom-title": "स्थानांतरित तक Bottom",
+ "moveCardToTop-title": "स्थानांतरित तक Top",
+ "moveSelectionPopup-title": "स्थानांतरित selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "आप किसी भी परिवर्तन के अधिसूचित नहीं किया जाएगा अंदर में यह बोर्ड",
+ "my-boards": "My बोर्ड",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can आलोकन और संपादित करें कार्ड. Can't change व्यवस्था.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates तक any कार्ड you participate as creater or सदस्य",
+ "notify-watch": "Receive updates तक any बोर्ड, lists, or कार्ड you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "यह page may be private. You may be able तक आलोकन it by logging in.",
+ "page-not-found": "Page नहीं मिला.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file तक it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "यह बोर्ड is private. Only people संकलित तक the बोर्ड can आलोकन और संपादित करें it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "यह बोर्ड is public. It's visible तक anyone साथ में the link और will show up अंदर में गूगल की तरह खोज इंजन । केवल लोग संकलित तक बोर्ड संपादित कर सकते हैं.",
+ "quick-access-description": "Star एक बोर्ड तक जोड़ें एक shortcut अंदर में यह पट्टी .",
+ "remove-cover": "हटाएँ Cover",
+ "remove-from-board": "हटाएँ से बोर्ड",
+ "remove-label": "हटाएँ Label",
+ "listDeletePopup-title": "मिटाएँ सूची ?",
+ "remove-member": "हटाएँ सदस्य",
+ "remove-member-from-card": "हटाएँ से कार्ड",
+ "remove-member-pop": "हटाएँ __name__ (__username__) से __boardTitle__? इस बोर्ड पर सभी कार्ड से सदस्य हटा दिया जाएगा। उन्हें एक अधिसूचना प्राप्त होगी।",
+ "removeMemberPopup-title": "हटाएँ सदस्य?",
+ "rename": "Rename",
+ "rename-board": "Rename बोर्ड",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "इस बोर्ड पर कार्ड / सूची शीर्षक, विवरण और आदत क्षेत्र से खोजें",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set एक limit for the maximum number of tasks अंदर में यह list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself तक current कार्ड",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete सदस्य",
+ "shortcut-clear-filters": "Clear संपूर्ण filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my कार्ड",
+ "shortcut-show-shortcuts": "Bring up यह shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle बोर्ड Sidebar",
+ "show-cards-minimum-count": "Show कार्ड count if सूची contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click तक star यह बोर्ड. It will show up at top of your बोर्डों list.",
+ "starred-boards": "Starred बोर्ड",
+ "starred-boards-description": "Starred बोर्डों show up at the top of your बोर्डों list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "यह बोर्ड",
+ "this-card": "यह कार्ड",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime कार्ड",
+ "has-spenttime-cards": "Has spent time कार्ड",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
+ "type": "Type",
+ "unassign-member": "Unassign सदस्य",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "आलोकन it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You हो जाएगा notified of any change अंदर में यह बोर्ड",
+ "welcome-board": "Welcome बोर्ड",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "कार्ड का खाका",
+ "list-templates-swimlane": "सूची का खाका",
+ "board-templates-swimlane": "बोर्ड का खाका",
+ "what-to-do": "What do you want तक do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks अंदर में यह सूची is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please स्थानांतरित some tasks out of यह list, or set एक higher WIP limit.",
+ "admin-panel": "व्यवस्थापक Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To बोर्ड(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send एक test email तक yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ प्रेषित you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully प्रेषित an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized तक आलोकन यह page.",
+ "webhook-title": "वेबहुक नाम",
+ "webhook-token": "टोकन (प्रमाणीकरण के लिए वैकल्पिक)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show यह field on कार्ड",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose संपूर्ण lists, कार्ड और actions associated साथ में यह बोर्ड.",
+ "delete-board-confirm-popup": "All lists, कार्ड,नामपत्र , और activities हो जाएगा deleted और you won't be able तक recover the बोर्ड contents. There is no undo.",
+ "boardDeletePopup-title": "मिटाएँ बोर्ड?",
+ "delete-board": "मिटाएँ बोर्ड",
+ "default-subtasks-board": "Subtasks for __board__ बोर्ड",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks व्यवस्था",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "बोर्ड Subtasks व्यवस्था",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks तक यह बोर्ड:",
+ "deposit-subtasks-list": "Landing सूची for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent अंदर में minicard:",
+ "prefix-with-full-path": "Prefix साथ में full path",
+ "prefix-with-parent": "Prefix साथ में parent",
+ "subtext-with-full-path": "Subtext साथ में full path",
+ "subtext-with-parent": "Subtext साथ में parent",
+ "change-card-parent": "Change कार्ड's parent",
+ "parent-card": "Parent कार्ड",
+ "source-board": "Source बोर्ड",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "संकलित label '%s' तक %s",
+ "activity-removed-label": "हटा दिया label '%s' से %s",
+ "activity-delete-attach": "deleted an संलग्नक से %s",
+ "activity-added-label-card": "संकलित label '%s'",
+ "activity-removed-label-card": "हटा दिया label '%s'",
+ "activity-delete-attach-card": "deleted an संलग्नक",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "जोड़ें trigger",
+ "r-add-action": "जोड़ें action",
+ "r-board-rules": "बोर्ड rules",
+ "r-add-rule": "जोड़ें rule",
+ "r-view-rule": "आलोकन rule",
+ "r-delete-rule": "मिटाएँ rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "हटा दिया from",
+ "r-the-board": "the बोर्ड",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "स्थानांतरित to",
+ "r-moved-from": "स्थानांतरित from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a कार्ड",
+ "r-when-a-label-is": "जब एक नामपत्र है",
+ "r-when-the-label": "जब नामपत्र है",
+ "r-list-name": "list name",
+ "r-when-a-member": "जब एक सदस्य is",
+ "r-when-the-member": "जब the सदस्य",
+ "r-name": "name",
+ "r-when-a-attach": "जब an संलग्नक",
+ "r-when-a-checklist": "जब एक चिह्नांकन-सूची is",
+ "r-when-the-checklist": "जब the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "जब एक चिह्नांकन-सूची विषय is",
+ "r-when-the-item": "जब the चिह्नांकन-सूची item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "स्थानांतरित कार्ड to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "संग्रह में ले जाएं",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "कार्ड",
+ "r-add": "जोड़ें",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "हटाएँ संपूर्ण सदस्य से the कार्ड",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "स्थानांतरित कार्ड तक top of its list",
+ "r-d-move-to-top-spec": "स्थानांतरित कार्ड तक top of list",
+ "r-d-move-to-bottom-gen": "स्थानांतरित कार्ड तक bottom of its list",
+ "r-d-move-to-bottom-spec": "स्थानांतरित कार्ड तक bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "जोड़ें label",
+ "r-d-remove-label": "हटाएँ label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "जोड़ें सदस्य",
+ "r-d-remove-member": "हटाएँ सदस्य",
+ "r-d-remove-all-member": "हटाएँ संपूर्ण सदस्य",
+ "r-d-check-all": "Check संपूर्ण items of एक list",
+ "r-d-uncheck-all": "Uncheck संपूर्ण items of एक list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "जोड़ें checklist",
+ "r-d-remove-checklist": "हटाएँ checklist",
+ "r-by": "by",
+ "r-add-checklist": "जोड़ें checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "जब एक कार्ड is स्थानांतरित तक another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json
index 077f8722c..3cdd652a9 100644
--- a/i18n/hu.i18n.json
+++ b/i18n/hu.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Elfogadás",
- "act-activity-notify": "Tevékenység értesítés",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Műveletek",
- "activities": "Tevékenységek",
- "activity": "Tevékenység",
- "activity-added": "%s hozzáadva ehhez: %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s mellékletet csatolt a kártyához: %s",
- "activity-created": "%s létrehozva",
- "activity-customfield-created": "létrehozta a(z) %s egyéni mezőt",
- "activity-excluded": "%s kizárva innen: %s",
- "activity-imported": "%s importálva ebbe: %s, innen: %s",
- "activity-imported-board": "%s importálva innen: %s",
- "activity-joined": "%s csatlakozott",
- "activity-moved": "%s áthelyezve: %s → %s",
- "activity-on": "ekkor: %s",
- "activity-removed": "%s eltávolítva innen: %s",
- "activity-sent": "%s elküldve ide: %s",
- "activity-unjoined": "%s kilépett a csoportból",
- "activity-subtask-added": "Alfeladat hozzáadva ehhez: %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "ellenőrzőlista hozzáadva ehhez: %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "ellenőrzőlista elem hozzáadva ehhez: „%s”, ebben: %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Hozzáadás",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Melléklet hozzáadása",
- "add-board": "Tábla hozzáadása",
- "add-card": "Kártya hozzáadása",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Alfeladat hozzáadása",
- "add-checklist": "Ellenőrzőlista hozzáadása",
- "add-checklist-item": "Elem hozzáadása az ellenőrzőlistához",
- "add-cover": "Borító hozzáadása",
- "add-label": "Címke hozzáadása",
- "add-list": "Lista hozzáadása",
- "add-members": "Tagok hozzáadása",
- "added": "Hozzáadva",
- "addMemberPopup-title": "Tagok",
- "admin": "Adminisztrátor",
- "admin-desc": "Megtekintheti és szerkesztheti a kártyákat, eltávolíthat tagokat, valamint megváltoztathatja a tábla beállításait.",
- "admin-announcement": "Bejelentés",
- "admin-announcement-active": "Bekapcsolt rendszerszintű bejelentés",
- "admin-announcement-title": "Bejelentés az adminisztrátortól",
- "all-boards": "Összes tábla",
- "and-n-other-card": "És __count__ egyéb kártya",
- "and-n-other-card_plural": "És __count__ egyéb kártya",
- "apply": "Alkalmaz",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Mozgatás az archívumba",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archiválás",
- "archived-boards": "Boards in Archive",
- "restore-board": "Tábla visszaállítása",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archiválás",
- "template": "Sablon",
- "templates": "Sablonok",
- "assign-member": "Tag hozzárendelése",
- "attached": "csatolva",
- "attachment": "Melléklet",
- "attachment-delete-pop": "A melléklet törlése végeleges. Nincs visszaállítás.",
- "attachmentDeletePopup-title": "Törli a mellékletet?",
- "attachments": "Mellékletek",
- "auto-watch": "Táblák automatikus megtekintése, amikor létrejönnek",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Vissza",
- "board-change-color": "Szín megváltoztatása",
- "board-nb-stars": "%s csillag",
- "board-not-found": "A tábla nem található",
- "board-private-info": "Ez a tábla legyen személyes.",
- "board-public-info": "Ez a tábla legyen nyilvános.",
- "boardChangeColorPopup-title": "Tábla hátterének megváltoztatása",
- "boardChangeTitlePopup-title": "Tábla átnevezése",
- "boardChangeVisibilityPopup-title": "Láthatóság megváltoztatása",
- "boardChangeWatchPopup-title": "Megfigyelés megváltoztatása",
- "boardMenuPopup-title": "Tábla beállítások",
- "boardChangeViewPopup-title": "Tábla nézet",
- "boards": "Táblák",
- "board-view": "Tábla nézet",
- "board-view-cal": "Naptár",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Összecsukás",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listák",
- "bucket-example": "Mint például „Bakancslista”",
- "cancel": "Mégse",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Ez a kártya %s hozzászólást tartalmaz.",
- "card-delete-notice": "A törlés végleges. Az összes műveletet elveszíti, amely ehhez a kártyához tartozik.",
- "card-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz képes többé újra megnyitni a kártyát. Nincs visszaállítási lehetőség.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Esedékes",
- "card-due-on": "Esedékes ekkor",
- "card-spent": "Eltöltött idő",
- "card-edit-attachments": "Mellékletek szerkesztése",
- "card-edit-custom-fields": "Egyéni mezők szerkesztése",
- "card-edit-labels": "Címkék szerkesztése",
- "card-edit-members": "Tagok szerkesztése",
- "card-labels-title": "A kártya címkéinek megváltoztatása.",
- "card-members-title": "A tábla tagjainak hozzáadása vagy eltávolítása a kártyáról.",
- "card-start": "Kezdés",
- "card-start-on": "Kezdés ekkor",
- "cardAttachmentsPopup-title": "Innen csatolva",
- "cardCustomField-datePopup-title": "Dátum megváltoztatása",
- "cardCustomFieldsPopup-title": "Egyéni mezők szerkesztése",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Törli a kártyát?",
- "cardDetailsActionsPopup-title": "Kártyaműveletek",
- "cardLabelsPopup-title": "Címkék",
- "cardMembersPopup-title": "Tagok",
- "cardMorePopup-title": "Több",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kártyák",
- "cards-count": "Kártyák",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Változtatás",
- "change-avatar": "Avatár megváltoztatása",
- "change-password": "Jelszó megváltoztatása",
- "change-permissions": "Jogosultságok megváltoztatása",
- "change-settings": "Beállítások megváltoztatása",
- "changeAvatarPopup-title": "Avatár megváltoztatása",
- "changeLanguagePopup-title": "Nyelv megváltoztatása",
- "changePasswordPopup-title": "Jelszó megváltoztatása",
- "changePermissionsPopup-title": "Jogosultságok megváltoztatása",
- "changeSettingsPopup-title": "Beállítások megváltoztatása",
- "subtasks": "Alfeladat",
- "checklists": "Ellenőrzőlisták",
- "click-to-star": "Kattintson a tábla csillagozásához.",
- "click-to-unstar": "Kattintson a tábla csillagának eltávolításához.",
- "clipboard": "Vágólap vagy fogd és vidd",
- "close": "Bezárás",
- "close-board": "Tábla bezárása",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "fekete",
- "color-blue": "kék",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "zöld",
- "color-indigo": "indigo",
- "color-lime": "citrus",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "narancssárga",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rózsaszín",
- "color-plum": "plum",
- "color-purple": "lila",
- "color-red": "piros",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "égszínkék",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "sárga",
- "unset-color": "Unset",
- "comment": "Megjegyzés",
- "comment-placeholder": "Megjegyzés írása",
- "comment-only": "Csak megjegyzés",
- "comment-only-desc": "Csak megjegyzést írhat a kártyákhoz.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Számítógép",
- "confirm-subtask-delete-dialog": "Biztosan törölni szeretnél az alfeladatot?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Kártya hivatkozásának másolása a vágólapra",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Keresés",
- "copyCardPopup-title": "Kártya másolása",
- "copyChecklistToManyCardsPopup-title": "Ellenőrzőlista sablon másolása több kártyára",
- "copyChecklistToManyCardsPopup-instructions": "A célkártyák címe és a leírások ebben a JSON formátumban",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Első kártya címe\", \"description\":\"Első kártya leírása\"}, {\"title\":\"Második kártya címe\",\"description\":\"Második kártya leírása\"},{\"title\":\"Utolsó kártya címe\",\"description\":\"Utolsó kártya leírása\"} ]",
- "create": "Létrehozás",
- "createBoardPopup-title": "Tábla létrehozása",
- "chooseBoardSourcePopup-title": "Tábla importálása",
- "createLabelPopup-title": "Címke létrehozása",
- "createCustomField": "Mező létrehozása",
- "createCustomFieldPopup-title": "Mező létrehozása",
- "current": "jelenlegi",
- "custom-field-delete-pop": "Nincs visszavonás. Ez el fogja távolítani az egyéni mezőt az összes kártyáról, és megsemmisíti az előzményeit.",
- "custom-field-checkbox": "Jelölőnégyzet",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Dátum",
- "custom-field-dropdown": "Legördülő lista",
- "custom-field-dropdown-none": "(nincs)",
- "custom-field-dropdown-options": "Lista lehetőségei",
- "custom-field-dropdown-options-placeholder": "Nyomja meg az Enter billentyűt több lehetőség hozzáadásához",
- "custom-field-dropdown-unknown": "(ismeretlen)",
- "custom-field-number": "Szám",
- "custom-field-text": "Szöveg",
- "custom-fields": "Egyéni mezők",
- "date": "Dátum",
- "decline": "Elutasítás",
- "default-avatar": "Alapértelmezett avatár",
- "delete": "Törlés",
- "deleteCustomFieldPopup-title": "Törli az egyéni mezőt?",
- "deleteLabelPopup-title": "Törli a címkét?",
- "description": "Leírás",
- "disambiguateMultiLabelPopup-title": "Címkeművelet egyértelműsítése",
- "disambiguateMultiMemberPopup-title": "Tagművelet egyértelműsítése",
- "discard": "Eldobás",
- "done": "Kész",
- "download": "Letöltés",
- "edit": "Szerkesztés",
- "edit-avatar": "Avatár megváltoztatása",
- "edit-profile": "Profil szerkesztése",
- "edit-wip-limit": "WIP korlát szerkesztése",
- "soft-wip-limit": "Gyenge WIP korlát",
- "editCardStartDatePopup-title": "Kezdődátum megváltoztatása",
- "editCardDueDatePopup-title": "Esedékesség dátumának megváltoztatása",
- "editCustomFieldPopup-title": "Mező szerkesztése",
- "editCardSpentTimePopup-title": "Eltöltött idő megváltoztatása",
- "editLabelPopup-title": "Címke megváltoztatása",
- "editNotificationPopup-title": "Értesítés szerkesztése",
- "editProfilePopup-title": "Profil szerkesztése",
- "email": "E-mail",
- "email-enrollAccount-subject": "Létrejött a profilja a következő oldalon: __siteName__",
- "email-enrollAccount-text": "Kedves __user__!\n\nA szolgáltatás használatának megkezdéséhez egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "email-fail": "Az e-mail küldése nem sikerült",
- "email-fail-text": "Hiba az e-mail küldésének kísérlete közben",
- "email-invalid": "Érvénytelen e-mail",
- "email-invite": "Meghívás e-mailben",
- "email-invite-subject": "__inviter__ egy meghívást küldött Önnek",
- "email-invite-text": "Kedves __user__!\n\n__inviter__ meghívta Önt, hogy csatlakozzon a(z) „__board__” táblán történő együttműködéshez.\n\nKattintson az alábbi hivatkozásra:\n\n__url__\n\nKöszönjük.",
- "email-resetPassword-subject": "Jelszó visszaállítása ezen az oldalon: __siteName__",
- "email-resetPassword-text": "Kedves __user__!\n\nA jelszava visszaállításához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "email-sent": "E-mail elküldve",
- "email-verifyEmail-subject": "Igazolja vissza az e-mail címét a következő oldalon: __siteName__",
- "email-verifyEmail-text": "Kedves __user__!\n\nAz e-mail fiókjának visszaigazolásához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "enable-wip-limit": "WIP korlát engedélyezése",
- "error-board-doesNotExist": "Ez a tábla nem létezik",
- "error-board-notAdmin": "A tábla adminisztrátorának kell lennie, hogy ezt megtehesse",
- "error-board-notAMember": "A tábla tagjának kell lennie, hogy ezt megtehesse",
- "error-json-malformed": "A szöveg nem érvényes JSON",
- "error-json-schema": "A JSON adatok nem a helyes formátumban tartalmazzák a megfelelő információkat",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Ez a lista nem létezik",
- "error-user-doesNotExist": "Ez a felhasználó nem létezik",
- "error-user-notAllowSelf": "Nem hívhatja meg saját magát",
- "error-user-notCreated": "Ez a felhasználó nincs létrehozva",
- "error-username-taken": "Ez a felhasználónév már foglalt",
- "error-email-taken": "Az e-mail már foglalt",
- "export-board": "Tábla exportálása",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Tábla exportálása",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Szűrő",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Szűrő törlése",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Nincs címke",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Nincs tag",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Nincsenek egyéni mezők",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Szűrő bekapcsolva",
- "filter-on-desc": "A kártyaszűrés be van kapcsolva ezen a táblán. Kattintson ide a szűrő szerkesztéséhez.",
- "filter-to-selection": "Szűrés a kijelöléshez",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Speciális szűrő",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Teljes név",
- "header-logo-title": "Vissza a táblák oldalára.",
- "hide-system-messages": "Rendszerüzenetek elrejtése",
- "headerBarCreateBoardPopup-title": "Tábla létrehozása",
- "home": "Kezdőlap",
- "import": "Importálás",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "tábla importálása",
- "import-board-c": "Tábla importálása",
- "import-board-title-trello": "Tábla importálása a Trello oldalról",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "A Trello oldalról",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "A Trello tábláján menjen a „Menü”, majd a „Több”, „Nyomtatás és exportálás”, „JSON exportálása” menüpontokra, és másolja ki az eredményül kapott szöveget.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Illessze be ide az érvényes JSON adatokat",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Tagok leképezése",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Tagok leképezésének vizsgálata",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Verzió",
- "initials": "Kezdőbetűk",
- "invalid-date": "Érvénytelen dátum",
- "invalid-time": "Érvénytelen idő",
- "invalid-user": "Érvénytelen felhasználó",
- "joined": "csatlakozott",
- "just-invited": "Éppen most hívták meg erre a táblára",
- "keyboard-shortcuts": "Gyorsbillentyűk",
- "label-create": "Címke létrehozása",
- "label-default": "%s címke (alapértelmezett)",
- "label-delete-pop": "Nincs visszavonás. Ez el fogja távolítani ezt a címkét az összes kártyáról, és törli az előzményeit.",
- "labels": "Címkék",
- "language": "Nyelv",
- "last-admin-desc": "Nem változtathatja meg a szerepeket, mert legalább egy adminisztrátora szükség van.",
- "leave-board": "Tábla elhagyása",
- "leave-board-pop": "Biztosan el szeretné hagyni ezt a táblát: __boardTitle__? El lesz távolítva a táblán lévő összes kártyáról.",
- "leaveBoardPopup-title": "Elhagyja a táblát?",
- "link-card": "Összekapcsolás ezzel a kártyával",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "A listán lévő összes kártya áthelyezése",
- "list-select-cards": "A listán lévő összes kártya kiválasztása",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Műveletek felsorolása",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trello kártya importálása",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Több",
- "link-list": "Összekapcsolás ezzel a listával",
- "list-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz lehetősége visszaállítani a listát. Nincs visszavonás.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listák",
- "swimlanes": "Swimlanes",
- "log-out": "Kijelentkezés",
- "log-in": "Bejelentkezés",
- "loginPopup-title": "Bejelentkezés",
- "memberMenuPopup-title": "Tagok beállításai",
- "members": "Tagok",
- "menu": "Menü",
- "move-selection": "Kijelölés áthelyezése",
- "moveCardPopup-title": "Kártya áthelyezése",
- "moveCardToBottom-title": "Áthelyezés az aljára",
- "moveCardToTop-title": "Áthelyezés a tetejére",
- "moveSelectionPopup-title": "Kijelölés áthelyezése",
- "multi-selection": "Többszörös kijelölés",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Többszörös kijelölés bekapcsolva",
- "muted": "Némítva",
- "muted-info": "Soha sem lesz értesítve a táblán lévő semmilyen változásról.",
- "my-boards": "Saját tábláim",
- "name": "Név",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Nincs találat",
- "normal": "Normál",
- "normal-desc": "Megtekintheti és szerkesztheti a kártyákat. Nem változtathatja meg a beállításokat.",
- "not-accepted-yet": "A meghívás még nincs elfogadva",
- "notify-participate": "Frissítések fogadása bármely kártyánál, amelynél létrehozóként vagy tagként vesz részt",
- "notify-watch": "Frissítések fogadása bármely táblánál, listánál vagy kártyánál, amelyet megtekint",
- "optional": "opcionális",
- "or": "vagy",
- "page-maybe-private": "Ez az oldal személyes lehet. Esetleg megtekintheti, ha bejelentkezik.",
- "page-not-found": "Az oldal nem található.",
- "password": "Jelszó",
- "paste-or-dragdrop": "illessze be, vagy fogd és vidd módon húzza ide a képfájlt (csak képeket)",
- "participating": "Részvétel",
- "preview": "Előnézet",
- "previewAttachedImagePopup-title": "Előnézet",
- "previewClipboardImagePopup-title": "Előnézet",
- "private": "Személyes",
- "private-desc": "Ez a tábla személyes. Csak a táblához hozzáadott emberek tekinthetik meg és szerkeszthetik.",
- "profile": "Profil",
- "public": "Nyilvános",
- "public-desc": "Ez a tábla nyilvános. A hivatkozás birtokában bárki számára látható, és megjelenik az olyan keresőmotorokban, mint például a Google. Csak a táblához hozzáadott emberek szerkeszthetik.",
- "quick-access-description": "Csillagozzon meg egy táblát egy gyors hivatkozás hozzáadásához ebbe a sávba.",
- "remove-cover": "Borító eltávolítása",
- "remove-from-board": "Eltávolítás a tábláról",
- "remove-label": "Címke eltávolítása",
- "listDeletePopup-title": "Törli a listát?",
- "remove-member": "Tag eltávolítása",
- "remove-member-from-card": "Eltávolítás a kártyáról",
- "remove-member-pop": "Eltávolítja __name__ (__username__) felhasználót a tábláról: __boardTitle__? A tag el lesz távolítva a táblán lévő összes kártyáról. Értesítést fog kapni erről.",
- "removeMemberPopup-title": "Eltávolítja a tagot?",
- "rename": "Átnevezés",
- "rename-board": "Tábla átnevezése",
- "restore": "Visszaállítás",
- "save": "Mentés",
- "search": "Keresés",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Szín kiválasztása",
- "select-board": "Select Board",
- "set-wip-limit-value": "Korlát beállítása a listán lévő feladatok legnagyobb számához",
- "setWipLimitPopup-title": "WIP korlát beállítása",
- "shortcut-assign-self": "Önmaga hozzárendelése a jelenlegi kártyához",
- "shortcut-autocomplete-emoji": "Emodzsi automatikus kiegészítése",
- "shortcut-autocomplete-members": "Tagok automatikus kiegészítése",
- "shortcut-clear-filters": "Összes szűrő törlése",
- "shortcut-close-dialog": "Párbeszédablak bezárása",
- "shortcut-filter-my-cards": "Kártyáim szűrése",
- "shortcut-show-shortcuts": "A hivatkozási lista előre hozása",
- "shortcut-toggle-filterbar": "Szűrő oldalsáv ki- és bekapcsolása",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Tábla oldalsáv ki- és bekapcsolása",
- "show-cards-minimum-count": "Kártyaszámok megjelenítése, ha a lista többet tartalmaz mint",
- "sidebar-open": "Oldalsáv megnyitása",
- "sidebar-close": "Oldalsáv bezárása",
- "signupPopup-title": "Fiók létrehozása",
- "star-board-title": "Kattintson a tábla csillagozásához. Meg fog jelenni a táblalistája tetején.",
- "starred-boards": "Csillagozott táblák",
- "starred-boards-description": "A csillagozott táblák megjelennek a táblalistája tetején.",
- "subscribe": "Feliratkozás",
- "team": "Csapat",
- "this-board": "ez a tábla",
- "this-card": "ez a kártya",
- "spent-time-hours": "Eltöltött idő (óra)",
- "overtime-hours": "Túlóra (óra)",
- "overtime": "Túlóra",
- "has-overtime-cards": "Van túlórás kártyája",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Idő",
- "title": "Cím",
- "tracking": "Követés",
- "tracking-info": "Értesítve lesz az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként vesz részt.",
- "type": "Típus",
- "unassign-member": "Tag hozzárendelésének megszüntetése",
- "unsaved-description": "Van egy mentetlen leírása.",
- "unwatch": "Megfigyelés megszüntetése",
- "upload": "Feltöltés",
- "upload-avatar": "Egy avatár feltöltése",
- "uploaded-avatar": "Egy avatár feltöltve",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Felhasználónév",
- "view-it": "Megtekintés",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Megfigyelés",
- "watching": "Megfigyelés",
- "watching-info": "Értesítve lesz a táblán lévő összes változásról",
- "welcome-board": "Üdvözlő tábla",
- "welcome-swimlane": "1. mérföldkő",
- "welcome-list1": "Alapok",
- "welcome-list2": "Speciális",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Mit szeretne tenni?",
- "wipLimitErrorPopup-title": "Érvénytelen WIP korlát",
- "wipLimitErrorPopup-dialog-pt1": "A listán lévő feladatok száma magasabb a meghatározott WIP korlátnál.",
- "wipLimitErrorPopup-dialog-pt2": "Helyezzen át néhány feladatot a listáról, vagy állítson be magasabb WIP korlátot.",
- "admin-panel": "Adminisztrációs panel",
- "settings": "Beállítások",
- "people": "Emberek",
- "registration": "Regisztráció",
- "disable-self-registration": "Önregisztráció letiltása",
- "invite": "Meghívás",
- "invite-people": "Emberek meghívása",
- "to-boards": "Táblákhoz",
- "email-addresses": "E-mail címek",
- "smtp-host-description": "Az SMTP kiszolgáló címe, amely az e-maileket kezeli.",
- "smtp-port-description": "Az SMTP kiszolgáló által használt port a kimenő e-mailekhez.",
- "smtp-tls-description": "TLS támogatás engedélyezése az SMTP kiszolgálónál",
- "smtp-host": "SMTP kiszolgáló",
- "smtp-port": "SMTP port",
- "smtp-username": "Felhasználónév",
- "smtp-password": "Jelszó",
- "smtp-tls": "TLS támogatás",
- "send-from": "Feladó",
- "send-smtp-test": "Teszt e-mail küldése magamnak",
- "invitation-code": "Meghívási kód",
- "email-invite-register-subject": "__inviter__ egy meghívás küldött Önnek",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Sikeresen elküldött egy e-mailt",
- "error-invitation-code-not-exist": "A meghívási kód nem létezik",
- "error-notAuthorized": "Nincs jogosultsága az oldal megtekintéséhez.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Kimenő webhurkok",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Kimenő webhurkok",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "Új kimenő webhurok",
- "no-name": "(Ismeretlen)",
- "Node_version": "Node verzió",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "Operációs rendszer architektúrája",
- "OS_Cpus": "Operációs rendszer CPU száma",
- "OS_Freemem": "Operációs rendszer szabad memóriája",
- "OS_Loadavg": "Operációs rendszer átlagos terhelése",
- "OS_Platform": "Operációs rendszer platformja",
- "OS_Release": "Operációs rendszer kiadása",
- "OS_Totalmem": "Operációs rendszer összes memóriája",
- "OS_Type": "Operációs rendszer típusa",
- "OS_Uptime": "Operációs rendszer üzemideje",
- "days": "days",
- "hours": "óra",
- "minutes": "perc",
- "seconds": "másodperc",
- "show-field-on-card": "A mező megjelenítése a kártyán",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Igen",
- "no": "Nem",
- "accounts": "Fiókok",
- "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése",
- "accounts-allowUserNameChange": "Felhasználónév megváltoztatásának engedélyezése",
- "createdAt": "Létrehozva",
- "verified": "Ellenőrizve",
- "active": "Aktív",
- "card-received": "Érkezett",
- "card-received-on": "Ekkor érkezett",
- "card-end": "Befejezés",
- "card-end-on": "Befejeződik ekkor",
- "editCardReceivedDatePopup-title": "Érkezési dátum megváltoztatása",
- "editCardEndDatePopup-title": "Befejezési dátum megváltoztatása",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Alfeladat beállítások",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Tábla alfeladat beállítások",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Archívumba helyezve",
- "r-unarchived": "Helyreállítva az archívumból",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Mozgatás az archívumba",
- "r-unarchive": "Helyreállítás az archívumból",
- "r-card": "card",
- "r-add": "Hozzáadás",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Összes megjelölése",
- "r-uncheck-all": "Összes jelölés törlése",
- "r-items-check": "items of checklist",
- "r-check": "Kijelölés",
- "r-uncheck": "Jelölés törlése",
- "r-item": "item",
- "r-of-checklist": "ellenőrzőlistából",
- "r-send-email": "E-mail küldése",
- "r-to": "címzett",
- "r-of": "of",
- "r-subject": "tárgy",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "E-mail küldése",
- "r-d-send-email-to": "címzett",
- "r-d-send-email-subject": "tárgy",
- "r-d-send-email-message": "üzenet",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Címke hozzáadása",
- "r-d-remove-label": "Címke eltávolítása",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Elem kijelölése",
- "r-d-uncheck-one": "Elem bejelölésének törlése",
- "r-d-check-of-list": "ellenőrzőlistából",
- "r-d-add-checklist": "Ellenőrzőlista hozzáadása",
- "r-d-remove-checklist": "Ellenőrzőlista eltávolítása",
- "r-by": "által",
- "r-add-checklist": "Ellenőrzőlista hozzáadása",
- "r-with-items": "elemekkel",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "Amikor egy kártya másik listába kerül",
- "r-set": "Set",
- "r-update": "Frissítés",
- "r-datefield": "dátum mező",
- "r-df-start-at": "kezdet",
- "r-df-due-at": "határidő",
- "r-df-end-at": "végzett",
- "r-df-received-at": "megérkezett",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Hitelesítési mód",
- "authentication-type": "Hitelesítés típusa",
- "custom-product-name": "Saját terméknév",
- "layout": "Elrendezés",
- "hide-logo": "Logo elrejtése",
- "add-custom-html-after-body-start": "Egyedi HTML hozzáadása után",
- "add-custom-html-before-body-end": "1",
- "error-undefined": "Valami hiba történt",
- "error-ldap-login": "Hiba történt bejelentkezés közben",
- "display-authentication-method": "Hitelelesítési mód mutatása",
- "default-authentication-method": "Alapértelmezett hitelesítési mód",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Összes visszaállítása",
- "delete-all": "Összes törlése",
- "loading": "Betöltés folyamatban, kis türelmet…",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Felelős",
- "cardAssigneesPopup-title": "Felelős",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "Új",
- "editUserPopup-title": "Felhasználó szerkesztése",
- "newUserPopup-title": "Új felhasználó",
- "notifications": "Értesítések",
- "view-all": "Összes megtekintése",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Összes megjelölése olvasottként",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Állítsa be a hét kezdetének napját",
- "monday": "hétfő",
- "tuesday": "kedd",
- "wednesday": "szerda",
- "thursday": "csütörtök",
- "friday": "péntek",
- "saturday": "szombat",
- "sunday": "vasárnap",
- "status": "Állapot",
- "swimlane": "Swimlane",
- "owner": "Tulajdonos",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archiválva",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Kijelölt elemek elrejtése",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Elfogadás",
+ "act-activity-notify": "Tevékenység értesítés",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Műveletek",
+ "activities": "Tevékenységek",
+ "activity": "Tevékenység",
+ "activity-added": "%s hozzáadva ehhez: %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s mellékletet csatolt a kártyához: %s",
+ "activity-created": "%s létrehozva",
+ "activity-customfield-created": "létrehozta a(z) %s egyéni mezőt",
+ "activity-excluded": "%s kizárva innen: %s",
+ "activity-imported": "%s importálva ebbe: %s, innen: %s",
+ "activity-imported-board": "%s importálva innen: %s",
+ "activity-joined": "%s csatlakozott",
+ "activity-moved": "%s áthelyezve: %s → %s",
+ "activity-on": "ekkor: %s",
+ "activity-removed": "%s eltávolítva innen: %s",
+ "activity-sent": "%s elküldve ide: %s",
+ "activity-unjoined": "%s kilépett a csoportból",
+ "activity-subtask-added": "Alfeladat hozzáadva ehhez: %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "ellenőrzőlista hozzáadva ehhez: %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "ellenőrzőlista elem hozzáadva ehhez: „%s”, ebben: %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Hozzáadás",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Melléklet hozzáadása",
+ "add-board": "Tábla hozzáadása",
+ "add-card": "Kártya hozzáadása",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Alfeladat hozzáadása",
+ "add-checklist": "Ellenőrzőlista hozzáadása",
+ "add-checklist-item": "Elem hozzáadása az ellenőrzőlistához",
+ "add-cover": "Borító hozzáadása",
+ "add-label": "Címke hozzáadása",
+ "add-list": "Lista hozzáadása",
+ "add-members": "Tagok hozzáadása",
+ "added": "Hozzáadva",
+ "addMemberPopup-title": "Tagok",
+ "admin": "Adminisztrátor",
+ "admin-desc": "Megtekintheti és szerkesztheti a kártyákat, eltávolíthat tagokat, valamint megváltoztathatja a tábla beállításait.",
+ "admin-announcement": "Bejelentés",
+ "admin-announcement-active": "Bekapcsolt rendszerszintű bejelentés",
+ "admin-announcement-title": "Bejelentés az adminisztrátortól",
+ "all-boards": "Összes tábla",
+ "and-n-other-card": "És __count__ egyéb kártya",
+ "and-n-other-card_plural": "És __count__ egyéb kártya",
+ "apply": "Alkalmaz",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Mozgatás az archívumba",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archiválás",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Tábla visszaállítása",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archiválás",
+ "template": "Sablon",
+ "templates": "Sablonok",
+ "assign-member": "Tag hozzárendelése",
+ "attached": "csatolva",
+ "attachment": "Melléklet",
+ "attachment-delete-pop": "A melléklet törlése végeleges. Nincs visszaállítás.",
+ "attachmentDeletePopup-title": "Törli a mellékletet?",
+ "attachments": "Mellékletek",
+ "auto-watch": "Táblák automatikus megtekintése, amikor létrejönnek",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Vissza",
+ "board-change-color": "Szín megváltoztatása",
+ "board-nb-stars": "%s csillag",
+ "board-not-found": "A tábla nem található",
+ "board-private-info": "Ez a tábla legyen személyes.",
+ "board-public-info": "Ez a tábla legyen nyilvános.",
+ "boardChangeColorPopup-title": "Tábla hátterének megváltoztatása",
+ "boardChangeTitlePopup-title": "Tábla átnevezése",
+ "boardChangeVisibilityPopup-title": "Láthatóság megváltoztatása",
+ "boardChangeWatchPopup-title": "Megfigyelés megváltoztatása",
+ "boardMenuPopup-title": "Tábla beállítások",
+ "boardChangeViewPopup-title": "Tábla nézet",
+ "boards": "Táblák",
+ "board-view": "Tábla nézet",
+ "board-view-cal": "Naptár",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Összecsukás",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listák",
+ "bucket-example": "Mint például „Bakancslista”",
+ "cancel": "Mégse",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Ez a kártya %s hozzászólást tartalmaz.",
+ "card-delete-notice": "A törlés végleges. Az összes műveletet elveszíti, amely ehhez a kártyához tartozik.",
+ "card-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz képes többé újra megnyitni a kártyát. Nincs visszaállítási lehetőség.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Esedékes",
+ "card-due-on": "Esedékes ekkor",
+ "card-spent": "Eltöltött idő",
+ "card-edit-attachments": "Mellékletek szerkesztése",
+ "card-edit-custom-fields": "Egyéni mezők szerkesztése",
+ "card-edit-labels": "Címkék szerkesztése",
+ "card-edit-members": "Tagok szerkesztése",
+ "card-labels-title": "A kártya címkéinek megváltoztatása.",
+ "card-members-title": "A tábla tagjainak hozzáadása vagy eltávolítása a kártyáról.",
+ "card-start": "Kezdés",
+ "card-start-on": "Kezdés ekkor",
+ "cardAttachmentsPopup-title": "Innen csatolva",
+ "cardCustomField-datePopup-title": "Dátum megváltoztatása",
+ "cardCustomFieldsPopup-title": "Egyéni mezők szerkesztése",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Törli a kártyát?",
+ "cardDetailsActionsPopup-title": "Kártyaműveletek",
+ "cardLabelsPopup-title": "Címkék",
+ "cardMembersPopup-title": "Tagok",
+ "cardMorePopup-title": "Több",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kártyák",
+ "cards-count": "Kártyák",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Változtatás",
+ "change-avatar": "Avatár megváltoztatása",
+ "change-password": "Jelszó megváltoztatása",
+ "change-permissions": "Jogosultságok megváltoztatása",
+ "change-settings": "Beállítások megváltoztatása",
+ "changeAvatarPopup-title": "Avatár megváltoztatása",
+ "changeLanguagePopup-title": "Nyelv megváltoztatása",
+ "changePasswordPopup-title": "Jelszó megváltoztatása",
+ "changePermissionsPopup-title": "Jogosultságok megváltoztatása",
+ "changeSettingsPopup-title": "Beállítások megváltoztatása",
+ "subtasks": "Alfeladat",
+ "checklists": "Ellenőrzőlisták",
+ "click-to-star": "Kattintson a tábla csillagozásához.",
+ "click-to-unstar": "Kattintson a tábla csillagának eltávolításához.",
+ "clipboard": "Vágólap vagy fogd és vidd",
+ "close": "Bezárás",
+ "close-board": "Tábla bezárása",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "fekete",
+ "color-blue": "kék",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "zöld",
+ "color-indigo": "indigo",
+ "color-lime": "citrus",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "narancssárga",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rózsaszín",
+ "color-plum": "plum",
+ "color-purple": "lila",
+ "color-red": "piros",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "égszínkék",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "sárga",
+ "unset-color": "Unset",
+ "comment": "Megjegyzés",
+ "comment-placeholder": "Megjegyzés írása",
+ "comment-only": "Csak megjegyzés",
+ "comment-only-desc": "Csak megjegyzést írhat a kártyákhoz.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Számítógép",
+ "confirm-subtask-delete-dialog": "Biztosan törölni szeretnél az alfeladatot?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Kártya hivatkozásának másolása a vágólapra",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Keresés",
+ "copyCardPopup-title": "Kártya másolása",
+ "copyChecklistToManyCardsPopup-title": "Ellenőrzőlista sablon másolása több kártyára",
+ "copyChecklistToManyCardsPopup-instructions": "A célkártyák címe és a leírások ebben a JSON formátumban",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Első kártya címe\", \"description\":\"Első kártya leírása\"}, {\"title\":\"Második kártya címe\",\"description\":\"Második kártya leírása\"},{\"title\":\"Utolsó kártya címe\",\"description\":\"Utolsó kártya leírása\"} ]",
+ "create": "Létrehozás",
+ "createBoardPopup-title": "Tábla létrehozása",
+ "chooseBoardSourcePopup-title": "Tábla importálása",
+ "createLabelPopup-title": "Címke létrehozása",
+ "createCustomField": "Mező létrehozása",
+ "createCustomFieldPopup-title": "Mező létrehozása",
+ "current": "jelenlegi",
+ "custom-field-delete-pop": "Nincs visszavonás. Ez el fogja távolítani az egyéni mezőt az összes kártyáról, és megsemmisíti az előzményeit.",
+ "custom-field-checkbox": "Jelölőnégyzet",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Dátum",
+ "custom-field-dropdown": "Legördülő lista",
+ "custom-field-dropdown-none": "(nincs)",
+ "custom-field-dropdown-options": "Lista lehetőségei",
+ "custom-field-dropdown-options-placeholder": "Nyomja meg az Enter billentyűt több lehetőség hozzáadásához",
+ "custom-field-dropdown-unknown": "(ismeretlen)",
+ "custom-field-number": "Szám",
+ "custom-field-text": "Szöveg",
+ "custom-fields": "Egyéni mezők",
+ "date": "Dátum",
+ "decline": "Elutasítás",
+ "default-avatar": "Alapértelmezett avatár",
+ "delete": "Törlés",
+ "deleteCustomFieldPopup-title": "Törli az egyéni mezőt?",
+ "deleteLabelPopup-title": "Törli a címkét?",
+ "description": "Leírás",
+ "disambiguateMultiLabelPopup-title": "Címkeművelet egyértelműsítése",
+ "disambiguateMultiMemberPopup-title": "Tagművelet egyértelműsítése",
+ "discard": "Eldobás",
+ "done": "Kész",
+ "download": "Letöltés",
+ "edit": "Szerkesztés",
+ "edit-avatar": "Avatár megváltoztatása",
+ "edit-profile": "Profil szerkesztése",
+ "edit-wip-limit": "WIP korlát szerkesztése",
+ "soft-wip-limit": "Gyenge WIP korlát",
+ "editCardStartDatePopup-title": "Kezdődátum megváltoztatása",
+ "editCardDueDatePopup-title": "Esedékesség dátumának megváltoztatása",
+ "editCustomFieldPopup-title": "Mező szerkesztése",
+ "editCardSpentTimePopup-title": "Eltöltött idő megváltoztatása",
+ "editLabelPopup-title": "Címke megváltoztatása",
+ "editNotificationPopup-title": "Értesítés szerkesztése",
+ "editProfilePopup-title": "Profil szerkesztése",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Létrejött a profilja a következő oldalon: __siteName__",
+ "email-enrollAccount-text": "Kedves __user__!\n\nA szolgáltatás használatának megkezdéséhez egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "email-fail": "Az e-mail küldése nem sikerült",
+ "email-fail-text": "Hiba az e-mail küldésének kísérlete közben",
+ "email-invalid": "Érvénytelen e-mail",
+ "email-invite": "Meghívás e-mailben",
+ "email-invite-subject": "__inviter__ egy meghívást küldött Önnek",
+ "email-invite-text": "Kedves __user__!\n\n__inviter__ meghívta Önt, hogy csatlakozzon a(z) „__board__” táblán történő együttműködéshez.\n\nKattintson az alábbi hivatkozásra:\n\n__url__\n\nKöszönjük.",
+ "email-resetPassword-subject": "Jelszó visszaállítása ezen az oldalon: __siteName__",
+ "email-resetPassword-text": "Kedves __user__!\n\nA jelszava visszaállításához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "email-sent": "E-mail elküldve",
+ "email-verifyEmail-subject": "Igazolja vissza az e-mail címét a következő oldalon: __siteName__",
+ "email-verifyEmail-text": "Kedves __user__!\n\nAz e-mail fiókjának visszaigazolásához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "enable-wip-limit": "WIP korlát engedélyezése",
+ "error-board-doesNotExist": "Ez a tábla nem létezik",
+ "error-board-notAdmin": "A tábla adminisztrátorának kell lennie, hogy ezt megtehesse",
+ "error-board-notAMember": "A tábla tagjának kell lennie, hogy ezt megtehesse",
+ "error-json-malformed": "A szöveg nem érvényes JSON",
+ "error-json-schema": "A JSON adatok nem a helyes formátumban tartalmazzák a megfelelő információkat",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Ez a lista nem létezik",
+ "error-user-doesNotExist": "Ez a felhasználó nem létezik",
+ "error-user-notAllowSelf": "Nem hívhatja meg saját magát",
+ "error-user-notCreated": "Ez a felhasználó nincs létrehozva",
+ "error-username-taken": "Ez a felhasználónév már foglalt",
+ "error-email-taken": "Az e-mail már foglalt",
+ "export-board": "Tábla exportálása",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Tábla exportálása",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Szűrő",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Szűrő törlése",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Nincs címke",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Nincs tag",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Nincsenek egyéni mezők",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Szűrő bekapcsolva",
+ "filter-on-desc": "A kártyaszűrés be van kapcsolva ezen a táblán. Kattintson ide a szűrő szerkesztéséhez.",
+ "filter-to-selection": "Szűrés a kijelöléshez",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Speciális szűrő",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Teljes név",
+ "header-logo-title": "Vissza a táblák oldalára.",
+ "hide-system-messages": "Rendszerüzenetek elrejtése",
+ "headerBarCreateBoardPopup-title": "Tábla létrehozása",
+ "home": "Kezdőlap",
+ "import": "Importálás",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "tábla importálása",
+ "import-board-c": "Tábla importálása",
+ "import-board-title-trello": "Tábla importálása a Trello oldalról",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "A Trello oldalról",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "A Trello tábláján menjen a „Menü”, majd a „Több”, „Nyomtatás és exportálás”, „JSON exportálása” menüpontokra, és másolja ki az eredményül kapott szöveget.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Illessze be ide az érvényes JSON adatokat",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Tagok leképezése",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Tagok leképezésének vizsgálata",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Verzió",
+ "initials": "Kezdőbetűk",
+ "invalid-date": "Érvénytelen dátum",
+ "invalid-time": "Érvénytelen idő",
+ "invalid-user": "Érvénytelen felhasználó",
+ "joined": "csatlakozott",
+ "just-invited": "Éppen most hívták meg erre a táblára",
+ "keyboard-shortcuts": "Gyorsbillentyűk",
+ "label-create": "Címke létrehozása",
+ "label-default": "%s címke (alapértelmezett)",
+ "label-delete-pop": "Nincs visszavonás. Ez el fogja távolítani ezt a címkét az összes kártyáról, és törli az előzményeit.",
+ "labels": "Címkék",
+ "language": "Nyelv",
+ "last-admin-desc": "Nem változtathatja meg a szerepeket, mert legalább egy adminisztrátora szükség van.",
+ "leave-board": "Tábla elhagyása",
+ "leave-board-pop": "Biztosan el szeretné hagyni ezt a táblát: __boardTitle__? El lesz távolítva a táblán lévő összes kártyáról.",
+ "leaveBoardPopup-title": "Elhagyja a táblát?",
+ "link-card": "Összekapcsolás ezzel a kártyával",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "A listán lévő összes kártya áthelyezése",
+ "list-select-cards": "A listán lévő összes kártya kiválasztása",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Műveletek felsorolása",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trello kártya importálása",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Több",
+ "link-list": "Összekapcsolás ezzel a listával",
+ "list-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz lehetősége visszaállítani a listát. Nincs visszavonás.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listák",
+ "swimlanes": "Swimlanes",
+ "log-out": "Kijelentkezés",
+ "log-in": "Bejelentkezés",
+ "loginPopup-title": "Bejelentkezés",
+ "memberMenuPopup-title": "Tagok beállításai",
+ "members": "Tagok",
+ "menu": "Menü",
+ "move-selection": "Kijelölés áthelyezése",
+ "moveCardPopup-title": "Kártya áthelyezése",
+ "moveCardToBottom-title": "Áthelyezés az aljára",
+ "moveCardToTop-title": "Áthelyezés a tetejére",
+ "moveSelectionPopup-title": "Kijelölés áthelyezése",
+ "multi-selection": "Többszörös kijelölés",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Többszörös kijelölés bekapcsolva",
+ "muted": "Némítva",
+ "muted-info": "Soha sem lesz értesítve a táblán lévő semmilyen változásról.",
+ "my-boards": "Saját tábláim",
+ "name": "Név",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Nincs találat",
+ "normal": "Normál",
+ "normal-desc": "Megtekintheti és szerkesztheti a kártyákat. Nem változtathatja meg a beállításokat.",
+ "not-accepted-yet": "A meghívás még nincs elfogadva",
+ "notify-participate": "Frissítések fogadása bármely kártyánál, amelynél létrehozóként vagy tagként vesz részt",
+ "notify-watch": "Frissítések fogadása bármely táblánál, listánál vagy kártyánál, amelyet megtekint",
+ "optional": "opcionális",
+ "or": "vagy",
+ "page-maybe-private": "Ez az oldal személyes lehet. Esetleg megtekintheti, ha bejelentkezik.",
+ "page-not-found": "Az oldal nem található.",
+ "password": "Jelszó",
+ "paste-or-dragdrop": "illessze be, vagy fogd és vidd módon húzza ide a képfájlt (csak képeket)",
+ "participating": "Részvétel",
+ "preview": "Előnézet",
+ "previewAttachedImagePopup-title": "Előnézet",
+ "previewClipboardImagePopup-title": "Előnézet",
+ "private": "Személyes",
+ "private-desc": "Ez a tábla személyes. Csak a táblához hozzáadott emberek tekinthetik meg és szerkeszthetik.",
+ "profile": "Profil",
+ "public": "Nyilvános",
+ "public-desc": "Ez a tábla nyilvános. A hivatkozás birtokában bárki számára látható, és megjelenik az olyan keresőmotorokban, mint például a Google. Csak a táblához hozzáadott emberek szerkeszthetik.",
+ "quick-access-description": "Csillagozzon meg egy táblát egy gyors hivatkozás hozzáadásához ebbe a sávba.",
+ "remove-cover": "Borító eltávolítása",
+ "remove-from-board": "Eltávolítás a tábláról",
+ "remove-label": "Címke eltávolítása",
+ "listDeletePopup-title": "Törli a listát?",
+ "remove-member": "Tag eltávolítása",
+ "remove-member-from-card": "Eltávolítás a kártyáról",
+ "remove-member-pop": "Eltávolítja __name__ (__username__) felhasználót a tábláról: __boardTitle__? A tag el lesz távolítva a táblán lévő összes kártyáról. Értesítést fog kapni erről.",
+ "removeMemberPopup-title": "Eltávolítja a tagot?",
+ "rename": "Átnevezés",
+ "rename-board": "Tábla átnevezése",
+ "restore": "Visszaállítás",
+ "save": "Mentés",
+ "search": "Keresés",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Szín kiválasztása",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Korlát beállítása a listán lévő feladatok legnagyobb számához",
+ "setWipLimitPopup-title": "WIP korlát beállítása",
+ "shortcut-assign-self": "Önmaga hozzárendelése a jelenlegi kártyához",
+ "shortcut-autocomplete-emoji": "Emodzsi automatikus kiegészítése",
+ "shortcut-autocomplete-members": "Tagok automatikus kiegészítése",
+ "shortcut-clear-filters": "Összes szűrő törlése",
+ "shortcut-close-dialog": "Párbeszédablak bezárása",
+ "shortcut-filter-my-cards": "Kártyáim szűrése",
+ "shortcut-show-shortcuts": "A hivatkozási lista előre hozása",
+ "shortcut-toggle-filterbar": "Szűrő oldalsáv ki- és bekapcsolása",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Tábla oldalsáv ki- és bekapcsolása",
+ "show-cards-minimum-count": "Kártyaszámok megjelenítése, ha a lista többet tartalmaz mint",
+ "sidebar-open": "Oldalsáv megnyitása",
+ "sidebar-close": "Oldalsáv bezárása",
+ "signupPopup-title": "Fiók létrehozása",
+ "star-board-title": "Kattintson a tábla csillagozásához. Meg fog jelenni a táblalistája tetején.",
+ "starred-boards": "Csillagozott táblák",
+ "starred-boards-description": "A csillagozott táblák megjelennek a táblalistája tetején.",
+ "subscribe": "Feliratkozás",
+ "team": "Csapat",
+ "this-board": "ez a tábla",
+ "this-card": "ez a kártya",
+ "spent-time-hours": "Eltöltött idő (óra)",
+ "overtime-hours": "Túlóra (óra)",
+ "overtime": "Túlóra",
+ "has-overtime-cards": "Van túlórás kártyája",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Idő",
+ "title": "Cím",
+ "tracking": "Követés",
+ "tracking-info": "Értesítve lesz az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként vesz részt.",
+ "type": "Típus",
+ "unassign-member": "Tag hozzárendelésének megszüntetése",
+ "unsaved-description": "Van egy mentetlen leírása.",
+ "unwatch": "Megfigyelés megszüntetése",
+ "upload": "Feltöltés",
+ "upload-avatar": "Egy avatár feltöltése",
+ "uploaded-avatar": "Egy avatár feltöltve",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Felhasználónév",
+ "view-it": "Megtekintés",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Megfigyelés",
+ "watching": "Megfigyelés",
+ "watching-info": "Értesítve lesz a táblán lévő összes változásról",
+ "welcome-board": "Üdvözlő tábla",
+ "welcome-swimlane": "1. mérföldkő",
+ "welcome-list1": "Alapok",
+ "welcome-list2": "Speciális",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Mit szeretne tenni?",
+ "wipLimitErrorPopup-title": "Érvénytelen WIP korlát",
+ "wipLimitErrorPopup-dialog-pt1": "A listán lévő feladatok száma magasabb a meghatározott WIP korlátnál.",
+ "wipLimitErrorPopup-dialog-pt2": "Helyezzen át néhány feladatot a listáról, vagy állítson be magasabb WIP korlátot.",
+ "admin-panel": "Adminisztrációs panel",
+ "settings": "Beállítások",
+ "people": "Emberek",
+ "registration": "Regisztráció",
+ "disable-self-registration": "Önregisztráció letiltása",
+ "invite": "Meghívás",
+ "invite-people": "Emberek meghívása",
+ "to-boards": "Táblákhoz",
+ "email-addresses": "E-mail címek",
+ "smtp-host-description": "Az SMTP kiszolgáló címe, amely az e-maileket kezeli.",
+ "smtp-port-description": "Az SMTP kiszolgáló által használt port a kimenő e-mailekhez.",
+ "smtp-tls-description": "TLS támogatás engedélyezése az SMTP kiszolgálónál",
+ "smtp-host": "SMTP kiszolgáló",
+ "smtp-port": "SMTP port",
+ "smtp-username": "Felhasználónév",
+ "smtp-password": "Jelszó",
+ "smtp-tls": "TLS támogatás",
+ "send-from": "Feladó",
+ "send-smtp-test": "Teszt e-mail küldése magamnak",
+ "invitation-code": "Meghívási kód",
+ "email-invite-register-subject": "__inviter__ egy meghívás küldött Önnek",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Sikeresen elküldött egy e-mailt",
+ "error-invitation-code-not-exist": "A meghívási kód nem létezik",
+ "error-notAuthorized": "Nincs jogosultsága az oldal megtekintéséhez.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Kimenő webhurkok",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Kimenő webhurkok",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "Új kimenő webhurok",
+ "no-name": "(Ismeretlen)",
+ "Node_version": "Node verzió",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "Operációs rendszer architektúrája",
+ "OS_Cpus": "Operációs rendszer CPU száma",
+ "OS_Freemem": "Operációs rendszer szabad memóriája",
+ "OS_Loadavg": "Operációs rendszer átlagos terhelése",
+ "OS_Platform": "Operációs rendszer platformja",
+ "OS_Release": "Operációs rendszer kiadása",
+ "OS_Totalmem": "Operációs rendszer összes memóriája",
+ "OS_Type": "Operációs rendszer típusa",
+ "OS_Uptime": "Operációs rendszer üzemideje",
+ "days": "days",
+ "hours": "óra",
+ "minutes": "perc",
+ "seconds": "másodperc",
+ "show-field-on-card": "A mező megjelenítése a kártyán",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Igen",
+ "no": "Nem",
+ "accounts": "Fiókok",
+ "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése",
+ "accounts-allowUserNameChange": "Felhasználónév megváltoztatásának engedélyezése",
+ "createdAt": "Létrehozva",
+ "verified": "Ellenőrizve",
+ "active": "Aktív",
+ "card-received": "Érkezett",
+ "card-received-on": "Ekkor érkezett",
+ "card-end": "Befejezés",
+ "card-end-on": "Befejeződik ekkor",
+ "editCardReceivedDatePopup-title": "Érkezési dátum megváltoztatása",
+ "editCardEndDatePopup-title": "Befejezési dátum megváltoztatása",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Alfeladat beállítások",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Tábla alfeladat beállítások",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Archívumba helyezve",
+ "r-unarchived": "Helyreállítva az archívumból",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Mozgatás az archívumba",
+ "r-unarchive": "Helyreállítás az archívumból",
+ "r-card": "card",
+ "r-add": "Hozzáadás",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Összes megjelölése",
+ "r-uncheck-all": "Összes jelölés törlése",
+ "r-items-check": "items of checklist",
+ "r-check": "Kijelölés",
+ "r-uncheck": "Jelölés törlése",
+ "r-item": "item",
+ "r-of-checklist": "ellenőrzőlistából",
+ "r-send-email": "E-mail küldése",
+ "r-to": "címzett",
+ "r-of": "of",
+ "r-subject": "tárgy",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "E-mail küldése",
+ "r-d-send-email-to": "címzett",
+ "r-d-send-email-subject": "tárgy",
+ "r-d-send-email-message": "üzenet",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Címke hozzáadása",
+ "r-d-remove-label": "Címke eltávolítása",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Elem kijelölése",
+ "r-d-uncheck-one": "Elem bejelölésének törlése",
+ "r-d-check-of-list": "ellenőrzőlistából",
+ "r-d-add-checklist": "Ellenőrzőlista hozzáadása",
+ "r-d-remove-checklist": "Ellenőrzőlista eltávolítása",
+ "r-by": "által",
+ "r-add-checklist": "Ellenőrzőlista hozzáadása",
+ "r-with-items": "elemekkel",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "Amikor egy kártya másik listába kerül",
+ "r-set": "Set",
+ "r-update": "Frissítés",
+ "r-datefield": "dátum mező",
+ "r-df-start-at": "kezdet",
+ "r-df-due-at": "határidő",
+ "r-df-end-at": "végzett",
+ "r-df-received-at": "megérkezett",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Hitelesítési mód",
+ "authentication-type": "Hitelesítés típusa",
+ "custom-product-name": "Saját terméknév",
+ "layout": "Elrendezés",
+ "hide-logo": "Logo elrejtése",
+ "add-custom-html-after-body-start": "Egyedi HTML hozzáadása után",
+ "add-custom-html-before-body-end": "1",
+ "error-undefined": "Valami hiba történt",
+ "error-ldap-login": "Hiba történt bejelentkezés közben",
+ "display-authentication-method": "Hitelelesítési mód mutatása",
+ "default-authentication-method": "Alapértelmezett hitelesítési mód",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Összes visszaállítása",
+ "delete-all": "Összes törlése",
+ "loading": "Betöltés folyamatban, kis türelmet…",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Felelős",
+ "cardAssigneesPopup-title": "Felelős",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "Új",
+ "editUserPopup-title": "Felhasználó szerkesztése",
+ "newUserPopup-title": "Új felhasználó",
+ "notifications": "Értesítések",
+ "view-all": "Összes megtekintése",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Összes megjelölése olvasottként",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Állítsa be a hét kezdetének napját",
+ "monday": "hétfő",
+ "tuesday": "kedd",
+ "wednesday": "szerda",
+ "thursday": "csütörtök",
+ "friday": "péntek",
+ "saturday": "szombat",
+ "sunday": "vasárnap",
+ "status": "Állapot",
+ "swimlane": "Swimlane",
+ "owner": "Tulajdonos",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archiválva",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Kijelölt elemek elrejtése",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json
index d8dce6aed..e9e0677cc 100644
--- a/i18n/hy.i18n.json
+++ b/i18n/hy.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Ընդունել",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Ընդունել",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json
index dd4b5f3c9..54e577dfd 100644
--- a/i18n/id.i18n.json
+++ b/i18n/id.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Terima",
- "act-activity-notify": "Pemeberitahuan Aktifitas",
- "act-addAttachment": "ditambahkan lampiran __attachment__ di kartu __card__ pada daftar __list__ pada swimline __swimline__ pada papan __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "ditambahkan daftar __list__ pada papan __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "__kartu__[__Panel__]",
- "actions": "Daftar Tindakan",
- "activities": "Daftar Kegiatan",
- "activity": "Kegiatan",
- "activity-added": "ditambahkan %s ke %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "dilampirkan %s ke %s",
- "activity-created": "dibuat %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "tidak termasuk %s dari %s",
- "activity-imported": "diimpor %s kedalam %s dari %s",
- "activity-imported-board": "diimpor %s dari %s",
- "activity-joined": "bergabung %s",
- "activity-moved": "dipindahkan %s dari %s ke %s",
- "activity-on": "pada %s",
- "activity-removed": "dihapus %s dari %s",
- "activity-sent": "terkirim %s ke %s",
- "activity-unjoined": "tidak bergabung %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "daftar periksa ditambahkan ke %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Tambah",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Tambahkan hal ke daftar periksa",
- "add-cover": "Tambahkan Sampul",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Tambahkan Anggota",
- "added": "Ditambahkan",
- "addMemberPopup-title": "Daftar Anggota",
- "admin": "Admin",
- "admin-desc": "Bisa tampilkan dan sunting kartu, menghapus partisipan, dan merubah setting panel",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Semua Panel",
- "and-n-other-card": "Dan__menghitung__kartu lain",
- "and-n-other-card_plural": "Dan__menghitung__kartu lain",
- "apply": "Terapkan",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Pindahlan ke Arsip",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arsip",
- "archived-boards": "Boards in Archive",
- "restore-board": "Pulihkan Papan",
- "no-archived-boards": "Tidak ada Papan pada Arsip",
- "archives": "Arsip",
- "template": "Klise",
- "templates": "Klise",
- "assign-member": "Tugaskan anggota",
- "attached": "terlampir",
- "attachment": "Lampiran",
- "attachment-delete-pop": "Menghapus lampiran bersifat permanen. Tidak bisa dipulihkan.",
- "attachmentDeletePopup-title": "Hapus Lampiran?",
- "attachments": "Daftar Lampiran",
- "auto-watch": "Otomatis diawasi saat membuat Panel",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Kembali",
- "board-change-color": "Ubah warna",
- "board-nb-stars": "%s bintang",
- "board-not-found": "Panel tidak ditemukan",
- "board-private-info": "Panel ini akan jadi Pribadi",
- "board-public-info": "Panel ini akan jadi Publik= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nama Lengkap",
- "header-logo-title": "Kembali ke laman panel anda",
- "hide-system-messages": "Sembunyikan pesan-pesan sistem",
- "headerBarCreateBoardPopup-title": "Buat Panel",
- "home": "Beranda",
- "import": "Impor",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Impor panel dari Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "Di panel Trello anda, ke 'Menu', terus 'More', 'Print and Export','Export JSON', dan salin hasilnya",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Tempelkan data JSON yang sah disini",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Petakan partisipan",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review pemetaan partisipan",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Versi",
- "initials": "Inisial",
- "invalid-date": "Tanggal tidak sah",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "bergabung",
- "just-invited": "Anda baru diundang di panel ini",
- "keyboard-shortcuts": "Pintasan kibor",
- "label-create": "Buat Label",
- "label-default": "label %s (default)",
- "label-delete-pop": "Ini tidak bisa dikembalikan, akan menghapus label ini dari semua kartu dan menghapus semua riwayatnya",
- "labels": "Daftar Label",
- "language": "Bahasa",
- "last-admin-desc": "Anda tidak dapat mengubah aturan karena harus ada minimal seorang Admin.",
- "leave-board": "Tingalkan Panel",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link ke kartu ini",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Pindah semua kartu ke daftar ini",
- "list-select-cards": "Pilih semua kartu di daftar ini",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Daftar Tindakan",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Impor dari Kartu Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Lainnya",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Daftar",
- "swimlanes": "Swimlanes",
- "log-out": "Keluar",
- "log-in": "Masuk",
- "loginPopup-title": "Masuk",
- "memberMenuPopup-title": "Setelan Anggota",
- "members": "Daftar Anggota",
- "menu": "Menu",
- "move-selection": "Pindahkan yang dipilih",
- "moveCardPopup-title": "Pindahkan kartu",
- "moveCardToBottom-title": "Pindahkan ke bawah",
- "moveCardToTop-title": "Pindahkan ke atas",
- "moveSelectionPopup-title": "Pindahkan yang dipilih",
- "multi-selection": "Multi Pilihan",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi Pilihan aktif",
- "muted": "Pemberitahuan tidak aktif",
- "muted-info": "Anda tidak akan pernah dinotifikasi semua perubahan di panel ini",
- "my-boards": "Panel saya",
- "name": "Nama",
- "no-archived-cards": "Tidak ada kartu di arsip.",
- "no-archived-lists": "Tidak ada daftar di arsip.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Tidak ada hasil",
- "normal": "Normal",
- "normal-desc": "Bisa tampilkan dan edit kartu. Tidak bisa ubah setting",
- "not-accepted-yet": "Undangan belum diterima",
- "notify-participate": "Terima update ke semua kartu dimana anda menjadi creator atau partisipan",
- "notify-watch": "Terima update dari semua panel, daftar atau kartu yang anda amati",
- "optional": "opsi",
- "or": "atau",
- "page-maybe-private": "Halaman ini hanya untuk kalangan terbatas. Anda dapat melihatnya dengan masuk ke dalam sistem.",
- "page-not-found": "Halaman tidak ditemukan.",
- "password": "Kata Sandi",
- "paste-or-dragdrop": "untuk menempelkan, atau drag& drop gambar pada ini (hanya gambar)",
- "participating": "Berpartisipasi",
- "preview": "Pratinjau",
- "previewAttachedImagePopup-title": "Pratinjau",
- "previewClipboardImagePopup-title": "Pratinjau",
- "private": "Terbatas",
- "private-desc": "Panel ini Pribadi. Hanya orang yang ditambahkan ke panel ini yang bisa melihat dan menyuntingnya",
- "profile": "Profil",
- "public": "Umum",
- "public-desc": "Panel ini publik. Akan terlihat oleh siapapun dengan link terkait dan muncul di mesin pencari seperti Google. Hanya orang yang ditambahkan di panel yang bisa sunting",
- "quick-access-description": "Beri bintang panel untuk menambah shortcut di papan ini",
- "remove-cover": "Hapus Sampul",
- "remove-from-board": "Hapus dari panel",
- "remove-label": "Hapus Label",
- "listDeletePopup-title": "Hapus Daftar ?",
- "remove-member": "Hapus Anggota",
- "remove-member-from-card": "Hapus dari Kartu",
- "remove-member-pop": "Hapus__nama__(__username__) dari __boardTitle__? Partisipan akan dihapus dari semua kartu di panel ini. Mereka akan diberi tahu",
- "removeMemberPopup-title": "Hapus Anggota?",
- "rename": "Ganti Nama",
- "rename-board": "Ubah nama Panel",
- "restore": "Pulihkan",
- "save": "Simpan",
- "search": "Cari",
- "rules": "Peraturan",
- "search-cards": "Cari dari judul kartu/daftar, deskripsi dan bidang khusus di papan ini",
- "search-example": "Write text you search and press Enter",
- "select-color": "Pilih Warna",
- "select-board": "Select Board",
- "set-wip-limit-value": "Tetapkan batas untuk jumlah tugas maksimum dalam daftar ini",
- "setWipLimitPopup-title": "Tetapkan Batas WIP ",
- "shortcut-assign-self": "Masukkan diri anda sendiri ke kartu ini",
- "shortcut-autocomplete-emoji": "Pelengkap Otomatis emoji",
- "shortcut-autocomplete-members": "Autocomplete partisipan",
- "shortcut-clear-filters": "Bersihkan semua saringan",
- "shortcut-close-dialog": "Tutup Dialog",
- "shortcut-filter-my-cards": "Filter kartu saya",
- "shortcut-show-shortcuts": "Angkat naik shortcut daftar ini",
- "shortcut-toggle-filterbar": "Toggle Filter Bilah Samping",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Papan Bilah Samping",
- "show-cards-minimum-count": "Tampilkan jumlah kartu jika daftar punya lebih dari ",
- "sidebar-open": "Buka Sidebar",
- "sidebar-close": "Tutup Sidebar",
- "signupPopup-title": "Buat Akun",
- "star-board-title": "Klik untuk beri bintang panel ini. Akan muncul paling atas dari daftar panel",
- "starred-boards": "Panel dengan bintang",
- "starred-boards-description": "Panel berbintang muncul paling atas dari daftar panel anda",
- "subscribe": "Langganan",
- "team": "Tim",
- "this-board": "Panel ini",
- "this-card": "Kartu ini",
- "spent-time-hours": "Waktu yang dihabiskan (jam)",
- "overtime-hours": "Lembur (jam)",
- "overtime": "Lembur",
- "has-overtime-cards": "Punya kartu lembur",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Waktu",
- "title": "Judul",
- "tracking": "Pelacakan",
- "tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan",
- "type": "tipe",
- "unassign-member": "Tidak sertakan partisipan",
- "unsaved-description": "Anda memiliki deskripsi yang belum disimpan.",
- "unwatch": "Tidak mengamati",
- "upload": "Unggah",
- "upload-avatar": "Unggah avatar",
- "uploaded-avatar": "Avatar diunggah",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nama Pengguna",
- "view-it": "Lihat",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Amati",
- "watching": "Mengamati",
- "watching-info": "Anda akan diberitahu semua perubahan di panel ini",
- "welcome-board": "Panel Selamat Datang",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Tingkat dasar",
- "welcome-list2": "Tingkat lanjut",
- "card-templates-swimlane": "Klise Kartu",
- "list-templates-swimlane": "Klise Daftar",
- "board-templates-swimlane": "Klise Papan",
- "what-to-do": "Apa yang mau Anda lakukan?",
- "wipLimitErrorPopup-title": "Batas WIP tidak valid",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Panel Admin",
- "settings": "Setelan",
- "people": "Orang-orang",
- "registration": "Registrasi",
- "disable-self-registration": "Nonaktifkan Swa Registrasi",
- "invite": "Undang",
- "invite-people": "Undang Orang-orang",
- "to-boards": "ke panel",
- "email-addresses": "Alamat surel",
- "smtp-host-description": "Alamat server SMTP yang menangani surel Anda.",
- "smtp-port-description": "Port server SMTP yang Anda gunakan untuk mengirim surel.",
- "smtp-tls-description": "Aktifkan dukungan TLS untuk server SMTP",
- "smtp-host": "Host SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nama Pengguna",
- "smtp-password": "Kata Sandi",
- "smtp-tls": "Dukungan TLS",
- "send-from": "Dari",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Kode Undangan",
- "email-invite-register-subject": "__inviter__ mengirim undangan ke Anda",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Tes Surel",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Kode undangan tidak ada",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Nama Webhook",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Versi Node",
- "Meteor_version": "Versi Meteor",
- "MongoDB_version": "Versi MongoDB",
- "MongoDB_storage_engine": "Mesin penyimpanan MongoDb",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "hari",
- "hours": "m",
- "minutes": "menit",
- "seconds": "detik",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ya",
- "no": "Tidak",
- "accounts": "Akun",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Dibuat pada",
- "verified": "Terverifikasi",
- "active": "Aktif",
- "card-received": "Diterima",
- "card-received-on": "Diterima pada",
- "card-end": "Berakhir",
- "card-end-on": "Berakhir pada",
- "editCardReceivedDatePopup-title": "Ubah tanggal diterima",
- "editCardEndDatePopup-title": "Ubah tanggal berakhir",
- "setCardColorPopup-title": "Tetapkan warna",
- "setCardActionsColorPopup-title": "Pilih warna",
- "setSwimlaneColorPopup-title": "Pilih warna",
- "setListColorPopup-title": "Pilih warna",
- "assigned-by": "Ditandatangani Oleh",
- "requested-by": "Diminta Oleh",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Hapus Papan?",
- "delete-board": "Hapus Papan",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Standar",
- "queue": "Antrian",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Pengaturan Kartu",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Pengaturan Kartu",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Aturan",
- "r-add-trigger": "Tambahkan pelatuk",
- "r-add-action": "Tambahkan aksi",
- "r-board-rules": "Aturan papan",
- "r-add-rule": "Tambahkan aturan",
- "r-view-rule": "Lihat aturan",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Ketika kartu",
- "r-is": "adalah",
- "r-is-moved": "dipindahkan",
- "r-added-to": "Ditambahkan ke",
- "r-removed-from": "Dihapus dari",
- "r-the-board": "papan",
- "r-list": "daftar",
- "set-filter": "Atur Saringan",
- "r-moved-to": "Dipindahkan ke",
- "r-moved-from": "Dipindahkan dari",
- "r-archived": "Dipindahkan ke Arsip",
- "r-unarchived": "Dipulihkan dari Arsip",
- "r-a-card": "Kartu",
- "r-when-a-label-is": "Ketika label adalah",
- "r-when-the-label": "Ketika label",
- "r-list-name": "nama daftar",
- "r-when-a-member": "Ketika anggota adalah",
- "r-when-the-member": "Ketika anggota",
- "r-name": "nama",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "daftar ini",
- "r-archive": "Pindahlan ke Arsip",
- "r-unarchive": "Pulihkan dari Arsip",
- "r-card": "Kartu",
- "r-add": "Tambah",
- "r-remove": "hapus",
- "r-label": "label",
- "r-member": "anggota",
- "r-remove-all": "Hapus semua anggota dari kartu",
- "r-set-color": "Tetapkan warna ke",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "Item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "kepada",
- "r-of": "dari",
- "r-subject": "Subyek",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Kirim surel",
- "r-d-send-email-to": "kepada",
- "r-d-send-email-subject": "Subyek",
- "r-d-send-email-message": "pesan",
- "r-d-archive": "Pindahlan kartu ke Arsip",
- "r-d-unarchive": "Pulihkan kartu dari Arsip",
- "r-d-add-label": "Tambahkan label",
- "r-d-remove-label": "Hapus label",
- "r-create-card": "Buat kartu baru",
- "r-in-list": "pada daftar",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Tambahkan anggota",
- "r-d-remove-member": "Hapus anggota",
- "r-d-remove-all-member": "Hapus semua anggota",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Tambahkan daftar periksa",
- "r-d-remove-checklist": "Hapus daftar periksa",
- "r-by": "oleh",
- "r-add-checklist": "Tambahkan daftar periksa",
- "r-with-items": "dengan item",
- "r-items-list": "item 1, item2, item 3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Tetapkan",
- "r-update": "Ubah",
- "r-datefield": "bidang tanggal",
- "r-df-start-at": "mulai",
- "r-df-due-at": "sampai",
- "r-df-end-at": "berakhir",
- "r-df-received-at": "diterima",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Metode Autentikasi",
- "authentication-type": "Tipe Autentikasi",
- "custom-product-name": "Custom Product Name",
- "layout": "Tata letak",
- "hide-logo": "Sembunyikan Logo",
- "add-custom-html-after-body-start": "Tambahkan HTML khusus setelah mulai",
- "add-custom-html-before-body-end": "Tambahkan HTML khusus sebelum berakhir",
- "error-undefined": "Ada yang salah",
- "error-ldap-login": "Terjadi kesalahan saat mencoba masuk",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplikat Papan",
- "people-number": "Jumlah orang:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Pulihkan semua",
- "delete-all": "Hapus semua",
- "loading": "Sedang memuat, harap tunggu.",
- "previous_as": "terakhir kali adalah",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Sembunyikan teks label kartu mini",
- "show-desktop-drag-handles": "Tampilkan gagang seret desktop",
- "assignee": "Penerima tugas",
- "cardAssigneesPopup-title": "Penerima tugas",
- "addmore-detail": "Tambahkan deskripsi yang lebih rinci",
- "show-on-card": "Tampilkan pada Kartu",
- "new": "Baru",
- "editUserPopup-title": "Ubah Pengguna",
- "newUserPopup-title": "Pengguna Baru",
- "notifications": "Pemberitahuan",
- "view-all": "Lihat Semua",
- "filter-by-unread": "Saring yang Belum Dibaca",
- "mark-all-as-read": "Tandai semua telah dibaca",
- "remove-all-read": "Hapus semua yang telah dibaca",
- "allow-rename": "Ijinkan Ganti Nama",
- "allowRenamePopup-title": "Ijinkan Ganti Nama",
- "start-day-of-week": "Tetapkan hari dimulai dalam minggu",
- "monday": "Senin",
- "tuesday": "Selasa",
- "wednesday": "Rabu",
- "thursday": "Kamis",
- "friday": "Jum'at",
- "saturday": "Sabtu",
- "sunday": "Minggu",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Pemilik",
- "last-modified-at": "Terakhir diubah pada",
- "last-activity": "Aktifitas terakhir",
- "voting": "Pemungutan Suara",
- "archived": "Diarsipkan",
- "delete-linked-card-before-this-card": "Kamu tidak dapat menghapus kartu ini sebelum menghapus kartu tertaut yang telah",
- "delete-linked-cards-before-this-list": "Kamu tidak dapat menghapus daftar ini sebelum menghapus kartu tertaut yang mengarah ke kartu dalam daftar ini",
- "hide-checked-items": "Sembunyikan item yang dicentang",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Terima",
+ "act-activity-notify": "Pemeberitahuan Aktifitas",
+ "act-addAttachment": "ditambahkan lampiran __attachment__ di kartu __card__ pada daftar __list__ pada swimline __swimline__ pada papan __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "ditambahkan daftar __list__ pada papan __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "__kartu__[__Panel__]",
+ "actions": "Daftar Tindakan",
+ "activities": "Daftar Kegiatan",
+ "activity": "Kegiatan",
+ "activity-added": "ditambahkan %s ke %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "dilampirkan %s ke %s",
+ "activity-created": "dibuat %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "tidak termasuk %s dari %s",
+ "activity-imported": "diimpor %s kedalam %s dari %s",
+ "activity-imported-board": "diimpor %s dari %s",
+ "activity-joined": "bergabung %s",
+ "activity-moved": "dipindahkan %s dari %s ke %s",
+ "activity-on": "pada %s",
+ "activity-removed": "dihapus %s dari %s",
+ "activity-sent": "terkirim %s ke %s",
+ "activity-unjoined": "tidak bergabung %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "daftar periksa ditambahkan ke %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Tambah",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Tambahkan hal ke daftar periksa",
+ "add-cover": "Tambahkan Sampul",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Tambahkan Anggota",
+ "added": "Ditambahkan",
+ "addMemberPopup-title": "Daftar Anggota",
+ "admin": "Admin",
+ "admin-desc": "Bisa tampilkan dan sunting kartu, menghapus partisipan, dan merubah setting panel",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Semua Panel",
+ "and-n-other-card": "Dan__menghitung__kartu lain",
+ "and-n-other-card_plural": "Dan__menghitung__kartu lain",
+ "apply": "Terapkan",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Pindahlan ke Arsip",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arsip",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Pulihkan Papan",
+ "no-archived-boards": "Tidak ada Papan pada Arsip",
+ "archives": "Arsip",
+ "template": "Klise",
+ "templates": "Klise",
+ "assign-member": "Tugaskan anggota",
+ "attached": "terlampir",
+ "attachment": "Lampiran",
+ "attachment-delete-pop": "Menghapus lampiran bersifat permanen. Tidak bisa dipulihkan.",
+ "attachmentDeletePopup-title": "Hapus Lampiran?",
+ "attachments": "Daftar Lampiran",
+ "auto-watch": "Otomatis diawasi saat membuat Panel",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Kembali",
+ "board-change-color": "Ubah warna",
+ "board-nb-stars": "%s bintang",
+ "board-not-found": "Panel tidak ditemukan",
+ "board-private-info": "Panel ini akan jadi Pribadi",
+ "board-public-info": "Panel ini akan jadi Publik= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nama Lengkap",
+ "header-logo-title": "Kembali ke laman panel anda",
+ "hide-system-messages": "Sembunyikan pesan-pesan sistem",
+ "headerBarCreateBoardPopup-title": "Buat Panel",
+ "home": "Beranda",
+ "import": "Impor",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Impor panel dari Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "Di panel Trello anda, ke 'Menu', terus 'More', 'Print and Export','Export JSON', dan salin hasilnya",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Tempelkan data JSON yang sah disini",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Petakan partisipan",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review pemetaan partisipan",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Versi",
+ "initials": "Inisial",
+ "invalid-date": "Tanggal tidak sah",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "bergabung",
+ "just-invited": "Anda baru diundang di panel ini",
+ "keyboard-shortcuts": "Pintasan kibor",
+ "label-create": "Buat Label",
+ "label-default": "label %s (default)",
+ "label-delete-pop": "Ini tidak bisa dikembalikan, akan menghapus label ini dari semua kartu dan menghapus semua riwayatnya",
+ "labels": "Daftar Label",
+ "language": "Bahasa",
+ "last-admin-desc": "Anda tidak dapat mengubah aturan karena harus ada minimal seorang Admin.",
+ "leave-board": "Tingalkan Panel",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link ke kartu ini",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Pindah semua kartu ke daftar ini",
+ "list-select-cards": "Pilih semua kartu di daftar ini",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Daftar Tindakan",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Impor dari Kartu Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Lainnya",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Daftar",
+ "swimlanes": "Swimlanes",
+ "log-out": "Keluar",
+ "log-in": "Masuk",
+ "loginPopup-title": "Masuk",
+ "memberMenuPopup-title": "Setelan Anggota",
+ "members": "Daftar Anggota",
+ "menu": "Menu",
+ "move-selection": "Pindahkan yang dipilih",
+ "moveCardPopup-title": "Pindahkan kartu",
+ "moveCardToBottom-title": "Pindahkan ke bawah",
+ "moveCardToTop-title": "Pindahkan ke atas",
+ "moveSelectionPopup-title": "Pindahkan yang dipilih",
+ "multi-selection": "Multi Pilihan",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi Pilihan aktif",
+ "muted": "Pemberitahuan tidak aktif",
+ "muted-info": "Anda tidak akan pernah dinotifikasi semua perubahan di panel ini",
+ "my-boards": "Panel saya",
+ "name": "Nama",
+ "no-archived-cards": "Tidak ada kartu di arsip.",
+ "no-archived-lists": "Tidak ada daftar di arsip.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Tidak ada hasil",
+ "normal": "Normal",
+ "normal-desc": "Bisa tampilkan dan edit kartu. Tidak bisa ubah setting",
+ "not-accepted-yet": "Undangan belum diterima",
+ "notify-participate": "Terima update ke semua kartu dimana anda menjadi creator atau partisipan",
+ "notify-watch": "Terima update dari semua panel, daftar atau kartu yang anda amati",
+ "optional": "opsi",
+ "or": "atau",
+ "page-maybe-private": "Halaman ini hanya untuk kalangan terbatas. Anda dapat melihatnya dengan masuk ke dalam sistem.",
+ "page-not-found": "Halaman tidak ditemukan.",
+ "password": "Kata Sandi",
+ "paste-or-dragdrop": "untuk menempelkan, atau drag& drop gambar pada ini (hanya gambar)",
+ "participating": "Berpartisipasi",
+ "preview": "Pratinjau",
+ "previewAttachedImagePopup-title": "Pratinjau",
+ "previewClipboardImagePopup-title": "Pratinjau",
+ "private": "Terbatas",
+ "private-desc": "Panel ini Pribadi. Hanya orang yang ditambahkan ke panel ini yang bisa melihat dan menyuntingnya",
+ "profile": "Profil",
+ "public": "Umum",
+ "public-desc": "Panel ini publik. Akan terlihat oleh siapapun dengan link terkait dan muncul di mesin pencari seperti Google. Hanya orang yang ditambahkan di panel yang bisa sunting",
+ "quick-access-description": "Beri bintang panel untuk menambah shortcut di papan ini",
+ "remove-cover": "Hapus Sampul",
+ "remove-from-board": "Hapus dari panel",
+ "remove-label": "Hapus Label",
+ "listDeletePopup-title": "Hapus Daftar ?",
+ "remove-member": "Hapus Anggota",
+ "remove-member-from-card": "Hapus dari Kartu",
+ "remove-member-pop": "Hapus__nama__(__username__) dari __boardTitle__? Partisipan akan dihapus dari semua kartu di panel ini. Mereka akan diberi tahu",
+ "removeMemberPopup-title": "Hapus Anggota?",
+ "rename": "Ganti Nama",
+ "rename-board": "Ubah nama Panel",
+ "restore": "Pulihkan",
+ "save": "Simpan",
+ "search": "Cari",
+ "rules": "Peraturan",
+ "search-cards": "Cari dari judul kartu/daftar, deskripsi dan bidang khusus di papan ini",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Pilih Warna",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Tetapkan batas untuk jumlah tugas maksimum dalam daftar ini",
+ "setWipLimitPopup-title": "Tetapkan Batas WIP ",
+ "shortcut-assign-self": "Masukkan diri anda sendiri ke kartu ini",
+ "shortcut-autocomplete-emoji": "Pelengkap Otomatis emoji",
+ "shortcut-autocomplete-members": "Autocomplete partisipan",
+ "shortcut-clear-filters": "Bersihkan semua saringan",
+ "shortcut-close-dialog": "Tutup Dialog",
+ "shortcut-filter-my-cards": "Filter kartu saya",
+ "shortcut-show-shortcuts": "Angkat naik shortcut daftar ini",
+ "shortcut-toggle-filterbar": "Toggle Filter Bilah Samping",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Papan Bilah Samping",
+ "show-cards-minimum-count": "Tampilkan jumlah kartu jika daftar punya lebih dari ",
+ "sidebar-open": "Buka Sidebar",
+ "sidebar-close": "Tutup Sidebar",
+ "signupPopup-title": "Buat Akun",
+ "star-board-title": "Klik untuk beri bintang panel ini. Akan muncul paling atas dari daftar panel",
+ "starred-boards": "Panel dengan bintang",
+ "starred-boards-description": "Panel berbintang muncul paling atas dari daftar panel anda",
+ "subscribe": "Langganan",
+ "team": "Tim",
+ "this-board": "Panel ini",
+ "this-card": "Kartu ini",
+ "spent-time-hours": "Waktu yang dihabiskan (jam)",
+ "overtime-hours": "Lembur (jam)",
+ "overtime": "Lembur",
+ "has-overtime-cards": "Punya kartu lembur",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Waktu",
+ "title": "Judul",
+ "tracking": "Pelacakan",
+ "tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan",
+ "type": "tipe",
+ "unassign-member": "Tidak sertakan partisipan",
+ "unsaved-description": "Anda memiliki deskripsi yang belum disimpan.",
+ "unwatch": "Tidak mengamati",
+ "upload": "Unggah",
+ "upload-avatar": "Unggah avatar",
+ "uploaded-avatar": "Avatar diunggah",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nama Pengguna",
+ "view-it": "Lihat",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Amati",
+ "watching": "Mengamati",
+ "watching-info": "Anda akan diberitahu semua perubahan di panel ini",
+ "welcome-board": "Panel Selamat Datang",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Tingkat dasar",
+ "welcome-list2": "Tingkat lanjut",
+ "card-templates-swimlane": "Klise Kartu",
+ "list-templates-swimlane": "Klise Daftar",
+ "board-templates-swimlane": "Klise Papan",
+ "what-to-do": "Apa yang mau Anda lakukan?",
+ "wipLimitErrorPopup-title": "Batas WIP tidak valid",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Panel Admin",
+ "settings": "Setelan",
+ "people": "Orang-orang",
+ "registration": "Registrasi",
+ "disable-self-registration": "Nonaktifkan Swa Registrasi",
+ "invite": "Undang",
+ "invite-people": "Undang Orang-orang",
+ "to-boards": "ke panel",
+ "email-addresses": "Alamat surel",
+ "smtp-host-description": "Alamat server SMTP yang menangani surel Anda.",
+ "smtp-port-description": "Port server SMTP yang Anda gunakan untuk mengirim surel.",
+ "smtp-tls-description": "Aktifkan dukungan TLS untuk server SMTP",
+ "smtp-host": "Host SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nama Pengguna",
+ "smtp-password": "Kata Sandi",
+ "smtp-tls": "Dukungan TLS",
+ "send-from": "Dari",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Kode Undangan",
+ "email-invite-register-subject": "__inviter__ mengirim undangan ke Anda",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Tes Surel",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Kode undangan tidak ada",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Nama Webhook",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Versi Node",
+ "Meteor_version": "Versi Meteor",
+ "MongoDB_version": "Versi MongoDB",
+ "MongoDB_storage_engine": "Mesin penyimpanan MongoDb",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "hari",
+ "hours": "m",
+ "minutes": "menit",
+ "seconds": "detik",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ya",
+ "no": "Tidak",
+ "accounts": "Akun",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Dibuat pada",
+ "verified": "Terverifikasi",
+ "active": "Aktif",
+ "card-received": "Diterima",
+ "card-received-on": "Diterima pada",
+ "card-end": "Berakhir",
+ "card-end-on": "Berakhir pada",
+ "editCardReceivedDatePopup-title": "Ubah tanggal diterima",
+ "editCardEndDatePopup-title": "Ubah tanggal berakhir",
+ "setCardColorPopup-title": "Tetapkan warna",
+ "setCardActionsColorPopup-title": "Pilih warna",
+ "setSwimlaneColorPopup-title": "Pilih warna",
+ "setListColorPopup-title": "Pilih warna",
+ "assigned-by": "Ditandatangani Oleh",
+ "requested-by": "Diminta Oleh",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Hapus Papan?",
+ "delete-board": "Hapus Papan",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Standar",
+ "queue": "Antrian",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Pengaturan Kartu",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Pengaturan Kartu",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Aturan",
+ "r-add-trigger": "Tambahkan pelatuk",
+ "r-add-action": "Tambahkan aksi",
+ "r-board-rules": "Aturan papan",
+ "r-add-rule": "Tambahkan aturan",
+ "r-view-rule": "Lihat aturan",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Ketika kartu",
+ "r-is": "adalah",
+ "r-is-moved": "dipindahkan",
+ "r-added-to": "Ditambahkan ke",
+ "r-removed-from": "Dihapus dari",
+ "r-the-board": "papan",
+ "r-list": "daftar",
+ "set-filter": "Atur Saringan",
+ "r-moved-to": "Dipindahkan ke",
+ "r-moved-from": "Dipindahkan dari",
+ "r-archived": "Dipindahkan ke Arsip",
+ "r-unarchived": "Dipulihkan dari Arsip",
+ "r-a-card": "Kartu",
+ "r-when-a-label-is": "Ketika label adalah",
+ "r-when-the-label": "Ketika label",
+ "r-list-name": "nama daftar",
+ "r-when-a-member": "Ketika anggota adalah",
+ "r-when-the-member": "Ketika anggota",
+ "r-name": "nama",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "daftar ini",
+ "r-archive": "Pindahlan ke Arsip",
+ "r-unarchive": "Pulihkan dari Arsip",
+ "r-card": "Kartu",
+ "r-add": "Tambah",
+ "r-remove": "hapus",
+ "r-label": "label",
+ "r-member": "anggota",
+ "r-remove-all": "Hapus semua anggota dari kartu",
+ "r-set-color": "Tetapkan warna ke",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "Item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "kepada",
+ "r-of": "dari",
+ "r-subject": "Subyek",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Kirim surel",
+ "r-d-send-email-to": "kepada",
+ "r-d-send-email-subject": "Subyek",
+ "r-d-send-email-message": "pesan",
+ "r-d-archive": "Pindahlan kartu ke Arsip",
+ "r-d-unarchive": "Pulihkan kartu dari Arsip",
+ "r-d-add-label": "Tambahkan label",
+ "r-d-remove-label": "Hapus label",
+ "r-create-card": "Buat kartu baru",
+ "r-in-list": "pada daftar",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Tambahkan anggota",
+ "r-d-remove-member": "Hapus anggota",
+ "r-d-remove-all-member": "Hapus semua anggota",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Tambahkan daftar periksa",
+ "r-d-remove-checklist": "Hapus daftar periksa",
+ "r-by": "oleh",
+ "r-add-checklist": "Tambahkan daftar periksa",
+ "r-with-items": "dengan item",
+ "r-items-list": "item 1, item2, item 3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Tetapkan",
+ "r-update": "Ubah",
+ "r-datefield": "bidang tanggal",
+ "r-df-start-at": "mulai",
+ "r-df-due-at": "sampai",
+ "r-df-end-at": "berakhir",
+ "r-df-received-at": "diterima",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Metode Autentikasi",
+ "authentication-type": "Tipe Autentikasi",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Tata letak",
+ "hide-logo": "Sembunyikan Logo",
+ "add-custom-html-after-body-start": "Tambahkan HTML khusus setelah mulai",
+ "add-custom-html-before-body-end": "Tambahkan HTML khusus sebelum berakhir",
+ "error-undefined": "Ada yang salah",
+ "error-ldap-login": "Terjadi kesalahan saat mencoba masuk",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplikat Papan",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Jumlah orang:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Pulihkan semua",
+ "delete-all": "Hapus semua",
+ "loading": "Sedang memuat, harap tunggu.",
+ "previous_as": "terakhir kali adalah",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Sembunyikan teks label kartu mini",
+ "show-desktop-drag-handles": "Tampilkan gagang seret desktop",
+ "assignee": "Penerima tugas",
+ "cardAssigneesPopup-title": "Penerima tugas",
+ "addmore-detail": "Tambahkan deskripsi yang lebih rinci",
+ "show-on-card": "Tampilkan pada Kartu",
+ "new": "Baru",
+ "editUserPopup-title": "Ubah Pengguna",
+ "newUserPopup-title": "Pengguna Baru",
+ "notifications": "Pemberitahuan",
+ "view-all": "Lihat Semua",
+ "filter-by-unread": "Saring yang Belum Dibaca",
+ "mark-all-as-read": "Tandai semua telah dibaca",
+ "remove-all-read": "Hapus semua yang telah dibaca",
+ "allow-rename": "Ijinkan Ganti Nama",
+ "allowRenamePopup-title": "Ijinkan Ganti Nama",
+ "start-day-of-week": "Tetapkan hari dimulai dalam minggu",
+ "monday": "Senin",
+ "tuesday": "Selasa",
+ "wednesday": "Rabu",
+ "thursday": "Kamis",
+ "friday": "Jum'at",
+ "saturday": "Sabtu",
+ "sunday": "Minggu",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Pemilik",
+ "last-modified-at": "Terakhir diubah pada",
+ "last-activity": "Aktifitas terakhir",
+ "voting": "Pemungutan Suara",
+ "archived": "Diarsipkan",
+ "delete-linked-card-before-this-card": "Kamu tidak dapat menghapus kartu ini sebelum menghapus kartu tertaut yang telah",
+ "delete-linked-cards-before-this-list": "Kamu tidak dapat menghapus daftar ini sebelum menghapus kartu tertaut yang mengarah ke kartu dalam daftar ini",
+ "hide-checked-items": "Sembunyikan item yang dicentang",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json
index 818dbcca2..35bab21f0 100644
--- a/i18n/ig.i18n.json
+++ b/i18n/ig.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Kwere",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "na %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Tinye",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Tinye ndị otu ọhụrụ",
- "added": "Etinyere ",
- "addMemberPopup-title": "Ndị otu",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Bido",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Aha",
- "cardMembersPopup-title": "Ndị otu",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Gbanwe",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Họrọ asụsụ ọzọ",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Aha",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Ndị otu",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Banye aha ọzọ",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "Hụ ya",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Hụ",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "Ndị mmadụ",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "elekere",
- "minutes": "nkeji",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ee",
- "no": "Mba",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Ekere na",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Tinye",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Kwere",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "na %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Tinye",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Tinye ndị otu ọhụrụ",
+ "added": "Etinyere ",
+ "addMemberPopup-title": "Ndị otu",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Bido",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Aha",
+ "cardMembersPopup-title": "Ndị otu",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Gbanwe",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Họrọ asụsụ ọzọ",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Aha",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Ndị otu",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Banye aha ọzọ",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "Hụ ya",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Hụ",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "Ndị mmadụ",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "elekere",
+ "minutes": "nkeji",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ee",
+ "no": "Mba",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Ekere na",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Tinye",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json
index cf146208a..eff9a41d5 100644
--- a/i18n/it.i18n.json
+++ b/i18n/it.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Accept",
- "act-activity-notify": "Notifica attività",
- "act-addAttachment": "aggiunto allegato __attachment__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-deleteAttachment": "eliminato allegato __attachment__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-addSubtask": "aggiunto sottotask __subtask__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-addLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-addedLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-removeLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-removedLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-addChecklist": "aggiunta lista di controllo __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-addChecklistItem": "aggiunto elemento __checklistItem__ alla lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-removeChecklist": "rimossa lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-removeChecklistItem": "rimosso elemento __checklistItem__ dalla lista di controllo __checkList__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-checkedItem": "attivato __checklistItem__ nella lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-uncheckedItem": "disattivato __checklistItem__ della lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-completeChecklist": "completata lista di controllo __checklist__ nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-uncompleteChecklist": "lista di controllo __checklist__ incompleta nella scheda __card__ della lista __list__ in corsia __swimlane__ della bacheca __board__",
- "act-addComment": "commento sulla scheda __card__: __comment__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-editComment": "commento modificato sulla scheda __card__: __comment__ nella lista __list__ nella swim lane __swimlane__ nella bacheca __board__",
- "act-deleteComment": "commento eliminato sulla scheda __card__: __comment__ nella lista __list__ nella swim lane __swimlane__ nella bacheca __board__",
- "act-createBoard": "bacheca __board__ creata",
- "act-createSwimlane": "creata corsia __swimlane__ alla bacheca __board__",
- "act-createCard": "scheda __card__ creata nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-createCustomField": "creato campo personalizzato __customField__ nella bacheca __board",
- "act-deleteCustomField": "campo personalizzato eliminato __customField__ nella bacheca __board",
- "act-setCustomField": "campo personalizzato modificato __customField__: __customFieldValue__ sulla scheda __card__ sulla lista __list__ sulla swimlane __swimlane__ sulla bacheca __board__",
- "act-createList": "aggiunta lista __list__ alla bacheca __board__",
- "act-addBoardMember": "aggiunto membro __member__ alla bacheca __board__",
- "act-archivedBoard": "Bacheca __board__ archiviata",
- "act-archivedCard": "Scheda __card__ della lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
- "act-archivedList": "Lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
- "act-archivedSwimlane": "Corsia __swimlane__ della bacheca __board__ archiviata",
- "act-importBoard": "Bacheca __board__ importata",
- "act-importCard": "scheda importata __card__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-importList": "lista __list__ importata nella corsia __swimlane__ della bacheca __board__",
- "act-joinMember": "aggiunto membro __member__ alla scheda __card__ della list __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-moveCard": "spostata scheda __card__ della bacheca __board__ dalla lista __oldList__ della corsia __oldSwimlane__ alla lista __list__ della corsia __swimlane__",
- "act-moveCardToOtherBoard": "postata scheda __card__ dalla lista __oldList__ della corsia __oldSwimlane__ della bacheca __oldBoard__ alla lista __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-removeBoardMember": "rimosso membro __member__ dalla bacheca __board__",
- "act-restoredCard": "scheda ripristinata __card__ della lista __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-unjoinMember": "rimosso membro __member__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Azioni",
- "activities": "Attività",
- "activity": "Attività",
- "activity-added": "ha aggiunto %s a %s",
- "activity-archived": "%s spostato nell'archivio",
- "activity-attached": "allegato %s a %s",
- "activity-created": "creato %s",
- "activity-customfield-created": "%s creato come campo personalizzato",
- "activity-excluded": "escluso %s da %s",
- "activity-imported": "importato %s in %s da %s",
- "activity-imported-board": "importato %s da %s",
- "activity-joined": "si è unito a %s",
- "activity-moved": "spostato %s da %s a %s",
- "activity-on": "su %s",
- "activity-removed": "rimosso %s da %s",
- "activity-sent": "inviato %s a %s",
- "activity-unjoined": "ha abbandonato %s",
- "activity-subtask-added": "aggiunto il sottocompito a 1%s",
- "activity-checked-item": "selezionata %s nella checklist %s di %s",
- "activity-unchecked-item": "disattivato %s nella checklist %s di %s",
- "activity-checklist-added": "aggiunta checklist a %s",
- "activity-checklist-removed": "È stata rimossa una checklist da%s",
- "activity-checklist-completed": "%s di %s checklists completate",
- "activity-checklist-uncompleted": "La checklist non è stata completata",
- "activity-checklist-item-added": "Aggiunto l'elemento checklist a '%s' in %s",
- "activity-checklist-item-removed": "è stato rimosso un elemento della checklist da '%s' in %s",
- "add": "Aggiungere",
- "activity-checked-item-card": "%s è stato selezionato nella checklist %s",
- "activity-unchecked-item-card": "%s è stato deselezionato nella checklist %s",
- "activity-checklist-completed-card": "checklist __checklist__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "activity-checklist-uncompleted-card": "La checklist %s non è completa",
- "activity-editComment": "commento modificato %s",
- "activity-deleteComment": "commento eliminato %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Aggiungi Allegato",
- "add-board": "Aggiungi Bacheca",
- "add-card": "Aggiungi Scheda",
- "add-swimlane": "Aggiungi Diagramma Swimlane",
- "add-subtask": "Aggiungi sotto-compito",
- "add-checklist": "Aggiungi Checklist",
- "add-checklist-item": "Aggiungi un elemento alla checklist",
- "add-cover": "Aggiungi copertina",
- "add-label": "Aggiungi Etichetta",
- "add-list": "Aggiungi Lista",
- "add-members": "Aggiungi membri",
- "added": "Aggiunto",
- "addMemberPopup-title": "Membri",
- "admin": "Amministratore",
- "admin-desc": "Può vedere e modificare schede, rimuovere membri e modificare le impostazioni della bacheca.",
- "admin-announcement": "Annunci",
- "admin-announcement-active": "Attiva annunci di sistema",
- "admin-announcement-title": "Annunci dall'Amministratore",
- "all-boards": "Tutte le bacheche",
- "and-n-other-card": "E __count__ altra scheda",
- "and-n-other-card_plural": "E __count__ altre schede",
- "apply": "Applica",
- "app-is-offline": "Caricamento, attendere prego. Aggiornare la pagina porterà ad una perdita dei dati. Se il caricamento non dovesse funzionare, per favore controlla che il server non sia stato fermato.",
- "archive": "Sposta nell'Archivio",
- "archive-all": "Sposta tutto nell'Archivio",
- "archive-board": "Sposta la bacheca nell'Archivio",
- "archive-card": "Sposta la scheda nell'Archivio",
- "archive-list": "Sposta elenco nell'Archivio",
- "archive-swimlane": "Sposta diagramma nell'Archivio",
- "archive-selection": "Sposta la selezione nell'archivio",
- "archiveBoardPopup-title": "Spostare al bacheca nell'archivio?",
- "archived-items": "Archivio",
- "archived-boards": "Bacheche nell'archivio",
- "restore-board": "Ripristina Bacheca",
- "no-archived-boards": "Nessuna bacheca presente nell'archivio",
- "archives": "Archivio",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Aggiungi membro",
- "attached": "allegato",
- "attachment": "Allegato",
- "attachment-delete-pop": "L'eliminazione di un allegato è permanente. Non è possibile annullare.",
- "attachmentDeletePopup-title": "Eliminare l'allegato?",
- "attachments": "Allegati",
- "auto-watch": "Segui automaticamente le bacheche quando vengono create.",
- "avatar-too-big": "L'avatar è troppo grande (520KB max)",
- "back": "Indietro",
- "board-change-color": "Cambia colore",
- "board-nb-stars": "%s stelle",
- "board-not-found": "Bacheca non trovata",
- "board-private-info": "Questa bacheca sarà privata.",
- "board-public-info": "Questa bacheca sarà pubblica.",
- "boardChangeColorPopup-title": "Cambia sfondo della bacheca",
- "boardChangeTitlePopup-title": "Rinomina bacheca",
- "boardChangeVisibilityPopup-title": "Cambia visibilità",
- "boardChangeWatchPopup-title": "Cambia faccia",
- "boardMenuPopup-title": "Impostazioni bacheca",
- "boardChangeViewPopup-title": "Visualizza bacheca",
- "boards": "Bacheche",
- "board-view": "Visualizza bacheca",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Diagramma Swimlane",
- "board-view-collapse": "Collassa",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Liste",
- "bucket-example": "Per esempio come \"una lista di cose da fare\"",
- "cancel": "Cancella",
- "card-archived": "Questa scheda è stata spostata nell'archivio",
- "board-archived": "Questa bacheca è stata spostata nell'archivio",
- "card-comments-title": "Questa scheda ha %s commenti.",
- "card-delete-notice": "L'eliminazione è permanente. Tutte le azioni associate a questa scheda andranno perse.",
- "card-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di riaprire la scheda. Non potrai tornare indietro.",
- "card-delete-suggest-archive": "Puoi spostare una scheda nell'archivio per rimuoverla dalla bacheca e mantenere la sua attività",
- "card-due": "Scadenza",
- "card-due-on": "Scade",
- "card-spent": "Tempo trascorso",
- "card-edit-attachments": "Modifica allegati",
- "card-edit-custom-fields": "Modifica campo personalizzato",
- "card-edit-labels": "Modifica etichette",
- "card-edit-members": "Modifica membri",
- "card-labels-title": "Cambia le etichette per questa scheda.",
- "card-members-title": "Aggiungi o rimuovi membri della bacheca da questa scheda",
- "card-start": "Inizio",
- "card-start-on": "Inizia",
- "cardAttachmentsPopup-title": "Allega da",
- "cardCustomField-datePopup-title": "Cambia data",
- "cardCustomFieldsPopup-title": "Modifica campo personalizzato",
- "cardStartVotingPopup-title": "Inizia una votazione",
- "positiveVoteMembersPopup-title": "Favorevoli",
- "negativeVoteMembersPopup-title": "Contrari",
- "card-edit-voting": "Modifica la votazione",
- "editVoteEndDatePopup-title": "Cambia data di termine voto",
- "allowNonBoardMembers": "Consenti tutti gli utenti registrati",
- "vote-question": "Domanda di votazione",
- "vote-public": "Mostrare chi ha votato cosa",
- "vote-for-it": "a favore",
- "vote-against": "contro",
- "deleteVotePopup-title": "Eliminare il voto?",
- "vote-delete-pop": "L'eliminazione è permanente. Tutte le azioni associate a questa votazione andranno perse.",
- "cardDeletePopup-title": "Elimina scheda?",
- "cardDetailsActionsPopup-title": "Azioni scheda",
- "cardLabelsPopup-title": "Etichette",
- "cardMembersPopup-title": "Membri",
- "cardMorePopup-title": "Altro",
- "cardTemplatePopup-title": "Crea un template",
- "cards": "Schede",
- "cards-count": "Schede",
- "casSignIn": "Entra con CAS",
- "cardType-card": "Scheda",
- "cardType-linkedCard": "Scheda collegata",
- "cardType-linkedBoard": "Bacheca collegata",
- "change": "Cambia",
- "change-avatar": "Cambia avatar",
- "change-password": "Cambia password",
- "change-permissions": "Cambia permessi",
- "change-settings": "Cambia impostazioni",
- "changeAvatarPopup-title": "Cambia avatar",
- "changeLanguagePopup-title": "Cambia lingua",
- "changePasswordPopup-title": "Cambia password",
- "changePermissionsPopup-title": "Cambia permessi",
- "changeSettingsPopup-title": "Cambia impostazioni",
- "subtasks": "Sotto-compiti",
- "checklists": "Checklist",
- "click-to-star": "Clicca per stellare questa bacheca",
- "click-to-unstar": "Clicca per togliere la stella da questa bacheca",
- "clipboard": "Clipboard o drag & drop",
- "close": "Chiudi",
- "close-board": "Chiudi bacheca",
- "close-board-pop": "Potrai ripristinare la bacheca cliccando sul tasto \"Archivio\" presente nell'intestazione della home.",
- "color-black": "nero",
- "color-blue": "blu",
- "color-crimson": "Rosso cremisi",
- "color-darkgreen": "Verde scuro",
- "color-gold": "Dorato",
- "color-gray": "Grigio",
- "color-green": "verde",
- "color-indigo": "Indaco",
- "color-lime": "lime",
- "color-magenta": "Magenta",
- "color-mistyrose": "Mistyrose",
- "color-navy": "Navy",
- "color-orange": "arancione",
- "color-paleturquoise": "Turchese chiaro",
- "color-peachpuff": "Pesca",
- "color-pink": "rosa",
- "color-plum": "Prugna",
- "color-purple": "viola",
- "color-red": "rosso",
- "color-saddlebrown": "Saddlebrown",
- "color-silver": "Argento",
- "color-sky": "azzurro",
- "color-slateblue": "Ardesia",
- "color-white": "Bianco",
- "color-yellow": "giallo",
- "unset-color": "Non impostato",
- "comment": "Commento",
- "comment-placeholder": "Scrivi Commento",
- "comment-only": "Solo commenti",
- "comment-only-desc": "Puoi commentare solo le schede.",
- "no-comments": "Non ci sono commenti.",
- "no-comments-desc": "Impossibile visualizzare commenti o attività.",
- "worker": "Lavoratore",
- "worker-desc": "Può solo spostare schede, assegnarsi una scheda e commentare.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Sei sicuro di voler eliminare il sotto-compito?",
- "confirm-checklist-delete-dialog": "Sei sicuro di voler eliminare la checklist?",
- "copy-card-link-to-clipboard": "Copia link della scheda sulla clipboard",
- "linkCardPopup-title": "Collega scheda",
- "searchElementPopup-title": "Cerca",
- "copyCardPopup-title": "Copia Scheda",
- "copyChecklistToManyCardsPopup-title": "Copia template checklist su più schede",
- "copyChecklistToManyCardsPopup-instructions": "Titolo e la descrizione della scheda di destinazione in questo formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titolo prima scheda\", \"description\":\"Descrizione prima scheda\"}, {\"title\":\"Titolo seconda scheda\",\"description\":\"Descrizione seconda scheda\"},{\"title\":\"Titolo ultima scheda\",\"description\":\"Descrizione ultima scheda\"} ]",
- "create": "Crea",
- "createBoardPopup-title": "Crea bacheca",
- "chooseBoardSourcePopup-title": "Importa bacheca",
- "createLabelPopup-title": "Crea etichetta",
- "createCustomField": "Crea campo",
- "createCustomFieldPopup-title": "Crea campo",
- "current": "corrente",
- "custom-field-delete-pop": "Non potrai tornare indietro. Questa azione rimuoverà questo campo personalizzato da tutte le schede ed eliminerà ogni sua traccia.",
- "custom-field-checkbox": "Casella di scelta",
- "custom-field-currency": "Valuta",
- "custom-field-currency-option": "Codice Valuta",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista a discesa",
- "custom-field-dropdown-none": "(niente)",
- "custom-field-dropdown-options": "Lista opzioni",
- "custom-field-dropdown-options-placeholder": "Premi invio per aggiungere altre opzioni",
- "custom-field-dropdown-unknown": "(sconosciuto)",
- "custom-field-number": "Numero",
- "custom-field-text": "Testo",
- "custom-fields": "Campi personalizzati",
- "date": "Data",
- "decline": "Declina",
- "default-avatar": "Avatar predefinito",
- "delete": "Elimina",
- "deleteCustomFieldPopup-title": "Elimina il campo personalizzato?",
- "deleteLabelPopup-title": "Eliminare etichetta?",
- "description": "Descrizione",
- "disambiguateMultiLabelPopup-title": "Disambiguare l'azione Etichetta",
- "disambiguateMultiMemberPopup-title": "Disambiguare l'azione Membro",
- "discard": "Scarta",
- "done": "Fatto",
- "download": "Download",
- "edit": "Modifica",
- "edit-avatar": "Cambia avatar",
- "edit-profile": "Modifica profilo",
- "edit-wip-limit": "Modifica limite di work in progress",
- "soft-wip-limit": "Limite Work in progress soft",
- "editCardStartDatePopup-title": "Cambia data di inizio",
- "editCardDueDatePopup-title": "Cambia data di scadenza",
- "editCustomFieldPopup-title": "Modifica campo",
- "editCardSpentTimePopup-title": "Cambia tempo trascorso",
- "editLabelPopup-title": "Cambia etichetta",
- "editNotificationPopup-title": "Modifica notifiche",
- "editProfilePopup-title": "Modifica profilo",
- "email": "Email",
- "email-enrollAccount-subject": "Creato un account per te su __siteName__",
- "email-enrollAccount-text": "Ciao __user__,\n\nPer iniziare ad usare il servizio, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-fail": "Invio email fallito",
- "email-fail-text": "Errore nel tentativo di invio email",
- "email-invalid": "Email non valida",
- "email-invite": "Invita via email",
- "email-invite-subject": "__inviter__ ti ha inviato un invito",
- "email-invite-text": "Caro __user__,\n\n__inviter__ ti ha invitato ad unirti alla bacheca \"__board__\" per le collaborazioni.\n\nPer favore clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-resetPassword-subject": "Ripristina la tua password su on __siteName__",
- "email-resetPassword-text": "Ciao __user__,\n\nPer ripristinare la tua password, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-sent": "Email inviata",
- "email-verifyEmail-subject": "Verifica il tuo indirizzo email su on __siteName__",
- "email-verifyEmail-text": "Ciao __user__,\n\nPer verificare il tuo account email, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "enable-wip-limit": "Abilita limite di work in progress",
- "error-board-doesNotExist": "Questa bacheca non esiste",
- "error-board-notAdmin": "Devi essere admin di questa bacheca per poterlo fare",
- "error-board-notAMember": "Devi essere un membro di questa bacheca per poterlo fare",
- "error-json-malformed": "Il tuo testo non è un JSON valido",
- "error-json-schema": "Il tuo file JSON non contiene le giuste informazioni nel formato corretto",
- "error-csv-schema": "Il tuo file CSV(Comma Separated Values)/TSV (Tab Separated Values) non contiene le giuste informazioni nel formato corretto ",
- "error-list-doesNotExist": "Questa lista non esiste",
- "error-user-doesNotExist": "Questo utente non esiste",
- "error-user-notAllowSelf": "Non puoi invitare te stesso",
- "error-user-notCreated": "L'utente non è stato creato",
- "error-username-taken": "Questo username è già utilizzato",
- "error-email-taken": "L'email è già stata presa",
- "export-board": "Esporta bacheca",
- "export-board-json": "Esporta bacheca in JSON",
- "export-board-csv": "Esporta bacheca in CSV",
- "export-board-tsv": "Esporta bacheca in TSV",
- "export-board-html": "Esporta bacheca in HTML",
- "exportBoardPopup-title": "Esporta bacheca",
- "sort": "Ordina",
- "sort-desc": "Clicca per ordinare la lista",
- "list-sort-by": "Ordina la lista per:",
- "list-label-modifiedAt": "Orario ultimo accesso",
- "list-label-title": "Nome della lista",
- "list-label-sort": "Il tuo ordine manuale",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtra",
- "filter-cards": "Filtra schede o liste",
- "list-filter-label": "Filtra lista per titolo",
- "filter-clear": "Pulisci filtri",
- "filter-labels-label": "Filtra secondo l'etichetta",
- "filter-no-label": "Nessuna etichetta",
- "filter-member-label": "Filtra secondo il membro",
- "filter-no-member": "Nessun membro",
- "filter-assignee-label": "Filtra secondo l'assegnatario",
- "filter-no-assignee": "Nessun assegnatario",
- "filter-custom-fields-label": "Filtra secondo campi personalizzati",
- "filter-no-custom-fields": "Nessun campo personalizzato",
- "filter-show-archive": "Mostra le liste archiviate",
- "filter-hide-empty": "Nascondi liste vuote",
- "filter-on": "Il filtro è attivo",
- "filter-on-desc": "Stai filtrando le schede su questa bacheca. Clicca qui per modificare il filtro,",
- "filter-to-selection": "Seleziona",
- "other-filters-label": "Altri flitri",
- "advanced-filter-label": "Filtro avanzato",
- "advanced-filter-description": "Il filtro avanzato permette di scrivere una stringa contenente i seguenti operatori: == != <= >= && || ( ) Uno spazio è usato come separatore tra gli operatori. Si può filtrare per tutti i campi personalizzati, scrivendo i loro nomi e valori. Per esempio: Campo1 == Valore1. Nota: Se i campi o i valori contengono spazi, è necessario incapsularli all'interno di paici singoli. Per esempio: 'Campo 1' == 'Valore 1'. Per i singoli caratteri di controllo (' V) che devono essere ignorati, si può usare \\. Per esempio: C1 == Campo1 == L'\\ho. Si possono anche combinare condizioni multiple. Per esempio: C1 == V1 || C1 ==V2. Di norma tutti gli operatori vengono lettti da sinistra a destra. Si può cambiare l'ordine posizionando delle parentesi. Per esempio: C1 == V1 && ( C2 == V2 || C2 == V3) . Inoltre è possibile cercare nei campi di testo usando le espressioni regolari (n.d.t. regex): F1 ==/Tes.*/i",
- "fullname": "Nome completo",
- "header-logo-title": "Torna alla tua bacheca.",
- "hide-system-messages": "Nascondi i messaggi di sistema",
- "headerBarCreateBoardPopup-title": "Crea bacheca",
- "home": "Home",
- "import": "Importa",
- "impersonate-user": "Impersona utente",
- "link": "Collegamento",
- "import-board": "Importa bacheca",
- "import-board-c": "Importa bacheca",
- "import-board-title-trello": "Importa una bacheca da Trello",
- "import-board-title-wekan": "Importa bacheca dall'esportazione precedente",
- "import-board-title-csv": "Importa bacheca da CSV/TSV",
- "from-trello": "Da Trello",
- "from-wekan": "Dall'esportazione precedente",
- "from-csv": "Da CSV/TSV",
- "import-board-instruction-trello": "Nella tua bacheca Trello vai a 'Menu', poi 'Altro', 'Stampa ed esporta', 'Esporta JSON', e copia il testo che compare.",
- "import-board-instruction-csv": "Incolla in Comma Separated Values (CSV) / Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "Nella tua bacheca vai su \"Menu\", poi \"Esporta la bacheca\", e copia il testo nel file scaricato",
- "import-board-instruction-about-errors": "Se hai degli errori quando importi una bacheca, qualche volta l'importazione funziona comunque, e la bacheca si trova nella pagina \"Tutte le bacheche\"",
- "import-json-placeholder": "Incolla un JSON valido qui",
- "import-csv-placeholder": "Incolla un CSV/TSV valido qui",
- "import-map-members": "Mappatura dei membri",
- "import-members-map": "La bacheca che hai importato contiene alcuni membri. Per favore scegli i membri che vuoi importare tra i tuoi utenti",
- "import-show-user-mapping": "Rivedi la mappatura dei membri",
- "import-user-select": "Scegli l'utente che vuoi venga utilizzato come questo membro",
- "importMapMembersAddPopup-title": "Scegli membro",
- "info": "Versione",
- "initials": "Iniziali",
- "invalid-date": "Data non valida",
- "invalid-time": "Tempo non valido",
- "invalid-user": "User non valido",
- "joined": "si è unito a",
- "just-invited": "Sei stato appena invitato a questa bacheca",
- "keyboard-shortcuts": "Scorciatoie da tastiera",
- "label-create": "Crea etichetta",
- "label-default": "%s etichetta (default)",
- "label-delete-pop": "Non potrai tornare indietro. Procedendo, rimuoverai questa etichetta da tutte le schede e distruggerai la sua cronologia.",
- "labels": "Etichette",
- "language": "Lingua",
- "last-admin-desc": "Non puoi cambiare i ruoli perché deve esserci almeno un admin.",
- "leave-board": "Abbandona bacheca",
- "leave-board-pop": "Sei sicuro di voler abbandonare __boardTitle__? Sarai rimosso da tutte le schede in questa bacheca.",
- "leaveBoardPopup-title": "Abbandona Bacheca?",
- "link-card": "Link a questa scheda",
- "list-archive-cards": "Sposta tutte le schede in questo elenco nell'Archivio",
- "list-archive-cards-pop": "Questo rimuoverà tutte le schede nell'elenco dalla bacheca. Per vedere le schede nell'archivio e portarle dov'erano nella bacheca, clicca su \"Menu\" > \"Archivio\".",
- "list-move-cards": "Sposta tutte le schede in questa lista",
- "list-select-cards": "Selezione tutte le schede in questa lista",
- "set-color-list": "Imposta un colore",
- "listActionPopup-title": "Azioni disponibili",
- "settingsUserPopup-title": "Impostazioni utente",
- "swimlaneActionPopup-title": "Azioni diagramma Swimlane",
- "swimlaneAddPopup-title": "Aggiungi un diagramma Swimlane di seguito",
- "listImportCardPopup-title": "Importa una scheda di Trello",
- "listImportCardsTsvPopup-title": "Importa CSV/TSV",
- "listMorePopup-title": "Altro",
- "link-list": "Link a questa lista",
- "list-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di recuperare la lista. Non potrai tornare indietro.",
- "list-delete-suggest-archive": "Puoi spostare un elenco nell'archivio per rimuoverlo dalla bacheca e mantentere la sua attività.",
- "lists": "Liste",
- "swimlanes": "Diagramma Swimlane",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Impostazioni membri",
- "members": "Membri",
- "menu": "Menu",
- "move-selection": "Sposta selezione",
- "moveCardPopup-title": "Sposta scheda",
- "moveCardToBottom-title": "Sposta in fondo",
- "moveCardToTop-title": "Sposta in cima",
- "moveSelectionPopup-title": "Sposta selezione",
- "multi-selection": "Multi-Selezione",
- "multi-selection-label": "Selezionare etichetta",
- "multi-selection-member": "Selezionare membro",
- "multi-selection-on": "Multi-Selezione attiva",
- "muted": "Silenziato",
- "muted-info": "Non sarai mai notificato delle modifiche in questa bacheca",
- "my-boards": "Le mie bacheche",
- "name": "Nome",
- "no-archived-cards": "Non ci sono schede nell'archivio.",
- "no-archived-lists": "Non ci sono elenchi nell'archivio.",
- "no-archived-swimlanes": "Non ci sono diagrammi Swimlane nell'archivio.",
- "no-results": "Nessun risultato",
- "normal": "Normale",
- "normal-desc": "Può visionare e modificare le schede. Non può cambiare le impostazioni.",
- "not-accepted-yet": "Invitato non ancora accettato",
- "notify-participate": "Ricevi aggiornamenti per qualsiasi scheda a cui partecipi come creatore o membro",
- "notify-watch": "Ricevi aggiornamenti per tutte le bacheche, liste o schede che stai seguendo",
- "optional": "opzionale",
- "or": "o",
- "page-maybe-private": "Questa pagina potrebbe essere privata. Potresti essere in grado di vederla facendo il log-in.",
- "page-not-found": "Pagina non trovata.",
- "password": "Password",
- "paste-or-dragdrop": "per incollare, oppure trascina & rilascia il file immagine (solo immagini)",
- "participating": "Partecipando",
- "preview": "Anteprima",
- "previewAttachedImagePopup-title": "Anteprima",
- "previewClipboardImagePopup-title": "Anteprima",
- "private": "Privata",
- "private-desc": "Questa bacheca è privata. Solo le persone aggiunte alla bacheca possono vederla e modificarla.",
- "profile": "Profilo",
- "public": "Pubblica",
- "public-desc": "Questa bacheca è pubblica. È visibile a chiunque abbia il link e sarà mostrata dai motori di ricerca come Google. Solo le persone aggiunte alla bacheca possono modificarla.",
- "quick-access-description": "Stella una bacheca per aggiungere una scorciatoia in questa barra.",
- "remove-cover": "Rimuovi cover",
- "remove-from-board": "Rimuovi dalla bacheca",
- "remove-label": "Rimuovi Etichetta",
- "listDeletePopup-title": "Eliminare Lista?",
- "remove-member": "Rimuovi utente",
- "remove-member-from-card": "Rimuovi dalla scheda",
- "remove-member-pop": "Rimuovere __name__ (__username__) da __boardTitle__? L'utente sarà rimosso da tutte le schede in questa bacheca. Riceveranno una notifica.",
- "removeMemberPopup-title": "Rimuovere membro?",
- "rename": "Rinomina",
- "rename-board": "Rinomina bacheca",
- "restore": "Ripristina",
- "save": "Salva",
- "search": "Cerca",
- "rules": "Regole",
- "search-cards": "Ricerca per titolo, descrizione scheda/lista e campi personalizzati su questa bacheca",
- "search-example": "Scrivere il testo da ricercare e premere Invio",
- "select-color": "Seleziona Colore",
- "select-board": "Seleziona bacheca",
- "set-wip-limit-value": "Seleziona un limite per il massimo numero di attività in questa lista",
- "setWipLimitPopup-title": "Imposta limite di work in progress",
- "shortcut-assign-self": "Aggiungi te stesso alla scheda corrente",
- "shortcut-autocomplete-emoji": "Autocompletamento emoji",
- "shortcut-autocomplete-members": "Autocompletamento membri",
- "shortcut-clear-filters": "Pulisci tutti i filtri",
- "shortcut-close-dialog": "Chiudi finestra di dialogo",
- "shortcut-filter-my-cards": "Filtra le mie schede",
- "shortcut-show-shortcuts": "Apri questa lista di scorciatoie",
- "shortcut-toggle-filterbar": "Apri/chiudi la barra laterale dei filtri",
- "shortcut-toggle-searchbar": "Apri/chiudi la barra laterale di ricerca",
- "shortcut-toggle-sidebar": "Apri/chiudi la barra laterale della bacheca",
- "show-cards-minimum-count": "Mostra il contatore delle schede se la lista ne contiene più di",
- "sidebar-open": "Apri Sidebar",
- "sidebar-close": "Chiudi Sidebar",
- "signupPopup-title": "Crea un account",
- "star-board-title": "Clicca per stellare questa bacheca. Sarà mostrata all'inizio della tua lista bacheche.",
- "starred-boards": "Bacheche stellate",
- "starred-boards-description": "Le bacheche stellate vengono mostrato all'inizio della tua lista bacheche.",
- "subscribe": "Sottoscrivi",
- "team": "Team",
- "this-board": "questa bacheca",
- "this-card": "questa scheda",
- "spent-time-hours": "Tempo trascorso (ore)",
- "overtime-hours": "Overtime (ore)",
- "overtime": "Overtime",
- "has-overtime-cards": "Ci sono schede scadute",
- "has-spenttime-cards": "Ci sono schede con tempo impiegato",
- "time": "Ora",
- "title": "Titolo",
- "tracking": "Monitoraggio",
- "tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.",
- "type": "Tipo",
- "unassign-member": "Rimuovi membro",
- "unsaved-description": "Hai una descrizione non salvata",
- "unwatch": "Non seguire",
- "upload": "Upload",
- "upload-avatar": "Carica un avatar",
- "uploaded-avatar": "Avatar caricato",
- "custom-top-left-corner-logo-image-url": "URL dell'immagine del logo personalizzato nell'angolo superiore sinistro",
- "custom-top-left-corner-logo-link-url": "URL del link del logo personalizzato nell'angolo superiore sinistro",
- "custom-top-left-corner-logo-height": "Altezza del logo personalizzato nell'angolo superiore sinistro. Default: 27",
- "custom-login-logo-image-url": "URL dell'immagine del logo personalizzato per il login",
- "custom-login-logo-link-url": "Link dell'immagine del logo personalizzato per il login",
- "text-below-custom-login-logo": "Testo sotto il logo personalizzato per il login",
- "username": "Username",
- "view-it": "Vedi",
- "warn-list-archived": "Attenzione:questa scheda si trova in un elenco dell'archivio",
- "watch": "Segui",
- "watching": "Stai seguendo",
- "watching-info": "Sarai notificato per tutte le modifiche in questa bacheca",
- "welcome-board": "Bacheca di benvenuto",
- "welcome-swimlane": "Pietra miliare 1",
- "welcome-list1": "Basi",
- "welcome-list2": "Avanzate",
- "card-templates-swimlane": "Template scheda",
- "list-templates-swimlane": "Elenca i template",
- "board-templates-swimlane": "Bacheca dei template",
- "what-to-do": "Cosa vuoi fare?",
- "wipLimitErrorPopup-title": "Limite work in progress non valido.",
- "wipLimitErrorPopup-dialog-pt1": "Il numero di compiti in questa lista è maggiore del limite di work in progress che hai definito in precedenza.",
- "wipLimitErrorPopup-dialog-pt2": "Per favore, sposta alcuni dei compiti fuori da questa lista, oppure imposta un limite di work in progress più alto.",
- "admin-panel": "Pannello dell'Amministratore",
- "settings": "Impostazioni",
- "people": "Persone",
- "registration": "Registrazione",
- "disable-self-registration": "Disabilita Auto-registrazione",
- "invite": "Invita",
- "invite-people": "Invita persone",
- "to-boards": "Alla(e) bacheca",
- "email-addresses": "Indirizzi email",
- "smtp-host-description": "L'indirizzo del server SMTP che gestisce le tue email.",
- "smtp-port-description": "La porta che il tuo server SMTP utilizza per le email in uscita.",
- "smtp-tls-description": "Abilita supporto TLS per server SMTP",
- "smtp-host": "SMTP Host",
- "smtp-port": "Porta SMTP",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "Supporto TLS",
- "send-from": "Da",
- "send-smtp-test": "Invia un'email di test a te stesso",
- "invitation-code": "Codice d'invito",
- "email-invite-register-subject": "__inviter__ ti ha inviato un invito",
- "email-invite-register-text": "Gentile __user__,\n\n__inviter__ ti ha invitato a partecipare a questa bacheca kanban per collaborare.\n\nPer favore segui il collegamento qui sotto:\n__url__\n\nIl tuo codice di invito è: __icode__\n\nGrazie.",
- "email-smtp-test-subject": "E-Mail di prova SMTP",
- "email-smtp-test-text": "Hai inviato un'email con successo",
- "error-invitation-code-not-exist": "Il codice d'invito non esiste",
- "error-notAuthorized": "Non sei autorizzato ad accedere a questa pagina.",
- "webhook-title": "Nome Webhook",
- "webhook-token": "Token (facoltativo per l'autenticazione)",
- "outgoing-webhooks": "Server esterni",
- "bidirectional-webhooks": "Webhook a due vie",
- "outgoingWebhooksPopup-title": "Server esterni",
- "boardCardTitlePopup-title": "Filtro per Titolo Scheda",
- "disable-webhook": "Disattiva questo Webhook",
- "global-webhook": "Webhook globali",
- "new-outgoing-webhook": "Nuovo webhook in uscita",
- "no-name": "(Sconosciuto)",
- "Node_version": "Versione di Node",
- "Meteor_version": "Versione Meteor",
- "MongoDB_version": "Versione MondoDB",
- "MongoDB_storage_engine": "Versione motore dati MongoDB",
- "MongoDB_Oplog_enabled": "MongoDB Oplog abilitato",
- "OS_Arch": "Architettura del sistema operativo",
- "OS_Cpus": "Conteggio della CPU del sistema operativo",
- "OS_Freemem": "Memoria libera del sistema operativo",
- "OS_Loadavg": "Carico medio del sistema operativo",
- "OS_Platform": "Piattaforma del sistema operativo",
- "OS_Release": "Versione di rilascio del sistema operativo",
- "OS_Totalmem": "Memoria totale del sistema operativo",
- "OS_Type": "Tipo di sistema operativo",
- "OS_Uptime": "Tempo di attività del sistema operativo.",
- "days": "giorni",
- "hours": "ore",
- "minutes": "minuti",
- "seconds": "secondi",
- "show-field-on-card": "Visualizza questo campo sulla scheda",
- "automatically-field-on-card": "Crea automaticamente i campi per tutte le schede",
- "showLabel-field-on-card": "Mostra l'etichetta di campo su minischeda",
- "yes": "Sì",
- "no": "No",
- "accounts": "Profili",
- "accounts-allowEmailChange": "Permetti modifica dell'email",
- "accounts-allowUserNameChange": "Consenti la modifica del nome utente",
- "createdAt": "creato alle",
- "verified": "Verificato",
- "active": "Attivo",
- "card-received": "Ricevuta",
- "card-received-on": "Ricevuta il",
- "card-end": "Fine",
- "card-end-on": "Termina il",
- "editCardReceivedDatePopup-title": "Cambia data ricezione",
- "editCardEndDatePopup-title": "Cambia data finale",
- "setCardColorPopup-title": "Imposta il colore",
- "setCardActionsColorPopup-title": "Scegli un colore",
- "setSwimlaneColorPopup-title": "Scegli un colore",
- "setListColorPopup-title": "Scegli un colore",
- "assigned-by": "Assegnato da",
- "requested-by": "Richiesto da",
- "board-delete-notice": "L'eliminazione è permanente. Tutte le azioni, liste e schede associate a questa bacheca andranno perse.",
- "delete-board-confirm-popup": "Tutte le liste, schede, etichette e azioni saranno rimosse e non sarai più in grado di recuperare il contenuto della bacheca. L'azione non è annullabile.",
- "boardDeletePopup-title": "Eliminare la bacheca?",
- "delete-board": "Elimina bacheca",
- "default-subtasks-board": "Sottocompiti per la bacheca __board__",
- "default": "Predefinito",
- "queue": "Coda",
- "subtask-settings": "Impostazioni sotto-compiti",
- "card-settings": "Impostazioni della scheda",
- "boardSubtaskSettingsPopup-title": "Impostazioni sotto-compiti della bacheca",
- "boardCardSettingsPopup-title": "Impostazioni della scheda",
- "deposit-subtasks-board": "Deposita i sotto compiti in questa bacheca",
- "deposit-subtasks-list": "Lista di destinaizoni per questi sotto-compiti",
- "show-parent-in-minicard": "Mostra genirotri nelle mini schede:",
- "prefix-with-full-path": "Prefisso con percorso completo",
- "prefix-with-parent": "Prefisso con genitore",
- "subtext-with-full-path": "Sottotesto con percorso completo",
- "subtext-with-parent": "Sotto-testo con genitore",
- "change-card-parent": "Cambia la scheda genitore",
- "parent-card": "Scheda genitore",
- "source-board": "Bacheca d'origine",
- "no-parent": "Non mostrare i genitori",
- "activity-added-label": "L' etichetta '%s' è stata aggiunta a %s",
- "activity-removed-label": "L'etichetta '%s' è stata rimossa da %s",
- "activity-delete-attach": "Rimosso un allegato da %s",
- "activity-added-label-card": "aggiunta etichetta '%s'",
- "activity-removed-label-card": "L' etichetta '%s' è stata rimossa.",
- "activity-delete-attach-card": "Cancella un allegato",
- "activity-set-customfield": "imposta campo personalizzato '%s' a '%s' in %s",
- "activity-unset-customfield": "campo personalizzato non impostato '%s' in %s",
- "r-rule": "Ruolo",
- "r-add-trigger": "Aggiungi trigger",
- "r-add-action": "Aggiungi azione",
- "r-board-rules": "Regole della bacheca",
- "r-add-rule": "Aggiungi regola",
- "r-view-rule": "Visualizza regola",
- "r-delete-rule": "Cancella regola",
- "r-new-rule-name": "Titolo nuova regola",
- "r-no-rules": "Nessuna regola",
- "r-trigger": "trigger",
- "r-action": "Azione",
- "r-when-a-card": "Quando una scheda",
- "r-is": "è",
- "r-is-moved": "viene spostata",
- "r-added-to": "Aggiunto/a a",
- "r-removed-from": "Rimosso da",
- "r-the-board": "La bacheca",
- "r-list": "lista",
- "set-filter": "Imposta un filtro",
- "r-moved-to": "Spostato/a a",
- "r-moved-from": "Spostato/a da",
- "r-archived": "Spostato/a nell'archivio",
- "r-unarchived": "Ripristinato/a dall'archivio",
- "r-a-card": "una scheda",
- "r-when-a-label-is": "Quando un'etichetta viene",
- "r-when-the-label": "Quando l'etichetta viene",
- "r-list-name": "Nome dell'elenco",
- "r-when-a-member": "Quando un membro viene",
- "r-when-the-member": "Quando un membro viene",
- "r-name": "nome",
- "r-when-a-attach": "Quando un allegato",
- "r-when-a-checklist": "Quando una checklist è",
- "r-when-the-checklist": "Quando la checklist",
- "r-completed": "Completato/a",
- "r-made-incomplete": "Rendi incompleto",
- "r-when-a-item": "Quando un elemento della checklist è",
- "r-when-the-item": "Quando un elemento della checklist",
- "r-checked": "Selezionato",
- "r-unchecked": "Deselezionato",
- "r-move-card-to": "Sposta scheda a",
- "r-top-of": "Al di sopra di",
- "r-bottom-of": "Al di sotto di",
- "r-its-list": "il suo elenco",
- "r-archive": "Sposta nell'Archivio",
- "r-unarchive": "Ripristina dall'archivio",
- "r-card": "scheda",
- "r-add": "Aggiungere",
- "r-remove": "Rimuovi",
- "r-label": "etichetta",
- "r-member": "membro",
- "r-remove-all": "Rimuovi tutti i membri dalla scheda",
- "r-set-color": "Imposta il colore a",
- "r-checklist": "checklist",
- "r-check-all": "Spunta tutti",
- "r-uncheck-all": "Togli la spunta a tutti",
- "r-items-check": "Elementi della checklist",
- "r-check": "Spunta",
- "r-uncheck": "Togli la spunta",
- "r-item": "elemento",
- "r-of-checklist": "della lista di cose da fare",
- "r-send-email": "Invia un e-mail",
- "r-to": "a",
- "r-of": "di",
- "r-subject": "soggetto",
- "r-rule-details": "Dettagli della regola",
- "r-d-move-to-top-gen": "Sposta la scheda in cima alla sua lista",
- "r-d-move-to-top-spec": "Sposta la scheda in cima alla lista",
- "r-d-move-to-bottom-gen": "Sposta la scheda in fondo alla sua lista",
- "r-d-move-to-bottom-spec": "Muovi la scheda in fondo alla lista",
- "r-d-send-email": "Spedisci email",
- "r-d-send-email-to": "a",
- "r-d-send-email-subject": "soggetto",
- "r-d-send-email-message": "Messaggio",
- "r-d-archive": "Sposta la scheda nell'archivio",
- "r-d-unarchive": "Ripristina la scheda dall'archivio",
- "r-d-add-label": "Aggiungi etichetta",
- "r-d-remove-label": "Rimuovi Etichetta",
- "r-create-card": "Crea una nuova scheda",
- "r-in-list": "in elenco",
- "r-in-swimlane": "nel diagramma swimlane",
- "r-d-add-member": "Aggiungi membro",
- "r-d-remove-member": "Rimuovi membro",
- "r-d-remove-all-member": "Rimouvi tutti i membri",
- "r-d-check-all": "Seleziona tutti gli item di una lista",
- "r-d-uncheck-all": "Deseleziona tutti gli items di una lista",
- "r-d-check-one": "Seleziona",
- "r-d-uncheck-one": "Deselezionalo",
- "r-d-check-of-list": "della lista di cose da fare",
- "r-d-add-checklist": "Aggiungi lista di cose da fare",
- "r-d-remove-checklist": "Rimuovi check list",
- "r-by": "da",
- "r-add-checklist": "Aggiungi lista di cose da fare",
- "r-with-items": "con elementi",
- "r-items-list": "elemento1,elemento2,elemento3",
- "r-add-swimlane": "Aggiungi un diagramma swimlane",
- "r-swimlane-name": "Nome diagramma swimlane",
- "r-board-note": "Nota: Lascia un campo vuoto per abbinare ogni possibile valore",
- "r-checklist-note": "Nota: Gli elementi della checklist devono essere scritti come valori separati dalla virgola",
- "r-when-a-card-is-moved": "Quando una scheda viene spostata su un'altra lista",
- "r-set": "Imposta",
- "r-update": "Aggiorna",
- "r-datefield": "campo data",
- "r-df-start-at": "inizio",
- "r-df-due-at": "scadenza",
- "r-df-end-at": "fine",
- "r-df-received-at": "ricevuta",
- "r-to-current-datetime": "a data/ora corrente",
- "r-remove-value-from": "Rimuovi valore da",
- "ldap": "LDAP",
- "oauth2": "Oauth2",
- "cas": "CAS",
- "authentication-method": "Metodo di Autenticazione",
- "authentication-type": "Tipo Autenticazione",
- "custom-product-name": "Nome prodotto personalizzato",
- "layout": "Layout",
- "hide-logo": "Nascondi il logo",
- "add-custom-html-after-body-start": "Aggiungi codice HTML personalizzato dopo inzio",
- "add-custom-html-before-body-end": "Aggiunti il codice HTML prima di fine",
- "error-undefined": "Qualcosa è andato storto",
- "error-ldap-login": "C'è stato un errore mentre provavi ad effettuare il login",
- "display-authentication-method": "Mostra il metodo di autenticazione",
- "default-authentication-method": "Metodo di autenticazione predefinito",
- "duplicate-board": "Duplica bacheca",
- "people-number": "Il numero di persone è:",
- "swimlaneDeletePopup-title": "Cancella diagramma swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Cancella tutto",
- "loading": "Loading, please wait.",
- "previous_as": "l'ultima volta è stata",
- "act-a-dueAt": "Scadenza modificata in __timeValue__\nData precedente: __timeOldValue__",
- "act-a-endAt": "orario finale modificato in __timeValue__ (precedentemente: __timeOldValue__)",
- "act-a-startAt": "orario iniziale modificato in __timeValue__ (precedentemente: __timeOldValue__)",
- "act-a-receivedAt": "orario di ricezione modificato in __timeValue__ (precedentemente: __timeOldValue__)",
- "a-dueAt": "scadenza modificata in",
- "a-endAt": "orario finale modificato in",
- "a-startAt": "orario iniziale modificato in",
- "a-receivedAt": "orario di ricezione modificato in",
- "almostdue": "la data di scadenza attuale %s si sta avvicinando",
- "pastdue": "la data di scadenza attuale %s è scaduta",
- "duenow": "la data di scadenza attuale %s è oggi",
- "act-newDue": "__list__/__card__ ha un 1° sollecito [__board__]",
- "act-withDue": "sollecito relativo a __list__/__card__ [__board__]",
- "act-almostdue": "sollecito inviato: la scadenza (__timeValue__) di __card__ è vicina",
- "act-pastdue": "sollecito inviato: la scadenza (__timeValue__) di __card__ è già passata",
- "act-duenow": "sollecito inviato: la scadenza (__timeValue__) di __card__ è adesso",
- "act-atUserComment": "Sei stato menzionato in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Sei sicuro di voler cancellare questo profilo? Non sarà possibile ripristinarlo.",
- "accounts-allowUserDelete": "Permetti agli utenti di cancellare il loro profilo",
- "hide-minicard-label-text": "Nascondi etichetta minicard",
- "show-desktop-drag-handles": "Mostra maniglie di trascinamento del desktop",
- "assignee": "Assegnatario",
- "cardAssigneesPopup-title": "Assegnatario",
- "addmore-detail": "Aggiungi una descrizione più dettagliata",
- "show-on-card": "Mostra sulla scheda",
- "new": "Nuovo",
- "editUserPopup-title": "Modifica utente",
- "newUserPopup-title": "Nuovo utente",
- "notifications": "Notifiche",
- "view-all": "Mostra Tutto",
- "filter-by-unread": "Filtra per non letto",
- "mark-all-as-read": "Segna come letto",
- "remove-all-read": "Rimuovi tutti i già letti",
- "allow-rename": "Consenti Rinomina",
- "allowRenamePopup-title": "Consenti Rinomina",
- "start-day-of-week": "Imposta l'inizio del giorno della settimana",
- "monday": "Lunedi",
- "tuesday": "Martedi",
- "wednesday": "Mercoledi",
- "thursday": "Giovedi",
- "friday": "Venerdi",
- "saturday": "Sabato",
- "sunday": "Domenica",
- "status": "Stato",
- "swimlane": "Swimlane",
- "owner": "Proprietario",
- "last-modified-at": "Ultima modifica il",
- "last-activity": "Ultima attività",
- "voting": "Votazione",
- "archived": "Archiviato",
- "delete-linked-card-before-this-card": "Non puoi eliminare questa scheda prima di avere eliminato una scheda collegata che ha",
- "delete-linked-cards-before-this-list": "Non puoi eliminare questa lista prima di avere eliminato le schede collegate che puntano su schede in questa lista",
- "hide-checked-items": "Nascondi articoli controllati",
- "task": "Compito",
- "create-task": "Crea compito",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Notifica attività",
+ "act-addAttachment": "aggiunto allegato __attachment__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-deleteAttachment": "eliminato allegato __attachment__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-addSubtask": "aggiunto sottotask __subtask__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-addLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-addedLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-removeLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-removedLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-addChecklist": "aggiunta lista di controllo __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-addChecklistItem": "aggiunto elemento __checklistItem__ alla lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-removeChecklist": "rimossa lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-removeChecklistItem": "rimosso elemento __checklistItem__ dalla lista di controllo __checkList__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-checkedItem": "attivato __checklistItem__ nella lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-uncheckedItem": "disattivato __checklistItem__ della lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-completeChecklist": "completata lista di controllo __checklist__ nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-uncompleteChecklist": "lista di controllo __checklist__ incompleta nella scheda __card__ della lista __list__ in corsia __swimlane__ della bacheca __board__",
+ "act-addComment": "commento sulla scheda __card__: __comment__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-editComment": "commento modificato sulla scheda __card__: __comment__ nella lista __list__ nella swim lane __swimlane__ nella bacheca __board__",
+ "act-deleteComment": "commento eliminato sulla scheda __card__: __comment__ nella lista __list__ nella swim lane __swimlane__ nella bacheca __board__",
+ "act-createBoard": "bacheca __board__ creata",
+ "act-createSwimlane": "creata corsia __swimlane__ alla bacheca __board__",
+ "act-createCard": "scheda __card__ creata nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-createCustomField": "creato campo personalizzato __customField__ nella bacheca __board",
+ "act-deleteCustomField": "campo personalizzato eliminato __customField__ nella bacheca __board",
+ "act-setCustomField": "campo personalizzato modificato __customField__: __customFieldValue__ sulla scheda __card__ sulla lista __list__ sulla swimlane __swimlane__ sulla bacheca __board__",
+ "act-createList": "aggiunta lista __list__ alla bacheca __board__",
+ "act-addBoardMember": "aggiunto membro __member__ alla bacheca __board__",
+ "act-archivedBoard": "Bacheca __board__ archiviata",
+ "act-archivedCard": "Scheda __card__ della lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-archivedList": "Lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-archivedSwimlane": "Corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-importBoard": "Bacheca __board__ importata",
+ "act-importCard": "scheda importata __card__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-importList": "lista __list__ importata nella corsia __swimlane__ della bacheca __board__",
+ "act-joinMember": "aggiunto membro __member__ alla scheda __card__ della list __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-moveCard": "spostata scheda __card__ della bacheca __board__ dalla lista __oldList__ della corsia __oldSwimlane__ alla lista __list__ della corsia __swimlane__",
+ "act-moveCardToOtherBoard": "postata scheda __card__ dalla lista __oldList__ della corsia __oldSwimlane__ della bacheca __oldBoard__ alla lista __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-removeBoardMember": "rimosso membro __member__ dalla bacheca __board__",
+ "act-restoredCard": "scheda ripristinata __card__ della lista __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-unjoinMember": "rimosso membro __member__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Azioni",
+ "activities": "Attività",
+ "activity": "Attività",
+ "activity-added": "ha aggiunto %s a %s",
+ "activity-archived": "%s spostato nell'archivio",
+ "activity-attached": "allegato %s a %s",
+ "activity-created": "creato %s",
+ "activity-customfield-created": "%s creato come campo personalizzato",
+ "activity-excluded": "escluso %s da %s",
+ "activity-imported": "importato %s in %s da %s",
+ "activity-imported-board": "importato %s da %s",
+ "activity-joined": "si è unito a %s",
+ "activity-moved": "spostato %s da %s a %s",
+ "activity-on": "su %s",
+ "activity-removed": "rimosso %s da %s",
+ "activity-sent": "inviato %s a %s",
+ "activity-unjoined": "ha abbandonato %s",
+ "activity-subtask-added": "aggiunto il sottocompito a 1%s",
+ "activity-checked-item": "selezionata %s nella checklist %s di %s",
+ "activity-unchecked-item": "disattivato %s nella checklist %s di %s",
+ "activity-checklist-added": "aggiunta checklist a %s",
+ "activity-checklist-removed": "È stata rimossa una checklist da%s",
+ "activity-checklist-completed": "%s di %s checklists completate",
+ "activity-checklist-uncompleted": "La checklist non è stata completata",
+ "activity-checklist-item-added": "Aggiunto l'elemento checklist a '%s' in %s",
+ "activity-checklist-item-removed": "è stato rimosso un elemento della checklist da '%s' in %s",
+ "add": "Aggiungere",
+ "activity-checked-item-card": "%s è stato selezionato nella checklist %s",
+ "activity-unchecked-item-card": "%s è stato deselezionato nella checklist %s",
+ "activity-checklist-completed-card": "checklist __checklist__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "activity-checklist-uncompleted-card": "La checklist %s non è completa",
+ "activity-editComment": "commento modificato %s",
+ "activity-deleteComment": "commento eliminato %s",
+ "activity-receivedDate": "data della ricevuta modificata da %s di %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Aggiungi Allegato",
+ "add-board": "Aggiungi Bacheca",
+ "add-card": "Aggiungi Scheda",
+ "add-swimlane": "Aggiungi Diagramma Swimlane",
+ "add-subtask": "Aggiungi sotto-compito",
+ "add-checklist": "Aggiungi Checklist",
+ "add-checklist-item": "Aggiungi un elemento alla checklist",
+ "add-cover": "Aggiungi copertina",
+ "add-label": "Aggiungi Etichetta",
+ "add-list": "Aggiungi Lista",
+ "add-members": "Aggiungi membri",
+ "added": "Aggiunto",
+ "addMemberPopup-title": "Membri",
+ "admin": "Amministratore",
+ "admin-desc": "Può vedere e modificare schede, rimuovere membri e modificare le impostazioni della bacheca.",
+ "admin-announcement": "Annunci",
+ "admin-announcement-active": "Attiva annunci di sistema",
+ "admin-announcement-title": "Annunci dall'Amministratore",
+ "all-boards": "Tutte le bacheche",
+ "and-n-other-card": "E __count__ altra scheda",
+ "and-n-other-card_plural": "E __count__ altre schede",
+ "apply": "Applica",
+ "app-is-offline": "Caricamento, attendere prego. Aggiornare la pagina porterà ad una perdita dei dati. Se il caricamento non dovesse funzionare, per favore controlla che il server non sia stato fermato.",
+ "archive": "Sposta nell'Archivio",
+ "archive-all": "Sposta tutto nell'Archivio",
+ "archive-board": "Sposta la bacheca nell'Archivio",
+ "archive-card": "Sposta la scheda nell'Archivio",
+ "archive-list": "Sposta elenco nell'Archivio",
+ "archive-swimlane": "Sposta diagramma nell'Archivio",
+ "archive-selection": "Sposta la selezione nell'archivio",
+ "archiveBoardPopup-title": "Spostare al bacheca nell'archivio?",
+ "archived-items": "Archivio",
+ "archived-boards": "Bacheche nell'archivio",
+ "restore-board": "Ripristina Bacheca",
+ "no-archived-boards": "Nessuna bacheca presente nell'archivio",
+ "archives": "Archivio",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Aggiungi membro",
+ "attached": "allegato",
+ "attachment": "Allegato",
+ "attachment-delete-pop": "L'eliminazione di un allegato è permanente. Non è possibile annullare.",
+ "attachmentDeletePopup-title": "Eliminare l'allegato?",
+ "attachments": "Allegati",
+ "auto-watch": "Segui automaticamente le bacheche quando vengono create.",
+ "avatar-too-big": "L'avatar è troppo grande (520KB max)",
+ "back": "Indietro",
+ "board-change-color": "Cambia colore",
+ "board-nb-stars": "%s stelle",
+ "board-not-found": "Bacheca non trovata",
+ "board-private-info": "Questa bacheca sarà privata.",
+ "board-public-info": "Questa bacheca sarà pubblica.",
+ "boardChangeColorPopup-title": "Cambia sfondo della bacheca",
+ "boardChangeTitlePopup-title": "Rinomina bacheca",
+ "boardChangeVisibilityPopup-title": "Cambia visibilità",
+ "boardChangeWatchPopup-title": "Cambia faccia",
+ "boardMenuPopup-title": "Impostazioni bacheca",
+ "boardChangeViewPopup-title": "Visualizza bacheca",
+ "boards": "Bacheche",
+ "board-view": "Visualizza bacheca",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Diagramma Swimlane",
+ "board-view-collapse": "Collassa",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Liste",
+ "bucket-example": "Per esempio come \"una lista di cose da fare\"",
+ "cancel": "Cancella",
+ "card-archived": "Questa scheda è stata spostata nell'archivio",
+ "board-archived": "Questa bacheca è stata spostata nell'archivio",
+ "card-comments-title": "Questa scheda ha %s commenti.",
+ "card-delete-notice": "L'eliminazione è permanente. Tutte le azioni associate a questa scheda andranno perse.",
+ "card-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di riaprire la scheda. Non potrai tornare indietro.",
+ "card-delete-suggest-archive": "Puoi spostare una scheda nell'archivio per rimuoverla dalla bacheca e mantenere la sua attività",
+ "card-due": "Scadenza",
+ "card-due-on": "Scade",
+ "card-spent": "Tempo trascorso",
+ "card-edit-attachments": "Modifica allegati",
+ "card-edit-custom-fields": "Modifica campo personalizzato",
+ "card-edit-labels": "Modifica etichette",
+ "card-edit-members": "Modifica membri",
+ "card-labels-title": "Cambia le etichette per questa scheda.",
+ "card-members-title": "Aggiungi o rimuovi membri della bacheca da questa scheda",
+ "card-start": "Inizio",
+ "card-start-on": "Inizia",
+ "cardAttachmentsPopup-title": "Allega da",
+ "cardCustomField-datePopup-title": "Cambia data",
+ "cardCustomFieldsPopup-title": "Modifica campo personalizzato",
+ "cardStartVotingPopup-title": "Inizia una votazione",
+ "positiveVoteMembersPopup-title": "Favorevoli",
+ "negativeVoteMembersPopup-title": "Contrari",
+ "card-edit-voting": "Modifica la votazione",
+ "editVoteEndDatePopup-title": "Cambia data di termine voto",
+ "allowNonBoardMembers": "Consenti tutti gli utenti registrati",
+ "vote-question": "Domanda di votazione",
+ "vote-public": "Mostrare chi ha votato cosa",
+ "vote-for-it": "a favore",
+ "vote-against": "contro",
+ "deleteVotePopup-title": "Eliminare il voto?",
+ "vote-delete-pop": "L'eliminazione è permanente. Tutte le azioni associate a questa votazione andranno perse.",
+ "cardDeletePopup-title": "Elimina scheda?",
+ "cardDetailsActionsPopup-title": "Azioni scheda",
+ "cardLabelsPopup-title": "Etichette",
+ "cardMembersPopup-title": "Membri",
+ "cardMorePopup-title": "Altro",
+ "cardTemplatePopup-title": "Crea un template",
+ "cards": "Schede",
+ "cards-count": "Schede",
+ "casSignIn": "Entra con CAS",
+ "cardType-card": "Scheda",
+ "cardType-linkedCard": "Scheda collegata",
+ "cardType-linkedBoard": "Bacheca collegata",
+ "change": "Cambia",
+ "change-avatar": "Cambia avatar",
+ "change-password": "Cambia password",
+ "change-permissions": "Cambia permessi",
+ "change-settings": "Cambia impostazioni",
+ "changeAvatarPopup-title": "Cambia avatar",
+ "changeLanguagePopup-title": "Cambia lingua",
+ "changePasswordPopup-title": "Cambia password",
+ "changePermissionsPopup-title": "Cambia permessi",
+ "changeSettingsPopup-title": "Cambia impostazioni",
+ "subtasks": "Sotto-compiti",
+ "checklists": "Checklist",
+ "click-to-star": "Clicca per stellare questa bacheca",
+ "click-to-unstar": "Clicca per togliere la stella da questa bacheca",
+ "clipboard": "Clipboard o drag & drop",
+ "close": "Chiudi",
+ "close-board": "Chiudi bacheca",
+ "close-board-pop": "Potrai ripristinare la bacheca cliccando sul tasto \"Archivio\" presente nell'intestazione della home.",
+ "color-black": "nero",
+ "color-blue": "blu",
+ "color-crimson": "Rosso cremisi",
+ "color-darkgreen": "Verde scuro",
+ "color-gold": "Dorato",
+ "color-gray": "Grigio",
+ "color-green": "verde",
+ "color-indigo": "Indaco",
+ "color-lime": "lime",
+ "color-magenta": "Magenta",
+ "color-mistyrose": "Mistyrose",
+ "color-navy": "Navy",
+ "color-orange": "arancione",
+ "color-paleturquoise": "Turchese chiaro",
+ "color-peachpuff": "Pesca",
+ "color-pink": "rosa",
+ "color-plum": "Prugna",
+ "color-purple": "viola",
+ "color-red": "rosso",
+ "color-saddlebrown": "Saddlebrown",
+ "color-silver": "Argento",
+ "color-sky": "azzurro",
+ "color-slateblue": "Ardesia",
+ "color-white": "Bianco",
+ "color-yellow": "giallo",
+ "unset-color": "Non impostato",
+ "comment": "Commento",
+ "comment-placeholder": "Scrivi Commento",
+ "comment-only": "Solo commenti",
+ "comment-only-desc": "Puoi commentare solo le schede.",
+ "no-comments": "Non ci sono commenti.",
+ "no-comments-desc": "Impossibile visualizzare commenti o attività.",
+ "worker": "Lavoratore",
+ "worker-desc": "Può solo spostare schede, assegnarsi una scheda e commentare.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Sei sicuro di voler eliminare il sotto-compito?",
+ "confirm-checklist-delete-dialog": "Sei sicuro di voler eliminare la checklist?",
+ "copy-card-link-to-clipboard": "Copia link della scheda sulla clipboard",
+ "linkCardPopup-title": "Collega scheda",
+ "searchElementPopup-title": "Cerca",
+ "copyCardPopup-title": "Copia Scheda",
+ "copyChecklistToManyCardsPopup-title": "Copia template checklist su più schede",
+ "copyChecklistToManyCardsPopup-instructions": "Titolo e la descrizione della scheda di destinazione in questo formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titolo prima scheda\", \"description\":\"Descrizione prima scheda\"}, {\"title\":\"Titolo seconda scheda\",\"description\":\"Descrizione seconda scheda\"},{\"title\":\"Titolo ultima scheda\",\"description\":\"Descrizione ultima scheda\"} ]",
+ "create": "Crea",
+ "createBoardPopup-title": "Crea bacheca",
+ "chooseBoardSourcePopup-title": "Importa bacheca",
+ "createLabelPopup-title": "Crea etichetta",
+ "createCustomField": "Crea campo",
+ "createCustomFieldPopup-title": "Crea campo",
+ "current": "corrente",
+ "custom-field-delete-pop": "Non potrai tornare indietro. Questa azione rimuoverà questo campo personalizzato da tutte le schede ed eliminerà ogni sua traccia.",
+ "custom-field-checkbox": "Casella di scelta",
+ "custom-field-currency": "Valuta",
+ "custom-field-currency-option": "Codice Valuta",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista a discesa",
+ "custom-field-dropdown-none": "(niente)",
+ "custom-field-dropdown-options": "Lista opzioni",
+ "custom-field-dropdown-options-placeholder": "Premi invio per aggiungere altre opzioni",
+ "custom-field-dropdown-unknown": "(sconosciuto)",
+ "custom-field-number": "Numero",
+ "custom-field-text": "Testo",
+ "custom-fields": "Campi personalizzati",
+ "date": "Data",
+ "decline": "Declina",
+ "default-avatar": "Avatar predefinito",
+ "delete": "Elimina",
+ "deleteCustomFieldPopup-title": "Elimina il campo personalizzato?",
+ "deleteLabelPopup-title": "Eliminare etichetta?",
+ "description": "Descrizione",
+ "disambiguateMultiLabelPopup-title": "Disambiguare l'azione Etichetta",
+ "disambiguateMultiMemberPopup-title": "Disambiguare l'azione Membro",
+ "discard": "Scarta",
+ "done": "Fatto",
+ "download": "Download",
+ "edit": "Modifica",
+ "edit-avatar": "Cambia avatar",
+ "edit-profile": "Modifica profilo",
+ "edit-wip-limit": "Modifica limite di work in progress",
+ "soft-wip-limit": "Limite Work in progress soft",
+ "editCardStartDatePopup-title": "Cambia data di inizio",
+ "editCardDueDatePopup-title": "Cambia data di scadenza",
+ "editCustomFieldPopup-title": "Modifica campo",
+ "editCardSpentTimePopup-title": "Cambia tempo trascorso",
+ "editLabelPopup-title": "Cambia etichetta",
+ "editNotificationPopup-title": "Modifica notifiche",
+ "editProfilePopup-title": "Modifica profilo",
+ "email": "Email",
+ "email-enrollAccount-subject": "Creato un account per te su __siteName__",
+ "email-enrollAccount-text": "Ciao __user__,\n\nPer iniziare ad usare il servizio, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-fail": "Invio email fallito",
+ "email-fail-text": "Errore nel tentativo di invio email",
+ "email-invalid": "Email non valida",
+ "email-invite": "Invita via email",
+ "email-invite-subject": "__inviter__ ti ha inviato un invito",
+ "email-invite-text": "Caro __user__,\n\n__inviter__ ti ha invitato ad unirti alla bacheca \"__board__\" per le collaborazioni.\n\nPer favore clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-resetPassword-subject": "Ripristina la tua password su on __siteName__",
+ "email-resetPassword-text": "Ciao __user__,\n\nPer ripristinare la tua password, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-sent": "Email inviata",
+ "email-verifyEmail-subject": "Verifica il tuo indirizzo email su on __siteName__",
+ "email-verifyEmail-text": "Ciao __user__,\n\nPer verificare il tuo account email, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "enable-wip-limit": "Abilita limite di work in progress",
+ "error-board-doesNotExist": "Questa bacheca non esiste",
+ "error-board-notAdmin": "Devi essere admin di questa bacheca per poterlo fare",
+ "error-board-notAMember": "Devi essere un membro di questa bacheca per poterlo fare",
+ "error-json-malformed": "Il tuo testo non è un JSON valido",
+ "error-json-schema": "Il tuo file JSON non contiene le giuste informazioni nel formato corretto",
+ "error-csv-schema": "Il tuo file CSV(Comma Separated Values)/TSV (Tab Separated Values) non contiene le giuste informazioni nel formato corretto ",
+ "error-list-doesNotExist": "Questa lista non esiste",
+ "error-user-doesNotExist": "Questo utente non esiste",
+ "error-user-notAllowSelf": "Non puoi invitare te stesso",
+ "error-user-notCreated": "L'utente non è stato creato",
+ "error-username-taken": "Questo username è già utilizzato",
+ "error-email-taken": "L'email è già stata presa",
+ "export-board": "Esporta bacheca",
+ "export-board-json": "Esporta bacheca in JSON",
+ "export-board-csv": "Esporta bacheca in CSV",
+ "export-board-tsv": "Esporta bacheca in TSV",
+ "export-board-html": "Esporta bacheca in HTML",
+ "exportBoardPopup-title": "Esporta bacheca",
+ "sort": "Ordina",
+ "sort-desc": "Clicca per ordinare la lista",
+ "list-sort-by": "Ordina la lista per:",
+ "list-label-modifiedAt": "Orario ultimo accesso",
+ "list-label-title": "Nome della lista",
+ "list-label-sort": "Il tuo ordine manuale",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtra",
+ "filter-cards": "Filtra schede o liste",
+ "list-filter-label": "Filtra lista per titolo",
+ "filter-clear": "Pulisci filtri",
+ "filter-labels-label": "Filtra secondo l'etichetta",
+ "filter-no-label": "Nessuna etichetta",
+ "filter-member-label": "Filtra secondo il membro",
+ "filter-no-member": "Nessun membro",
+ "filter-assignee-label": "Filtra secondo l'assegnatario",
+ "filter-no-assignee": "Nessun assegnatario",
+ "filter-custom-fields-label": "Filtra secondo campi personalizzati",
+ "filter-no-custom-fields": "Nessun campo personalizzato",
+ "filter-show-archive": "Mostra le liste archiviate",
+ "filter-hide-empty": "Nascondi liste vuote",
+ "filter-on": "Il filtro è attivo",
+ "filter-on-desc": "Stai filtrando le schede su questa bacheca. Clicca qui per modificare il filtro,",
+ "filter-to-selection": "Seleziona",
+ "other-filters-label": "Altri flitri",
+ "advanced-filter-label": "Filtro avanzato",
+ "advanced-filter-description": "Il filtro avanzato permette di scrivere una stringa contenente i seguenti operatori: == != <= >= && || ( ) Uno spazio è usato come separatore tra gli operatori. Si può filtrare per tutti i campi personalizzati, scrivendo i loro nomi e valori. Per esempio: Campo1 == Valore1. Nota: Se i campi o i valori contengono spazi, è necessario incapsularli all'interno di paici singoli. Per esempio: 'Campo 1' == 'Valore 1'. Per i singoli caratteri di controllo (' V) che devono essere ignorati, si può usare \\. Per esempio: C1 == Campo1 == L'\\ho. Si possono anche combinare condizioni multiple. Per esempio: C1 == V1 || C1 ==V2. Di norma tutti gli operatori vengono lettti da sinistra a destra. Si può cambiare l'ordine posizionando delle parentesi. Per esempio: C1 == V1 && ( C2 == V2 || C2 == V3) . Inoltre è possibile cercare nei campi di testo usando le espressioni regolari (n.d.t. regex): F1 ==/Tes.*/i",
+ "fullname": "Nome completo",
+ "header-logo-title": "Torna alla tua bacheca.",
+ "hide-system-messages": "Nascondi i messaggi di sistema",
+ "headerBarCreateBoardPopup-title": "Crea bacheca",
+ "home": "Home",
+ "import": "Importa",
+ "impersonate-user": "Impersona utente",
+ "link": "Collegamento",
+ "import-board": "Importa bacheca",
+ "import-board-c": "Importa bacheca",
+ "import-board-title-trello": "Importa una bacheca da Trello",
+ "import-board-title-wekan": "Importa bacheca dall'esportazione precedente",
+ "import-board-title-csv": "Importa bacheca da CSV/TSV",
+ "from-trello": "Da Trello",
+ "from-wekan": "Dall'esportazione precedente",
+ "from-csv": "Da CSV/TSV",
+ "import-board-instruction-trello": "Nella tua bacheca Trello vai a 'Menu', poi 'Altro', 'Stampa ed esporta', 'Esporta JSON', e copia il testo che compare.",
+ "import-board-instruction-csv": "Incolla in Comma Separated Values (CSV) / Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "Nella tua bacheca vai su \"Menu\", poi \"Esporta la bacheca\", e copia il testo nel file scaricato",
+ "import-board-instruction-about-errors": "Se hai degli errori quando importi una bacheca, qualche volta l'importazione funziona comunque, e la bacheca si trova nella pagina \"Tutte le bacheche\"",
+ "import-json-placeholder": "Incolla un JSON valido qui",
+ "import-csv-placeholder": "Incolla un CSV/TSV valido qui",
+ "import-map-members": "Mappatura dei membri",
+ "import-members-map": "La bacheca che hai importato contiene alcuni membri. Per favore scegli i membri che vuoi importare tra i tuoi utenti",
+ "import-show-user-mapping": "Rivedi la mappatura dei membri",
+ "import-user-select": "Scegli l'utente che vuoi venga utilizzato come questo membro",
+ "importMapMembersAddPopup-title": "Scegli membro",
+ "info": "Versione",
+ "initials": "Iniziali",
+ "invalid-date": "Data non valida",
+ "invalid-time": "Tempo non valido",
+ "invalid-user": "User non valido",
+ "joined": "si è unito a",
+ "just-invited": "Sei stato appena invitato a questa bacheca",
+ "keyboard-shortcuts": "Scorciatoie da tastiera",
+ "label-create": "Crea etichetta",
+ "label-default": "%s etichetta (default)",
+ "label-delete-pop": "Non potrai tornare indietro. Procedendo, rimuoverai questa etichetta da tutte le schede e distruggerai la sua cronologia.",
+ "labels": "Etichette",
+ "language": "Lingua",
+ "last-admin-desc": "Non puoi cambiare i ruoli perché deve esserci almeno un admin.",
+ "leave-board": "Abbandona bacheca",
+ "leave-board-pop": "Sei sicuro di voler abbandonare __boardTitle__? Sarai rimosso da tutte le schede in questa bacheca.",
+ "leaveBoardPopup-title": "Abbandona Bacheca?",
+ "link-card": "Link a questa scheda",
+ "list-archive-cards": "Sposta tutte le schede in questo elenco nell'Archivio",
+ "list-archive-cards-pop": "Questo rimuoverà tutte le schede nell'elenco dalla bacheca. Per vedere le schede nell'archivio e portarle dov'erano nella bacheca, clicca su \"Menu\" > \"Archivio\".",
+ "list-move-cards": "Sposta tutte le schede in questa lista",
+ "list-select-cards": "Selezione tutte le schede in questa lista",
+ "set-color-list": "Imposta un colore",
+ "listActionPopup-title": "Azioni disponibili",
+ "settingsUserPopup-title": "Impostazioni utente",
+ "swimlaneActionPopup-title": "Azioni diagramma Swimlane",
+ "swimlaneAddPopup-title": "Aggiungi un diagramma Swimlane di seguito",
+ "listImportCardPopup-title": "Importa una scheda di Trello",
+ "listImportCardsTsvPopup-title": "Importa CSV/TSV",
+ "listMorePopup-title": "Altro",
+ "link-list": "Link a questa lista",
+ "list-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di recuperare la lista. Non potrai tornare indietro.",
+ "list-delete-suggest-archive": "Puoi spostare un elenco nell'archivio per rimuoverlo dalla bacheca e mantentere la sua attività.",
+ "lists": "Liste",
+ "swimlanes": "Diagramma Swimlane",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Impostazioni membri",
+ "members": "Membri",
+ "menu": "Menu",
+ "move-selection": "Sposta selezione",
+ "moveCardPopup-title": "Sposta scheda",
+ "moveCardToBottom-title": "Sposta in fondo",
+ "moveCardToTop-title": "Sposta in cima",
+ "moveSelectionPopup-title": "Sposta selezione",
+ "multi-selection": "Multi-Selezione",
+ "multi-selection-label": "Selezionare etichetta",
+ "multi-selection-member": "Selezionare membro",
+ "multi-selection-on": "Multi-Selezione attiva",
+ "muted": "Silenziato",
+ "muted-info": "Non sarai mai notificato delle modifiche in questa bacheca",
+ "my-boards": "Le mie bacheche",
+ "name": "Nome",
+ "no-archived-cards": "Non ci sono schede nell'archivio.",
+ "no-archived-lists": "Non ci sono elenchi nell'archivio.",
+ "no-archived-swimlanes": "Non ci sono diagrammi Swimlane nell'archivio.",
+ "no-results": "Nessun risultato",
+ "normal": "Normale",
+ "normal-desc": "Può visionare e modificare le schede. Non può cambiare le impostazioni.",
+ "not-accepted-yet": "Invitato non ancora accettato",
+ "notify-participate": "Ricevi aggiornamenti per qualsiasi scheda a cui partecipi come creatore o membro",
+ "notify-watch": "Ricevi aggiornamenti per tutte le bacheche, liste o schede che stai seguendo",
+ "optional": "opzionale",
+ "or": "o",
+ "page-maybe-private": "Questa pagina potrebbe essere privata. Potresti essere in grado di vederla facendo il log-in.",
+ "page-not-found": "Pagina non trovata.",
+ "password": "Password",
+ "paste-or-dragdrop": "per incollare, oppure trascina & rilascia il file immagine (solo immagini)",
+ "participating": "Partecipando",
+ "preview": "Anteprima",
+ "previewAttachedImagePopup-title": "Anteprima",
+ "previewClipboardImagePopup-title": "Anteprima",
+ "private": "Privata",
+ "private-desc": "Questa bacheca è privata. Solo le persone aggiunte alla bacheca possono vederla e modificarla.",
+ "profile": "Profilo",
+ "public": "Pubblica",
+ "public-desc": "Questa bacheca è pubblica. È visibile a chiunque abbia il link e sarà mostrata dai motori di ricerca come Google. Solo le persone aggiunte alla bacheca possono modificarla.",
+ "quick-access-description": "Stella una bacheca per aggiungere una scorciatoia in questa barra.",
+ "remove-cover": "Rimuovi cover",
+ "remove-from-board": "Rimuovi dalla bacheca",
+ "remove-label": "Rimuovi Etichetta",
+ "listDeletePopup-title": "Eliminare Lista?",
+ "remove-member": "Rimuovi utente",
+ "remove-member-from-card": "Rimuovi dalla scheda",
+ "remove-member-pop": "Rimuovere __name__ (__username__) da __boardTitle__? L'utente sarà rimosso da tutte le schede in questa bacheca. Riceveranno una notifica.",
+ "removeMemberPopup-title": "Rimuovere membro?",
+ "rename": "Rinomina",
+ "rename-board": "Rinomina bacheca",
+ "restore": "Ripristina",
+ "save": "Salva",
+ "search": "Cerca",
+ "rules": "Regole",
+ "search-cards": "Ricerca per titolo, descrizione scheda/lista e campi personalizzati su questa bacheca",
+ "search-example": "Scrivere il testo da ricercare e premere Invio",
+ "select-color": "Seleziona Colore",
+ "select-board": "Seleziona bacheca",
+ "set-wip-limit-value": "Seleziona un limite per il massimo numero di attività in questa lista",
+ "setWipLimitPopup-title": "Imposta limite di work in progress",
+ "shortcut-assign-self": "Aggiungi te stesso alla scheda corrente",
+ "shortcut-autocomplete-emoji": "Autocompletamento emoji",
+ "shortcut-autocomplete-members": "Autocompletamento membri",
+ "shortcut-clear-filters": "Pulisci tutti i filtri",
+ "shortcut-close-dialog": "Chiudi finestra di dialogo",
+ "shortcut-filter-my-cards": "Filtra le mie schede",
+ "shortcut-show-shortcuts": "Apri questa lista di scorciatoie",
+ "shortcut-toggle-filterbar": "Apri/chiudi la barra laterale dei filtri",
+ "shortcut-toggle-searchbar": "Apri/chiudi la barra laterale di ricerca",
+ "shortcut-toggle-sidebar": "Apri/chiudi la barra laterale della bacheca",
+ "show-cards-minimum-count": "Mostra il contatore delle schede se la lista ne contiene più di",
+ "sidebar-open": "Apri Sidebar",
+ "sidebar-close": "Chiudi Sidebar",
+ "signupPopup-title": "Crea un account",
+ "star-board-title": "Clicca per stellare questa bacheca. Sarà mostrata all'inizio della tua lista bacheche.",
+ "starred-boards": "Bacheche stellate",
+ "starred-boards-description": "Le bacheche stellate vengono mostrato all'inizio della tua lista bacheche.",
+ "subscribe": "Sottoscrivi",
+ "team": "Team",
+ "this-board": "questa bacheca",
+ "this-card": "questa scheda",
+ "spent-time-hours": "Tempo trascorso (ore)",
+ "overtime-hours": "Overtime (ore)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Ci sono schede scadute",
+ "has-spenttime-cards": "Ci sono schede con tempo impiegato",
+ "time": "Ora",
+ "title": "Titolo",
+ "tracking": "Monitoraggio",
+ "tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.",
+ "type": "Tipo",
+ "unassign-member": "Rimuovi membro",
+ "unsaved-description": "Hai una descrizione non salvata",
+ "unwatch": "Non seguire",
+ "upload": "Upload",
+ "upload-avatar": "Carica un avatar",
+ "uploaded-avatar": "Avatar caricato",
+ "custom-top-left-corner-logo-image-url": "URL dell'immagine del logo personalizzato nell'angolo superiore sinistro",
+ "custom-top-left-corner-logo-link-url": "URL del link del logo personalizzato nell'angolo superiore sinistro",
+ "custom-top-left-corner-logo-height": "Altezza del logo personalizzato nell'angolo superiore sinistro. Default: 27",
+ "custom-login-logo-image-url": "URL dell'immagine del logo personalizzato per il login",
+ "custom-login-logo-link-url": "Link dell'immagine del logo personalizzato per il login",
+ "text-below-custom-login-logo": "Testo sotto il logo personalizzato per il login",
+ "username": "Username",
+ "view-it": "Vedi",
+ "warn-list-archived": "Attenzione:questa scheda si trova in un elenco dell'archivio",
+ "watch": "Segui",
+ "watching": "Stai seguendo",
+ "watching-info": "Sarai notificato per tutte le modifiche in questa bacheca",
+ "welcome-board": "Bacheca di benvenuto",
+ "welcome-swimlane": "Pietra miliare 1",
+ "welcome-list1": "Basi",
+ "welcome-list2": "Avanzate",
+ "card-templates-swimlane": "Template scheda",
+ "list-templates-swimlane": "Elenca i template",
+ "board-templates-swimlane": "Bacheca dei template",
+ "what-to-do": "Cosa vuoi fare?",
+ "wipLimitErrorPopup-title": "Limite work in progress non valido.",
+ "wipLimitErrorPopup-dialog-pt1": "Il numero di compiti in questa lista è maggiore del limite di work in progress che hai definito in precedenza.",
+ "wipLimitErrorPopup-dialog-pt2": "Per favore, sposta alcuni dei compiti fuori da questa lista, oppure imposta un limite di work in progress più alto.",
+ "admin-panel": "Pannello dell'Amministratore",
+ "settings": "Impostazioni",
+ "people": "Persone",
+ "registration": "Registrazione",
+ "disable-self-registration": "Disabilita Auto-registrazione",
+ "invite": "Invita",
+ "invite-people": "Invita persone",
+ "to-boards": "Alla(e) bacheca",
+ "email-addresses": "Indirizzi email",
+ "smtp-host-description": "L'indirizzo del server SMTP che gestisce le tue email.",
+ "smtp-port-description": "La porta che il tuo server SMTP utilizza per le email in uscita.",
+ "smtp-tls-description": "Abilita supporto TLS per server SMTP",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "Porta SMTP",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "Supporto TLS",
+ "send-from": "Da",
+ "send-smtp-test": "Invia un'email di test a te stesso",
+ "invitation-code": "Codice d'invito",
+ "email-invite-register-subject": "__inviter__ ti ha inviato un invito",
+ "email-invite-register-text": "Gentile __user__,\n\n__inviter__ ti ha invitato a partecipare a questa bacheca kanban per collaborare.\n\nPer favore segui il collegamento qui sotto:\n__url__\n\nIl tuo codice di invito è: __icode__\n\nGrazie.",
+ "email-smtp-test-subject": "E-Mail di prova SMTP",
+ "email-smtp-test-text": "Hai inviato un'email con successo",
+ "error-invitation-code-not-exist": "Il codice d'invito non esiste",
+ "error-notAuthorized": "Non sei autorizzato ad accedere a questa pagina.",
+ "webhook-title": "Nome Webhook",
+ "webhook-token": "Token (facoltativo per l'autenticazione)",
+ "outgoing-webhooks": "Server esterni",
+ "bidirectional-webhooks": "Webhook a due vie",
+ "outgoingWebhooksPopup-title": "Server esterni",
+ "boardCardTitlePopup-title": "Filtro per Titolo Scheda",
+ "disable-webhook": "Disattiva questo Webhook",
+ "global-webhook": "Webhook globali",
+ "new-outgoing-webhook": "Nuovo webhook in uscita",
+ "no-name": "(Sconosciuto)",
+ "Node_version": "Versione di Node",
+ "Meteor_version": "Versione Meteor",
+ "MongoDB_version": "Versione MondoDB",
+ "MongoDB_storage_engine": "Versione motore dati MongoDB",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog abilitato",
+ "OS_Arch": "Architettura del sistema operativo",
+ "OS_Cpus": "Conteggio della CPU del sistema operativo",
+ "OS_Freemem": "Memoria libera del sistema operativo",
+ "OS_Loadavg": "Carico medio del sistema operativo",
+ "OS_Platform": "Piattaforma del sistema operativo",
+ "OS_Release": "Versione di rilascio del sistema operativo",
+ "OS_Totalmem": "Memoria totale del sistema operativo",
+ "OS_Type": "Tipo di sistema operativo",
+ "OS_Uptime": "Tempo di attività del sistema operativo.",
+ "days": "giorni",
+ "hours": "ore",
+ "minutes": "minuti",
+ "seconds": "secondi",
+ "show-field-on-card": "Visualizza questo campo sulla scheda",
+ "automatically-field-on-card": "Crea automaticamente i campi per tutte le schede",
+ "showLabel-field-on-card": "Mostra l'etichetta di campo su minischeda",
+ "yes": "Sì",
+ "no": "No",
+ "accounts": "Profili",
+ "accounts-allowEmailChange": "Permetti modifica dell'email",
+ "accounts-allowUserNameChange": "Consenti la modifica del nome utente",
+ "createdAt": "creato alle",
+ "verified": "Verificato",
+ "active": "Attivo",
+ "card-received": "Ricevuta",
+ "card-received-on": "Ricevuta il",
+ "card-end": "Fine",
+ "card-end-on": "Termina il",
+ "editCardReceivedDatePopup-title": "Cambia data ricezione",
+ "editCardEndDatePopup-title": "Cambia data finale",
+ "setCardColorPopup-title": "Imposta il colore",
+ "setCardActionsColorPopup-title": "Scegli un colore",
+ "setSwimlaneColorPopup-title": "Scegli un colore",
+ "setListColorPopup-title": "Scegli un colore",
+ "assigned-by": "Assegnato da",
+ "requested-by": "Richiesto da",
+ "board-delete-notice": "L'eliminazione è permanente. Tutte le azioni, liste e schede associate a questa bacheca andranno perse.",
+ "delete-board-confirm-popup": "Tutte le liste, schede, etichette e azioni saranno rimosse e non sarai più in grado di recuperare il contenuto della bacheca. L'azione non è annullabile.",
+ "boardDeletePopup-title": "Eliminare la bacheca?",
+ "delete-board": "Elimina bacheca",
+ "default-subtasks-board": "Sottocompiti per la bacheca __board__",
+ "default": "Predefinito",
+ "queue": "Coda",
+ "subtask-settings": "Impostazioni sotto-compiti",
+ "card-settings": "Impostazioni della scheda",
+ "boardSubtaskSettingsPopup-title": "Impostazioni sotto-compiti della bacheca",
+ "boardCardSettingsPopup-title": "Impostazioni della scheda",
+ "deposit-subtasks-board": "Deposita i sotto compiti in questa bacheca",
+ "deposit-subtasks-list": "Lista di destinaizoni per questi sotto-compiti",
+ "show-parent-in-minicard": "Mostra genirotri nelle mini schede:",
+ "prefix-with-full-path": "Prefisso con percorso completo",
+ "prefix-with-parent": "Prefisso con genitore",
+ "subtext-with-full-path": "Sottotesto con percorso completo",
+ "subtext-with-parent": "Sotto-testo con genitore",
+ "change-card-parent": "Cambia la scheda genitore",
+ "parent-card": "Scheda genitore",
+ "source-board": "Bacheca d'origine",
+ "no-parent": "Non mostrare i genitori",
+ "activity-added-label": "L' etichetta '%s' è stata aggiunta a %s",
+ "activity-removed-label": "L'etichetta '%s' è stata rimossa da %s",
+ "activity-delete-attach": "Rimosso un allegato da %s",
+ "activity-added-label-card": "aggiunta etichetta '%s'",
+ "activity-removed-label-card": "L' etichetta '%s' è stata rimossa.",
+ "activity-delete-attach-card": "Cancella un allegato",
+ "activity-set-customfield": "imposta campo personalizzato '%s' a '%s' in %s",
+ "activity-unset-customfield": "campo personalizzato non impostato '%s' in %s",
+ "r-rule": "Ruolo",
+ "r-add-trigger": "Aggiungi trigger",
+ "r-add-action": "Aggiungi azione",
+ "r-board-rules": "Regole della bacheca",
+ "r-add-rule": "Aggiungi regola",
+ "r-view-rule": "Visualizza regola",
+ "r-delete-rule": "Cancella regola",
+ "r-new-rule-name": "Titolo nuova regola",
+ "r-no-rules": "Nessuna regola",
+ "r-trigger": "trigger",
+ "r-action": "Azione",
+ "r-when-a-card": "Quando una scheda",
+ "r-is": "è",
+ "r-is-moved": "viene spostata",
+ "r-added-to": "Aggiunto/a a",
+ "r-removed-from": "Rimosso da",
+ "r-the-board": "La bacheca",
+ "r-list": "lista",
+ "set-filter": "Imposta un filtro",
+ "r-moved-to": "Spostato/a a",
+ "r-moved-from": "Spostato/a da",
+ "r-archived": "Spostato/a nell'archivio",
+ "r-unarchived": "Ripristinato/a dall'archivio",
+ "r-a-card": "una scheda",
+ "r-when-a-label-is": "Quando un'etichetta viene",
+ "r-when-the-label": "Quando l'etichetta viene",
+ "r-list-name": "Nome dell'elenco",
+ "r-when-a-member": "Quando un membro viene",
+ "r-when-the-member": "Quando un membro viene",
+ "r-name": "nome",
+ "r-when-a-attach": "Quando un allegato",
+ "r-when-a-checklist": "Quando una checklist è",
+ "r-when-the-checklist": "Quando la checklist",
+ "r-completed": "Completato/a",
+ "r-made-incomplete": "Rendi incompleto",
+ "r-when-a-item": "Quando un elemento della checklist è",
+ "r-when-the-item": "Quando un elemento della checklist",
+ "r-checked": "Selezionato",
+ "r-unchecked": "Deselezionato",
+ "r-move-card-to": "Sposta scheda a",
+ "r-top-of": "Al di sopra di",
+ "r-bottom-of": "Al di sotto di",
+ "r-its-list": "il suo elenco",
+ "r-archive": "Sposta nell'Archivio",
+ "r-unarchive": "Ripristina dall'archivio",
+ "r-card": "scheda",
+ "r-add": "Aggiungere",
+ "r-remove": "Rimuovi",
+ "r-label": "etichetta",
+ "r-member": "membro",
+ "r-remove-all": "Rimuovi tutti i membri dalla scheda",
+ "r-set-color": "Imposta il colore a",
+ "r-checklist": "checklist",
+ "r-check-all": "Spunta tutti",
+ "r-uncheck-all": "Togli la spunta a tutti",
+ "r-items-check": "Elementi della checklist",
+ "r-check": "Spunta",
+ "r-uncheck": "Togli la spunta",
+ "r-item": "elemento",
+ "r-of-checklist": "della lista di cose da fare",
+ "r-send-email": "Invia un e-mail",
+ "r-to": "a",
+ "r-of": "di",
+ "r-subject": "soggetto",
+ "r-rule-details": "Dettagli della regola",
+ "r-d-move-to-top-gen": "Sposta la scheda in cima alla sua lista",
+ "r-d-move-to-top-spec": "Sposta la scheda in cima alla lista",
+ "r-d-move-to-bottom-gen": "Sposta la scheda in fondo alla sua lista",
+ "r-d-move-to-bottom-spec": "Muovi la scheda in fondo alla lista",
+ "r-d-send-email": "Spedisci email",
+ "r-d-send-email-to": "a",
+ "r-d-send-email-subject": "soggetto",
+ "r-d-send-email-message": "Messaggio",
+ "r-d-archive": "Sposta la scheda nell'archivio",
+ "r-d-unarchive": "Ripristina la scheda dall'archivio",
+ "r-d-add-label": "Aggiungi etichetta",
+ "r-d-remove-label": "Rimuovi Etichetta",
+ "r-create-card": "Crea una nuova scheda",
+ "r-in-list": "in elenco",
+ "r-in-swimlane": "nel diagramma swimlane",
+ "r-d-add-member": "Aggiungi membro",
+ "r-d-remove-member": "Rimuovi membro",
+ "r-d-remove-all-member": "Rimouvi tutti i membri",
+ "r-d-check-all": "Seleziona tutti gli item di una lista",
+ "r-d-uncheck-all": "Deseleziona tutti gli items di una lista",
+ "r-d-check-one": "Seleziona",
+ "r-d-uncheck-one": "Deselezionalo",
+ "r-d-check-of-list": "della lista di cose da fare",
+ "r-d-add-checklist": "Aggiungi lista di cose da fare",
+ "r-d-remove-checklist": "Rimuovi check list",
+ "r-by": "da",
+ "r-add-checklist": "Aggiungi lista di cose da fare",
+ "r-with-items": "con elementi",
+ "r-items-list": "elemento1,elemento2,elemento3",
+ "r-add-swimlane": "Aggiungi un diagramma swimlane",
+ "r-swimlane-name": "Nome diagramma swimlane",
+ "r-board-note": "Nota: Lascia un campo vuoto per abbinare ogni possibile valore",
+ "r-checklist-note": "Nota: Gli elementi della checklist devono essere scritti come valori separati dalla virgola",
+ "r-when-a-card-is-moved": "Quando una scheda viene spostata su un'altra lista",
+ "r-set": "Imposta",
+ "r-update": "Aggiorna",
+ "r-datefield": "campo data",
+ "r-df-start-at": "inizio",
+ "r-df-due-at": "scadenza",
+ "r-df-end-at": "fine",
+ "r-df-received-at": "ricevuta",
+ "r-to-current-datetime": "a data/ora corrente",
+ "r-remove-value-from": "Rimuovi valore da",
+ "ldap": "LDAP",
+ "oauth2": "Oauth2",
+ "cas": "CAS",
+ "authentication-method": "Metodo di Autenticazione",
+ "authentication-type": "Tipo Autenticazione",
+ "custom-product-name": "Nome prodotto personalizzato",
+ "layout": "Layout",
+ "hide-logo": "Nascondi il logo",
+ "add-custom-html-after-body-start": "Aggiungi codice HTML personalizzato dopo inzio",
+ "add-custom-html-before-body-end": "Aggiunti il codice HTML prima di fine",
+ "error-undefined": "Qualcosa è andato storto",
+ "error-ldap-login": "C'è stato un errore mentre provavi ad effettuare il login",
+ "display-authentication-method": "Mostra il metodo di autenticazione",
+ "default-authentication-method": "Metodo di autenticazione predefinito",
+ "duplicate-board": "Duplica bacheca",
+ "org-number": "Il numero di organizzazioni è:",
+ "team-number": "Il numero di teams è:",
+ "people-number": "Il numero di persone è:",
+ "swimlaneDeletePopup-title": "Cancella diagramma swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Cancella tutto",
+ "loading": "Loading, please wait.",
+ "previous_as": "l'ultima volta è stata",
+ "act-a-dueAt": "Scadenza modificata in __timeValue__\nData precedente: __timeOldValue__",
+ "act-a-endAt": "orario finale modificato in __timeValue__ (precedentemente: __timeOldValue__)",
+ "act-a-startAt": "orario iniziale modificato in __timeValue__ (precedentemente: __timeOldValue__)",
+ "act-a-receivedAt": "orario di ricezione modificato in __timeValue__ (precedentemente: __timeOldValue__)",
+ "a-dueAt": "scadenza modificata in",
+ "a-endAt": "orario finale modificato in",
+ "a-startAt": "orario iniziale modificato in",
+ "a-receivedAt": "orario di ricezione modificato in",
+ "almostdue": "la data di scadenza attuale %s si sta avvicinando",
+ "pastdue": "la data di scadenza attuale %s è scaduta",
+ "duenow": "la data di scadenza attuale %s è oggi",
+ "act-newDue": "__list__/__card__ ha un 1° sollecito [__board__]",
+ "act-withDue": "sollecito relativo a __list__/__card__ [__board__]",
+ "act-almostdue": "sollecito inviato: la scadenza (__timeValue__) di __card__ è vicina",
+ "act-pastdue": "sollecito inviato: la scadenza (__timeValue__) di __card__ è già passata",
+ "act-duenow": "sollecito inviato: la scadenza (__timeValue__) di __card__ è adesso",
+ "act-atUserComment": "Sei stato menzionato in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Sei sicuro di voler cancellare questo profilo? Non sarà possibile ripristinarlo.",
+ "accounts-allowUserDelete": "Permetti agli utenti di cancellare il loro profilo",
+ "hide-minicard-label-text": "Nascondi etichetta minicard",
+ "show-desktop-drag-handles": "Mostra maniglie di trascinamento del desktop",
+ "assignee": "Assegnatario",
+ "cardAssigneesPopup-title": "Assegnatario",
+ "addmore-detail": "Aggiungi una descrizione più dettagliata",
+ "show-on-card": "Mostra sulla scheda",
+ "new": "Nuovo",
+ "editUserPopup-title": "Modifica utente",
+ "newUserPopup-title": "Nuovo utente",
+ "notifications": "Notifiche",
+ "view-all": "Mostra Tutto",
+ "filter-by-unread": "Filtra per non letto",
+ "mark-all-as-read": "Segna come letto",
+ "remove-all-read": "Rimuovi tutti i già letti",
+ "allow-rename": "Consenti Rinomina",
+ "allowRenamePopup-title": "Consenti Rinomina",
+ "start-day-of-week": "Imposta l'inizio del giorno della settimana",
+ "monday": "Lunedi",
+ "tuesday": "Martedi",
+ "wednesday": "Mercoledi",
+ "thursday": "Giovedi",
+ "friday": "Venerdi",
+ "saturday": "Sabato",
+ "sunday": "Domenica",
+ "status": "Stato",
+ "swimlane": "Swimlane",
+ "owner": "Proprietario",
+ "last-modified-at": "Ultima modifica il",
+ "last-activity": "Ultima attività",
+ "voting": "Votazione",
+ "archived": "Archiviato",
+ "delete-linked-card-before-this-card": "Non puoi eliminare questa scheda prima di avere eliminato una scheda collegata che ha",
+ "delete-linked-cards-before-this-list": "Non puoi eliminare questa lista prima di avere eliminato le schede collegate che puntano su schede in questa lista",
+ "hide-checked-items": "Nascondi articoli controllati",
+ "task": "Compito",
+ "create-task": "Crea compito",
+ "ok": "OK",
+ "organizations": "Organizzazioni",
+ "teams": "Teams",
+ "displayName": "Nome da visualizzare",
+ "shortName": "Nome Corto",
+ "website": "Sito Web",
+ "person": "Persona"
+}
diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json
index 1ac6127e6..fe0874e99 100644
--- a/i18n/ja.i18n.json
+++ b/i18n/ja.i18n.json
@@ -492,7 +492,7 @@
"shortcut-filter-my-cards": "カードをフィルター",
"shortcut-show-shortcuts": "このショートカットリストを表示する",
"shortcut-toggle-filterbar": "フィルターサイドバーの切り替え",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-searchbar": "検索サイドバーの切り替え",
"shortcut-toggle-sidebar": "ボードサイドバーの切り替え",
"show-cards-minimum-count": "以下より多い場合、リストにカード数を表示",
"sidebar-open": "サイドバーを開く",
@@ -774,6 +774,8 @@
"display-authentication-method": "認証方式を表示",
"default-authentication-method": "デフォルトの認証方式",
"duplicate-board": "ボードの複製",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "メンバー数:",
"swimlaneDeletePopup-title": "スイムレーンを削除しますか?",
"swimlane-delete-pop": "すべての内容がアクティビティから削除されます。この削除は元に戻すことができません。",
@@ -836,5 +838,11 @@
"hide-checked-items": "チェックした項目を隠す",
"task": "Task",
"create-task": "Create Task",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/ka.i18n.json b/i18n/ka.i18n.json
index 6f5453b4d..beea04bc0 100644
--- a/i18n/ka.i18n.json
+++ b/i18n/ka.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "დათანხმება",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__დაფა__] __ბარათი__",
- "actions": "მოქმედებები",
- "activities": "აქტივეობები",
- "activity": "აქტივობები",
- "activity-added": "დამატებულია %s ზე %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "მიბმულია %s %s-დან",
- "activity-created": "შექმნილია %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "იმპორტირებულია%s %s-დან",
- "activity-joined": "შეუერთდა %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": " %s-ზე",
- "activity-removed": "წაიშალა %s %s-დან",
- "activity-sent": "გაიგზავნა %s %s-ში",
- "activity-unjoined": "არ შემოუერთდა %s",
- "activity-subtask-added": "დაამატა ქვესაქმიანობა %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "დაემატა ჩამონათვალი %s-ს",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "დამატებულია ჩამონათვალის ელემენტები '%s' %s-ში",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "დამატება",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "მიბმული ფაილის დამატება",
- "add-board": "დაფის დამატება",
- "add-card": "ბარათის დამატება",
- "add-swimlane": "ბილიკის დამატება",
- "add-subtask": "ქვესაქმიანობის დამატება",
- "add-checklist": "კატალოგის დამატება",
- "add-checklist-item": "დაამატეთ საგანი ჩამონათვალს",
- "add-cover": "გარეკანის დამატება",
- "add-label": "ნიშნის დამატება",
- "add-list": "ჩამონათვალის დამატება",
- "add-members": "წევრების დამატება",
- "added": "-მა დაამატა",
- "addMemberPopup-title": "წევრები",
- "admin": "ადმინი",
- "admin-desc": "შეუძლია ნახოს და შეასწოროს ბარათები, წაშალოს წევრები და შეცვალოს დაფის პარამეტრები. ",
- "admin-announcement": "განცხადება",
- "admin-announcement-active": "აქტიური სისტემა-ფართო განცხადება",
- "admin-announcement-title": "შეტყობინება ადმინისტრატორისთვის",
- "all-boards": "ყველა დაფა",
- "and-n-other-card": "და __count__ სხვა ბარათი",
- "and-n-other-card_plural": "და __count__ სხვა ბარათები",
- "apply": "გამოყენება",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "ბარათის აღდგენა",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "უფლებამოსილი წევრი",
- "attached": "მიბმული",
- "attachment": "მიბმული ფიალი",
- "attachment-delete-pop": "მიბმული ფაილის წაშლა მუდმივია. შეუძლებელია მისი უკან დაბრუნება. ",
- "attachmentDeletePopup-title": "გსურთ მიბმული ფაილის წაშლა? ",
- "attachments": "მიბმული ფაილები",
- "auto-watch": "დაფის ავტომატური ნახვა მას შემდეგ რაც ის შეიქმნება",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "უკან",
- "board-change-color": "ფერის შეცვლა",
- "board-nb-stars": "%s ვარსკვლავი",
- "board-not-found": "დაფა არ მოიძებნა",
- "board-private-info": "ეს დაფა იქნება პირადი.",
- "board-public-info": "ეს დაფა იქნება საჯარო.",
- "boardChangeColorPopup-title": "დაფის ფონის ცვლილება",
- "boardChangeTitlePopup-title": "დაფის სახელის ცვლილება",
- "boardChangeVisibilityPopup-title": "ხილვადობის შეცვლა",
- "boardChangeWatchPopup-title": "საათის შეცვლა",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "დაფის ნახვა",
- "boards": "დაფები",
- "board-view": "დაფის ნახვა",
- "board-view-cal": "კალენდარი",
- "board-view-swimlanes": "ბილიკები",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "ჩამონათვალი",
- "bucket-example": "მაგალითად “Bucket List” ",
- "cancel": "გაუქმება",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "ამ ბარათს ჰქონდა%s კომენტარი.",
- "card-delete-notice": "წაშლის შემთხვევაში ამ ბარათთან ასცირებული ყველა მოქმედება დაიკარგება.",
- "card-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ აღარ შეგეძლებათ ბარათის ხელახლა გახსნა. დაბრუნება შეუძლებელია.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "საბოლოო ვადა ",
- "card-due-on": "საბოლოო ვადა",
- "card-spent": "დახარჯული დრო",
- "card-edit-attachments": "მიბმული ფაილის შესწორება",
- "card-edit-custom-fields": "მომხმარებლის ველის შესწორება",
- "card-edit-labels": "ნიშნის შესწორება",
- "card-edit-members": "მომხმარებლების შესწორება",
- "card-labels-title": "ნიშნის შეცვლა ბარათისთვის.",
- "card-members-title": "დაამატეთ ან წაშალეთ დაფის წევრი ბარათიდან. ",
- "card-start": "დაწყება",
- "card-start-on": "დაიწყება",
- "cardAttachmentsPopup-title": "მიბმა შემდეგი წყაროდან: ",
- "cardCustomField-datePopup-title": "დროის ცვლილება",
- "cardCustomFieldsPopup-title": "მომხმარებლის ველის შესწორება",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "წავშალოთ ბარათი? ",
- "cardDetailsActionsPopup-title": "ბარათის მოქმედებები",
- "cardLabelsPopup-title": "ნიშნები",
- "cardMembersPopup-title": "წევრები",
- "cardMorePopup-title": "მეტი",
- "cardTemplatePopup-title": "Create template",
- "cards": "ბარათები",
- "cards-count": "ბარათები",
- "casSignIn": "შესვლა CAS-ით",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "ცვლილება",
- "change-avatar": "სურათის შეცვლა",
- "change-password": "პაროლის შეცვლა",
- "change-permissions": "პარამეტრების შეცვლა",
- "change-settings": "პარამეტრების შეცვლა",
- "changeAvatarPopup-title": "სურათის შეცვლა",
- "changeLanguagePopup-title": "ენის შეცვლა",
- "changePasswordPopup-title": "პაროლის შეცვლა",
- "changePermissionsPopup-title": "უფლებების შეცვლა",
- "changeSettingsPopup-title": "პარამეტრების შეცვლა",
- "subtasks": "ქვეამოცანა",
- "checklists": "კატალოგი",
- "click-to-star": "დააჭირეთ დაფის ვარსკვლავით მოსანიშნად",
- "click-to-unstar": "დააკლიკეთ დაფიდან ვარსკვლავის მოსახსნელად. ",
- "clipboard": "Clipboard ან drag & drop",
- "close": "დახურვა",
- "close-board": "დაფის დახურვა",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "შავი",
- "color-blue": "ლურჯი",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "მწვანე",
- "color-indigo": "indigo",
- "color-lime": "ღია ყვითელი",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ნარინჯისფერი",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ვარდისფერი",
- "color-plum": "plum",
- "color-purple": "იასამნისფერი",
- "color-red": "წითელი ",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "ცისფერი",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "ყვითელი",
- "unset-color": "Unset",
- "comment": "კომენტარი",
- "comment-placeholder": "დაწერეთ კომენტარი",
- "comment-only": "მხოლოდ კომენტარები",
- "comment-only-desc": "თქვენ შეგიძლიათ კომენტარის გაკეთება მხოლოდ ბარათებზე.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "კომპიუტერი",
- "confirm-subtask-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ ქვესაქმიანობის წაშლა? ",
- "confirm-checklist-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ კატალოგის წაშლა ? ",
- "copy-card-link-to-clipboard": "დააკოპირეთ ბარათის ბმული clipboard-ზე",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "ძებნა",
- "copyCardPopup-title": "ბარათის ასლი",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"სათაური\": \"პირველი ბარათის სათაური\", \"აღწერა\":\"პირველი ბარათის აღწერა\"}, {\"სათაური\":\"მეორე ბარათის სათაური\",\"აღწერა\":\"მეორე ბარათის აღწერა\"},{\"სათაური\":\"ბოლო ბარათის სათაური\",\"აღწერა\":\"ბოლო ბარათის აღწერა\"} ]",
- "create": "შექმნა",
- "createBoardPopup-title": "დაფის შექმნა",
- "chooseBoardSourcePopup-title": "დაფის იმპორტი",
- "createLabelPopup-title": "ნიშნის შექმნა",
- "createCustomField": "ველის შექმნა",
- "createCustomFieldPopup-title": "ველის შექმნა",
- "current": "მიმდინარე",
- "custom-field-delete-pop": "ქმედება გამოიწვევს მომხმარებლის ველის წაშლას ყველა ბარათიდან და გაანადგურებს მის ისტორიას, რის შემდეგაც შეუძლებელი იქნება მისი უკან დაბრუნება. ",
- "custom-field-checkbox": "მოსანიშნი გრაფა",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "თარიღი",
- "custom-field-dropdown": "ჩამოსაშლელი სია",
- "custom-field-dropdown-none": "(ცარიელი)",
- "custom-field-dropdown-options": "პარამეტრების სია",
- "custom-field-dropdown-options-placeholder": "დამატებითი პარამეტრების სანახავად დააჭირეთ enter-ს. ",
- "custom-field-dropdown-unknown": "(უცნობი)",
- "custom-field-number": "რიცხვი",
- "custom-field-text": "ტექსტი",
- "custom-fields": "მომხმარებლის ველი",
- "date": "თარიღი",
- "decline": "უარყოფა",
- "default-avatar": "სტანდარტული ავატარი",
- "delete": "წაშლა",
- "deleteCustomFieldPopup-title": "წავშალოთ მომხმარებლის ველი? ",
- "deleteLabelPopup-title": "ნამდვილად გსურთ ნიშნის წაშლა? ",
- "description": "აღწერა",
- "disambiguateMultiLabelPopup-title": "გაუგებარი ნიშნის მოქმედება",
- "disambiguateMultiMemberPopup-title": "გაუგებარი წევრის მოქმედება",
- "discard": "უარყოფა",
- "done": "დასრულებული",
- "download": "ჩამოტვირთვა",
- "edit": "შესწორება",
- "edit-avatar": "სურათის შეცვლა",
- "edit-profile": "პროფილის შესწორება",
- "edit-wip-limit": " WIP ლიმიტის შესწორება",
- "soft-wip-limit": "მსუბუქი WIP შეზღუდვა ",
- "editCardStartDatePopup-title": "დაწყების დროის შეცვლა",
- "editCardDueDatePopup-title": "შეცვალეთ დედლაინი",
- "editCustomFieldPopup-title": "ველების შესწორება",
- "editCardSpentTimePopup-title": "დახარჯული დროის შეცვლა",
- "editLabelPopup-title": "ნიშნის შეცვლა",
- "editNotificationPopup-title": "შეტყობინებების შესწორება",
- "editProfilePopup-title": "პროფილის შესწორება",
- "email": "ელ.ფოსტა",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "მოგესალმებით __user__,\n\nამ სერვისის გამოსაყენებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
- "email-fail": "ელ.ფოსტის გაგზავნა ვერ მოხერხდა",
- "email-fail-text": "ელ.ფოსტის გაგზავნისას დაფიქსირდა შეცდომა",
- "email-invalid": "არასწორი ელ.ფოსტა",
- "email-invite": "მოწვევა ელ.ფოსტის მეშვეობით",
- "email-invite-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
- "email-invite-text": "ძვირფასო __user__,\n\n__inviter__ გიწვევთ დაფაზე \"__board__\" თანამშრომლობისთვის.\n\nგთხოვთ მიყვეთ ქვემოთ მოცემულ ბმულს:\n\n__url__\n\nმადლობა.",
- "email-resetPassword-subject": "შეცვალეთ თქვენი პაროლი __siteName-ზე__",
- "email-resetPassword-text": "გამარჯობა__user__,\n\nპაროლის შესაცვლელად დააკლიკეთ ქვედა ბმულს .\n\n__url__\n\nმადლობა.",
- "email-sent": "ელ.ფოსტა გაგზავნილია",
- "email-verifyEmail-subject": "შეამოწმეთ ელ.ფოსტის მისამართი __siteName-ზე__",
- "email-verifyEmail-text": "გამარჯობა __user__,\n\nანგარიშის ელ.ფოსტის შესამოწმებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
- "enable-wip-limit": "გავააქტიუროთ WIP ლიმიტი",
- "error-board-doesNotExist": "მსგავსი დაფა არ არსებობს",
- "error-board-notAdmin": "ამის გასაკეთებლად საჭიროა იყოთ დაფის ადმინისტრატორი",
- "error-board-notAMember": "ამის გასაკეთებლად საჭიროა იყოთ დაფის წევრი",
- "error-json-malformed": "შენი ტექსტი არ არის ვალიდური JSON",
- "error-json-schema": "თქვენი JSON მონაცემები არ შეიცავს ზუსტ ინფორმაციას სწორ ფორმატში ",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "ეს ცხრილი არ არსებობს",
- "error-user-doesNotExist": "მსგავსი მომხმარებელი არ არსებობს",
- "error-user-notAllowSelf": "თქვენ არ შეგიძლიათ საკუთარი თავის მოწვევა",
- "error-user-notCreated": "მომხმარებელი არ შეიქმნა",
- "error-username-taken": "არსებობს მსგავსი მომხმარებელი",
- "error-email-taken": "უკვე არსებობს მსგავსი ელ.ფოსტა",
- "export-board": "დაფის ექსპორტი",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "დაფის ექსპორტი",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "ფილტრი",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "ფილტრის გასუფთავება",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "ნიშანი არ გვაქვს",
- "filter-member-label": "Filter by member",
- "filter-no-member": "არ არის წევრები ",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "არა მომხმარებლის ველი",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "ფილტრი ჩართულია",
- "filter-on-desc": "თქვენ ფილტრავთ ბარათებს ამ დაფაზე. დააკლიკეთ აქ ფილტრაციის შესწორებისთვის. ",
- "filter-to-selection": "მონიშნულის გაფილტვრა",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "გაფართოებული ფილტრაცია",
- "advanced-filter-description": "გაფართოებული ფილტრაცია, უფლებას გაძლევთ დაწეროთ მწკრივი რომლებიც შეიცავენ შემდეგ ოპერაციებს : == != <= >= && || ( ) space გამოიყენება როგორც გამმიჯნავი ოპერაციებს შორის. თქვენ შეგიძლიათ გაფილტროთ მომხმარებლის ველი მათი სახელებისა და ღირებულებების მიხედვით. მაგალითად: Field1 == Value1. გაითვალისწინეთ რომ თუ ველი ან ღირებულება შეიცავს space-ს თქვენ დაგჭირდებათ მათი მოთავსება ერთ ციტატაში მაგ: 'Field 1' == 'Value 1'. ერთი კონტროლის სიმბოლოებისთვის (' \\/) გამოტოვება, შეგიძლიათ გამოიყენოთ \\. მაგ: Field1 == I\\'m. აგრეთვე თქვენ შეგიძლიათ შეურიოთ რამოდენიმე კომბინაცია. მაგალითად: F1 == V1 || F1 == V2. როგორც წესი ყველა ოპერაცია ინტერპრეტირებულია მარცხნიდან მარჯვნივ. თქვენ შეგიძლიათ შეცვალოთ რიგითობა ფრჩხილების შეცვლით მაგალითად: F1 == V1 && ( F2 == V2 || F2 == V3 ). აგრეთვე შეგიძლიათ მოძებნოთ ტექსტის ველები რეგექსით F1 == /Tes.*/i",
- "fullname": "სახელი და გვარი",
- "header-logo-title": "დაბრუნდით უკან დაფების გვერდზე.",
- "hide-system-messages": "დამალეთ სისტემური შეტყობინებები",
- "headerBarCreateBoardPopup-title": "დაფის შექმნა",
- "home": "სახლი",
- "import": "იმპორტირება",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": " დაფის იმპორტი",
- "import-board-c": "დაფის იმპორტი",
- "import-board-title-trello": "დაფის იმპორტი Trello-დან",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Trello-დან",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "თქვენს Trello დაფაზე, შედით \"მენიუ\"-ში, შემდეგ დააკლიკეთ \"მეტი\", \"ამოპრინტერება და ექსპორტი\", \"JSON-ის ექსპორტი\" და დააკოპირეთ შედეგი. ",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "მოათავსეთ თქვენი ვალიდური JSON მონაცემები აქ. ",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "რუკის წევრები",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "მომხმარებლის რუკების განხილვა",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "ვერსია",
- "initials": "ინიციალები",
- "invalid-date": "არასწორი თარიღი",
- "invalid-time": "არასწორი დრო",
- "invalid-user": "არასწორი მომხმარებელი",
- "joined": "შემოუერთდა",
- "just-invited": "თქვენ მოწვეული ხართ ამ დაფაზე",
- "keyboard-shortcuts": "კლავიატურის კომბინაციები",
- "label-create": "ნიშნის შექმნა",
- "label-default": "%s ნიშანი (default)",
- "label-delete-pop": "იმ შემთხვევაში თუ წაშლით ნიშანს, ყველა ბარათიდან ისტორია ავტომატურად წაიშლება და შეუძლებელი იქნება მისი უკან დაბრუნება.",
- "labels": "ნიშნები",
- "language": "ენა",
- "last-admin-desc": "თქვენ ვერ შეცვლით როლებს რადგან უნდა არსებობდეს ერთი ადმინი მაინც.",
- "leave-board": "დატოვეთ დაფა",
- "leave-board-pop": "დარწმუნებული ხართ, რომ გინდათ დატოვოთ __boardTitle__? თქვენ წაიშლებით ამ დაფის ყველა ბარათიდან. ",
- "leaveBoardPopup-title": "გსურთ დაფის დატოვება? ",
- "link-card": "დააკავშირეთ ამ ბარათთან",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "გადაიტანე ყველა ბარათი ამ სიაში",
- "list-select-cards": "მონიშნე ყველა ბარათი ამ სიაში",
- "set-color-list": "Set Color",
- "listActionPopup-title": "მოქმედებების სია",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "ბილიკის მოქმედებები",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trello ბარათის იმპორტი",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "მეტი",
- "link-list": "დააკავშირეთ ამ ჩამონათვალთან",
- "list-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ ვეღარ შეძლებთ მის აღდგენას ჩამონათვალში",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "ჩამონათვალი",
- "swimlanes": "ბილიკები",
- "log-out": "გამოსვლა",
- "log-in": "შესვლა",
- "loginPopup-title": "შესვლა",
- "memberMenuPopup-title": "მომხმარებლის პარამეტრები",
- "members": "წევრები",
- "menu": "მენიუ",
- "move-selection": "მონიშნულის მოძრაობა",
- "moveCardPopup-title": "ბარათის გადატანა",
- "moveCardToBottom-title": "ქვევით ჩამოწევა",
- "moveCardToTop-title": "ზევით აწევა",
- "moveSelectionPopup-title": "მონიშნულის მოძრაობა",
- "multi-selection": "რამდენიმეს მონიშვნა",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "რამდენიმეს მონიშვნა ჩართულია",
- "muted": "ხმა გათიშულია",
- "muted-info": "თქვენ აღარ მიიღებთ შეტყობინებას ამ დაფაზე მიმდინარე ცვლილებების შესახებ. ",
- "my-boards": "ჩემი დაფები",
- "name": "სახელი",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "შედეგის გარეშე",
- "normal": "ნორმალური",
- "normal-desc": "შეუძლია ნახოს და შეასწოროს ბარათები. ამ პარამეტრების შეცვლა შეუძლებელია. ",
- "not-accepted-yet": "მოწვევა ჯერ არ დადასტურებულა",
- "notify-participate": "მიიღეთ განახლებები ნებისმიერ ბარათზე, რომელშიც მონაწილეობთ, როგორც შემქმნელი ან წევრი. ",
- "notify-watch": "მიიღეთ განახლებები ყველა დაფაზე, ჩამონათვალზე ან ბარათებზე, რომელსაც თქვენ აკვირდებით",
- "optional": "არჩევითი",
- "or": "ან",
- "page-maybe-private": "ეს გვერდი შესაძლოა იყოს კერძო. თქვენ შეგეძლებათ მისი ნახვა logging in მეშვეობით.",
- "page-not-found": "გვერდი არ მოიძებნა.",
- "password": "პაროლი",
- "paste-or-dragdrop": "ჩასმისთვის, ან drag & drop-ისთვის ჩააგდეთ სურათი აქ (მხოლოდ სურათი)",
- "participating": "მონაწილეობა",
- "preview": "წინასწარ ნახვა",
- "previewAttachedImagePopup-title": "წინასწარ ნახვა",
- "previewClipboardImagePopup-title": "წინასწარ ნახვა",
- "private": "კერძო",
- "private-desc": "ეს არის კერძო დაფა. დაფაზე წვდომის, ნახვის და რედაქტირების უფლება აქვთ მხოლოდ მასზე დამატებულ წევრებს. ",
- "profile": "პროფილი",
- "public": "საჯარო",
- "public-desc": "ეს დაფა არის საჯარო. ის ხილვადია ყველასთვის და შესაძლოა გამოჩნდეს საძიებო სისტემებში. შესწორების უფლება აქვს მხოლოდ მასზე დამატებულ პირებს. ",
- "quick-access-description": "მონიშნეთ დაფა ვარსკვლავით იმისთვის, რომ დაამატოთ სწრაფი ბმული ამ ნაწილში.",
- "remove-cover": "გარეკანის წაშლა",
- "remove-from-board": "დაფიდან წაშლა",
- "remove-label": "ნიშნის წაშლა",
- "listDeletePopup-title": "ნამდვილად გსურთ სიის წაშლა? ",
- "remove-member": "წევრის წაშლა",
- "remove-member-from-card": "ბარათიდან წაშლა",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "ნამდვილად გსურთ წევრის წაშლა? ",
- "rename": "სახელის შეცვლა",
- "rename-board": "დაფის სახელის ცვლილება",
- "restore": "აღდგენა",
- "save": "დამახსოვრება",
- "search": "ძებნა",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "ფერის მონიშვნა",
- "select-board": "Select Board",
- "set-wip-limit-value": "დააყენეთ შეზღუდვა დავალებების მაქსიმალურ რაოდენობაზე ",
- "setWipLimitPopup-title": "დააყენეთ WIP ლიმიტი",
- "shortcut-assign-self": "მონიშნეთ საკუთარი თავი აღნიშნულ ბარათზე",
- "shortcut-autocomplete-emoji": "emoji-ის ავტომატური შევსება",
- "shortcut-autocomplete-members": "მომხმარებლების ავტომატური შევსება",
- "shortcut-clear-filters": "ყველა ფილტრის გასუფთავება",
- "shortcut-close-dialog": "დიალოგის დახურვა",
- "shortcut-filter-my-cards": "ჩემი ბარათების გაფილტვრა",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "ფილტრაციის გვერდითა ღილაკი",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "გვერდით მენიუს ჩართვა/გამორთვა",
- "show-cards-minimum-count": "აჩვენეთ ბარათების დათვლილი რაოდენობა თუ ჩამონათვალი შეიცავს უფრო მეტს ვიდრე ",
- "sidebar-open": "გახსენით მცირე სტატია",
- "sidebar-close": "დახურეთ მცირე სტატია",
- "signupPopup-title": "ანგარიშის შექმნა",
- "star-board-title": "დააკლიკეთ დაფის ვარსკვლავით მონიშვნისთვის. ეს ქმედება დაგეხმარებათ გამოაჩინოთ დაფა ჩამონათვალში ზედა პოზიციებზე. ",
- "starred-boards": "ვარსკვლავიანი დაფები",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "გამოწერა",
- "team": "ჯგუფი",
- "this-board": "ეს დაფა",
- "this-card": "ეს ბარათი",
- "spent-time-hours": "დახარჯული დრო (საათები)",
- "overtime-hours": "ზედმეტი დრო (საათები) ",
- "overtime": "ზედმეტი დრო",
- "has-overtime-cards": "აქვს ვადაგადაცდილებული ბარათები",
- "has-spenttime-cards": "აქვს გახარჯული დროის ბარათები",
- "time": "დრო",
- "title": "სათაური",
- "tracking": "მონიტორინგი",
- "tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ",
- "type": "ტიპი",
- "unassign-member": "არაუფლებამოსილი წევრი",
- "unsaved-description": "თქვან გაქვთ დაუმახსოვრებელი აღწერა. ",
- "unwatch": "ნახვის გამორთვა",
- "upload": "ატვირთვა",
- "upload-avatar": "სურათის ატვირთვა",
- "uploaded-avatar": "სურათი ატვირთულია",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "მომხმარებლის სახელი",
- "view-it": "ნახვა",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "ნახვა",
- "watching": "ნახვის პროცესი",
- "watching-info": "თქვენ მოგივათ შეტყობინება ამ დაფაზე არსებული ნებისმიერი ცვლილების შესახებ. ",
- "welcome-board": "მისასალმებელი დაფა",
- "welcome-swimlane": "ეტაპი 1 ",
- "welcome-list1": "ბაზისური ",
- "welcome-list2": "დაწინაურებული",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "რისი გაკეთება გსურთ? ",
- "wipLimitErrorPopup-title": "არასწორი WIP ლიმიტი",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "ადმინის პანელი",
- "settings": "პარამეტრები",
- "people": "ხალხი",
- "registration": "რეგისტრაცია",
- "disable-self-registration": "თვით რეგისტრაციის გამორთვა",
- "invite": "მოწვევა",
- "invite-people": "ხალხის მოწვევა",
- "to-boards": "დაფა(ებ)ზე",
- "email-addresses": "ელ.ფოსტის მისამართები",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "ჩართეთ TLS მხარდაჭერა SMTP სერვერისთვის",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "მომხმარებლის სახელი",
- "smtp-password": "პაროლი",
- "smtp-tls": "TLS მხარდაჭერა",
- "send-from": "დან",
- "send-smtp-test": "გაუგზავნეთ სატესტო ელ.ფოსტა საკუთარ თავს",
- "invitation-code": "მოწვევის კოდი",
- "email-invite-register-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "თქვენ წარმატებით გააგზავნეთ ელ.ფოსტა.",
- "error-invitation-code-not-exist": "მსგავსი მოსაწვევი კოდი არ არსებობს",
- "error-notAuthorized": "თქვენ არ გაქვთ ამ გვერდის ნახვის უფლება",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "გამავალი Webhook",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "გამავალი Webhook",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(უცნობი)",
- "Node_version": "Node ვერსია",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS თავისუფალი მეხსიერება",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS პლატფორმა",
- "OS_Release": "OS რელიზი",
- "OS_Totalmem": "OS მთლიანი მეხსიერება",
- "OS_Type": "OS ტიპი",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "საათები",
- "minutes": "წუთები",
- "seconds": "წამები",
- "show-field-on-card": "აჩვენეთ ეს ველი ბარათზე",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "დიახ",
- "no": "არა",
- "accounts": "ანგარიშები",
- "accounts-allowEmailChange": "ელ.ფოსტის ცვლილების უფლების დაშვება",
- "accounts-allowUserNameChange": "მომხმარებლის სახელის ცვლილების უფლების დაშვება ",
- "createdAt": "შექმნილია",
- "verified": "შემოწმებული",
- "active": "აქტიური",
- "card-received": "მიღებული",
- "card-received-on": "მიღებულია",
- "card-end": "დასასრული",
- "card-end-on": "დასრულდება : ",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "შეცვალეთ საბოლოო თარიღი",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "უფლებამოსილების გამცემი ",
- "requested-by": "მომთხოვნი",
- "board-delete-notice": "წაშლის შემთხვევაში თქვენ დაკარგავთ ამ დაფასთან ასოცირებულ ყველა მონაცემს მათ შორის : ჩამონათვალს, ბარათებს და მოქმედებებს. ",
- "delete-board-confirm-popup": "ყველა ჩამონათვალი, ბარათი, ნიშანი და აქტივობა წაიშლება და თქვენ ვეღარ შეძლებთ მის აღდგენას. ",
- "boardDeletePopup-title": "წავშალოთ დაფა? ",
- "delete-board": "დაფის წაშლა",
- "default-subtasks-board": "ქვესაქმიანობა __board__ დაფისთვის",
- "default": "Default",
- "queue": "რიგი",
- "subtask-settings": "ქვესაქმიანობების პარამეტრები",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "ძირითადი დაფა",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "დამატება",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "დათანხმება",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__დაფა__] __ბარათი__",
+ "actions": "მოქმედებები",
+ "activities": "აქტივეობები",
+ "activity": "აქტივობები",
+ "activity-added": "დამატებულია %s ზე %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "მიბმულია %s %s-დან",
+ "activity-created": "შექმნილია %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "იმპორტირებულია%s %s-დან",
+ "activity-joined": "შეუერთდა %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": " %s-ზე",
+ "activity-removed": "წაიშალა %s %s-დან",
+ "activity-sent": "გაიგზავნა %s %s-ში",
+ "activity-unjoined": "არ შემოუერთდა %s",
+ "activity-subtask-added": "დაამატა ქვესაქმიანობა %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "დაემატა ჩამონათვალი %s-ს",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "დამატებულია ჩამონათვალის ელემენტები '%s' %s-ში",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "დამატება",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "მიბმული ფაილის დამატება",
+ "add-board": "დაფის დამატება",
+ "add-card": "ბარათის დამატება",
+ "add-swimlane": "ბილიკის დამატება",
+ "add-subtask": "ქვესაქმიანობის დამატება",
+ "add-checklist": "კატალოგის დამატება",
+ "add-checklist-item": "დაამატეთ საგანი ჩამონათვალს",
+ "add-cover": "გარეკანის დამატება",
+ "add-label": "ნიშნის დამატება",
+ "add-list": "ჩამონათვალის დამატება",
+ "add-members": "წევრების დამატება",
+ "added": "-მა დაამატა",
+ "addMemberPopup-title": "წევრები",
+ "admin": "ადმინი",
+ "admin-desc": "შეუძლია ნახოს და შეასწოროს ბარათები, წაშალოს წევრები და შეცვალოს დაფის პარამეტრები. ",
+ "admin-announcement": "განცხადება",
+ "admin-announcement-active": "აქტიური სისტემა-ფართო განცხადება",
+ "admin-announcement-title": "შეტყობინება ადმინისტრატორისთვის",
+ "all-boards": "ყველა დაფა",
+ "and-n-other-card": "და __count__ სხვა ბარათი",
+ "and-n-other-card_plural": "და __count__ სხვა ბარათები",
+ "apply": "გამოყენება",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "ბარათის აღდგენა",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "უფლებამოსილი წევრი",
+ "attached": "მიბმული",
+ "attachment": "მიბმული ფიალი",
+ "attachment-delete-pop": "მიბმული ფაილის წაშლა მუდმივია. შეუძლებელია მისი უკან დაბრუნება. ",
+ "attachmentDeletePopup-title": "გსურთ მიბმული ფაილის წაშლა? ",
+ "attachments": "მიბმული ფაილები",
+ "auto-watch": "დაფის ავტომატური ნახვა მას შემდეგ რაც ის შეიქმნება",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "უკან",
+ "board-change-color": "ფერის შეცვლა",
+ "board-nb-stars": "%s ვარსკვლავი",
+ "board-not-found": "დაფა არ მოიძებნა",
+ "board-private-info": "ეს დაფა იქნება პირადი.",
+ "board-public-info": "ეს დაფა იქნება საჯარო.",
+ "boardChangeColorPopup-title": "დაფის ფონის ცვლილება",
+ "boardChangeTitlePopup-title": "დაფის სახელის ცვლილება",
+ "boardChangeVisibilityPopup-title": "ხილვადობის შეცვლა",
+ "boardChangeWatchPopup-title": "საათის შეცვლა",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "დაფის ნახვა",
+ "boards": "დაფები",
+ "board-view": "დაფის ნახვა",
+ "board-view-cal": "კალენდარი",
+ "board-view-swimlanes": "ბილიკები",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "ჩამონათვალი",
+ "bucket-example": "მაგალითად “Bucket List” ",
+ "cancel": "გაუქმება",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "ამ ბარათს ჰქონდა%s კომენტარი.",
+ "card-delete-notice": "წაშლის შემთხვევაში ამ ბარათთან ასცირებული ყველა მოქმედება დაიკარგება.",
+ "card-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ აღარ შეგეძლებათ ბარათის ხელახლა გახსნა. დაბრუნება შეუძლებელია.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "საბოლოო ვადა ",
+ "card-due-on": "საბოლოო ვადა",
+ "card-spent": "დახარჯული დრო",
+ "card-edit-attachments": "მიბმული ფაილის შესწორება",
+ "card-edit-custom-fields": "მომხმარებლის ველის შესწორება",
+ "card-edit-labels": "ნიშნის შესწორება",
+ "card-edit-members": "მომხმარებლების შესწორება",
+ "card-labels-title": "ნიშნის შეცვლა ბარათისთვის.",
+ "card-members-title": "დაამატეთ ან წაშალეთ დაფის წევრი ბარათიდან. ",
+ "card-start": "დაწყება",
+ "card-start-on": "დაიწყება",
+ "cardAttachmentsPopup-title": "მიბმა შემდეგი წყაროდან: ",
+ "cardCustomField-datePopup-title": "დროის ცვლილება",
+ "cardCustomFieldsPopup-title": "მომხმარებლის ველის შესწორება",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "წავშალოთ ბარათი? ",
+ "cardDetailsActionsPopup-title": "ბარათის მოქმედებები",
+ "cardLabelsPopup-title": "ნიშნები",
+ "cardMembersPopup-title": "წევრები",
+ "cardMorePopup-title": "მეტი",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "ბარათები",
+ "cards-count": "ბარათები",
+ "casSignIn": "შესვლა CAS-ით",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "ცვლილება",
+ "change-avatar": "სურათის შეცვლა",
+ "change-password": "პაროლის შეცვლა",
+ "change-permissions": "პარამეტრების შეცვლა",
+ "change-settings": "პარამეტრების შეცვლა",
+ "changeAvatarPopup-title": "სურათის შეცვლა",
+ "changeLanguagePopup-title": "ენის შეცვლა",
+ "changePasswordPopup-title": "პაროლის შეცვლა",
+ "changePermissionsPopup-title": "უფლებების შეცვლა",
+ "changeSettingsPopup-title": "პარამეტრების შეცვლა",
+ "subtasks": "ქვეამოცანა",
+ "checklists": "კატალოგი",
+ "click-to-star": "დააჭირეთ დაფის ვარსკვლავით მოსანიშნად",
+ "click-to-unstar": "დააკლიკეთ დაფიდან ვარსკვლავის მოსახსნელად. ",
+ "clipboard": "Clipboard ან drag & drop",
+ "close": "დახურვა",
+ "close-board": "დაფის დახურვა",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "შავი",
+ "color-blue": "ლურჯი",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "მწვანე",
+ "color-indigo": "indigo",
+ "color-lime": "ღია ყვითელი",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ნარინჯისფერი",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ვარდისფერი",
+ "color-plum": "plum",
+ "color-purple": "იასამნისფერი",
+ "color-red": "წითელი ",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "ცისფერი",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "ყვითელი",
+ "unset-color": "Unset",
+ "comment": "კომენტარი",
+ "comment-placeholder": "დაწერეთ კომენტარი",
+ "comment-only": "მხოლოდ კომენტარები",
+ "comment-only-desc": "თქვენ შეგიძლიათ კომენტარის გაკეთება მხოლოდ ბარათებზე.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "კომპიუტერი",
+ "confirm-subtask-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ ქვესაქმიანობის წაშლა? ",
+ "confirm-checklist-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ კატალოგის წაშლა ? ",
+ "copy-card-link-to-clipboard": "დააკოპირეთ ბარათის ბმული clipboard-ზე",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "ძებნა",
+ "copyCardPopup-title": "ბარათის ასლი",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"სათაური\": \"პირველი ბარათის სათაური\", \"აღწერა\":\"პირველი ბარათის აღწერა\"}, {\"სათაური\":\"მეორე ბარათის სათაური\",\"აღწერა\":\"მეორე ბარათის აღწერა\"},{\"სათაური\":\"ბოლო ბარათის სათაური\",\"აღწერა\":\"ბოლო ბარათის აღწერა\"} ]",
+ "create": "შექმნა",
+ "createBoardPopup-title": "დაფის შექმნა",
+ "chooseBoardSourcePopup-title": "დაფის იმპორტი",
+ "createLabelPopup-title": "ნიშნის შექმნა",
+ "createCustomField": "ველის შექმნა",
+ "createCustomFieldPopup-title": "ველის შექმნა",
+ "current": "მიმდინარე",
+ "custom-field-delete-pop": "ქმედება გამოიწვევს მომხმარებლის ველის წაშლას ყველა ბარათიდან და გაანადგურებს მის ისტორიას, რის შემდეგაც შეუძლებელი იქნება მისი უკან დაბრუნება. ",
+ "custom-field-checkbox": "მოსანიშნი გრაფა",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "თარიღი",
+ "custom-field-dropdown": "ჩამოსაშლელი სია",
+ "custom-field-dropdown-none": "(ცარიელი)",
+ "custom-field-dropdown-options": "პარამეტრების სია",
+ "custom-field-dropdown-options-placeholder": "დამატებითი პარამეტრების სანახავად დააჭირეთ enter-ს. ",
+ "custom-field-dropdown-unknown": "(უცნობი)",
+ "custom-field-number": "რიცხვი",
+ "custom-field-text": "ტექსტი",
+ "custom-fields": "მომხმარებლის ველი",
+ "date": "თარიღი",
+ "decline": "უარყოფა",
+ "default-avatar": "სტანდარტული ავატარი",
+ "delete": "წაშლა",
+ "deleteCustomFieldPopup-title": "წავშალოთ მომხმარებლის ველი? ",
+ "deleteLabelPopup-title": "ნამდვილად გსურთ ნიშნის წაშლა? ",
+ "description": "აღწერა",
+ "disambiguateMultiLabelPopup-title": "გაუგებარი ნიშნის მოქმედება",
+ "disambiguateMultiMemberPopup-title": "გაუგებარი წევრის მოქმედება",
+ "discard": "უარყოფა",
+ "done": "დასრულებული",
+ "download": "ჩამოტვირთვა",
+ "edit": "შესწორება",
+ "edit-avatar": "სურათის შეცვლა",
+ "edit-profile": "პროფილის შესწორება",
+ "edit-wip-limit": " WIP ლიმიტის შესწორება",
+ "soft-wip-limit": "მსუბუქი WIP შეზღუდვა ",
+ "editCardStartDatePopup-title": "დაწყების დროის შეცვლა",
+ "editCardDueDatePopup-title": "შეცვალეთ დედლაინი",
+ "editCustomFieldPopup-title": "ველების შესწორება",
+ "editCardSpentTimePopup-title": "დახარჯული დროის შეცვლა",
+ "editLabelPopup-title": "ნიშნის შეცვლა",
+ "editNotificationPopup-title": "შეტყობინებების შესწორება",
+ "editProfilePopup-title": "პროფილის შესწორება",
+ "email": "ელ.ფოსტა",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "მოგესალმებით __user__,\n\nამ სერვისის გამოსაყენებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
+ "email-fail": "ელ.ფოსტის გაგზავნა ვერ მოხერხდა",
+ "email-fail-text": "ელ.ფოსტის გაგზავნისას დაფიქსირდა შეცდომა",
+ "email-invalid": "არასწორი ელ.ფოსტა",
+ "email-invite": "მოწვევა ელ.ფოსტის მეშვეობით",
+ "email-invite-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
+ "email-invite-text": "ძვირფასო __user__,\n\n__inviter__ გიწვევთ დაფაზე \"__board__\" თანამშრომლობისთვის.\n\nგთხოვთ მიყვეთ ქვემოთ მოცემულ ბმულს:\n\n__url__\n\nმადლობა.",
+ "email-resetPassword-subject": "შეცვალეთ თქვენი პაროლი __siteName-ზე__",
+ "email-resetPassword-text": "გამარჯობა__user__,\n\nპაროლის შესაცვლელად დააკლიკეთ ქვედა ბმულს .\n\n__url__\n\nმადლობა.",
+ "email-sent": "ელ.ფოსტა გაგზავნილია",
+ "email-verifyEmail-subject": "შეამოწმეთ ელ.ფოსტის მისამართი __siteName-ზე__",
+ "email-verifyEmail-text": "გამარჯობა __user__,\n\nანგარიშის ელ.ფოსტის შესამოწმებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
+ "enable-wip-limit": "გავააქტიუროთ WIP ლიმიტი",
+ "error-board-doesNotExist": "მსგავსი დაფა არ არსებობს",
+ "error-board-notAdmin": "ამის გასაკეთებლად საჭიროა იყოთ დაფის ადმინისტრატორი",
+ "error-board-notAMember": "ამის გასაკეთებლად საჭიროა იყოთ დაფის წევრი",
+ "error-json-malformed": "შენი ტექსტი არ არის ვალიდური JSON",
+ "error-json-schema": "თქვენი JSON მონაცემები არ შეიცავს ზუსტ ინფორმაციას სწორ ფორმატში ",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "ეს ცხრილი არ არსებობს",
+ "error-user-doesNotExist": "მსგავსი მომხმარებელი არ არსებობს",
+ "error-user-notAllowSelf": "თქვენ არ შეგიძლიათ საკუთარი თავის მოწვევა",
+ "error-user-notCreated": "მომხმარებელი არ შეიქმნა",
+ "error-username-taken": "არსებობს მსგავსი მომხმარებელი",
+ "error-email-taken": "უკვე არსებობს მსგავსი ელ.ფოსტა",
+ "export-board": "დაფის ექსპორტი",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "დაფის ექსპორტი",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "ფილტრი",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "ფილტრის გასუფთავება",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "ნიშანი არ გვაქვს",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "არ არის წევრები ",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "არა მომხმარებლის ველი",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "ფილტრი ჩართულია",
+ "filter-on-desc": "თქვენ ფილტრავთ ბარათებს ამ დაფაზე. დააკლიკეთ აქ ფილტრაციის შესწორებისთვის. ",
+ "filter-to-selection": "მონიშნულის გაფილტვრა",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "გაფართოებული ფილტრაცია",
+ "advanced-filter-description": "გაფართოებული ფილტრაცია, უფლებას გაძლევთ დაწეროთ მწკრივი რომლებიც შეიცავენ შემდეგ ოპერაციებს : == != <= >= && || ( ) space გამოიყენება როგორც გამმიჯნავი ოპერაციებს შორის. თქვენ შეგიძლიათ გაფილტროთ მომხმარებლის ველი მათი სახელებისა და ღირებულებების მიხედვით. მაგალითად: Field1 == Value1. გაითვალისწინეთ რომ თუ ველი ან ღირებულება შეიცავს space-ს თქვენ დაგჭირდებათ მათი მოთავსება ერთ ციტატაში მაგ: 'Field 1' == 'Value 1'. ერთი კონტროლის სიმბოლოებისთვის (' \\/) გამოტოვება, შეგიძლიათ გამოიყენოთ \\. მაგ: Field1 == I\\'m. აგრეთვე თქვენ შეგიძლიათ შეურიოთ რამოდენიმე კომბინაცია. მაგალითად: F1 == V1 || F1 == V2. როგორც წესი ყველა ოპერაცია ინტერპრეტირებულია მარცხნიდან მარჯვნივ. თქვენ შეგიძლიათ შეცვალოთ რიგითობა ფრჩხილების შეცვლით მაგალითად: F1 == V1 && ( F2 == V2 || F2 == V3 ). აგრეთვე შეგიძლიათ მოძებნოთ ტექსტის ველები რეგექსით F1 == /Tes.*/i",
+ "fullname": "სახელი და გვარი",
+ "header-logo-title": "დაბრუნდით უკან დაფების გვერდზე.",
+ "hide-system-messages": "დამალეთ სისტემური შეტყობინებები",
+ "headerBarCreateBoardPopup-title": "დაფის შექმნა",
+ "home": "სახლი",
+ "import": "იმპორტირება",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": " დაფის იმპორტი",
+ "import-board-c": "დაფის იმპორტი",
+ "import-board-title-trello": "დაფის იმპორტი Trello-დან",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Trello-დან",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "თქვენს Trello დაფაზე, შედით \"მენიუ\"-ში, შემდეგ დააკლიკეთ \"მეტი\", \"ამოპრინტერება და ექსპორტი\", \"JSON-ის ექსპორტი\" და დააკოპირეთ შედეგი. ",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "მოათავსეთ თქვენი ვალიდური JSON მონაცემები აქ. ",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "რუკის წევრები",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "მომხმარებლის რუკების განხილვა",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "ვერსია",
+ "initials": "ინიციალები",
+ "invalid-date": "არასწორი თარიღი",
+ "invalid-time": "არასწორი დრო",
+ "invalid-user": "არასწორი მომხმარებელი",
+ "joined": "შემოუერთდა",
+ "just-invited": "თქვენ მოწვეული ხართ ამ დაფაზე",
+ "keyboard-shortcuts": "კლავიატურის კომბინაციები",
+ "label-create": "ნიშნის შექმნა",
+ "label-default": "%s ნიშანი (default)",
+ "label-delete-pop": "იმ შემთხვევაში თუ წაშლით ნიშანს, ყველა ბარათიდან ისტორია ავტომატურად წაიშლება და შეუძლებელი იქნება მისი უკან დაბრუნება.",
+ "labels": "ნიშნები",
+ "language": "ენა",
+ "last-admin-desc": "თქვენ ვერ შეცვლით როლებს რადგან უნდა არსებობდეს ერთი ადმინი მაინც.",
+ "leave-board": "დატოვეთ დაფა",
+ "leave-board-pop": "დარწმუნებული ხართ, რომ გინდათ დატოვოთ __boardTitle__? თქვენ წაიშლებით ამ დაფის ყველა ბარათიდან. ",
+ "leaveBoardPopup-title": "გსურთ დაფის დატოვება? ",
+ "link-card": "დააკავშირეთ ამ ბარათთან",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "გადაიტანე ყველა ბარათი ამ სიაში",
+ "list-select-cards": "მონიშნე ყველა ბარათი ამ სიაში",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "მოქმედებების სია",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "ბილიკის მოქმედებები",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trello ბარათის იმპორტი",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "მეტი",
+ "link-list": "დააკავშირეთ ამ ჩამონათვალთან",
+ "list-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ ვეღარ შეძლებთ მის აღდგენას ჩამონათვალში",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "ჩამონათვალი",
+ "swimlanes": "ბილიკები",
+ "log-out": "გამოსვლა",
+ "log-in": "შესვლა",
+ "loginPopup-title": "შესვლა",
+ "memberMenuPopup-title": "მომხმარებლის პარამეტრები",
+ "members": "წევრები",
+ "menu": "მენიუ",
+ "move-selection": "მონიშნულის მოძრაობა",
+ "moveCardPopup-title": "ბარათის გადატანა",
+ "moveCardToBottom-title": "ქვევით ჩამოწევა",
+ "moveCardToTop-title": "ზევით აწევა",
+ "moveSelectionPopup-title": "მონიშნულის მოძრაობა",
+ "multi-selection": "რამდენიმეს მონიშვნა",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "რამდენიმეს მონიშვნა ჩართულია",
+ "muted": "ხმა გათიშულია",
+ "muted-info": "თქვენ აღარ მიიღებთ შეტყობინებას ამ დაფაზე მიმდინარე ცვლილებების შესახებ. ",
+ "my-boards": "ჩემი დაფები",
+ "name": "სახელი",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "შედეგის გარეშე",
+ "normal": "ნორმალური",
+ "normal-desc": "შეუძლია ნახოს და შეასწოროს ბარათები. ამ პარამეტრების შეცვლა შეუძლებელია. ",
+ "not-accepted-yet": "მოწვევა ჯერ არ დადასტურებულა",
+ "notify-participate": "მიიღეთ განახლებები ნებისმიერ ბარათზე, რომელშიც მონაწილეობთ, როგორც შემქმნელი ან წევრი. ",
+ "notify-watch": "მიიღეთ განახლებები ყველა დაფაზე, ჩამონათვალზე ან ბარათებზე, რომელსაც თქვენ აკვირდებით",
+ "optional": "არჩევითი",
+ "or": "ან",
+ "page-maybe-private": "ეს გვერდი შესაძლოა იყოს კერძო. თქვენ შეგეძლებათ მისი ნახვა logging in მეშვეობით.",
+ "page-not-found": "გვერდი არ მოიძებნა.",
+ "password": "პაროლი",
+ "paste-or-dragdrop": "ჩასმისთვის, ან drag & drop-ისთვის ჩააგდეთ სურათი აქ (მხოლოდ სურათი)",
+ "participating": "მონაწილეობა",
+ "preview": "წინასწარ ნახვა",
+ "previewAttachedImagePopup-title": "წინასწარ ნახვა",
+ "previewClipboardImagePopup-title": "წინასწარ ნახვა",
+ "private": "კერძო",
+ "private-desc": "ეს არის კერძო დაფა. დაფაზე წვდომის, ნახვის და რედაქტირების უფლება აქვთ მხოლოდ მასზე დამატებულ წევრებს. ",
+ "profile": "პროფილი",
+ "public": "საჯარო",
+ "public-desc": "ეს დაფა არის საჯარო. ის ხილვადია ყველასთვის და შესაძლოა გამოჩნდეს საძიებო სისტემებში. შესწორების უფლება აქვს მხოლოდ მასზე დამატებულ პირებს. ",
+ "quick-access-description": "მონიშნეთ დაფა ვარსკვლავით იმისთვის, რომ დაამატოთ სწრაფი ბმული ამ ნაწილში.",
+ "remove-cover": "გარეკანის წაშლა",
+ "remove-from-board": "დაფიდან წაშლა",
+ "remove-label": "ნიშნის წაშლა",
+ "listDeletePopup-title": "ნამდვილად გსურთ სიის წაშლა? ",
+ "remove-member": "წევრის წაშლა",
+ "remove-member-from-card": "ბარათიდან წაშლა",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "ნამდვილად გსურთ წევრის წაშლა? ",
+ "rename": "სახელის შეცვლა",
+ "rename-board": "დაფის სახელის ცვლილება",
+ "restore": "აღდგენა",
+ "save": "დამახსოვრება",
+ "search": "ძებნა",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "ფერის მონიშვნა",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "დააყენეთ შეზღუდვა დავალებების მაქსიმალურ რაოდენობაზე ",
+ "setWipLimitPopup-title": "დააყენეთ WIP ლიმიტი",
+ "shortcut-assign-self": "მონიშნეთ საკუთარი თავი აღნიშნულ ბარათზე",
+ "shortcut-autocomplete-emoji": "emoji-ის ავტომატური შევსება",
+ "shortcut-autocomplete-members": "მომხმარებლების ავტომატური შევსება",
+ "shortcut-clear-filters": "ყველა ფილტრის გასუფთავება",
+ "shortcut-close-dialog": "დიალოგის დახურვა",
+ "shortcut-filter-my-cards": "ჩემი ბარათების გაფილტვრა",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "ფილტრაციის გვერდითა ღილაკი",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "გვერდით მენიუს ჩართვა/გამორთვა",
+ "show-cards-minimum-count": "აჩვენეთ ბარათების დათვლილი რაოდენობა თუ ჩამონათვალი შეიცავს უფრო მეტს ვიდრე ",
+ "sidebar-open": "გახსენით მცირე სტატია",
+ "sidebar-close": "დახურეთ მცირე სტატია",
+ "signupPopup-title": "ანგარიშის შექმნა",
+ "star-board-title": "დააკლიკეთ დაფის ვარსკვლავით მონიშვნისთვის. ეს ქმედება დაგეხმარებათ გამოაჩინოთ დაფა ჩამონათვალში ზედა პოზიციებზე. ",
+ "starred-boards": "ვარსკვლავიანი დაფები",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "გამოწერა",
+ "team": "ჯგუფი",
+ "this-board": "ეს დაფა",
+ "this-card": "ეს ბარათი",
+ "spent-time-hours": "დახარჯული დრო (საათები)",
+ "overtime-hours": "ზედმეტი დრო (საათები) ",
+ "overtime": "ზედმეტი დრო",
+ "has-overtime-cards": "აქვს ვადაგადაცდილებული ბარათები",
+ "has-spenttime-cards": "აქვს გახარჯული დროის ბარათები",
+ "time": "დრო",
+ "title": "სათაური",
+ "tracking": "მონიტორინგი",
+ "tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ",
+ "type": "ტიპი",
+ "unassign-member": "არაუფლებამოსილი წევრი",
+ "unsaved-description": "თქვან გაქვთ დაუმახსოვრებელი აღწერა. ",
+ "unwatch": "ნახვის გამორთვა",
+ "upload": "ატვირთვა",
+ "upload-avatar": "სურათის ატვირთვა",
+ "uploaded-avatar": "სურათი ატვირთულია",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "მომხმარებლის სახელი",
+ "view-it": "ნახვა",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "ნახვა",
+ "watching": "ნახვის პროცესი",
+ "watching-info": "თქვენ მოგივათ შეტყობინება ამ დაფაზე არსებული ნებისმიერი ცვლილების შესახებ. ",
+ "welcome-board": "მისასალმებელი დაფა",
+ "welcome-swimlane": "ეტაპი 1 ",
+ "welcome-list1": "ბაზისური ",
+ "welcome-list2": "დაწინაურებული",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "რისი გაკეთება გსურთ? ",
+ "wipLimitErrorPopup-title": "არასწორი WIP ლიმიტი",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "ადმინის პანელი",
+ "settings": "პარამეტრები",
+ "people": "ხალხი",
+ "registration": "რეგისტრაცია",
+ "disable-self-registration": "თვით რეგისტრაციის გამორთვა",
+ "invite": "მოწვევა",
+ "invite-people": "ხალხის მოწვევა",
+ "to-boards": "დაფა(ებ)ზე",
+ "email-addresses": "ელ.ფოსტის მისამართები",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "ჩართეთ TLS მხარდაჭერა SMTP სერვერისთვის",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "მომხმარებლის სახელი",
+ "smtp-password": "პაროლი",
+ "smtp-tls": "TLS მხარდაჭერა",
+ "send-from": "დან",
+ "send-smtp-test": "გაუგზავნეთ სატესტო ელ.ფოსტა საკუთარ თავს",
+ "invitation-code": "მოწვევის კოდი",
+ "email-invite-register-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "თქვენ წარმატებით გააგზავნეთ ელ.ფოსტა.",
+ "error-invitation-code-not-exist": "მსგავსი მოსაწვევი კოდი არ არსებობს",
+ "error-notAuthorized": "თქვენ არ გაქვთ ამ გვერდის ნახვის უფლება",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "გამავალი Webhook",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "გამავალი Webhook",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(უცნობი)",
+ "Node_version": "Node ვერსია",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS თავისუფალი მეხსიერება",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS პლატფორმა",
+ "OS_Release": "OS რელიზი",
+ "OS_Totalmem": "OS მთლიანი მეხსიერება",
+ "OS_Type": "OS ტიპი",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "საათები",
+ "minutes": "წუთები",
+ "seconds": "წამები",
+ "show-field-on-card": "აჩვენეთ ეს ველი ბარათზე",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "დიახ",
+ "no": "არა",
+ "accounts": "ანგარიშები",
+ "accounts-allowEmailChange": "ელ.ფოსტის ცვლილების უფლების დაშვება",
+ "accounts-allowUserNameChange": "მომხმარებლის სახელის ცვლილების უფლების დაშვება ",
+ "createdAt": "შექმნილია",
+ "verified": "შემოწმებული",
+ "active": "აქტიური",
+ "card-received": "მიღებული",
+ "card-received-on": "მიღებულია",
+ "card-end": "დასასრული",
+ "card-end-on": "დასრულდება : ",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "შეცვალეთ საბოლოო თარიღი",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "უფლებამოსილების გამცემი ",
+ "requested-by": "მომთხოვნი",
+ "board-delete-notice": "წაშლის შემთხვევაში თქვენ დაკარგავთ ამ დაფასთან ასოცირებულ ყველა მონაცემს მათ შორის : ჩამონათვალს, ბარათებს და მოქმედებებს. ",
+ "delete-board-confirm-popup": "ყველა ჩამონათვალი, ბარათი, ნიშანი და აქტივობა წაიშლება და თქვენ ვეღარ შეძლებთ მის აღდგენას. ",
+ "boardDeletePopup-title": "წავშალოთ დაფა? ",
+ "delete-board": "დაფის წაშლა",
+ "default-subtasks-board": "ქვესაქმიანობა __board__ დაფისთვის",
+ "default": "Default",
+ "queue": "რიგი",
+ "subtask-settings": "ქვესაქმიანობების პარამეტრები",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "ძირითადი დაფა",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "დამატება",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/km.i18n.json b/i18n/km.i18n.json
index d9fd87a8f..073360d93 100644
--- a/i18n/km.i18n.json
+++ b/i18n/km.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Display Authentication Method",
"default-authentication-method": "Default Authentication Method",
"duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "The number of people is:",
"swimlaneDeletePopup-title": "Delete Swimlane ?",
"swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Hide checked items",
"task": "Task",
"create-task": "Create Task",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json
index 54353a603..d1b29cad6 100644
--- a/i18n/ko.i18n.json
+++ b/i18n/ko.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Display Authentication Method",
"default-authentication-method": "Default Authentication Method",
"duplicate-board": "보드 복사",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "The number of people is:",
"swimlaneDeletePopup-title": "Delete Swimlane ?",
"swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
@@ -836,5 +838,11 @@
"hide-checked-items": "선택된 항목 숨기기",
"task": "과제",
"create-task": "과제 생성",
- "ok": "확인"
+ "ok": "확인",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json
index 11a3d0d3d..1cb9ed1c9 100644
--- a/i18n/lv.i18n.json
+++ b/i18n/lv.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Piekrist",
- "act-activity-notify": "Darbību paziņojumi",
- "act-addAttachment": "pievienoja failu __attachment__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-deleteAttachment": "dzēsa failu __attachment__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addSubtask": "pievienoja apakšuzdevumu __subtask__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addLabel": "Pievienoja birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addedLabel": "Pievienoja birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-removeLabel": "Dzēsa birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-removedLabel": "Dzēsa birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addChecklist": "pievienoja kontrolsarakstu __checklist__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addChecklistItem": "pievienoja kontrolsaraksta elementu __checklistItem__ sarakstam _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-removeChecklist": "dzēsa kontrolsarakstu __checklist__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-removeChecklistItem": "dzēsa kontrolsaraksta elementu __checklistItem__ sarakstam _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-checkedItem": "atzīmēja elementu __checklistItem__ kontrolsarakstā _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-uncheckedItem": "izņēma atzīmi elementam __checklistItem__ kontrolsarakstā _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-completeChecklist": "pabeidza kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-uncompleteChecklist": "atsāka kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-addComment": "komentēja kartiņu __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-editComment": "laboja komentāru kartiņai __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-deleteComment": "dzēsa komentāru kartiņai __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-createBoard": "izveidoja dēli __board__",
- "act-createSwimlane": "izveidoja joslu __swimlane__ dēlim __board__",
- "act-createCard": "izveidoja kartiņu __card__ sarakstā __list__ joslai __swimlane__ dēlī __board__",
- "act-createCustomField": "pievienoja lauku __customField__ dēlī __board__",
- "act-deleteCustomField": "dzēsa lauku __customField__ dēlī __board__",
- "act-setCustomField": "laboja lauku __customField__: __customFieldValue__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-createList": "pievienoja sarakstu __list__ dēlim __board__",
- "act-addBoardMember": "pievienoja dalībnieku __member__ dēlim __board__",
- "act-archivedBoard": "Dēlis __board__ pārvietots uz arhīvu",
- "act-archivedCard": "Kartiņa __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__ pārvietota uz arhīvu",
- "act-archivedList": "Saraksts __list__ joslā __swimlane__ dēlī __board__ pārvietots uz arhīvu",
- "act-archivedSwimlane": "Josla __swimlane__ dēlī __board__ pārvietota uz arhīvu",
- "act-importBoard": "importēja dēli __board__",
- "act-importCard": "importēja kartiņu __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-importList": "importēja sarakstu __list__ joslā __swimlane__ dēlī __board__",
- "act-joinMember": "pievienoja dalībnieku __member__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-moveCard": "pārvietoja kartiņu __card__ dēlī __board__ no saraksta __oldList__ joslā __oldSwimlane__ uz sarakstu __list__ joslā __swimlane__",
- "act-moveCardToOtherBoard": "pārvietoja kartiņu __card__ no saraksta __oldList__ joslā __oldSwimlane__ dēlī __oldBoard__ uz sarakstu __list__ joslā __swimlane__ dēlī __board__",
- "act-removeBoardMember": "noņēma dalībnieku __member__ no dēļa __board__",
- "act-restoredCard": "atjaunoja kartiņu __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-unjoinMember": "noņēma dalībnieku __member__ no kartiņas __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Darbības",
- "activities": "Darbības",
- "activity": "Darbība",
- "activity-added": "pievienoja %s pie %s",
- "activity-archived": "%s pārvietoja uz arhīvu",
- "activity-attached": "pievienoja %s pie %s",
- "activity-created": "izveidoja%s",
- "activity-customfield-created": "izveidoja lauku %s",
- "activity-excluded": "izslēdza%s no%s",
- "activity-imported": "importēja %s iekš %s no %s",
- "activity-imported-board": "importēja %s no %s",
- "activity-joined": "pievienojās %s",
- "activity-moved": "pārvietoja %s no %s uz %s",
- "activity-on": "uz %s",
- "activity-removed": "noņēma %s no %s",
- "activity-sent": "nosūtīja %s uz %s",
- "activity-unjoined": "atvienoja %s",
- "activity-subtask-added": "pievienoja apakšuzdevumu %s",
- "activity-checked-item": "atzīmēja %s kontrolsarakstā %s no %s",
- "activity-unchecked-item": "izņēma atzīmi %s kontrolsarakstā %s no %s",
- "activity-checklist-added": "pievienoja kontrolsarakstu %s",
- "activity-checklist-removed": "noņēma kontrolsarakstu no %s",
- "activity-checklist-completed": "pabeidza kontrolsarakstu %s no %s",
- "activity-checklist-uncompleted": "atsāka kontrolsarakstu %s no %s",
- "activity-checklist-item-added": "pievienoja kontrolsaraksta elementu no '%s' iekš %s",
- "activity-checklist-item-removed": "noņēma saraksta elementu no '%s' iekš %s",
- "add": "Pievienot",
- "activity-checked-item-card": "atzīmēja %s kontrolsarakstā %s",
- "activity-unchecked-item-card": "izņēma atzīmi %s kontrolsarakstā %s",
- "activity-checklist-completed-card": "pabeidza kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
- "activity-checklist-uncompleted-card": "atsāka kontrolsarakstu %s",
- "activity-editComment": "laboja komentāru %s",
- "activity-deleteComment": "dzēsa komentāru %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Pievienot failu",
- "add-board": "Pievienot dēli",
- "add-card": "Pievienot kartiņu",
- "add-swimlane": "Pievienot joslu",
- "add-subtask": "Pievienot apakšuzdevumu",
- "add-checklist": "Pievienot kontrolsarakstu",
- "add-checklist-item": "Pievienot elementu",
- "add-cover": "Pievienot vāku",
- "add-label": "Pievienot birku",
- "add-list": "Pievienot sarakstu",
- "add-members": "Pievienot dalībniekus",
- "added": "Pievienots",
- "addMemberPopup-title": "Dalībnieki",
- "admin": "Administrators",
- "admin-desc": "Var skatīt un labot kartiņas, noņemt dalībniekus un mainīt dēļa iestatījumus",
- "admin-announcement": "Paziņojums",
- "admin-announcement-active": "Aktīvizēts paziņojums visā sistēmā",
- "admin-announcement-title": "Paziņojums no administratora",
- "all-boards": "Visi dēļi",
- "and-n-other-card": "Un __count__ cita kartiņa",
- "and-n-other-card_plural": "Un __count__ citas kartiņas",
- "apply": "Saglabāt",
- "app-is-offline": "Notiek ielāde, lūdzu uzgaidiet. Lapas pārlāde izraisīs datu zudumu. Ja neizdodas ielāde, lūdzu pārbaudiet, vai serveris nav apstājies.",
- "archive": "Pārvietot uz arhīvu",
- "archive-all": "Pārvietot visu uz arhīvu",
- "archive-board": "Pārvietot dēli uz arhīvu",
- "archive-card": "Pārvietot kartiņu uz arhīvu",
- "archive-list": "Pārvietot sarakstu uz arhīvu",
- "archive-swimlane": "Pārvietot joslu uz arhīvu",
- "archive-selection": "Pārvietot atzīmēto uz arhīvu",
- "archiveBoardPopup-title": "Pārvietot dēli uz arhīvu?",
- "archived-items": "Arhīvs",
- "archived-boards": "Dēļi arhīvā",
- "restore-board": "Atjaunot dēli",
- "no-archived-boards": "Arhīvā nav dēļu.",
- "archives": "Arhīvs",
- "template": "Sagatave",
- "templates": "Sagataves",
- "assign-member": "Iecelt dalībnieku",
- "attached": "pievienots fails",
- "attachment": "Fails",
- "attachment-delete-pop": "Faila dzēšana ir neatgriezeniska. Darbību nevar atsaukt.",
- "attachmentDeletePopup-title": "Dzēst failu?",
- "attachments": "Faili",
- "auto-watch": "Automātiski sekot dēļiem, kad tie tiek izveidoti",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Atpakaļ",
- "board-change-color": "Mainīt krāsu",
- "board-nb-stars": "%s zvaigznes",
- "board-not-found": "Dēlis nav atrasts",
- "board-private-info": "Šis dēlis būs privāts.",
- "board-public-info": "Šis dēlis būs publisks.",
- "boardChangeColorPopup-title": "Mainīt dēļa fonu",
- "boardChangeTitlePopup-title": "Pārsaukt dēli",
- "boardChangeVisibilityPopup-title": "Mainīt redzamību",
- "boardChangeWatchPopup-title": "Mainīt sekošanu",
- "boardMenuPopup-title": "Dēļa iestatījumi",
- "boardChangeViewPopup-title": "Dēļa skats",
- "boards": "Dēļi",
- "board-view": "Dēļa skats",
- "board-view-cal": "Kalendārs",
- "board-view-swimlanes": "Joslas",
- "board-view-collapse": "Sakļaut",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Saraksti",
- "bucket-example": "Piemēram \"Izdarāmie darbi\"",
- "cancel": "Atcelt",
- "card-archived": "Šī kartiņa ir pārvietota uz arhīvu",
- "board-archived": "Šis dēlis ir pārvietots uz arhīvu",
- "card-comments-title": "Šai kartiņai ir %s komentārs.",
- "card-delete-notice": "Dzēšana ir neatgriezeniska. Jūs zaudēsiet visas ar kartiņu saistītās darbības.",
- "card-delete-pop": "Visas darbības no saraksta tiks noņemtas un jūs vairs nevarēsiet kartiņu atvērt. Darbību nevar atsaukt.",
- "card-delete-suggest-archive": "Lai kartiņu noņemtu no dēļa nezaudējot darbības, arhivējiet to.",
- "card-due": "Termiņš",
- "card-due-on": "Termiņa beigas",
- "card-spent": "Patērētais laiks",
- "card-edit-attachments": "Labot failus",
- "card-edit-custom-fields": "Labot laukus",
- "card-edit-labels": "Labot birkas",
- "card-edit-members": "Labot dalībniekus",
- "card-labels-title": "Mainīt kartiņas birkas.",
- "card-members-title": "Pievienot vai noņemt dēļa dalībniekus kartiņai.",
- "card-start": "Sākt",
- "card-start-on": "Sākas",
- "cardAttachmentsPopup-title": "Pievienot no",
- "cardCustomField-datePopup-title": "Mainīt datumu",
- "cardCustomFieldsPopup-title": "Labot laukus",
- "cardStartVotingPopup-title": "Sākt balsojumu",
- "positiveVoteMembersPopup-title": "Atbalstītāji",
- "negativeVoteMembersPopup-title": "Oponenti",
- "card-edit-voting": "Balsošana",
- "editVoteEndDatePopup-title": "Labot balsojuma beigu datumu",
- "allowNonBoardMembers": "Tikai pierakstītajiem lietotājiem",
- "vote-question": "Balsojuma jautājums",
- "vote-public": "Rādīt par ko katrs balsoja",
- "vote-for-it": "priekš tā",
- "vote-against": "pret",
- "deleteVotePopup-title": "Dzēst balsojumu?",
- "vote-delete-pop": "Dzēšana ir neatgriezeniska. Jūs zaudēsiet visas darbības saistītas ar šo balsojumu.",
- "cardDeletePopup-title": "Dzēst kartiņu?",
- "cardDetailsActionsPopup-title": "Kartiņas darbības",
- "cardLabelsPopup-title": "Birkas",
- "cardMembersPopup-title": "Dalībnieki",
- "cardMorePopup-title": "Vairāk",
- "cardTemplatePopup-title": "Izveidot sagatavi",
- "cards": "Kartiņas",
- "cards-count": "Kartiņas",
- "casSignIn": "Pierakstīties ar CAS",
- "cardType-card": "Kartiņa",
- "cardType-linkedCard": "Saistīta kartiņa",
- "cardType-linkedBoard": "Saistīts dēlis",
- "change": "Mainīt",
- "change-avatar": "Mainīt attēlu",
- "change-password": "Mainīt paroli",
- "change-permissions": "Mainīt atļaujas",
- "change-settings": "Iestatījumi",
- "changeAvatarPopup-title": "Mainīt attēlu",
- "changeLanguagePopup-title": "Mainīt valodu",
- "changePasswordPopup-title": "Mainīt paroli",
- "changePermissionsPopup-title": "Mainīt atļaujas",
- "changeSettingsPopup-title": "Iestatījumi",
- "subtasks": "Apakšuzdevumi",
- "checklists": "Kontrolsaraksti",
- "click-to-star": "Spied lai atzīmēt ar zvaigzni.",
- "click-to-unstar": "Spied lai noņemtu zvaigzni.",
- "clipboard": "Starpliktuve vai drag & drop",
- "close": "Aizvērt",
- "close-board": "Aizvērt dēli",
- "close-board-pop": "Jūs varēsiet atjaunot dēli spiežot uz \"Arhīvs\" sākumā.",
- "color-black": "melns",
- "color-blue": "zils",
- "color-crimson": "tumši sarkans",
- "color-darkgreen": "tumši zaļš",
- "color-gold": "zeltīts",
- "color-gray": "pelēks",
- "color-green": "zaļš",
- "color-indigo": "indigo",
- "color-lime": "laims",
- "color-magenta": "magenta",
- "color-mistyrose": "viegli rozā",
- "color-navy": "jūras zils",
- "color-orange": "oranžš",
- "color-paleturquoise": "blāvs tirkīzs",
- "color-peachpuff": "persiks",
- "color-pink": "rozā",
- "color-plum": "plūme",
- "color-purple": "purpurs",
- "color-red": "sarkans",
- "color-saddlebrown": "seglu brūns",
- "color-silver": "sudrabots",
- "color-sky": "debesu",
- "color-slateblue": "šīfera zils",
- "color-white": "balts",
- "color-yellow": "dzeltens",
- "unset-color": "Atiestatīt",
- "comment": "Komentēt",
- "comment-placeholder": "Rakstīt komentāru",
- "comment-only": "Tikai komentēt",
- "comment-only-desc": "Var komentēt tikai kartiņā.",
- "no-comments": "Nav komentāru",
- "no-comments-desc": "Nevar redzēt komentārus un darbības.",
- "worker": "Darbonis",
- "worker-desc": "Var tikai pārvietot kartiņas, pievienot sevi kartiņai un komentēt.",
- "computer": "Dators",
- "confirm-subtask-delete-dialog": "Vai tiešām vēlaties dzēst apakšuzdevumu?",
- "confirm-checklist-delete-dialog": "Vai tiešam vēlaties dzēst kontrolsarakstu?",
- "copy-card-link-to-clipboard": "Kopet kartiņas saiti starpliktuvē",
- "linkCardPopup-title": "Kartiņas saite",
- "searchElementPopup-title": "Meklēt",
- "copyCardPopup-title": "Kopēt kartiņu",
- "copyChecklistToManyCardsPopup-title": "Kopēt kontrolsarakstu uz citām kartiņām",
- "copyChecklistToManyCardsPopup-instructions": "Mērķa kartiņu virsraksti un apraksti šajā JSON formātā",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Pirmās kartiņas virsraksts\", \"description\":\"Pirmās kartiņas apraksts}, {\"title\":\"Otrās kartiņas virsraksts\",\"description\":\"Otrās kartiņas apraksts\"},{\"title\":\"Pēdējās kartiņas virsraksts\",\"description\":\"Pēdējās kartiņas apraksts\"} ]",
- "create": "Izveidot",
- "createBoardPopup-title": "Izveidot dēli",
- "chooseBoardSourcePopup-title": "Importēt dēli",
- "createLabelPopup-title": "Izveidot birku",
- "createCustomField": "Izveidot lauku",
- "createCustomFieldPopup-title": "Izveidot lauku",
- "current": "šobrīdējs",
- "custom-field-delete-pop": "Darbību nevar atsaukt. Ar šo lauks tiks dzēsts no visām kartiņām un tā vēsture tiks iznīcināta.",
- "custom-field-checkbox": "Kastīte",
- "custom-field-currency": "Valūta",
- "custom-field-currency-option": "Valūtas kods",
- "custom-field-date": "Datums",
- "custom-field-dropdown": "Izkrītošā izvēlne",
- "custom-field-dropdown-none": "(nav)",
- "custom-field-dropdown-options": "Saraksta opcijas",
- "custom-field-dropdown-options-placeholder": "Spiediet enter lai pievienotu opcijas",
- "custom-field-dropdown-unknown": "(nav zināms)",
- "custom-field-number": "Skaits",
- "custom-field-text": "Teksts",
- "custom-fields": "Lauki",
- "date": "Datums",
- "decline": "Noraidīt",
- "default-avatar": "Noklusētais attēls",
- "delete": "Dzēst",
- "deleteCustomFieldPopup-title": "Dzēst lauku?",
- "deleteLabelPopup-title": "Dzēst birku?",
- "description": "Apraksts",
- "disambiguateMultiLabelPopup-title": "Skaidrot birkas darbību",
- "disambiguateMultiMemberPopup-title": "Skaidrot dalībnieka darbību",
- "discard": "Nomest",
- "done": "Darīts",
- "download": "Lejuplādēt",
- "edit": "Labot",
- "edit-avatar": "Mainīt attēlu",
- "edit-profile": "Labot profilu",
- "edit-wip-limit": "Labot WIP limitu",
- "soft-wip-limit": "Maigais WIP limits",
- "editCardStartDatePopup-title": "Mainīt sākuma datumu",
- "editCardDueDatePopup-title": "Mainīt termiņu",
- "editCustomFieldPopup-title": "Labot lauku",
- "editCardSpentTimePopup-title": "Mainīt patērēto laiku",
- "editLabelPopup-title": "Mainīt birku",
- "editNotificationPopup-title": "Labot ziņojumu",
- "editProfilePopup-title": "Labot profilu",
- "email": "E-pasts",
- "email-enrollAccount-subject": "Izveidots profils iekš __siteName__",
- "email-enrollAccount-text": "Sveiki, __user__,\n\nLai sāktu izmantot servisu, vienkārši spied saiti zemāk.\n\n__url__\n\nPaldies.",
- "email-fail": "E-pasta sūtīšana neizdevās",
- "email-fail-text": "Kļūda mēģinot sūtīt e-pastu",
- "email-invalid": "Nederīgs e-pasts",
- "email-invite": "Ielūgt caur e-pastu",
- "email-invite-subject": "__inviter__ jums atsūtīja ielūgumu",
- "email-invite-text": "Sveiki, __user__,\n\n__inviter__ ielūdz jūs pievienoties dēlim \"__board__\".\n\nLūdzu sekojiet saitei zemāk:\n\n__url__\n\nPaldies.",
- "email-resetPassword-subject": "Atiestatīt jūsu paroli priekš __siteName__",
- "email-resetPassword-text": "Sveiki, __user__,\n\nLai atiestatītu paroli, vienkārši sekojiet saitei zemāk.\n\n__url__\n\nPaldies.",
- "email-sent": "E-pasts nosūtīts",
- "email-verifyEmail-subject": "Apstipriniet savu e-pasta adresi priekš __siteName__",
- "email-verifyEmail-text": "Sveiki, __user__,\n\nLai apstiprinātu savu e-pasta adresi, vienkārši spiediet uz saites zemāk.\n\n__url__\n\nPaldies.",
- "enable-wip-limit": "Ieslēgt WIP limitu",
- "error-board-doesNotExist": "Šis dēlis neeksistē",
- "error-board-notAdmin": "Jums jābūt dēļa administratoram, lai veiktu šo darbību",
- "error-board-notAMember": "Jums jābūt šī dēļa dalībniekam, lai veiktu šo darbību",
- "error-json-malformed": "Teksts nav derīgs JSON",
- "error-json-schema": "JSON dati nesatur nepieciešamo informāciju pareizajā formātā",
- "error-csv-schema": "CSV (Comma Separated Values)/TSV (Tab Separated Values) dati nesatur nepieciešamo informāciju pareizajā formātā.",
- "error-list-doesNotExist": "Šis saraksts neeksistē",
- "error-user-doesNotExist": "Šis lietotājs neeksistē",
- "error-user-notAllowSelf": "Jūs nevarat ielūgt sevi",
- "error-user-notCreated": "Šis lietotājs nav izveidots",
- "error-username-taken": "Šis lieotājvārds jau ir aizņemts",
- "error-email-taken": "E-pasts jau ir izmantots",
- "export-board": "Eksportēt dēli",
- "export-board-json": "Eksportēt dēli kā JSON",
- "export-board-csv": "Eksportēt dēli kā CSV",
- "export-board-tsv": "Eksportēt dēli kā TSV",
- "export-board-html": "Eksportēt dēli kā HTML",
- "exportBoardPopup-title": "Eksportēt dēli",
- "sort": "Kārtot",
- "sort-desc": "Spiediet, lai kārtotu sarakstu",
- "list-sort-by": "Kārtot sarakstu pēc:",
- "list-label-modifiedAt": "Uzskaitīt piekļuves laiku",
- "list-label-title": "Saraksta nosaukums",
- "list-label-sort": "Jūsu izvēlēta secība",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrēt",
- "filter-cards": "Filtrēt kartiņas vai sarakstus",
- "list-filter-label": "Filtrēt sarakstus pēc virsraksta",
- "filter-clear": "Notīrīt filtru",
- "filter-labels-label": "Filtrēt pēc birkas",
- "filter-no-label": "Nav birkas",
- "filter-member-label": "Filtrēt pēc dalībniekiem",
- "filter-no-member": "Nav dalībnieku",
- "filter-assignee-label": "Filtrēt pēc īpašnieka",
- "filter-no-assignee": "Nav atbildīgā",
- "filter-custom-fields-label": "Filtrēt pēc papildlaukiem",
- "filter-no-custom-fields": "Nav papildu lauku",
- "filter-show-archive": "Rādīt arhivētos sarakstus",
- "filter-hide-empty": "Slēpt tukšus sarakstus",
- "filter-on": "Filtrs ir ieslēgts",
- "filter-on-desc": "Kartiņas šajā dēlī ir filtrētas. Spiediet šeit, lai labotu filtru.",
- "filter-to-selection": "Filtrs uz iezīmēto",
- "other-filters-label": "Citi filtri",
- "advanced-filter-label": "Papildu filtri",
- "advanced-filter-description": "Papildu filtri ļauj meklēt ar šādiem operatoriem: == != <= >= && || ( ) Starp operatoriem jāatstāj atstarpe. Lai filtrētu papildlaukus, norādiet tā nosaukumu un vērtību. Piemērs: Lauks1 == Vērtība1. Piezīme: ja lauki vai vērtības satur atstarpes, ievietojiet tekstu pēdiņās. Piemērs: 'Lauks 1' == 'Vērtība 1'. Lai ievadītu kontrolsimbolus (pēdiņās un slīpsvītras), pirms tiem ievadiet \\. Piemērs: Lauks1 == 'Rībēj\\' Rīga'. Papildus var kombinēt vairākus nosacījumus. Piemērs: L1 == V1 || L1 == V2. Parasti operatori tiek interpretēti no kreisās uz labo pusi. Secību var mainīt ar iekavām. Piemērs: L1 == V1 && ( L2 == V2 || L2 == V3 ). Papildus teksta laukus var filtrēt ar RegEx: L1 == /Tes.*/i",
- "fullname": "Pilnais vārds un uzvārds",
- "header-logo-title": "Atpakaļ uz jūsu dēļiem",
- "hide-system-messages": "Slēpt darbības",
- "headerBarCreateBoardPopup-title": "Izveidot dēli",
- "home": "Sākums",
- "import": "Importēt",
- "impersonate-user": "Uzdoties par lietotāju",
- "link": "Saite",
- "import-board": "Importēt dēli",
- "import-board-c": "Importēt dēli",
- "import-board-title-trello": "Importēt dēli no Trello",
- "import-board-title-wekan": "Importēt dēli no iepriekšēja eksporta",
- "import-board-title-csv": "Importēt dēli no CSV/TSV",
- "from-trello": "No Trello",
- "from-wekan": "No iepriekšēja eksporta",
- "from-csv": "No CSV/TSV",
- "import-board-instruction-trello": "Jūsu Trello dēlī ejiet uz 'Menu', tālāk 'More', 'Print and Export', 'Export JSON' un nokopejiet tekstu.",
- "import-board-instruction-csv": "Ielīmējiet jūsu Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "Jūsu dēlī ejiet uz 'Menu', tālāk 'Export board' un nokopējiet tekstu no lejuplādētā faila.",
- "import-board-instruction-about-errors": "Ja importējot redzat kļūdu, imports tik un tā varēja nostrādāt. Pārbaudiet lapu Visi dēļi.",
- "import-json-placeholder": "Šeit ielīmējiet derīgu JSON tekstu",
- "import-csv-placeholder": "Šeit ielīmējiet derīgu CSV/TSV tekstu",
- "import-map-members": "Norādīt dalībniekus",
- "import-members-map": "Jūsu importētajam dēlim ir dalībnieki. Lūdzu norādiet kuri no šiem dalībniekiem ir kuri.",
- "import-show-user-mapping": "Pārbaudīt norādītos dalībniekus",
- "import-user-select": "Izvēlieties kuru no esošajiem dalībniekiem izmantot kā šo lietotāju",
- "importMapMembersAddPopup-title": "Izvēlēties dalībnieku",
- "info": "Versija",
- "initials": "Iniciāļi",
- "invalid-date": "Nederīgs datums",
- "invalid-time": "Nederīgs laiks",
- "invalid-user": "Nederīgs dalībnieks",
- "joined": "pievienojās",
- "just-invited": "Jūs ielūdza pievienoties šim dēlim",
- "keyboard-shortcuts": "Karstie taustiņi",
- "label-create": "Izveidot birku",
- "label-default": "%s birka (noklusēti)",
- "label-delete-pop": "Darbību nevar atsaukt. Ar šo birka tiks noņemta no visām kartiņām un vēsture tiks dzēsta.",
- "labels": "Birkas",
- "language": "Valoda",
- "last-admin-desc": "Nevar nomainīt lomu, jo jābūt vismaz vienam administratoram.",
- "leave-board": "Pamest dēli",
- "leave-board-pop": "Vai tiešām pamest __boardTitle__? Jūs tiksiet noņemts no visām kartiņām šajā dēlī.",
- "leaveBoardPopup-title": "Pamest dēli?",
- "link-card": "Saite uz kartiņu",
- "list-archive-cards": "Pārvietot visas kartiņas no šī saraksta uz arhīvu",
- "list-archive-cards-pop": "Šis visas saraksta kartiņas noņems no dēļa. Lai kartiņas apskatītu un atgrieztu ejiet uz \"Izvēlne\" > \"Arhīvs\".",
- "list-move-cards": "Pārvietot visas kartiņas šajā sarakstā",
- "list-select-cards": "Atzīmēt visas kartiņas šajā sarakstā",
- "set-color-list": "Mainīt krāsu",
- "listActionPopup-title": "Saraksta darbības",
- "settingsUserPopup-title": "Lietotāja iestatījumi",
- "swimlaneActionPopup-title": "Joslas darbības",
- "swimlaneAddPopup-title": "Pievienot joslu zem šīs",
- "listImportCardPopup-title": "Importēt Trello kartiņu",
- "listImportCardsTsvPopup-title": "Importēt Excel CSV/TSV",
- "listMorePopup-title": "Vairāk",
- "link-list": "Saite uz šo sarakstu",
- "list-delete-pop": "Visas darbības no saraksta tiks dzēstas un nebūs atgriežamas. Darbību nevar atsaukt.",
- "list-delete-suggest-archive": "Lai saglabātu darbības, sarakstu var pārvieto uz arhīvu.",
- "lists": "Saraksti",
- "swimlanes": "Joslas",
- "log-out": "Izrakstīties",
- "log-in": "Pierakstīties",
- "loginPopup-title": "Pierakstīties",
- "memberMenuPopup-title": "Dalībnieka iestatījumi",
- "members": "Dalībnieki",
- "menu": "Izvēlne",
- "move-selection": "Pārvietot atzīmēto",
- "moveCardPopup-title": "Pārvietot kartiņu",
- "moveCardToBottom-title": "Pārvietot uz apakšu",
- "moveCardToTop-title": "Pārvietot uz augšu",
- "moveSelectionPopup-title": "Pārvietot atzīmēto",
- "multi-selection": "Atzīmēt",
- "multi-selection-label": "Pielikt birku atzīmētajam",
- "multi-selection-member": "Pielikt dalībnieku atzīmētajam",
- "multi-selection-on": "Atzīmēšana ieslēgta",
- "muted": "Apklusināts",
- "muted-info": "Nekad nesaņemsiet ziņojumus par izmaiņām šajā dēlī",
- "my-boards": "Mani dēļi",
- "name": "Vārds",
- "no-archived-cards": "Arhīvā nav kartiņu.",
- "no-archived-lists": "Arhīvā nav sarakstu.",
- "no-archived-swimlanes": "Arhīvā nav joslu.",
- "no-results": "Nav rezultātu",
- "normal": "Normāls",
- "normal-desc": "Var skatīties un labot kartiņas. Nevar mainīt iestatījumus.",
- "not-accepted-yet": "Ielūgums nav vēl apstiprināts",
- "notify-participate": "Saņemt ziņojumus par izmaiņām kartiņās kurām esat veidotājs vai dalībnieks",
- "notify-watch": "Saņemt ziņojumus no dēļiem, sarakstiem vai kartiņām kurām sekojat",
- "optional": "nav obligāts",
- "or": "vai",
- "page-maybe-private": "Ši lapa ir privāta. To var apskatīt pēc pierakstīšanās.",
- "page-not-found": "Lapa nav atrasta.",
- "password": "Parole",
- "paste-or-dragdrop": "lai ielīmētu, ievilktu attēla failu tajā (tikai attēlu)",
- "participating": "Piedalās",
- "preview": "Priekšskatījums",
- "previewAttachedImagePopup-title": "Priekšskatījums",
- "previewClipboardImagePopup-title": "Priekšskatījums",
- "private": "Privāts",
- "private-desc": "Šis dēlis ir privāts. Tikai dalībnieki var to skatīties un labot.",
- "profile": "Profils",
- "public": "Publisks",
- "public-desc": "Šis dēlis ir publisks. Tas ir redzams visiem kam uz to ir saite un to varēs atrast ar meklēšanas dziņiem kā Google. Tikai dalībnieki var dēli labot.",
- "quick-access-description": "Atzīmē dēļus ar zvaigzni, lai tie parādītos šeit.",
- "remove-cover": "Noņemt vāku",
- "remove-from-board": "Noņemt no dēļa",
- "remove-label": "Noņemt birku",
- "listDeletePopup-title": "Dzēst sarakstu?",
- "remove-member": "Noņemt dalībnieku",
- "remove-member-from-card": "Noņemt no kartiņas",
- "remove-member-pop": "Noņemt __name__ (__username__) no __boardTitle__? Dalībnieks tiks noņemts no visām kartiņām šajā dēlī. Dalībnieks saņems ziņojumu.",
- "removeMemberPopup-title": "Noņemt dalībnieku?",
- "rename": "Pārsaukt",
- "rename-board": "Pārsaukt dēli",
- "restore": "Atjaunot",
- "save": "Saglabāt",
- "search": "Meklēt",
- "rules": "Nosacījumi",
- "search-cards": "Meklēt pa kartiņu/sarakstu virsrakstiem, aprakstiem un laukiem šajā dēlī",
- "search-example": "Ievadiet meklējamo tekstu un spiediet Enter",
- "select-color": "Mainīt krāsu",
- "select-board": "Select Board",
- "set-wip-limit-value": "Iestatīt maksimālo skaitu ar kartiņām šajā sarakstā",
- "setWipLimitPopup-title": "Uzlikt WIP ierobežojumu",
- "shortcut-assign-self": "Pievienot sevi atvērtajai kartiņai",
- "shortcut-autocomplete-emoji": "Emoji automātiska pabeigšana",
- "shortcut-autocomplete-members": "Dalībnieku automātiska pabeigšana",
- "shortcut-clear-filters": "Notīrīt visus filtrus",
- "shortcut-close-dialog": "Aizvērt vaicājumu",
- "shortcut-filter-my-cards": "Filtrēt manas kartiņas",
- "shortcut-show-shortcuts": "Atvērt saīšņu sarakstu",
- "shortcut-toggle-filterbar": "Pārslēgt filtru sānjoslu",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Pārslēgt dēļu sānjoslu",
- "show-cards-minimum-count": "Rādīt kartiņu skaitu, ja to sarakstā ir vairāk par",
- "sidebar-open": "Atvērt sānjoslu",
- "sidebar-close": "Aizvērt sānjoslu",
- "signupPopup-title": "Izveidot profilu",
- "star-board-title": "Spied, lai dēli atzīmētu ar zvaigzni. Šis dēlis pēc tam vienmēr būs redzams ekrāna augšā.",
- "starred-boards": "Dēļi ar zvaigzni",
- "starred-boards-description": "Ar zvaigzni atzīmētie dēļi vienmēr redzami ekrāna augšā",
- "subscribe": "Pierakstīties",
- "team": "Komanda",
- "this-board": "šis dēlis",
- "this-card": "šī kartiņa",
- "spent-time-hours": "Pavadītais laiks (stundas)",
- "overtime-hours": "Virsstundas (stundas)",
- "overtime": "Virsstundas",
- "has-overtime-cards": "Kartiņas ar virsstundām",
- "has-spenttime-cards": "Kartiņas ar pavadīto laiku",
- "time": "Laiks",
- "title": "Nosaukums",
- "tracking": "Sekošana",
- "tracking-info": "Saņemsiet ziņojumu par jebkādām izmaiņām kartiņās, kurām esat vai nu veidotājs vai nu dalībnieks.",
- "type": "Veids",
- "unassign-member": "Noņemt dalībnieku",
- "unsaved-description": "Jums ir nesaglabāts apraksts.",
- "unwatch": "Beigt sekošanu",
- "upload": "Augšuplādēt",
- "upload-avatar": "Augšuplādēt attēlu",
- "uploaded-avatar": "Attēls augšuplādēts",
- "custom-top-left-corner-logo-image-url": "Logo attēls augšējā kreisā stūrī - URL",
- "custom-top-left-corner-logo-link-url": "Logo saite augšējā kreisajā stūrī - URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Logo pierakstīšanās ekrānā - URL",
- "custom-login-logo-link-url": "Logo saite pierakstīšanās ekrānā - URL",
- "text-below-custom-login-logo": "Teksts zem logo pierakstīšanās lapā",
- "username": "Lietotājvārds",
- "view-it": "Skatīt",
- "warn-list-archived": "brīdinājums: šī kartiņa ir sarakstā arhīvā",
- "watch": "Sekot",
- "watching": "Pilna sekošana",
- "watching-info": "Saņemsiet ziņojumu par jebkādām izmaiņām dēlī",
- "welcome-board": "Sākuma dēlis",
- "welcome-swimlane": "Sasniegums 1",
- "welcome-list1": "Pamati",
- "welcome-list2": "Papildu",
- "card-templates-swimlane": "Kartiņu sagataves",
- "list-templates-swimlane": "Sarakstu sagataves",
- "board-templates-swimlane": "Dēļu sagataves",
- "what-to-do": "Ko vēlaties darīt?",
- "wipLimitErrorPopup-title": "Nederīgs WIP ierobežojums",
- "wipLimitErrorPopup-dialog-pt1": "Sarakstā kartiņu skaits ir lielāks kā definētais WIP ierobežojums.",
- "wipLimitErrorPopup-dialog-pt2": "Lūdzu pārvietojiet kādas kartiņas prom no šī saraksta vai arī uzstādiet augstāku WIP ierobežojumu.",
- "admin-panel": "Administratora panelis",
- "settings": "Iestatījumi",
- "people": "Dalībnieki",
- "registration": "Reģistrācija",
- "disable-self-registration": "Atspējot dalībnieku patstāvīgu reģistrāciju",
- "invite": "Ielūgt",
- "invite-people": "Ielūgt dalībniekus",
- "to-boards": "Uz dēli (dēļiem)",
- "email-addresses": "E-pasta adreses",
- "smtp-host-description": "Adrese SMTP serverim, kas izsūtīs e-pastus.",
- "smtp-port-description": "SMTP servera ports priekš e-pastu sūtīšanas.",
- "smtp-tls-description": "Sūtīt e-pastus caur TLS",
- "smtp-host": "SMTP hosts",
- "smtp-port": "SMTP ports",
- "smtp-username": "Lietotājvārds",
- "smtp-password": "Parole",
- "smtp-tls": "TLS atbalsts",
- "send-from": "No",
- "send-smtp-test": "Sūtīt sev testa e-pastu",
- "invitation-code": "Ielūguma kods",
- "email-invite-register-subject": "__inviter__ jums atsūtīja ielūgumu",
- "email-invite-register-text": "Sveki, __user__,\n\n__inviter__ ielūdz jūs uz kanban dēli sadarbībai.\n\nLūdzu sekojiet saitei zemāk:\n__url__\n\nJūsu ielūguma kods ir: __icode__\n\nPaldies.",
- "email-smtp-test-subject": "SMTP testa e-pasts",
- "email-smtp-test-text": "Jūs veiksmīgi nosūtījāt e-pastu",
- "error-invitation-code-not-exist": "Ielūguma kods nepastāv",
- "error-notAuthorized": "Jums nav atļaujas skatīt šo lapu.",
- "webhook-title": "Webhook nosaukums",
- "webhook-token": "Žetons (autentifikācijai)",
- "outgoing-webhooks": "Izejošie Webhook",
- "bidirectional-webhooks": "Divvirziena Webhook",
- "outgoingWebhooksPopup-title": "Izejošie Webhook",
- "boardCardTitlePopup-title": "Kartiņu virsraksta filtrs",
- "disable-webhook": "Atspējot šo Webhook",
- "global-webhook": "Globālie Webhook",
- "new-outgoing-webhook": "Jauns izejošais Webhook",
- "no-name": "(Nezināms)",
- "Node_version": "Node versija",
- "Meteor_version": "Meteor versija",
- "MongoDB_version": "MongoDB versija",
- "MongoDB_storage_engine": "MongoDB dzinis",
- "MongoDB_Oplog_enabled": "MongoDB Oplog iespējots",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU skaits",
- "OS_Freemem": "OS brīva atmiņa",
- "OS_Loadavg": "OS vidējā noslodze",
- "OS_Platform": "OS platforma",
- "OS_Release": "OS relīze",
- "OS_Totalmem": "OS atmiņa kopā",
- "OS_Type": "OS veids",
- "OS_Uptime": "OS uptime",
- "days": "dienas",
- "hours": "stundas",
- "minutes": "minūtes",
- "seconds": "sekundes",
- "show-field-on-card": "Rādīt šo lauku kartiņā",
- "automatically-field-on-card": "Automātiski izveidot lauku visām kartiņām",
- "showLabel-field-on-card": "Rādīt lauku nosaukumus mini kartiņā",
- "yes": "Jā",
- "no": "Nē",
- "accounts": "Konti",
- "accounts-allowEmailChange": "Ļaut e-pasta maiņu",
- "accounts-allowUserNameChange": "Ļaut lietotājvārda maiņu",
- "createdAt": "Izveidots",
- "verified": "Apstiprināts",
- "active": "Aktīvs",
- "card-received": "Saņemts",
- "card-received-on": "Saņemts",
- "card-end": "Beigas",
- "card-end-on": "Beidzas",
- "editCardReceivedDatePopup-title": "Mainīt saņemšanas datumu",
- "editCardEndDatePopup-title": "Mainīt beigu datumu",
- "setCardColorPopup-title": "Mainīt krāsu",
- "setCardActionsColorPopup-title": "Izvēlieties krāsu",
- "setSwimlaneColorPopup-title": "Izvēlieties krāsu",
- "setListColorPopup-title": "Izvēlieties krāsu",
- "assigned-by": "Īpašnieks",
- "requested-by": "Pieprasītājs",
- "board-delete-notice": "Dzēšana nav atsaucama. Zaudēsiet visus sarakstus, kartiņas un darbības šajā dēlī.",
- "delete-board-confirm-popup": "Visi saraksti, kartiņas, birkas un darbības tiks dzēstas un dēli nevarēs atgūt. Darbība nav atsaucama.",
- "boardDeletePopup-title": "Dzēst dēli?",
- "delete-board": "Dzēst dēli",
- "default-subtasks-board": "Apakšuzdevumi priekš __board__ dēļa",
- "default": "Noklusēts",
- "queue": "Rinda",
- "subtask-settings": "Apakšuzdevumu iestatījumi",
- "card-settings": "Kartiņas iestatījumi",
- "boardSubtaskSettingsPopup-title": "Dēļa apakšuzdevumu iestatījumi",
- "boardCardSettingsPopup-title": "Kartiņas iestatījumi",
- "deposit-subtasks-board": "Noguldīt apakšuzdevumus uz šo dēli:",
- "deposit-subtasks-list": "Saraksts priekš apakšuzdevumiem noguldīts šeit:",
- "show-parent-in-minicard": "Rādīt piederību mini kartiņā:",
- "prefix-with-full-path": "Priedēklis ar pilnu ceļu",
- "prefix-with-parent": "Priedēklis ar piederību",
- "subtext-with-full-path": "Apakšteksts ar pilnu ceļu",
- "subtext-with-parent": "Apakšteksts ar piederību",
- "change-card-parent": "Mainīt kartiņas piederību",
- "parent-card": "Pieder kartiņai",
- "source-board": "Sākuma dēlis",
- "no-parent": "Nerādīt piederību",
- "activity-added-label": "pievinoja birku '%s' pie %s",
- "activity-removed-label": "noņēma birku '%s' no %s",
- "activity-delete-attach": "dzēsa failu no %s",
- "activity-added-label-card": "pievienoja birku '%s'",
- "activity-removed-label-card": "noņēma birku '%s'",
- "activity-delete-attach-card": "dzēsa failu",
- "activity-set-customfield": "uzstadīja lauku '%s' uz '%s' iekš %s",
- "activity-unset-customfield": "noņēma lauku '%s' iekš %s",
- "r-rule": "Nosacījums",
- "r-add-trigger": "Pievienot trigeri",
- "r-add-action": "Pievienot darbību",
- "r-board-rules": "Dēļa nosacījumi",
- "r-add-rule": "Pievienot nosacījumu",
- "r-view-rule": "Skatīt nosacījumu",
- "r-delete-rule": "Dzēst nosacījumu",
- "r-new-rule-name": "Jaunā nosacījuma nosaukums",
- "r-no-rules": "Nav nosacījumu",
- "r-trigger": "Trigeris",
- "r-action": "Darbība",
- "r-when-a-card": "Kad kartiņa",
- "r-is": "ir",
- "r-is-moved": "ir pārvitots",
- "r-added-to": "Pievienots",
- "r-removed-from": "Noņemts no",
- "r-the-board": "dēlis",
- "r-list": "saraksts",
- "set-filter": "Uzstādīt filtru",
- "r-moved-to": "Pārvietots uz",
- "r-moved-from": "Pārvietots no",
- "r-archived": "Pārvietots uz arhīvu",
- "r-unarchived": "Atjaunots no arhīva",
- "r-a-card": "kartiņa",
- "r-when-a-label-is": "Kad birka ir",
- "r-when-the-label": "Kad birka",
- "r-list-name": "saraksta nosaukums",
- "r-when-a-member": "Kad dalībnieks ir",
- "r-when-the-member": "Kad dalībnieks",
- "r-name": "vārds",
- "r-when-a-attach": "Kad fails",
- "r-when-a-checklist": "Kad kontrolsaraksts ir",
- "r-when-the-checklist": "Kad kontrolsaraksts",
- "r-completed": "Pabeigts",
- "r-made-incomplete": "Padarīts par nepabeigtu",
- "r-when-a-item": "Kad kontrolsaraksta elements ir",
- "r-when-the-item": "Kad kontrolsaraksta elements",
- "r-checked": "Atzīmēts",
- "r-unchecked": "Atzīme noņemta",
- "r-move-card-to": "Pārvietot kartiņu uz",
- "r-top-of": "Augša",
- "r-bottom-of": "Apakša",
- "r-its-list": "tā saraksts",
- "r-archive": "Pārvietot uz arhīvu",
- "r-unarchive": "Atjaunot no arhīva",
- "r-card": "kartiņa",
- "r-add": "Pievienot",
- "r-remove": "Noņemt",
- "r-label": "birka",
- "r-member": "dalībnieks",
- "r-remove-all": "Noņemt visus dalībniekus no kartiņas",
- "r-set-color": "Uzstādīt krāsu",
- "r-checklist": "kontrolsaraksts",
- "r-check-all": "Atzīmēt visu",
- "r-uncheck-all": "Noņemt visas atzīmes",
- "r-items-check": "Kontrolsaraksta elementi",
- "r-check": "Atzīmēt",
- "r-uncheck": "Noņemt atzimi",
- "r-item": "elements",
- "r-of-checklist": "kontrolsaraksta",
- "r-send-email": "Sūtīt e-pastu",
- "r-to": "uz",
- "r-of": "no",
- "r-subject": "subjekts",
- "r-rule-details": "Nosacījuma detaļas",
- "r-d-move-to-top-gen": "Pārvietot kartiņu uz augšu",
- "r-d-move-to-top-spec": "Pārvietot kartiņu uz augšu",
- "r-d-move-to-bottom-gen": "Pārvietot kartiņu uz apakšu",
- "r-d-move-to-bottom-spec": "Pārvietot kartiņu uz apakšu",
- "r-d-send-email": "Sūtīt e-pastu",
- "r-d-send-email-to": "uz",
- "r-d-send-email-subject": "subjekts",
- "r-d-send-email-message": "ziņojums",
- "r-d-archive": "Pārvietot kartiņu uz arhīvu",
- "r-d-unarchive": "Atjaunot kartiņu no arhīva",
- "r-d-add-label": "Pievienot birku",
- "r-d-remove-label": "Noņemt birku",
- "r-create-card": "Izveidot jaunu kartiņu",
- "r-in-list": "sarakstā",
- "r-in-swimlane": "joslā",
- "r-d-add-member": "Pievienot dalībnieku",
- "r-d-remove-member": "Noņemt dalībnieku",
- "r-d-remove-all-member": "Noņemt visus dalībniekus",
- "r-d-check-all": "Atzīmēt visus saraksta elementus",
- "r-d-uncheck-all": "Noņemt visas saraksta atzīmes",
- "r-d-check-one": "Atzīmēt elementu",
- "r-d-uncheck-one": "Noņemt elementa atzīmi",
- "r-d-check-of-list": "kontrolsaraksta",
- "r-d-add-checklist": "Pievienot kontrolsarakstu",
- "r-d-remove-checklist": "Noņemt kontrolsarakstu",
- "r-by": "no",
- "r-add-checklist": "Pievienot kontrolsarakstu",
- "r-with-items": "ar elementiem",
- "r-items-list": "elements1,elements2,elements3",
- "r-add-swimlane": "Pievienot joslu",
- "r-swimlane-name": "joslas nosaukums",
- "r-board-note": "Piezīme: atstājiet lauku tuksu lai atgrieztu visas iespējamās vērtības.",
- "r-checklist-note": "Piezīme: kontrolsaraksta elementiem jābūt norādītiem atdalītiem ar komatu.",
- "r-when-a-card-is-moved": "Kad kartiņa ir pārvietota uz citu sarakstu",
- "r-set": "Uzstādīt",
- "r-update": "Atjaunot",
- "r-datefield": "datuma lauks",
- "r-df-start-at": "sākums",
- "r-df-due-at": "līdz",
- "r-df-end-at": "beigas",
- "r-df-received-at": "saņemts",
- "r-to-current-datetime": "līdz šim laikam",
- "r-remove-value-from": "Noņemt vērtību no",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Autentifikācijas metode",
- "authentication-type": "Autentifikācijas veids",
- "custom-product-name": "Personalizēts produkta nosaukums",
- "layout": "Izkārtojums",
- "hide-logo": "Paslēt logo",
- "add-custom-html-after-body-start": "Pievienot personalizētu HTML pēc sākuma",
- "add-custom-html-before-body-end": "Pievienot personalizētu HTML pirms beigām",
- "error-undefined": "Kaut kas nogāja greizi",
- "error-ldap-login": "Pierakstoties notika kļūda",
- "display-authentication-method": "Rādīt autentifikācijas metodi",
- "default-authentication-method": "Noklusētā autentifikācijas metode",
- "duplicate-board": "Dublēt dēli",
- "people-number": "Cilvēku skaits:",
- "swimlaneDeletePopup-title": "Dzēst joslu?",
- "swimlane-delete-pop": "Visas darbības tiks dzēstas no darbību saraksta un josla nebūs atjaunojama. Darbību nevar atsaukt.",
- "restore-all": "Atjaunot visu",
- "delete-all": "Dzēst visu",
- "loading": "Notiek ielāde, lūdzu uzgaidiet.",
- "previous_as": "pēdējais laiks bija",
- "act-a-dueAt": "laboja nodošanas laiku uz \nKad: __timeValue__\nKur: __card__\niepriekšējais nodošanas laiks bija __timeOldValue__",
- "act-a-endAt": "laboja beigu laiku uz __timeValue__ no (__timeOldValue__)",
- "act-a-startAt": "mainīja sākuma laiku uz __timeValue__ no (__timeOldValue__)",
- "act-a-receivedAt": "mainīja sākuma laiku uz __timeValue__ no (__timeOldValue__)",
- "a-dueAt": "laboja nodošanas laiku lai tas būtu",
- "a-endAt": "laboja beigu laiku",
- "a-startAt": "laboja sākuma laiku",
- "a-receivedAt": "laboja saņemšanas laiku lai tas būtu",
- "almostdue": "tuvojas nodošanas laiks %s",
- "pastdue": "pārsniegts nodošanas laiks %s",
- "duenow": "nodošanas laiks ir šodien %s",
- "act-newDue": "__list__/__card__ ir 1. nodošanas atgādinājums [__board__]",
- "act-withDue": "__list__/__card__ nodošanas brīdinājumi [__board__]",
- "act-almostdue": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ tuvojas",
- "act-pastdue": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ ir pārsniegts",
- "act-duenow": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ ir tagad",
- "act-atUserComment": "Jūs pieminēja [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Tiešām dzēst kontu? Darbību nevar atsaukt.",
- "accounts-allowUserDelete": "Ļaut lietotājiem dzēst savus kontus",
- "hide-minicard-label-text": "Slēpt birku tekstu mini kartiņā",
- "show-desktop-drag-handles": "Rādīt darba virsmas vilkšanas simbolus",
- "assignee": "Īpašnieks",
- "cardAssigneesPopup-title": "Īpašnieks",
- "addmore-detail": "Pievienot detalizētāku aprakstu",
- "show-on-card": "Rādīt kartiņā",
- "new": "Jauns",
- "editUserPopup-title": "Labot lietotāju",
- "newUserPopup-title": "Jauns lietotājs",
- "notifications": "Ziņojumi",
- "view-all": "Skatīt visu",
- "filter-by-unread": "Rādīt nelasīto",
- "mark-all-as-read": "Atzīmēt visu kā lasītu",
- "remove-all-read": "Noņemt visu lasīto",
- "allow-rename": "Ļaut pārsaukt",
- "allowRenamePopup-title": "Ļaut pārsaukt",
- "start-day-of-week": "Uzstādīt nedēļas pirmo dienu",
- "monday": "Pirmdiena",
- "tuesday": "Otrdiena",
- "wednesday": "Trešdiena",
- "thursday": "Ceturtdiena",
- "friday": "Piektdiena",
- "saturday": "Sestdiena",
- "sunday": "Svētdiena",
- "status": "Statuss",
- "swimlane": "Josla",
- "owner": "Īpašnieks",
- "last-modified-at": "Pēdējo reizi labots",
- "last-activity": "Pēdējā darbība",
- "voting": "Balsošana",
- "archived": "Arhivēts",
- "delete-linked-card-before-this-card": "Nevar dzēst šo kartiņu pirms priekšteča kartiņas dzēšnas, kurai",
- "delete-linked-cards-before-this-list": "Nevar dzēst sarakstu pirms saistīto kartiņu, kas norada uz šī saraksta kartiņām, dzēšanas",
- "hide-checked-items": "Slēpt atzīmētos elementus",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Piekrist",
+ "act-activity-notify": "Darbību paziņojumi",
+ "act-addAttachment": "pievienoja failu __attachment__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-deleteAttachment": "dzēsa failu __attachment__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addSubtask": "pievienoja apakšuzdevumu __subtask__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addLabel": "Pievienoja birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addedLabel": "Pievienoja birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-removeLabel": "Dzēsa birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-removedLabel": "Dzēsa birku __label__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addChecklist": "pievienoja kontrolsarakstu __checklist__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addChecklistItem": "pievienoja kontrolsaraksta elementu __checklistItem__ sarakstam _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-removeChecklist": "dzēsa kontrolsarakstu __checklist__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-removeChecklistItem": "dzēsa kontrolsaraksta elementu __checklistItem__ sarakstam _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-checkedItem": "atzīmēja elementu __checklistItem__ kontrolsarakstā _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-uncheckedItem": "izņēma atzīmi elementam __checklistItem__ kontrolsarakstā _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-completeChecklist": "pabeidza kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-uncompleteChecklist": "atsāka kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-addComment": "komentēja kartiņu __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-editComment": "laboja komentāru kartiņai __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-deleteComment": "dzēsa komentāru kartiņai __card__: __comment__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-createBoard": "izveidoja dēli __board__",
+ "act-createSwimlane": "izveidoja joslu __swimlane__ dēlim __board__",
+ "act-createCard": "izveidoja kartiņu __card__ sarakstā __list__ joslai __swimlane__ dēlī __board__",
+ "act-createCustomField": "pievienoja lauku __customField__ dēlī __board__",
+ "act-deleteCustomField": "dzēsa lauku __customField__ dēlī __board__",
+ "act-setCustomField": "laboja lauku __customField__: __customFieldValue__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-createList": "pievienoja sarakstu __list__ dēlim __board__",
+ "act-addBoardMember": "pievienoja dalībnieku __member__ dēlim __board__",
+ "act-archivedBoard": "Dēlis __board__ pārvietots uz arhīvu",
+ "act-archivedCard": "Kartiņa __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__ pārvietota uz arhīvu",
+ "act-archivedList": "Saraksts __list__ joslā __swimlane__ dēlī __board__ pārvietots uz arhīvu",
+ "act-archivedSwimlane": "Josla __swimlane__ dēlī __board__ pārvietota uz arhīvu",
+ "act-importBoard": "importēja dēli __board__",
+ "act-importCard": "importēja kartiņu __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-importList": "importēja sarakstu __list__ joslā __swimlane__ dēlī __board__",
+ "act-joinMember": "pievienoja dalībnieku __member__ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-moveCard": "pārvietoja kartiņu __card__ dēlī __board__ no saraksta __oldList__ joslā __oldSwimlane__ uz sarakstu __list__ joslā __swimlane__",
+ "act-moveCardToOtherBoard": "pārvietoja kartiņu __card__ no saraksta __oldList__ joslā __oldSwimlane__ dēlī __oldBoard__ uz sarakstu __list__ joslā __swimlane__ dēlī __board__",
+ "act-removeBoardMember": "noņēma dalībnieku __member__ no dēļa __board__",
+ "act-restoredCard": "atjaunoja kartiņu __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-unjoinMember": "noņēma dalībnieku __member__ no kartiņas __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Darbības",
+ "activities": "Darbības",
+ "activity": "Darbība",
+ "activity-added": "pievienoja %s pie %s",
+ "activity-archived": "%s pārvietoja uz arhīvu",
+ "activity-attached": "pievienoja %s pie %s",
+ "activity-created": "izveidoja%s",
+ "activity-customfield-created": "izveidoja lauku %s",
+ "activity-excluded": "izslēdza%s no%s",
+ "activity-imported": "importēja %s iekš %s no %s",
+ "activity-imported-board": "importēja %s no %s",
+ "activity-joined": "pievienojās %s",
+ "activity-moved": "pārvietoja %s no %s uz %s",
+ "activity-on": "uz %s",
+ "activity-removed": "noņēma %s no %s",
+ "activity-sent": "nosūtīja %s uz %s",
+ "activity-unjoined": "atvienoja %s",
+ "activity-subtask-added": "pievienoja apakšuzdevumu %s",
+ "activity-checked-item": "atzīmēja %s kontrolsarakstā %s no %s",
+ "activity-unchecked-item": "izņēma atzīmi %s kontrolsarakstā %s no %s",
+ "activity-checklist-added": "pievienoja kontrolsarakstu %s",
+ "activity-checklist-removed": "noņēma kontrolsarakstu no %s",
+ "activity-checklist-completed": "pabeidza kontrolsarakstu %s no %s",
+ "activity-checklist-uncompleted": "atsāka kontrolsarakstu %s no %s",
+ "activity-checklist-item-added": "pievienoja kontrolsaraksta elementu no '%s' iekš %s",
+ "activity-checklist-item-removed": "noņēma saraksta elementu no '%s' iekš %s",
+ "add": "Pievienot",
+ "activity-checked-item-card": "atzīmēja %s kontrolsarakstā %s",
+ "activity-unchecked-item-card": "izņēma atzīmi %s kontrolsarakstā %s",
+ "activity-checklist-completed-card": "pabeidza kontrolsarakstu _checklist_ kartiņai __card__ sarakstā __list__ joslā __swimlane__ dēlī __board__",
+ "activity-checklist-uncompleted-card": "atsāka kontrolsarakstu %s",
+ "activity-editComment": "laboja komentāru %s",
+ "activity-deleteComment": "dzēsa komentāru %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Pievienot failu",
+ "add-board": "Pievienot dēli",
+ "add-card": "Pievienot kartiņu",
+ "add-swimlane": "Pievienot joslu",
+ "add-subtask": "Pievienot apakšuzdevumu",
+ "add-checklist": "Pievienot kontrolsarakstu",
+ "add-checklist-item": "Pievienot elementu",
+ "add-cover": "Pievienot vāku",
+ "add-label": "Pievienot birku",
+ "add-list": "Pievienot sarakstu",
+ "add-members": "Pievienot dalībniekus",
+ "added": "Pievienots",
+ "addMemberPopup-title": "Dalībnieki",
+ "admin": "Administrators",
+ "admin-desc": "Var skatīt un labot kartiņas, noņemt dalībniekus un mainīt dēļa iestatījumus",
+ "admin-announcement": "Paziņojums",
+ "admin-announcement-active": "Aktīvizēts paziņojums visā sistēmā",
+ "admin-announcement-title": "Paziņojums no administratora",
+ "all-boards": "Visi dēļi",
+ "and-n-other-card": "Un __count__ cita kartiņa",
+ "and-n-other-card_plural": "Un __count__ citas kartiņas",
+ "apply": "Saglabāt",
+ "app-is-offline": "Notiek ielāde, lūdzu uzgaidiet. Lapas pārlāde izraisīs datu zudumu. Ja neizdodas ielāde, lūdzu pārbaudiet, vai serveris nav apstājies.",
+ "archive": "Pārvietot uz arhīvu",
+ "archive-all": "Pārvietot visu uz arhīvu",
+ "archive-board": "Pārvietot dēli uz arhīvu",
+ "archive-card": "Pārvietot kartiņu uz arhīvu",
+ "archive-list": "Pārvietot sarakstu uz arhīvu",
+ "archive-swimlane": "Pārvietot joslu uz arhīvu",
+ "archive-selection": "Pārvietot atzīmēto uz arhīvu",
+ "archiveBoardPopup-title": "Pārvietot dēli uz arhīvu?",
+ "archived-items": "Arhīvs",
+ "archived-boards": "Dēļi arhīvā",
+ "restore-board": "Atjaunot dēli",
+ "no-archived-boards": "Arhīvā nav dēļu.",
+ "archives": "Arhīvs",
+ "template": "Sagatave",
+ "templates": "Sagataves",
+ "assign-member": "Iecelt dalībnieku",
+ "attached": "pievienots fails",
+ "attachment": "Fails",
+ "attachment-delete-pop": "Faila dzēšana ir neatgriezeniska. Darbību nevar atsaukt.",
+ "attachmentDeletePopup-title": "Dzēst failu?",
+ "attachments": "Faili",
+ "auto-watch": "Automātiski sekot dēļiem, kad tie tiek izveidoti",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Atpakaļ",
+ "board-change-color": "Mainīt krāsu",
+ "board-nb-stars": "%s zvaigznes",
+ "board-not-found": "Dēlis nav atrasts",
+ "board-private-info": "Šis dēlis būs privāts.",
+ "board-public-info": "Šis dēlis būs publisks.",
+ "boardChangeColorPopup-title": "Mainīt dēļa fonu",
+ "boardChangeTitlePopup-title": "Pārsaukt dēli",
+ "boardChangeVisibilityPopup-title": "Mainīt redzamību",
+ "boardChangeWatchPopup-title": "Mainīt sekošanu",
+ "boardMenuPopup-title": "Dēļa iestatījumi",
+ "boardChangeViewPopup-title": "Dēļa skats",
+ "boards": "Dēļi",
+ "board-view": "Dēļa skats",
+ "board-view-cal": "Kalendārs",
+ "board-view-swimlanes": "Joslas",
+ "board-view-collapse": "Sakļaut",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Saraksti",
+ "bucket-example": "Piemēram \"Izdarāmie darbi\"",
+ "cancel": "Atcelt",
+ "card-archived": "Šī kartiņa ir pārvietota uz arhīvu",
+ "board-archived": "Šis dēlis ir pārvietots uz arhīvu",
+ "card-comments-title": "Šai kartiņai ir %s komentārs.",
+ "card-delete-notice": "Dzēšana ir neatgriezeniska. Jūs zaudēsiet visas ar kartiņu saistītās darbības.",
+ "card-delete-pop": "Visas darbības no saraksta tiks noņemtas un jūs vairs nevarēsiet kartiņu atvērt. Darbību nevar atsaukt.",
+ "card-delete-suggest-archive": "Lai kartiņu noņemtu no dēļa nezaudējot darbības, arhivējiet to.",
+ "card-due": "Termiņš",
+ "card-due-on": "Termiņa beigas",
+ "card-spent": "Patērētais laiks",
+ "card-edit-attachments": "Labot failus",
+ "card-edit-custom-fields": "Labot laukus",
+ "card-edit-labels": "Labot birkas",
+ "card-edit-members": "Labot dalībniekus",
+ "card-labels-title": "Mainīt kartiņas birkas.",
+ "card-members-title": "Pievienot vai noņemt dēļa dalībniekus kartiņai.",
+ "card-start": "Sākt",
+ "card-start-on": "Sākas",
+ "cardAttachmentsPopup-title": "Pievienot no",
+ "cardCustomField-datePopup-title": "Mainīt datumu",
+ "cardCustomFieldsPopup-title": "Labot laukus",
+ "cardStartVotingPopup-title": "Sākt balsojumu",
+ "positiveVoteMembersPopup-title": "Atbalstītāji",
+ "negativeVoteMembersPopup-title": "Oponenti",
+ "card-edit-voting": "Balsošana",
+ "editVoteEndDatePopup-title": "Labot balsojuma beigu datumu",
+ "allowNonBoardMembers": "Tikai pierakstītajiem lietotājiem",
+ "vote-question": "Balsojuma jautājums",
+ "vote-public": "Rādīt par ko katrs balsoja",
+ "vote-for-it": "priekš tā",
+ "vote-against": "pret",
+ "deleteVotePopup-title": "Dzēst balsojumu?",
+ "vote-delete-pop": "Dzēšana ir neatgriezeniska. Jūs zaudēsiet visas darbības saistītas ar šo balsojumu.",
+ "cardDeletePopup-title": "Dzēst kartiņu?",
+ "cardDetailsActionsPopup-title": "Kartiņas darbības",
+ "cardLabelsPopup-title": "Birkas",
+ "cardMembersPopup-title": "Dalībnieki",
+ "cardMorePopup-title": "Vairāk",
+ "cardTemplatePopup-title": "Izveidot sagatavi",
+ "cards": "Kartiņas",
+ "cards-count": "Kartiņas",
+ "casSignIn": "Pierakstīties ar CAS",
+ "cardType-card": "Kartiņa",
+ "cardType-linkedCard": "Saistīta kartiņa",
+ "cardType-linkedBoard": "Saistīts dēlis",
+ "change": "Mainīt",
+ "change-avatar": "Mainīt attēlu",
+ "change-password": "Mainīt paroli",
+ "change-permissions": "Mainīt atļaujas",
+ "change-settings": "Iestatījumi",
+ "changeAvatarPopup-title": "Mainīt attēlu",
+ "changeLanguagePopup-title": "Mainīt valodu",
+ "changePasswordPopup-title": "Mainīt paroli",
+ "changePermissionsPopup-title": "Mainīt atļaujas",
+ "changeSettingsPopup-title": "Iestatījumi",
+ "subtasks": "Apakšuzdevumi",
+ "checklists": "Kontrolsaraksti",
+ "click-to-star": "Spied lai atzīmēt ar zvaigzni.",
+ "click-to-unstar": "Spied lai noņemtu zvaigzni.",
+ "clipboard": "Starpliktuve vai drag & drop",
+ "close": "Aizvērt",
+ "close-board": "Aizvērt dēli",
+ "close-board-pop": "Jūs varēsiet atjaunot dēli spiežot uz \"Arhīvs\" sākumā.",
+ "color-black": "melns",
+ "color-blue": "zils",
+ "color-crimson": "tumši sarkans",
+ "color-darkgreen": "tumši zaļš",
+ "color-gold": "zeltīts",
+ "color-gray": "pelēks",
+ "color-green": "zaļš",
+ "color-indigo": "indigo",
+ "color-lime": "laims",
+ "color-magenta": "magenta",
+ "color-mistyrose": "viegli rozā",
+ "color-navy": "jūras zils",
+ "color-orange": "oranžš",
+ "color-paleturquoise": "blāvs tirkīzs",
+ "color-peachpuff": "persiks",
+ "color-pink": "rozā",
+ "color-plum": "plūme",
+ "color-purple": "purpurs",
+ "color-red": "sarkans",
+ "color-saddlebrown": "seglu brūns",
+ "color-silver": "sudrabots",
+ "color-sky": "debesu",
+ "color-slateblue": "šīfera zils",
+ "color-white": "balts",
+ "color-yellow": "dzeltens",
+ "unset-color": "Atiestatīt",
+ "comment": "Komentēt",
+ "comment-placeholder": "Rakstīt komentāru",
+ "comment-only": "Tikai komentēt",
+ "comment-only-desc": "Var komentēt tikai kartiņā.",
+ "no-comments": "Nav komentāru",
+ "no-comments-desc": "Nevar redzēt komentārus un darbības.",
+ "worker": "Darbonis",
+ "worker-desc": "Var tikai pārvietot kartiņas, pievienot sevi kartiņai un komentēt.",
+ "computer": "Dators",
+ "confirm-subtask-delete-dialog": "Vai tiešām vēlaties dzēst apakšuzdevumu?",
+ "confirm-checklist-delete-dialog": "Vai tiešam vēlaties dzēst kontrolsarakstu?",
+ "copy-card-link-to-clipboard": "Kopet kartiņas saiti starpliktuvē",
+ "linkCardPopup-title": "Kartiņas saite",
+ "searchElementPopup-title": "Meklēt",
+ "copyCardPopup-title": "Kopēt kartiņu",
+ "copyChecklistToManyCardsPopup-title": "Kopēt kontrolsarakstu uz citām kartiņām",
+ "copyChecklistToManyCardsPopup-instructions": "Mērķa kartiņu virsraksti un apraksti šajā JSON formātā",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Pirmās kartiņas virsraksts\", \"description\":\"Pirmās kartiņas apraksts}, {\"title\":\"Otrās kartiņas virsraksts\",\"description\":\"Otrās kartiņas apraksts\"},{\"title\":\"Pēdējās kartiņas virsraksts\",\"description\":\"Pēdējās kartiņas apraksts\"} ]",
+ "create": "Izveidot",
+ "createBoardPopup-title": "Izveidot dēli",
+ "chooseBoardSourcePopup-title": "Importēt dēli",
+ "createLabelPopup-title": "Izveidot birku",
+ "createCustomField": "Izveidot lauku",
+ "createCustomFieldPopup-title": "Izveidot lauku",
+ "current": "šobrīdējs",
+ "custom-field-delete-pop": "Darbību nevar atsaukt. Ar šo lauks tiks dzēsts no visām kartiņām un tā vēsture tiks iznīcināta.",
+ "custom-field-checkbox": "Kastīte",
+ "custom-field-currency": "Valūta",
+ "custom-field-currency-option": "Valūtas kods",
+ "custom-field-date": "Datums",
+ "custom-field-dropdown": "Izkrītošā izvēlne",
+ "custom-field-dropdown-none": "(nav)",
+ "custom-field-dropdown-options": "Saraksta opcijas",
+ "custom-field-dropdown-options-placeholder": "Spiediet enter lai pievienotu opcijas",
+ "custom-field-dropdown-unknown": "(nav zināms)",
+ "custom-field-number": "Skaits",
+ "custom-field-text": "Teksts",
+ "custom-fields": "Lauki",
+ "date": "Datums",
+ "decline": "Noraidīt",
+ "default-avatar": "Noklusētais attēls",
+ "delete": "Dzēst",
+ "deleteCustomFieldPopup-title": "Dzēst lauku?",
+ "deleteLabelPopup-title": "Dzēst birku?",
+ "description": "Apraksts",
+ "disambiguateMultiLabelPopup-title": "Skaidrot birkas darbību",
+ "disambiguateMultiMemberPopup-title": "Skaidrot dalībnieka darbību",
+ "discard": "Nomest",
+ "done": "Darīts",
+ "download": "Lejuplādēt",
+ "edit": "Labot",
+ "edit-avatar": "Mainīt attēlu",
+ "edit-profile": "Labot profilu",
+ "edit-wip-limit": "Labot WIP limitu",
+ "soft-wip-limit": "Maigais WIP limits",
+ "editCardStartDatePopup-title": "Mainīt sākuma datumu",
+ "editCardDueDatePopup-title": "Mainīt termiņu",
+ "editCustomFieldPopup-title": "Labot lauku",
+ "editCardSpentTimePopup-title": "Mainīt patērēto laiku",
+ "editLabelPopup-title": "Mainīt birku",
+ "editNotificationPopup-title": "Labot ziņojumu",
+ "editProfilePopup-title": "Labot profilu",
+ "email": "E-pasts",
+ "email-enrollAccount-subject": "Izveidots profils iekš __siteName__",
+ "email-enrollAccount-text": "Sveiki, __user__,\n\nLai sāktu izmantot servisu, vienkārši spied saiti zemāk.\n\n__url__\n\nPaldies.",
+ "email-fail": "E-pasta sūtīšana neizdevās",
+ "email-fail-text": "Kļūda mēģinot sūtīt e-pastu",
+ "email-invalid": "Nederīgs e-pasts",
+ "email-invite": "Ielūgt caur e-pastu",
+ "email-invite-subject": "__inviter__ jums atsūtīja ielūgumu",
+ "email-invite-text": "Sveiki, __user__,\n\n__inviter__ ielūdz jūs pievienoties dēlim \"__board__\".\n\nLūdzu sekojiet saitei zemāk:\n\n__url__\n\nPaldies.",
+ "email-resetPassword-subject": "Atiestatīt jūsu paroli priekš __siteName__",
+ "email-resetPassword-text": "Sveiki, __user__,\n\nLai atiestatītu paroli, vienkārši sekojiet saitei zemāk.\n\n__url__\n\nPaldies.",
+ "email-sent": "E-pasts nosūtīts",
+ "email-verifyEmail-subject": "Apstipriniet savu e-pasta adresi priekš __siteName__",
+ "email-verifyEmail-text": "Sveiki, __user__,\n\nLai apstiprinātu savu e-pasta adresi, vienkārši spiediet uz saites zemāk.\n\n__url__\n\nPaldies.",
+ "enable-wip-limit": "Ieslēgt WIP limitu",
+ "error-board-doesNotExist": "Šis dēlis neeksistē",
+ "error-board-notAdmin": "Jums jābūt dēļa administratoram, lai veiktu šo darbību",
+ "error-board-notAMember": "Jums jābūt šī dēļa dalībniekam, lai veiktu šo darbību",
+ "error-json-malformed": "Teksts nav derīgs JSON",
+ "error-json-schema": "JSON dati nesatur nepieciešamo informāciju pareizajā formātā",
+ "error-csv-schema": "CSV (Comma Separated Values)/TSV (Tab Separated Values) dati nesatur nepieciešamo informāciju pareizajā formātā.",
+ "error-list-doesNotExist": "Šis saraksts neeksistē",
+ "error-user-doesNotExist": "Šis lietotājs neeksistē",
+ "error-user-notAllowSelf": "Jūs nevarat ielūgt sevi",
+ "error-user-notCreated": "Šis lietotājs nav izveidots",
+ "error-username-taken": "Šis lieotājvārds jau ir aizņemts",
+ "error-email-taken": "E-pasts jau ir izmantots",
+ "export-board": "Eksportēt dēli",
+ "export-board-json": "Eksportēt dēli kā JSON",
+ "export-board-csv": "Eksportēt dēli kā CSV",
+ "export-board-tsv": "Eksportēt dēli kā TSV",
+ "export-board-html": "Eksportēt dēli kā HTML",
+ "exportBoardPopup-title": "Eksportēt dēli",
+ "sort": "Kārtot",
+ "sort-desc": "Spiediet, lai kārtotu sarakstu",
+ "list-sort-by": "Kārtot sarakstu pēc:",
+ "list-label-modifiedAt": "Uzskaitīt piekļuves laiku",
+ "list-label-title": "Saraksta nosaukums",
+ "list-label-sort": "Jūsu izvēlēta secība",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrēt",
+ "filter-cards": "Filtrēt kartiņas vai sarakstus",
+ "list-filter-label": "Filtrēt sarakstus pēc virsraksta",
+ "filter-clear": "Notīrīt filtru",
+ "filter-labels-label": "Filtrēt pēc birkas",
+ "filter-no-label": "Nav birkas",
+ "filter-member-label": "Filtrēt pēc dalībniekiem",
+ "filter-no-member": "Nav dalībnieku",
+ "filter-assignee-label": "Filtrēt pēc īpašnieka",
+ "filter-no-assignee": "Nav atbildīgā",
+ "filter-custom-fields-label": "Filtrēt pēc papildlaukiem",
+ "filter-no-custom-fields": "Nav papildu lauku",
+ "filter-show-archive": "Rādīt arhivētos sarakstus",
+ "filter-hide-empty": "Slēpt tukšus sarakstus",
+ "filter-on": "Filtrs ir ieslēgts",
+ "filter-on-desc": "Kartiņas šajā dēlī ir filtrētas. Spiediet šeit, lai labotu filtru.",
+ "filter-to-selection": "Filtrs uz iezīmēto",
+ "other-filters-label": "Citi filtri",
+ "advanced-filter-label": "Papildu filtri",
+ "advanced-filter-description": "Papildu filtri ļauj meklēt ar šādiem operatoriem: == != <= >= && || ( ) Starp operatoriem jāatstāj atstarpe. Lai filtrētu papildlaukus, norādiet tā nosaukumu un vērtību. Piemērs: Lauks1 == Vērtība1. Piezīme: ja lauki vai vērtības satur atstarpes, ievietojiet tekstu pēdiņās. Piemērs: 'Lauks 1' == 'Vērtība 1'. Lai ievadītu kontrolsimbolus (pēdiņās un slīpsvītras), pirms tiem ievadiet \\. Piemērs: Lauks1 == 'Rībēj\\' Rīga'. Papildus var kombinēt vairākus nosacījumus. Piemērs: L1 == V1 || L1 == V2. Parasti operatori tiek interpretēti no kreisās uz labo pusi. Secību var mainīt ar iekavām. Piemērs: L1 == V1 && ( L2 == V2 || L2 == V3 ). Papildus teksta laukus var filtrēt ar RegEx: L1 == /Tes.*/i",
+ "fullname": "Pilnais vārds un uzvārds",
+ "header-logo-title": "Atpakaļ uz jūsu dēļiem",
+ "hide-system-messages": "Slēpt darbības",
+ "headerBarCreateBoardPopup-title": "Izveidot dēli",
+ "home": "Sākums",
+ "import": "Importēt",
+ "impersonate-user": "Uzdoties par lietotāju",
+ "link": "Saite",
+ "import-board": "Importēt dēli",
+ "import-board-c": "Importēt dēli",
+ "import-board-title-trello": "Importēt dēli no Trello",
+ "import-board-title-wekan": "Importēt dēli no iepriekšēja eksporta",
+ "import-board-title-csv": "Importēt dēli no CSV/TSV",
+ "from-trello": "No Trello",
+ "from-wekan": "No iepriekšēja eksporta",
+ "from-csv": "No CSV/TSV",
+ "import-board-instruction-trello": "Jūsu Trello dēlī ejiet uz 'Menu', tālāk 'More', 'Print and Export', 'Export JSON' un nokopejiet tekstu.",
+ "import-board-instruction-csv": "Ielīmējiet jūsu Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "Jūsu dēlī ejiet uz 'Menu', tālāk 'Export board' un nokopējiet tekstu no lejuplādētā faila.",
+ "import-board-instruction-about-errors": "Ja importējot redzat kļūdu, imports tik un tā varēja nostrādāt. Pārbaudiet lapu Visi dēļi.",
+ "import-json-placeholder": "Šeit ielīmējiet derīgu JSON tekstu",
+ "import-csv-placeholder": "Šeit ielīmējiet derīgu CSV/TSV tekstu",
+ "import-map-members": "Norādīt dalībniekus",
+ "import-members-map": "Jūsu importētajam dēlim ir dalībnieki. Lūdzu norādiet kuri no šiem dalībniekiem ir kuri.",
+ "import-show-user-mapping": "Pārbaudīt norādītos dalībniekus",
+ "import-user-select": "Izvēlieties kuru no esošajiem dalībniekiem izmantot kā šo lietotāju",
+ "importMapMembersAddPopup-title": "Izvēlēties dalībnieku",
+ "info": "Versija",
+ "initials": "Iniciāļi",
+ "invalid-date": "Nederīgs datums",
+ "invalid-time": "Nederīgs laiks",
+ "invalid-user": "Nederīgs dalībnieks",
+ "joined": "pievienojās",
+ "just-invited": "Jūs ielūdza pievienoties šim dēlim",
+ "keyboard-shortcuts": "Karstie taustiņi",
+ "label-create": "Izveidot birku",
+ "label-default": "%s birka (noklusēti)",
+ "label-delete-pop": "Darbību nevar atsaukt. Ar šo birka tiks noņemta no visām kartiņām un vēsture tiks dzēsta.",
+ "labels": "Birkas",
+ "language": "Valoda",
+ "last-admin-desc": "Nevar nomainīt lomu, jo jābūt vismaz vienam administratoram.",
+ "leave-board": "Pamest dēli",
+ "leave-board-pop": "Vai tiešām pamest __boardTitle__? Jūs tiksiet noņemts no visām kartiņām šajā dēlī.",
+ "leaveBoardPopup-title": "Pamest dēli?",
+ "link-card": "Saite uz kartiņu",
+ "list-archive-cards": "Pārvietot visas kartiņas no šī saraksta uz arhīvu",
+ "list-archive-cards-pop": "Šis visas saraksta kartiņas noņems no dēļa. Lai kartiņas apskatītu un atgrieztu ejiet uz \"Izvēlne\" > \"Arhīvs\".",
+ "list-move-cards": "Pārvietot visas kartiņas šajā sarakstā",
+ "list-select-cards": "Atzīmēt visas kartiņas šajā sarakstā",
+ "set-color-list": "Mainīt krāsu",
+ "listActionPopup-title": "Saraksta darbības",
+ "settingsUserPopup-title": "Lietotāja iestatījumi",
+ "swimlaneActionPopup-title": "Joslas darbības",
+ "swimlaneAddPopup-title": "Pievienot joslu zem šīs",
+ "listImportCardPopup-title": "Importēt Trello kartiņu",
+ "listImportCardsTsvPopup-title": "Importēt Excel CSV/TSV",
+ "listMorePopup-title": "Vairāk",
+ "link-list": "Saite uz šo sarakstu",
+ "list-delete-pop": "Visas darbības no saraksta tiks dzēstas un nebūs atgriežamas. Darbību nevar atsaukt.",
+ "list-delete-suggest-archive": "Lai saglabātu darbības, sarakstu var pārvieto uz arhīvu.",
+ "lists": "Saraksti",
+ "swimlanes": "Joslas",
+ "log-out": "Izrakstīties",
+ "log-in": "Pierakstīties",
+ "loginPopup-title": "Pierakstīties",
+ "memberMenuPopup-title": "Dalībnieka iestatījumi",
+ "members": "Dalībnieki",
+ "menu": "Izvēlne",
+ "move-selection": "Pārvietot atzīmēto",
+ "moveCardPopup-title": "Pārvietot kartiņu",
+ "moveCardToBottom-title": "Pārvietot uz apakšu",
+ "moveCardToTop-title": "Pārvietot uz augšu",
+ "moveSelectionPopup-title": "Pārvietot atzīmēto",
+ "multi-selection": "Atzīmēt",
+ "multi-selection-label": "Pielikt birku atzīmētajam",
+ "multi-selection-member": "Pielikt dalībnieku atzīmētajam",
+ "multi-selection-on": "Atzīmēšana ieslēgta",
+ "muted": "Apklusināts",
+ "muted-info": "Nekad nesaņemsiet ziņojumus par izmaiņām šajā dēlī",
+ "my-boards": "Mani dēļi",
+ "name": "Vārds",
+ "no-archived-cards": "Arhīvā nav kartiņu.",
+ "no-archived-lists": "Arhīvā nav sarakstu.",
+ "no-archived-swimlanes": "Arhīvā nav joslu.",
+ "no-results": "Nav rezultātu",
+ "normal": "Normāls",
+ "normal-desc": "Var skatīties un labot kartiņas. Nevar mainīt iestatījumus.",
+ "not-accepted-yet": "Ielūgums nav vēl apstiprināts",
+ "notify-participate": "Saņemt ziņojumus par izmaiņām kartiņās kurām esat veidotājs vai dalībnieks",
+ "notify-watch": "Saņemt ziņojumus no dēļiem, sarakstiem vai kartiņām kurām sekojat",
+ "optional": "nav obligāts",
+ "or": "vai",
+ "page-maybe-private": "Ši lapa ir privāta. To var apskatīt pēc pierakstīšanās.",
+ "page-not-found": "Lapa nav atrasta.",
+ "password": "Parole",
+ "paste-or-dragdrop": "lai ielīmētu, ievilktu attēla failu tajā (tikai attēlu)",
+ "participating": "Piedalās",
+ "preview": "Priekšskatījums",
+ "previewAttachedImagePopup-title": "Priekšskatījums",
+ "previewClipboardImagePopup-title": "Priekšskatījums",
+ "private": "Privāts",
+ "private-desc": "Šis dēlis ir privāts. Tikai dalībnieki var to skatīties un labot.",
+ "profile": "Profils",
+ "public": "Publisks",
+ "public-desc": "Šis dēlis ir publisks. Tas ir redzams visiem kam uz to ir saite un to varēs atrast ar meklēšanas dziņiem kā Google. Tikai dalībnieki var dēli labot.",
+ "quick-access-description": "Atzīmē dēļus ar zvaigzni, lai tie parādītos šeit.",
+ "remove-cover": "Noņemt vāku",
+ "remove-from-board": "Noņemt no dēļa",
+ "remove-label": "Noņemt birku",
+ "listDeletePopup-title": "Dzēst sarakstu?",
+ "remove-member": "Noņemt dalībnieku",
+ "remove-member-from-card": "Noņemt no kartiņas",
+ "remove-member-pop": "Noņemt __name__ (__username__) no __boardTitle__? Dalībnieks tiks noņemts no visām kartiņām šajā dēlī. Dalībnieks saņems ziņojumu.",
+ "removeMemberPopup-title": "Noņemt dalībnieku?",
+ "rename": "Pārsaukt",
+ "rename-board": "Pārsaukt dēli",
+ "restore": "Atjaunot",
+ "save": "Saglabāt",
+ "search": "Meklēt",
+ "rules": "Nosacījumi",
+ "search-cards": "Meklēt pa kartiņu/sarakstu virsrakstiem, aprakstiem un laukiem šajā dēlī",
+ "search-example": "Ievadiet meklējamo tekstu un spiediet Enter",
+ "select-color": "Mainīt krāsu",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Iestatīt maksimālo skaitu ar kartiņām šajā sarakstā",
+ "setWipLimitPopup-title": "Uzlikt WIP ierobežojumu",
+ "shortcut-assign-self": "Pievienot sevi atvērtajai kartiņai",
+ "shortcut-autocomplete-emoji": "Emoji automātiska pabeigšana",
+ "shortcut-autocomplete-members": "Dalībnieku automātiska pabeigšana",
+ "shortcut-clear-filters": "Notīrīt visus filtrus",
+ "shortcut-close-dialog": "Aizvērt vaicājumu",
+ "shortcut-filter-my-cards": "Filtrēt manas kartiņas",
+ "shortcut-show-shortcuts": "Atvērt saīšņu sarakstu",
+ "shortcut-toggle-filterbar": "Pārslēgt filtru sānjoslu",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Pārslēgt dēļu sānjoslu",
+ "show-cards-minimum-count": "Rādīt kartiņu skaitu, ja to sarakstā ir vairāk par",
+ "sidebar-open": "Atvērt sānjoslu",
+ "sidebar-close": "Aizvērt sānjoslu",
+ "signupPopup-title": "Izveidot profilu",
+ "star-board-title": "Spied, lai dēli atzīmētu ar zvaigzni. Šis dēlis pēc tam vienmēr būs redzams ekrāna augšā.",
+ "starred-boards": "Dēļi ar zvaigzni",
+ "starred-boards-description": "Ar zvaigzni atzīmētie dēļi vienmēr redzami ekrāna augšā",
+ "subscribe": "Pierakstīties",
+ "team": "Komanda",
+ "this-board": "šis dēlis",
+ "this-card": "šī kartiņa",
+ "spent-time-hours": "Pavadītais laiks (stundas)",
+ "overtime-hours": "Virsstundas (stundas)",
+ "overtime": "Virsstundas",
+ "has-overtime-cards": "Kartiņas ar virsstundām",
+ "has-spenttime-cards": "Kartiņas ar pavadīto laiku",
+ "time": "Laiks",
+ "title": "Nosaukums",
+ "tracking": "Sekošana",
+ "tracking-info": "Saņemsiet ziņojumu par jebkādām izmaiņām kartiņās, kurām esat vai nu veidotājs vai nu dalībnieks.",
+ "type": "Veids",
+ "unassign-member": "Noņemt dalībnieku",
+ "unsaved-description": "Jums ir nesaglabāts apraksts.",
+ "unwatch": "Beigt sekošanu",
+ "upload": "Augšuplādēt",
+ "upload-avatar": "Augšuplādēt attēlu",
+ "uploaded-avatar": "Attēls augšuplādēts",
+ "custom-top-left-corner-logo-image-url": "Logo attēls augšējā kreisā stūrī - URL",
+ "custom-top-left-corner-logo-link-url": "Logo saite augšējā kreisajā stūrī - URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Logo pierakstīšanās ekrānā - URL",
+ "custom-login-logo-link-url": "Logo saite pierakstīšanās ekrānā - URL",
+ "text-below-custom-login-logo": "Teksts zem logo pierakstīšanās lapā",
+ "username": "Lietotājvārds",
+ "view-it": "Skatīt",
+ "warn-list-archived": "brīdinājums: šī kartiņa ir sarakstā arhīvā",
+ "watch": "Sekot",
+ "watching": "Pilna sekošana",
+ "watching-info": "Saņemsiet ziņojumu par jebkādām izmaiņām dēlī",
+ "welcome-board": "Sākuma dēlis",
+ "welcome-swimlane": "Sasniegums 1",
+ "welcome-list1": "Pamati",
+ "welcome-list2": "Papildu",
+ "card-templates-swimlane": "Kartiņu sagataves",
+ "list-templates-swimlane": "Sarakstu sagataves",
+ "board-templates-swimlane": "Dēļu sagataves",
+ "what-to-do": "Ko vēlaties darīt?",
+ "wipLimitErrorPopup-title": "Nederīgs WIP ierobežojums",
+ "wipLimitErrorPopup-dialog-pt1": "Sarakstā kartiņu skaits ir lielāks kā definētais WIP ierobežojums.",
+ "wipLimitErrorPopup-dialog-pt2": "Lūdzu pārvietojiet kādas kartiņas prom no šī saraksta vai arī uzstādiet augstāku WIP ierobežojumu.",
+ "admin-panel": "Administratora panelis",
+ "settings": "Iestatījumi",
+ "people": "Dalībnieki",
+ "registration": "Reģistrācija",
+ "disable-self-registration": "Atspējot dalībnieku patstāvīgu reģistrāciju",
+ "invite": "Ielūgt",
+ "invite-people": "Ielūgt dalībniekus",
+ "to-boards": "Uz dēli (dēļiem)",
+ "email-addresses": "E-pasta adreses",
+ "smtp-host-description": "Adrese SMTP serverim, kas izsūtīs e-pastus.",
+ "smtp-port-description": "SMTP servera ports priekš e-pastu sūtīšanas.",
+ "smtp-tls-description": "Sūtīt e-pastus caur TLS",
+ "smtp-host": "SMTP hosts",
+ "smtp-port": "SMTP ports",
+ "smtp-username": "Lietotājvārds",
+ "smtp-password": "Parole",
+ "smtp-tls": "TLS atbalsts",
+ "send-from": "No",
+ "send-smtp-test": "Sūtīt sev testa e-pastu",
+ "invitation-code": "Ielūguma kods",
+ "email-invite-register-subject": "__inviter__ jums atsūtīja ielūgumu",
+ "email-invite-register-text": "Sveki, __user__,\n\n__inviter__ ielūdz jūs uz kanban dēli sadarbībai.\n\nLūdzu sekojiet saitei zemāk:\n__url__\n\nJūsu ielūguma kods ir: __icode__\n\nPaldies.",
+ "email-smtp-test-subject": "SMTP testa e-pasts",
+ "email-smtp-test-text": "Jūs veiksmīgi nosūtījāt e-pastu",
+ "error-invitation-code-not-exist": "Ielūguma kods nepastāv",
+ "error-notAuthorized": "Jums nav atļaujas skatīt šo lapu.",
+ "webhook-title": "Webhook nosaukums",
+ "webhook-token": "Žetons (autentifikācijai)",
+ "outgoing-webhooks": "Izejošie Webhook",
+ "bidirectional-webhooks": "Divvirziena Webhook",
+ "outgoingWebhooksPopup-title": "Izejošie Webhook",
+ "boardCardTitlePopup-title": "Kartiņu virsraksta filtrs",
+ "disable-webhook": "Atspējot šo Webhook",
+ "global-webhook": "Globālie Webhook",
+ "new-outgoing-webhook": "Jauns izejošais Webhook",
+ "no-name": "(Nezināms)",
+ "Node_version": "Node versija",
+ "Meteor_version": "Meteor versija",
+ "MongoDB_version": "MongoDB versija",
+ "MongoDB_storage_engine": "MongoDB dzinis",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog iespējots",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU skaits",
+ "OS_Freemem": "OS brīva atmiņa",
+ "OS_Loadavg": "OS vidējā noslodze",
+ "OS_Platform": "OS platforma",
+ "OS_Release": "OS relīze",
+ "OS_Totalmem": "OS atmiņa kopā",
+ "OS_Type": "OS veids",
+ "OS_Uptime": "OS uptime",
+ "days": "dienas",
+ "hours": "stundas",
+ "minutes": "minūtes",
+ "seconds": "sekundes",
+ "show-field-on-card": "Rādīt šo lauku kartiņā",
+ "automatically-field-on-card": "Automātiski izveidot lauku visām kartiņām",
+ "showLabel-field-on-card": "Rādīt lauku nosaukumus mini kartiņā",
+ "yes": "Jā",
+ "no": "Nē",
+ "accounts": "Konti",
+ "accounts-allowEmailChange": "Ļaut e-pasta maiņu",
+ "accounts-allowUserNameChange": "Ļaut lietotājvārda maiņu",
+ "createdAt": "Izveidots",
+ "verified": "Apstiprināts",
+ "active": "Aktīvs",
+ "card-received": "Saņemts",
+ "card-received-on": "Saņemts",
+ "card-end": "Beigas",
+ "card-end-on": "Beidzas",
+ "editCardReceivedDatePopup-title": "Mainīt saņemšanas datumu",
+ "editCardEndDatePopup-title": "Mainīt beigu datumu",
+ "setCardColorPopup-title": "Mainīt krāsu",
+ "setCardActionsColorPopup-title": "Izvēlieties krāsu",
+ "setSwimlaneColorPopup-title": "Izvēlieties krāsu",
+ "setListColorPopup-title": "Izvēlieties krāsu",
+ "assigned-by": "Īpašnieks",
+ "requested-by": "Pieprasītājs",
+ "board-delete-notice": "Dzēšana nav atsaucama. Zaudēsiet visus sarakstus, kartiņas un darbības šajā dēlī.",
+ "delete-board-confirm-popup": "Visi saraksti, kartiņas, birkas un darbības tiks dzēstas un dēli nevarēs atgūt. Darbība nav atsaucama.",
+ "boardDeletePopup-title": "Dzēst dēli?",
+ "delete-board": "Dzēst dēli",
+ "default-subtasks-board": "Apakšuzdevumi priekš __board__ dēļa",
+ "default": "Noklusēts",
+ "queue": "Rinda",
+ "subtask-settings": "Apakšuzdevumu iestatījumi",
+ "card-settings": "Kartiņas iestatījumi",
+ "boardSubtaskSettingsPopup-title": "Dēļa apakšuzdevumu iestatījumi",
+ "boardCardSettingsPopup-title": "Kartiņas iestatījumi",
+ "deposit-subtasks-board": "Noguldīt apakšuzdevumus uz šo dēli:",
+ "deposit-subtasks-list": "Saraksts priekš apakšuzdevumiem noguldīts šeit:",
+ "show-parent-in-minicard": "Rādīt piederību mini kartiņā:",
+ "prefix-with-full-path": "Priedēklis ar pilnu ceļu",
+ "prefix-with-parent": "Priedēklis ar piederību",
+ "subtext-with-full-path": "Apakšteksts ar pilnu ceļu",
+ "subtext-with-parent": "Apakšteksts ar piederību",
+ "change-card-parent": "Mainīt kartiņas piederību",
+ "parent-card": "Pieder kartiņai",
+ "source-board": "Sākuma dēlis",
+ "no-parent": "Nerādīt piederību",
+ "activity-added-label": "pievinoja birku '%s' pie %s",
+ "activity-removed-label": "noņēma birku '%s' no %s",
+ "activity-delete-attach": "dzēsa failu no %s",
+ "activity-added-label-card": "pievienoja birku '%s'",
+ "activity-removed-label-card": "noņēma birku '%s'",
+ "activity-delete-attach-card": "dzēsa failu",
+ "activity-set-customfield": "uzstadīja lauku '%s' uz '%s' iekš %s",
+ "activity-unset-customfield": "noņēma lauku '%s' iekš %s",
+ "r-rule": "Nosacījums",
+ "r-add-trigger": "Pievienot trigeri",
+ "r-add-action": "Pievienot darbību",
+ "r-board-rules": "Dēļa nosacījumi",
+ "r-add-rule": "Pievienot nosacījumu",
+ "r-view-rule": "Skatīt nosacījumu",
+ "r-delete-rule": "Dzēst nosacījumu",
+ "r-new-rule-name": "Jaunā nosacījuma nosaukums",
+ "r-no-rules": "Nav nosacījumu",
+ "r-trigger": "Trigeris",
+ "r-action": "Darbība",
+ "r-when-a-card": "Kad kartiņa",
+ "r-is": "ir",
+ "r-is-moved": "ir pārvitots",
+ "r-added-to": "Pievienots",
+ "r-removed-from": "Noņemts no",
+ "r-the-board": "dēlis",
+ "r-list": "saraksts",
+ "set-filter": "Uzstādīt filtru",
+ "r-moved-to": "Pārvietots uz",
+ "r-moved-from": "Pārvietots no",
+ "r-archived": "Pārvietots uz arhīvu",
+ "r-unarchived": "Atjaunots no arhīva",
+ "r-a-card": "kartiņa",
+ "r-when-a-label-is": "Kad birka ir",
+ "r-when-the-label": "Kad birka",
+ "r-list-name": "saraksta nosaukums",
+ "r-when-a-member": "Kad dalībnieks ir",
+ "r-when-the-member": "Kad dalībnieks",
+ "r-name": "vārds",
+ "r-when-a-attach": "Kad fails",
+ "r-when-a-checklist": "Kad kontrolsaraksts ir",
+ "r-when-the-checklist": "Kad kontrolsaraksts",
+ "r-completed": "Pabeigts",
+ "r-made-incomplete": "Padarīts par nepabeigtu",
+ "r-when-a-item": "Kad kontrolsaraksta elements ir",
+ "r-when-the-item": "Kad kontrolsaraksta elements",
+ "r-checked": "Atzīmēts",
+ "r-unchecked": "Atzīme noņemta",
+ "r-move-card-to": "Pārvietot kartiņu uz",
+ "r-top-of": "Augša",
+ "r-bottom-of": "Apakša",
+ "r-its-list": "tā saraksts",
+ "r-archive": "Pārvietot uz arhīvu",
+ "r-unarchive": "Atjaunot no arhīva",
+ "r-card": "kartiņa",
+ "r-add": "Pievienot",
+ "r-remove": "Noņemt",
+ "r-label": "birka",
+ "r-member": "dalībnieks",
+ "r-remove-all": "Noņemt visus dalībniekus no kartiņas",
+ "r-set-color": "Uzstādīt krāsu",
+ "r-checklist": "kontrolsaraksts",
+ "r-check-all": "Atzīmēt visu",
+ "r-uncheck-all": "Noņemt visas atzīmes",
+ "r-items-check": "Kontrolsaraksta elementi",
+ "r-check": "Atzīmēt",
+ "r-uncheck": "Noņemt atzimi",
+ "r-item": "elements",
+ "r-of-checklist": "kontrolsaraksta",
+ "r-send-email": "Sūtīt e-pastu",
+ "r-to": "uz",
+ "r-of": "no",
+ "r-subject": "subjekts",
+ "r-rule-details": "Nosacījuma detaļas",
+ "r-d-move-to-top-gen": "Pārvietot kartiņu uz augšu",
+ "r-d-move-to-top-spec": "Pārvietot kartiņu uz augšu",
+ "r-d-move-to-bottom-gen": "Pārvietot kartiņu uz apakšu",
+ "r-d-move-to-bottom-spec": "Pārvietot kartiņu uz apakšu",
+ "r-d-send-email": "Sūtīt e-pastu",
+ "r-d-send-email-to": "uz",
+ "r-d-send-email-subject": "subjekts",
+ "r-d-send-email-message": "ziņojums",
+ "r-d-archive": "Pārvietot kartiņu uz arhīvu",
+ "r-d-unarchive": "Atjaunot kartiņu no arhīva",
+ "r-d-add-label": "Pievienot birku",
+ "r-d-remove-label": "Noņemt birku",
+ "r-create-card": "Izveidot jaunu kartiņu",
+ "r-in-list": "sarakstā",
+ "r-in-swimlane": "joslā",
+ "r-d-add-member": "Pievienot dalībnieku",
+ "r-d-remove-member": "Noņemt dalībnieku",
+ "r-d-remove-all-member": "Noņemt visus dalībniekus",
+ "r-d-check-all": "Atzīmēt visus saraksta elementus",
+ "r-d-uncheck-all": "Noņemt visas saraksta atzīmes",
+ "r-d-check-one": "Atzīmēt elementu",
+ "r-d-uncheck-one": "Noņemt elementa atzīmi",
+ "r-d-check-of-list": "kontrolsaraksta",
+ "r-d-add-checklist": "Pievienot kontrolsarakstu",
+ "r-d-remove-checklist": "Noņemt kontrolsarakstu",
+ "r-by": "no",
+ "r-add-checklist": "Pievienot kontrolsarakstu",
+ "r-with-items": "ar elementiem",
+ "r-items-list": "elements1,elements2,elements3",
+ "r-add-swimlane": "Pievienot joslu",
+ "r-swimlane-name": "joslas nosaukums",
+ "r-board-note": "Piezīme: atstājiet lauku tuksu lai atgrieztu visas iespējamās vērtības.",
+ "r-checklist-note": "Piezīme: kontrolsaraksta elementiem jābūt norādītiem atdalītiem ar komatu.",
+ "r-when-a-card-is-moved": "Kad kartiņa ir pārvietota uz citu sarakstu",
+ "r-set": "Uzstādīt",
+ "r-update": "Atjaunot",
+ "r-datefield": "datuma lauks",
+ "r-df-start-at": "sākums",
+ "r-df-due-at": "līdz",
+ "r-df-end-at": "beigas",
+ "r-df-received-at": "saņemts",
+ "r-to-current-datetime": "līdz šim laikam",
+ "r-remove-value-from": "Noņemt vērtību no",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Autentifikācijas metode",
+ "authentication-type": "Autentifikācijas veids",
+ "custom-product-name": "Personalizēts produkta nosaukums",
+ "layout": "Izkārtojums",
+ "hide-logo": "Paslēt logo",
+ "add-custom-html-after-body-start": "Pievienot personalizētu HTML pēc sākuma",
+ "add-custom-html-before-body-end": "Pievienot personalizētu HTML pirms beigām",
+ "error-undefined": "Kaut kas nogāja greizi",
+ "error-ldap-login": "Pierakstoties notika kļūda",
+ "display-authentication-method": "Rādīt autentifikācijas metodi",
+ "default-authentication-method": "Noklusētā autentifikācijas metode",
+ "duplicate-board": "Dublēt dēli",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Cilvēku skaits:",
+ "swimlaneDeletePopup-title": "Dzēst joslu?",
+ "swimlane-delete-pop": "Visas darbības tiks dzēstas no darbību saraksta un josla nebūs atjaunojama. Darbību nevar atsaukt.",
+ "restore-all": "Atjaunot visu",
+ "delete-all": "Dzēst visu",
+ "loading": "Notiek ielāde, lūdzu uzgaidiet.",
+ "previous_as": "pēdējais laiks bija",
+ "act-a-dueAt": "laboja nodošanas laiku uz \nKad: __timeValue__\nKur: __card__\niepriekšējais nodošanas laiks bija __timeOldValue__",
+ "act-a-endAt": "laboja beigu laiku uz __timeValue__ no (__timeOldValue__)",
+ "act-a-startAt": "mainīja sākuma laiku uz __timeValue__ no (__timeOldValue__)",
+ "act-a-receivedAt": "mainīja sākuma laiku uz __timeValue__ no (__timeOldValue__)",
+ "a-dueAt": "laboja nodošanas laiku lai tas būtu",
+ "a-endAt": "laboja beigu laiku",
+ "a-startAt": "laboja sākuma laiku",
+ "a-receivedAt": "laboja saņemšanas laiku lai tas būtu",
+ "almostdue": "tuvojas nodošanas laiks %s",
+ "pastdue": "pārsniegts nodošanas laiks %s",
+ "duenow": "nodošanas laiks ir šodien %s",
+ "act-newDue": "__list__/__card__ ir 1. nodošanas atgādinājums [__board__]",
+ "act-withDue": "__list__/__card__ nodošanas brīdinājumi [__board__]",
+ "act-almostdue": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ tuvojas",
+ "act-pastdue": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ ir pārsniegts",
+ "act-duenow": "atgādināja, ka nodošanas laiks (__timeValue__) priekš __card__ ir tagad",
+ "act-atUserComment": "Jūs pieminēja [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Tiešām dzēst kontu? Darbību nevar atsaukt.",
+ "accounts-allowUserDelete": "Ļaut lietotājiem dzēst savus kontus",
+ "hide-minicard-label-text": "Slēpt birku tekstu mini kartiņā",
+ "show-desktop-drag-handles": "Rādīt darba virsmas vilkšanas simbolus",
+ "assignee": "Īpašnieks",
+ "cardAssigneesPopup-title": "Īpašnieks",
+ "addmore-detail": "Pievienot detalizētāku aprakstu",
+ "show-on-card": "Rādīt kartiņā",
+ "new": "Jauns",
+ "editUserPopup-title": "Labot lietotāju",
+ "newUserPopup-title": "Jauns lietotājs",
+ "notifications": "Ziņojumi",
+ "view-all": "Skatīt visu",
+ "filter-by-unread": "Rādīt nelasīto",
+ "mark-all-as-read": "Atzīmēt visu kā lasītu",
+ "remove-all-read": "Noņemt visu lasīto",
+ "allow-rename": "Ļaut pārsaukt",
+ "allowRenamePopup-title": "Ļaut pārsaukt",
+ "start-day-of-week": "Uzstādīt nedēļas pirmo dienu",
+ "monday": "Pirmdiena",
+ "tuesday": "Otrdiena",
+ "wednesday": "Trešdiena",
+ "thursday": "Ceturtdiena",
+ "friday": "Piektdiena",
+ "saturday": "Sestdiena",
+ "sunday": "Svētdiena",
+ "status": "Statuss",
+ "swimlane": "Josla",
+ "owner": "Īpašnieks",
+ "last-modified-at": "Pēdējo reizi labots",
+ "last-activity": "Pēdējā darbība",
+ "voting": "Balsošana",
+ "archived": "Arhivēts",
+ "delete-linked-card-before-this-card": "Nevar dzēst šo kartiņu pirms priekšteča kartiņas dzēšnas, kurai",
+ "delete-linked-cards-before-this-list": "Nevar dzēst sarakstu pirms saistīto kartiņu, kas norada uz šī saraksta kartiņām, dzēšanas",
+ "hide-checked-items": "Slēpt atzīmētos elementus",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/mk.i18n.json b/i18n/mk.i18n.json
index c55f3b2c5..b03620870 100644
--- a/i18n/mk.i18n.json
+++ b/i18n/mk.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Прифати",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Акции",
- "activities": "Активности",
- "activity": "Активност",
- "activity-added": "добави %s към %s",
- "activity-archived": "%s е преместена во Архива",
- "activity-attached": "прикачи %s към %s",
- "activity-created": "създаде %s",
- "activity-customfield-created": "създаде собствено поле %s",
- "activity-excluded": "изключи %s от %s",
- "activity-imported": "импортира %s в/във %s от %s",
- "activity-imported-board": "импортира %s от %s",
- "activity-joined": "се присъедини към %s",
- "activity-moved": "премести %s от %s в/във %s",
- "activity-on": "на %s",
- "activity-removed": "премахна %s от %s",
- "activity-sent": "изпрати %s до %s",
- "activity-unjoined": "вече не е част от %s",
- "activity-subtask-added": "добави задача към %s",
- "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
- "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
- "activity-checklist-added": "добави списък със задачи към %s",
- "activity-checklist-removed": "премахна списък със задачи от %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
- "activity-checklist-item-added": "добави точка към '%s' в/във %s",
- "activity-checklist-item-removed": "премахна точка от '%s' в %s",
- "add": "Добави",
- "activity-checked-item-card": "отбеляза %s в чеклист %s",
- "activity-unchecked-item-card": "размаркира %s в чеклист %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Додај прилог",
- "add-board": "Додади Табла",
- "add-card": "Додади Картичка",
- "add-swimlane": "Додади Коридор",
- "add-subtask": "Додади подзадача",
- "add-checklist": "Додади список на задачи",
- "add-checklist-item": "Додади точка во списокот со задачи",
- "add-cover": "Додади корица",
- "add-label": "Додади етикета",
- "add-list": "Додади листа",
- "add-members": "Додави членови",
- "added": "Додадено",
- "addMemberPopup-title": "Членови",
- "admin": "Администратор",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Съобщение",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Сите табли",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Приложи",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Премести во Архива",
- "archive-all": "Премести всички во Архива",
- "archive-board": "Премести Таблото во Архива",
- "archive-card": "Премести Картата во Архива",
- "archive-list": "Премести Списъка во Архива",
- "archive-swimlane": "Премести Коридора во Архива",
- "archive-selection": "Премести избраното во Архива",
- "archiveBoardPopup-title": "Да преместя ли Таблото во Архива?",
- "archived-items": "Архива",
- "archived-boards": "Табла во Архива",
- "restore-board": "Възстанови Таблото",
- "no-archived-boards": "Няма Табла во Архива.",
- "archives": "Архива",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Възложи на член от екипа",
- "attached": "прикачен",
- "attachment": "Прикаченн датотека",
- "attachment-delete-pop": "Изтриването на прикачен датотека е завинаги. Няма как да бъде възстановен.",
- "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения датотека?",
- "attachments": "Прикачени датотеки",
- "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Назад",
- "board-change-color": "Промени боја",
- "board-nb-stars": "%s звезди",
- "board-not-found": "Таблото не е најдено",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Промени името на Таблото",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Промени наблюдаването",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Табли",
- "board-view": "Board View",
- "board-view-cal": "Календар",
- "board-view-swimlanes": "Коридори",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Листи",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Откажи",
- "card-archived": "Тази карта е преместена во Архива.",
- "board-archived": "Това табло е преместено во Архива.",
- "card-comments-title": "Тази карта има %s коментар.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "Можете да преместите картата во Архива, за да я премахнете от Таблото и така да запазите активността в него.",
- "card-due": "Готова за",
- "card-due-on": "Готова за",
- "card-spent": "Изработено време",
- "card-edit-attachments": "Промени прикачените датотеки",
- "card-edit-custom-fields": "Промени собствените полета",
- "card-edit-labels": "Промени етикетите",
- "card-edit-members": "Промени членовете",
- "card-labels-title": "Промени етикетите за картата.",
- "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
- "card-start": "Започнува",
- "card-start-on": "Започнува на",
- "cardAttachmentsPopup-title": "Прикачи от",
- "cardCustomField-datePopup-title": "Промени датата",
- "cardCustomFieldsPopup-title": "Промени собствените полета",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Желаете да изтриете картата?",
- "cardDetailsActionsPopup-title": "Опции",
- "cardLabelsPopup-title": "Етикети",
- "cardMembersPopup-title": "Членови",
- "cardMorePopup-title": "Повеќе",
- "cardTemplatePopup-title": "Create template",
- "cards": "Картички",
- "cards-count": "Картички",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Карта",
- "cardType-linkedCard": "Поврзана карта",
- "cardType-linkedBoard": "Свързано табло",
- "change": "Промени",
- "change-avatar": "Промени аватара",
- "change-password": "Промени лозинка",
- "change-permissions": "Промени права",
- "change-settings": "Промени параметри",
- "changeAvatarPopup-title": "Промени аватар",
- "changeLanguagePopup-title": "Промени јазик",
- "changePasswordPopup-title": "Промени лозинка",
- "changePermissionsPopup-title": "Промени права",
- "changeSettingsPopup-title": "Промени параметри",
- "subtasks": "Подзадачи",
- "checklists": "Списъци със задачи",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
- "clipboard": "Клипборда или с драг & дроп",
- "close": "Затвори",
- "close-board": "Затвори Табла",
- "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архива\" в началото на хедъра.",
- "color-black": "црно",
- "color-blue": "сино",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "златно",
- "color-gray": "сиво",
- "color-green": "зелено",
- "color-indigo": "indigo",
- "color-lime": "лайм",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "оранжево",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "розово",
- "color-plum": "plum",
- "color-purple": "пурпурно",
- "color-red": "червено",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "светло синьо",
- "color-slateblue": "slateblue",
- "color-white": "бяло",
- "color-yellow": "жълто",
- "unset-color": "Unset",
- "comment": "Коментирај",
- "comment-placeholder": "Напиши коментар",
- "comment-only": "Само коментари",
- "comment-only-desc": "Може да коментира само в карти.",
- "no-comments": "Нема коментари",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Компјутер",
- "confirm-subtask-delete-dialog": "Сигурен ли сте, дека сакате да изтриете подзадачата?",
- "confirm-checklist-delete-dialog": "Сигурни ли сте, дека сакате да изтриете този чеклист?",
- "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
- "linkCardPopup-title": "Поврзи картичка",
- "searchElementPopup-title": "Барај",
- "copyCardPopup-title": "Копирај картичка",
- "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Креирај",
- "createBoardPopup-title": "Креирај Табло",
- "chooseBoardSourcePopup-title": "Импортирай Табло",
- "createLabelPopup-title": "Креирај Табло",
- "createCustomField": "Креирај Поле",
- "createCustomFieldPopup-title": "Креирај Поле",
- "current": "сегашен",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Чекбокс",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Дата",
- "custom-field-dropdown": "Падащо меню",
- "custom-field-dropdown-none": "(няма)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Број",
- "custom-field-text": "Текст",
- "custom-fields": "Собствени полета",
- "date": "Дата",
- "decline": "Откажи",
- "default-avatar": "Основен аватар",
- "delete": "Избриши",
- "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
- "deleteLabelPopup-title": "Желаете да изтриете етикета?",
- "description": "Описание",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Отказ",
- "done": "Готово",
- "download": "Сваляне",
- "edit": "Промени",
- "edit-avatar": "Промени аватара",
- "edit-profile": "Промяна на профила",
- "edit-wip-limit": "Промени WIP лимита",
- "soft-wip-limit": "\"Мек\" WIP лимит",
- "editCardStartDatePopup-title": "Промени началната дата",
- "editCardDueDatePopup-title": "Промени датата за готовност",
- "editCustomFieldPopup-title": "Промени Полето",
- "editCardSpentTimePopup-title": "Промени изработеното време",
- "editLabelPopup-title": "Промяна на Етикета",
- "editNotificationPopup-title": "Промени известията",
- "editProfilePopup-title": "Промяна на профила",
- "email": "Имейл",
- "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Неуспешно изпращане на имейла",
- "email-fail-text": "Възникна грешка при изпращането на имейла",
- "email-invalid": "Невалиден е-маил",
- "email-invite": "Покани чрез е-маил",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Имейлът е изпратен",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Включи WIP лимита",
- "error-board-doesNotExist": "Това табло не съществува",
- "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
- "error-board-notAMember": "За да направите това трябва да сте член на това табло",
- "error-json-malformed": "Текстът Ви не е валиден JSON",
- "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Този списък не съществува",
- "error-user-doesNotExist": "Този потребител не съществува",
- "error-user-notAllowSelf": "Не можете да поканите себе си",
- "error-user-notCreated": "Този потребител не е създаден",
- "error-username-taken": "Това потребителско име е вече заето",
- "error-email-taken": "Имейлът е вече зает",
- "export-board": "Експортиране на Табло",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Експортиране на Табло",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Филтер",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Премахване на филтрите",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "без етикет",
- "filter-member-label": "Filter by member",
- "filter-no-member": "без член",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Няма Собствени полета",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Има приложени филтри",
- "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
- "filter-to-selection": "Филтрирай избраните",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Напреден филтер",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Име",
- "header-logo-title": "Назад към страницата с Вашите табла.",
- "hide-system-messages": "Скриване на системните съобщения",
- "headerBarCreateBoardPopup-title": "Креирај Табло",
- "home": "Почетна",
- "import": "Импорт",
- "impersonate-user": "Impersonate user",
- "link": "Врска",
- "import-board": "Импортирай Табло",
- "import-board-c": "Импортирай Табло",
- "import-board-title-trello": "Импорт на табло от Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "От Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Версия",
- "initials": "Инициали",
- "invalid-date": "Невалидна дата",
- "invalid-time": "Невалиден час",
- "invalid-user": "Невалиден потребител",
- "joined": "присъедини",
- "just-invited": "Бяхте поканени в това табло",
- "keyboard-shortcuts": "Преки пътища с клавиатурата",
- "label-create": "Креирај етикет",
- "label-default": "%s етикет (по подразбиране)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Етикети",
- "language": "Език",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Връзка към тази карта",
- "list-archive-cards": "Премести всички карти от този списък во Архива",
- "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите во Архива и да ги върнете натиснете на \"Меню\" > \"Архива\".",
- "list-move-cards": "Премести всички карти в този списък",
- "list-select-cards": "Избери всички карти в този списък",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Импорт на карта от Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Още",
- "link-list": "Връзка към този списък",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "Можете да преместите списъка во Архива, за да го премахнете от Таблото и така да запазите активността в него.",
- "lists": "Списъци",
- "swimlanes": "Коридори",
- "log-out": "Изход",
- "log-in": "Вход",
- "loginPopup-title": "Вход",
- "memberMenuPopup-title": "Настройки на профила",
- "members": "Членове",
- "menu": "Меню",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Премести картата",
- "moveCardToBottom-title": "Премести в края",
- "moveCardToTop-title": "Премести в началото",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Множествен избор",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Множественият избор е приложен",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Моите табла",
- "name": "Име",
- "no-archived-cards": "Няма карти во Архива.",
- "no-archived-lists": "Няма списъци во Архива.",
- "no-archived-swimlanes": "Няма коридори во Архива.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
- "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
- "optional": "optional",
- "or": "или",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Парола",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Профил",
- "public": "Јавна",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Желаете да изтриете списъка?",
- "remove-member": "Премахни член",
- "remove-member-from-card": "Премахни от картата",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Промени името на Таблото",
- "restore": "Възстанови",
- "save": "Запази",
- "search": "Търсене",
- "rules": "Правила",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Избери цвят",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Въведи WIP лимит",
- "shortcut-assign-self": "Добави себе си към тази карта",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Изчистване на всички филтри",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Филтрирай моите карти",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Любими табла",
- "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "това табло",
- "this-card": "картата",
- "spent-time-hours": "Изработено време (часа)",
- "overtime-hours": "Оувъртайм (часа)",
- "overtime": "Оувъртайм",
- "has-overtime-cards": "Има карти с оувъртайм",
- "has-spenttime-cards": "Има карти с изработено време",
- "time": "Време",
- "title": "Title",
- "tracking": "Следене",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Спри наблюдаването",
- "upload": "Upload",
- "upload-avatar": "Качване на аватар",
- "uploaded-avatar": "Качихте аватар",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Потребителско име",
- "view-it": "View it",
- "warn-list-archived": "внимание: тази карта е в списък во Архива",
- "watch": "Наблюдавай",
- "watching": "Наблюдава",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Невалиден WIP лимит",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
- "admin-panel": "Администраторски панел",
- "settings": "Настройки",
- "people": "Хора",
- "registration": "Регистрация",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Покани",
- "invite-people": "Покани хора",
- "to-boards": "в табло/а",
- "email-addresses": "Имейл адреси",
- "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
- "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
- "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
- "smtp-host": "SMTP хост",
- "smtp-port": "SMTP порт",
- "smtp-username": "Потребителско име",
- "smtp-password": "Парола",
- "smtp-tls": "TLS поддръжка",
- "send-from": "От",
- "send-smtp-test": "Изпрати тестов е-маил на себе си",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Успешно изпратихте е-маил",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Версия на Node",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "Архитектура на ОС",
- "OS_Cpus": "Брой CPU ядра",
- "OS_Freemem": "Свободна памет",
- "OS_Loadavg": "ОС средно натоварване",
- "OS_Platform": "ОС платформа",
- "OS_Release": "ОС Версия",
- "OS_Totalmem": "ОС Общо памет",
- "OS_Type": "Тип ОС",
- "OS_Uptime": "OS Ъптайм",
- "days": "дни",
- "hours": "часа",
- "minutes": "минути",
- "seconds": "секунди",
- "show-field-on-card": "Покажи това поле в картата",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Да",
- "no": "Не",
- "accounts": "Профили",
- "accounts-allowEmailChange": "Разреши промяна на имейла",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Създаден на",
- "verified": "Потвърден",
- "active": "Активен",
- "card-received": "Получена",
- "card-received-on": "Получена на",
- "card-end": "Завършена",
- "card-end-on": "Завършена на",
- "editCardReceivedDatePopup-title": "Промени датата на получаване",
- "editCardEndDatePopup-title": "Промени датата на завършване",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Разпределена от",
- "requested-by": "Поискан от",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Изтриване на Таблото?",
- "delete-board": "Изтрий таблото",
- "default-subtasks-board": "Подзадачи за табло __board__",
- "default": "по подразбиране",
- "queue": "Опашка",
- "subtask-settings": "Настройки на Подзадачите",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Промени източника на картата",
- "parent-card": "Карта-източник",
- "source-board": "Source board",
- "no-parent": "Не показвай източника",
- "activity-added-label": "добави етикет '%s' към %s",
- "activity-removed-label": "премахна етикет '%s' от %s",
- "activity-delete-attach": "изтри прикачен датотека от %s",
- "activity-added-label-card": "добави етикет '%s'",
- "activity-removed-label-card": "премахна етикет '%s'",
- "activity-delete-attach-card": "изтри прикачения датотека",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Правило",
- "r-add-trigger": "Добави спусък",
- "r-add-action": "Добави действие",
- "r-board-rules": "Правила за таблото",
- "r-add-rule": "Добави правилото",
- "r-view-rule": "Виж правилото",
- "r-delete-rule": "Изтрий правилото",
- "r-new-rule-name": "Заглавие за новото правило",
- "r-no-rules": "Няма правила",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Когато карта",
- "r-is": "е",
- "r-is-moved": "преместена",
- "r-added-to": "Added to",
- "r-removed-from": "премахната от",
- "r-the-board": "таблото",
- "r-list": "списък",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Преместено во Архива",
- "r-unarchived": "Възстановено от Архива",
- "r-a-card": "карта",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "име",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Премести картата в",
- "r-top-of": "началото на",
- "r-bottom-of": "края на",
- "r-its-list": "списъка й",
- "r-archive": "Премести во Архива",
- "r-unarchive": "Възстанови от Архива",
- "r-card": "карта",
- "r-add": "Добави",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Детайли за правилото",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Премести картата во Архива",
- "r-d-unarchive": "Възстанови картата от Архива",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Добави чеклист",
- "r-d-remove-checklist": "Премахни чеклист",
- "r-by": "by",
- "r-add-checklist": "Добави чеклист",
- "r-with-items": "с точки",
- "r-items-list": "точка1,точка2,точка3",
- "r-add-swimlane": "Добави коридор",
- "r-swimlane-name": "име на коридора",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Прифати",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Акции",
+ "activities": "Активности",
+ "activity": "Активност",
+ "activity-added": "добави %s към %s",
+ "activity-archived": "%s е преместена во Архива",
+ "activity-attached": "прикачи %s към %s",
+ "activity-created": "създаде %s",
+ "activity-customfield-created": "създаде собствено поле %s",
+ "activity-excluded": "изключи %s от %s",
+ "activity-imported": "импортира %s в/във %s от %s",
+ "activity-imported-board": "импортира %s от %s",
+ "activity-joined": "се присъедини към %s",
+ "activity-moved": "премести %s от %s в/във %s",
+ "activity-on": "на %s",
+ "activity-removed": "премахна %s от %s",
+ "activity-sent": "изпрати %s до %s",
+ "activity-unjoined": "вече не е част от %s",
+ "activity-subtask-added": "добави задача към %s",
+ "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
+ "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
+ "activity-checklist-added": "добави списък със задачи към %s",
+ "activity-checklist-removed": "премахна списък със задачи от %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
+ "activity-checklist-item-added": "добави точка към '%s' в/във %s",
+ "activity-checklist-item-removed": "премахна точка от '%s' в %s",
+ "add": "Добави",
+ "activity-checked-item-card": "отбеляза %s в чеклист %s",
+ "activity-unchecked-item-card": "размаркира %s в чеклист %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Додај прилог",
+ "add-board": "Додади Табла",
+ "add-card": "Додади Картичка",
+ "add-swimlane": "Додади Коридор",
+ "add-subtask": "Додади подзадача",
+ "add-checklist": "Додади список на задачи",
+ "add-checklist-item": "Додади точка во списокот со задачи",
+ "add-cover": "Додади корица",
+ "add-label": "Додади етикета",
+ "add-list": "Додади листа",
+ "add-members": "Додави членови",
+ "added": "Додадено",
+ "addMemberPopup-title": "Членови",
+ "admin": "Администратор",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Съобщение",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Сите табли",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Приложи",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Премести во Архива",
+ "archive-all": "Премести всички во Архива",
+ "archive-board": "Премести Таблото во Архива",
+ "archive-card": "Премести Картата во Архива",
+ "archive-list": "Премести Списъка во Архива",
+ "archive-swimlane": "Премести Коридора во Архива",
+ "archive-selection": "Премести избраното во Архива",
+ "archiveBoardPopup-title": "Да преместя ли Таблото во Архива?",
+ "archived-items": "Архива",
+ "archived-boards": "Табла во Архива",
+ "restore-board": "Възстанови Таблото",
+ "no-archived-boards": "Няма Табла во Архива.",
+ "archives": "Архива",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Възложи на член от екипа",
+ "attached": "прикачен",
+ "attachment": "Прикаченн датотека",
+ "attachment-delete-pop": "Изтриването на прикачен датотека е завинаги. Няма как да бъде възстановен.",
+ "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения датотека?",
+ "attachments": "Прикачени датотеки",
+ "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Назад",
+ "board-change-color": "Промени боја",
+ "board-nb-stars": "%s звезди",
+ "board-not-found": "Таблото не е најдено",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Промени името на Таблото",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Промени наблюдаването",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Табли",
+ "board-view": "Board View",
+ "board-view-cal": "Календар",
+ "board-view-swimlanes": "Коридори",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Листи",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Откажи",
+ "card-archived": "Тази карта е преместена во Архива.",
+ "board-archived": "Това табло е преместено во Архива.",
+ "card-comments-title": "Тази карта има %s коментар.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "Можете да преместите картата во Архива, за да я премахнете от Таблото и така да запазите активността в него.",
+ "card-due": "Готова за",
+ "card-due-on": "Готова за",
+ "card-spent": "Изработено време",
+ "card-edit-attachments": "Промени прикачените датотеки",
+ "card-edit-custom-fields": "Промени собствените полета",
+ "card-edit-labels": "Промени етикетите",
+ "card-edit-members": "Промени членовете",
+ "card-labels-title": "Промени етикетите за картата.",
+ "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
+ "card-start": "Започнува",
+ "card-start-on": "Започнува на",
+ "cardAttachmentsPopup-title": "Прикачи от",
+ "cardCustomField-datePopup-title": "Промени датата",
+ "cardCustomFieldsPopup-title": "Промени собствените полета",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Желаете да изтриете картата?",
+ "cardDetailsActionsPopup-title": "Опции",
+ "cardLabelsPopup-title": "Етикети",
+ "cardMembersPopup-title": "Членови",
+ "cardMorePopup-title": "Повеќе",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Картички",
+ "cards-count": "Картички",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Карта",
+ "cardType-linkedCard": "Поврзана карта",
+ "cardType-linkedBoard": "Свързано табло",
+ "change": "Промени",
+ "change-avatar": "Промени аватара",
+ "change-password": "Промени лозинка",
+ "change-permissions": "Промени права",
+ "change-settings": "Промени параметри",
+ "changeAvatarPopup-title": "Промени аватар",
+ "changeLanguagePopup-title": "Промени јазик",
+ "changePasswordPopup-title": "Промени лозинка",
+ "changePermissionsPopup-title": "Промени права",
+ "changeSettingsPopup-title": "Промени параметри",
+ "subtasks": "Подзадачи",
+ "checklists": "Списъци със задачи",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
+ "clipboard": "Клипборда или с драг & дроп",
+ "close": "Затвори",
+ "close-board": "Затвори Табла",
+ "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архива\" в началото на хедъра.",
+ "color-black": "црно",
+ "color-blue": "сино",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "златно",
+ "color-gray": "сиво",
+ "color-green": "зелено",
+ "color-indigo": "indigo",
+ "color-lime": "лайм",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "оранжево",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "розово",
+ "color-plum": "plum",
+ "color-purple": "пурпурно",
+ "color-red": "червено",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "светло синьо",
+ "color-slateblue": "slateblue",
+ "color-white": "бяло",
+ "color-yellow": "жълто",
+ "unset-color": "Unset",
+ "comment": "Коментирај",
+ "comment-placeholder": "Напиши коментар",
+ "comment-only": "Само коментари",
+ "comment-only-desc": "Може да коментира само в карти.",
+ "no-comments": "Нема коментари",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Компјутер",
+ "confirm-subtask-delete-dialog": "Сигурен ли сте, дека сакате да изтриете подзадачата?",
+ "confirm-checklist-delete-dialog": "Сигурни ли сте, дека сакате да изтриете този чеклист?",
+ "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
+ "linkCardPopup-title": "Поврзи картичка",
+ "searchElementPopup-title": "Барај",
+ "copyCardPopup-title": "Копирај картичка",
+ "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Креирај",
+ "createBoardPopup-title": "Креирај Табло",
+ "chooseBoardSourcePopup-title": "Импортирай Табло",
+ "createLabelPopup-title": "Креирај Табло",
+ "createCustomField": "Креирај Поле",
+ "createCustomFieldPopup-title": "Креирај Поле",
+ "current": "сегашен",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Чекбокс",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Дата",
+ "custom-field-dropdown": "Падащо меню",
+ "custom-field-dropdown-none": "(няма)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Број",
+ "custom-field-text": "Текст",
+ "custom-fields": "Собствени полета",
+ "date": "Дата",
+ "decline": "Откажи",
+ "default-avatar": "Основен аватар",
+ "delete": "Избриши",
+ "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
+ "deleteLabelPopup-title": "Желаете да изтриете етикета?",
+ "description": "Описание",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Отказ",
+ "done": "Готово",
+ "download": "Сваляне",
+ "edit": "Промени",
+ "edit-avatar": "Промени аватара",
+ "edit-profile": "Промяна на профила",
+ "edit-wip-limit": "Промени WIP лимита",
+ "soft-wip-limit": "\"Мек\" WIP лимит",
+ "editCardStartDatePopup-title": "Промени началната дата",
+ "editCardDueDatePopup-title": "Промени датата за готовност",
+ "editCustomFieldPopup-title": "Промени Полето",
+ "editCardSpentTimePopup-title": "Промени изработеното време",
+ "editLabelPopup-title": "Промяна на Етикета",
+ "editNotificationPopup-title": "Промени известията",
+ "editProfilePopup-title": "Промяна на профила",
+ "email": "Имейл",
+ "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Неуспешно изпращане на имейла",
+ "email-fail-text": "Възникна грешка при изпращането на имейла",
+ "email-invalid": "Невалиден е-маил",
+ "email-invite": "Покани чрез е-маил",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Имейлът е изпратен",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Включи WIP лимита",
+ "error-board-doesNotExist": "Това табло не съществува",
+ "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
+ "error-board-notAMember": "За да направите това трябва да сте член на това табло",
+ "error-json-malformed": "Текстът Ви не е валиден JSON",
+ "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Този списък не съществува",
+ "error-user-doesNotExist": "Този потребител не съществува",
+ "error-user-notAllowSelf": "Не можете да поканите себе си",
+ "error-user-notCreated": "Този потребител не е създаден",
+ "error-username-taken": "Това потребителско име е вече заето",
+ "error-email-taken": "Имейлът е вече зает",
+ "export-board": "Експортиране на Табло",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Експортиране на Табло",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Филтер",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Премахване на филтрите",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "без етикет",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "без член",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Няма Собствени полета",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Има приложени филтри",
+ "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
+ "filter-to-selection": "Филтрирай избраните",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Напреден филтер",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Име",
+ "header-logo-title": "Назад към страницата с Вашите табла.",
+ "hide-system-messages": "Скриване на системните съобщения",
+ "headerBarCreateBoardPopup-title": "Креирај Табло",
+ "home": "Почетна",
+ "import": "Импорт",
+ "impersonate-user": "Impersonate user",
+ "link": "Врска",
+ "import-board": "Импортирай Табло",
+ "import-board-c": "Импортирай Табло",
+ "import-board-title-trello": "Импорт на табло от Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "От Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Версия",
+ "initials": "Инициали",
+ "invalid-date": "Невалидна дата",
+ "invalid-time": "Невалиден час",
+ "invalid-user": "Невалиден потребител",
+ "joined": "присъедини",
+ "just-invited": "Бяхте поканени в това табло",
+ "keyboard-shortcuts": "Преки пътища с клавиатурата",
+ "label-create": "Креирај етикет",
+ "label-default": "%s етикет (по подразбиране)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Етикети",
+ "language": "Език",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Връзка към тази карта",
+ "list-archive-cards": "Премести всички карти от този списък во Архива",
+ "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите во Архива и да ги върнете натиснете на \"Меню\" > \"Архива\".",
+ "list-move-cards": "Премести всички карти в този списък",
+ "list-select-cards": "Избери всички карти в този списък",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Импорт на карта от Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Още",
+ "link-list": "Връзка към този списък",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "Можете да преместите списъка во Архива, за да го премахнете от Таблото и така да запазите активността в него.",
+ "lists": "Списъци",
+ "swimlanes": "Коридори",
+ "log-out": "Изход",
+ "log-in": "Вход",
+ "loginPopup-title": "Вход",
+ "memberMenuPopup-title": "Настройки на профила",
+ "members": "Членове",
+ "menu": "Меню",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Премести картата",
+ "moveCardToBottom-title": "Премести в края",
+ "moveCardToTop-title": "Премести в началото",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Множествен избор",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Множественият избор е приложен",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Моите табла",
+ "name": "Име",
+ "no-archived-cards": "Няма карти во Архива.",
+ "no-archived-lists": "Няма списъци во Архива.",
+ "no-archived-swimlanes": "Няма коридори во Архива.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
+ "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
+ "optional": "optional",
+ "or": "или",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Парола",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Профил",
+ "public": "Јавна",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Желаете да изтриете списъка?",
+ "remove-member": "Премахни член",
+ "remove-member-from-card": "Премахни от картата",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Промени името на Таблото",
+ "restore": "Възстанови",
+ "save": "Запази",
+ "search": "Търсене",
+ "rules": "Правила",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Избери цвят",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Въведи WIP лимит",
+ "shortcut-assign-self": "Добави себе си към тази карта",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Изчистване на всички филтри",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Филтрирай моите карти",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Любими табла",
+ "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "това табло",
+ "this-card": "картата",
+ "spent-time-hours": "Изработено време (часа)",
+ "overtime-hours": "Оувъртайм (часа)",
+ "overtime": "Оувъртайм",
+ "has-overtime-cards": "Има карти с оувъртайм",
+ "has-spenttime-cards": "Има карти с изработено време",
+ "time": "Време",
+ "title": "Title",
+ "tracking": "Следене",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Спри наблюдаването",
+ "upload": "Upload",
+ "upload-avatar": "Качване на аватар",
+ "uploaded-avatar": "Качихте аватар",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Потребителско име",
+ "view-it": "View it",
+ "warn-list-archived": "внимание: тази карта е в списък во Архива",
+ "watch": "Наблюдавай",
+ "watching": "Наблюдава",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Невалиден WIP лимит",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
+ "admin-panel": "Администраторски панел",
+ "settings": "Настройки",
+ "people": "Хора",
+ "registration": "Регистрация",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Покани",
+ "invite-people": "Покани хора",
+ "to-boards": "в табло/а",
+ "email-addresses": "Имейл адреси",
+ "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
+ "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
+ "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
+ "smtp-host": "SMTP хост",
+ "smtp-port": "SMTP порт",
+ "smtp-username": "Потребителско име",
+ "smtp-password": "Парола",
+ "smtp-tls": "TLS поддръжка",
+ "send-from": "От",
+ "send-smtp-test": "Изпрати тестов е-маил на себе си",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Успешно изпратихте е-маил",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Версия на Node",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "Архитектура на ОС",
+ "OS_Cpus": "Брой CPU ядра",
+ "OS_Freemem": "Свободна памет",
+ "OS_Loadavg": "ОС средно натоварване",
+ "OS_Platform": "ОС платформа",
+ "OS_Release": "ОС Версия",
+ "OS_Totalmem": "ОС Общо памет",
+ "OS_Type": "Тип ОС",
+ "OS_Uptime": "OS Ъптайм",
+ "days": "дни",
+ "hours": "часа",
+ "minutes": "минути",
+ "seconds": "секунди",
+ "show-field-on-card": "Покажи това поле в картата",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Да",
+ "no": "Не",
+ "accounts": "Профили",
+ "accounts-allowEmailChange": "Разреши промяна на имейла",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Създаден на",
+ "verified": "Потвърден",
+ "active": "Активен",
+ "card-received": "Получена",
+ "card-received-on": "Получена на",
+ "card-end": "Завършена",
+ "card-end-on": "Завършена на",
+ "editCardReceivedDatePopup-title": "Промени датата на получаване",
+ "editCardEndDatePopup-title": "Промени датата на завършване",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Разпределена от",
+ "requested-by": "Поискан от",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Изтриване на Таблото?",
+ "delete-board": "Изтрий таблото",
+ "default-subtasks-board": "Подзадачи за табло __board__",
+ "default": "по подразбиране",
+ "queue": "Опашка",
+ "subtask-settings": "Настройки на Подзадачите",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Промени източника на картата",
+ "parent-card": "Карта-източник",
+ "source-board": "Source board",
+ "no-parent": "Не показвай източника",
+ "activity-added-label": "добави етикет '%s' към %s",
+ "activity-removed-label": "премахна етикет '%s' от %s",
+ "activity-delete-attach": "изтри прикачен датотека от %s",
+ "activity-added-label-card": "добави етикет '%s'",
+ "activity-removed-label-card": "премахна етикет '%s'",
+ "activity-delete-attach-card": "изтри прикачения датотека",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Добави спусък",
+ "r-add-action": "Добави действие",
+ "r-board-rules": "Правила за таблото",
+ "r-add-rule": "Добави правилото",
+ "r-view-rule": "Виж правилото",
+ "r-delete-rule": "Изтрий правилото",
+ "r-new-rule-name": "Заглавие за новото правило",
+ "r-no-rules": "Няма правила",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Когато карта",
+ "r-is": "е",
+ "r-is-moved": "преместена",
+ "r-added-to": "Added to",
+ "r-removed-from": "премахната от",
+ "r-the-board": "таблото",
+ "r-list": "списък",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Преместено во Архива",
+ "r-unarchived": "Възстановено от Архива",
+ "r-a-card": "карта",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "име",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Премести картата в",
+ "r-top-of": "началото на",
+ "r-bottom-of": "края на",
+ "r-its-list": "списъка й",
+ "r-archive": "Премести во Архива",
+ "r-unarchive": "Възстанови от Архива",
+ "r-card": "карта",
+ "r-add": "Добави",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Детайли за правилото",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Премести картата во Архива",
+ "r-d-unarchive": "Възстанови картата от Архива",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Добави чеклист",
+ "r-d-remove-checklist": "Премахни чеклист",
+ "r-by": "by",
+ "r-add-checklist": "Добави чеклист",
+ "r-with-items": "с точки",
+ "r-items-list": "точка1,точка2,точка3",
+ "r-add-swimlane": "Добави коридор",
+ "r-swimlane-name": "име на коридора",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json
index 47a0e6afd..096ca6ab2 100644
--- a/i18n/mn.i18n.json
+++ b/i18n/mn.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Зөвшөөрөх",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Нэмэх",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Хавсралт нэмэх",
- "add-board": "Самбар нэмэх",
- "add-card": "Карт нэмэх",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Чеклист нэмэх",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Шошго нэмэх",
- "add-list": "Жагсаалт нэмэх",
- "add-members": "Гишүүд нэмэх",
- "added": "Нэмсэн",
- "addMemberPopup-title": "Гишүүд",
- "admin": "Админ",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Бүх самбарууд",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Гишүүд",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Аватар өөрчлөх",
- "change-password": "Нууц үг солих",
- "change-permissions": "Change permissions",
- "change-settings": "Тохиргоо өөрчлөх",
- "changeAvatarPopup-title": "Аватар өөрчлөх",
- "changeLanguagePopup-title": "Хэл солих",
- "changePasswordPopup-title": "Нууц үг солих",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Тохиргоо өөрчлөх",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Үүсгэх",
- "createBoardPopup-title": "Самбар үүсгэх",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Шошго үүсгэх",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Аватар өөрчлөх",
- "edit-profile": "Бүртгэл засварлах",
- "edit-wip-limit": "WIP хязгаарлалтыг өөрчлөх",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Эхлэх өдрийг өөрчлөх",
- "editCardDueDatePopup-title": "Дуусах өдрийг өөрчлөх",
- "editCustomFieldPopup-title": "Талбарыг засварлах",
- "editCardSpentTimePopup-title": "Зарцуулсан хугацааг засварлах",
- "editLabelPopup-title": "Шошгыг өөрчлөх",
- "editNotificationPopup-title": "Мэдэгдэл тохируулах",
- "editProfilePopup-title": "Бүртгэл засварлах",
- "email": "Имэйл",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Буруу имэйл",
- "email-invite": "Имэйлээр урих",
- "email-invite-subject": "__inviter__ танд урилга илгээлээ",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Самбар үүсгэх",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Шошго үүсгэх",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Гарах",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Гишүүний тохиргоо",
- "members": "Гишүүд",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Миний самбарууд",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Хэрэглэгч үүсгэх",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ танд урилга илгээлээ",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Нэмэх",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Зөвшөөрөх",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Нэмэх",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Хавсралт нэмэх",
+ "add-board": "Самбар нэмэх",
+ "add-card": "Карт нэмэх",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Чеклист нэмэх",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Шошго нэмэх",
+ "add-list": "Жагсаалт нэмэх",
+ "add-members": "Гишүүд нэмэх",
+ "added": "Нэмсэн",
+ "addMemberPopup-title": "Гишүүд",
+ "admin": "Админ",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Бүх самбарууд",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Гишүүд",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Аватар өөрчлөх",
+ "change-password": "Нууц үг солих",
+ "change-permissions": "Change permissions",
+ "change-settings": "Тохиргоо өөрчлөх",
+ "changeAvatarPopup-title": "Аватар өөрчлөх",
+ "changeLanguagePopup-title": "Хэл солих",
+ "changePasswordPopup-title": "Нууц үг солих",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Тохиргоо өөрчлөх",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Үүсгэх",
+ "createBoardPopup-title": "Самбар үүсгэх",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Шошго үүсгэх",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Аватар өөрчлөх",
+ "edit-profile": "Бүртгэл засварлах",
+ "edit-wip-limit": "WIP хязгаарлалтыг өөрчлөх",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Эхлэх өдрийг өөрчлөх",
+ "editCardDueDatePopup-title": "Дуусах өдрийг өөрчлөх",
+ "editCustomFieldPopup-title": "Талбарыг засварлах",
+ "editCardSpentTimePopup-title": "Зарцуулсан хугацааг засварлах",
+ "editLabelPopup-title": "Шошгыг өөрчлөх",
+ "editNotificationPopup-title": "Мэдэгдэл тохируулах",
+ "editProfilePopup-title": "Бүртгэл засварлах",
+ "email": "Имэйл",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Буруу имэйл",
+ "email-invite": "Имэйлээр урих",
+ "email-invite-subject": "__inviter__ танд урилга илгээлээ",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Самбар үүсгэх",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Шошго үүсгэх",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Гарах",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Гишүүний тохиргоо",
+ "members": "Гишүүд",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Миний самбарууд",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Хэрэглэгч үүсгэх",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ танд урилга илгээлээ",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Нэмэх",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json
index 15de87601..bb4f72b7b 100644
--- a/i18n/nb.i18n.json
+++ b/i18n/nb.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Godta",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Aktiviteter",
- "activity": "Aktivitet",
- "activity-added": "la %s til %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "la %s til %s",
- "activity-created": "opprettet %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "ekskluderte %s fra %s",
- "activity-imported": "importerte %s til %s fra %s",
- "activity-imported-board": "importerte %s fra %s",
- "activity-joined": "ble med %s",
- "activity-moved": "flyttet %s fra %s til %s",
- "activity-on": "på %s",
- "activity-removed": "fjernet %s fra %s",
- "activity-sent": "sendte %s til %s",
- "activity-unjoined": "forlot %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "la til sjekkliste til %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Legg til",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Nytt punkt på sjekklisten",
- "add-cover": "Nytt omslag",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Legg til medlemmer",
- "added": "Lagt til",
- "addMemberPopup-title": "Medlemmer",
- "admin": "Admin",
- "admin-desc": "Kan se og redigere kort, fjerne medlemmer, og endre innstillingene for tavlen.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Alle tavler",
- "and-n-other-card": "Og __count__ andre kort",
- "and-n-other-card_plural": "Og __count__ andre kort",
- "apply": "Lagre",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arkiv",
- "archived-boards": "Tavler i arkivet",
- "restore-board": "Restore Board",
- "no-archived-boards": "Ingen tavler i arkivet",
- "archives": "Arkiv",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Tildel medlem",
- "attached": "la ved",
- "attachment": "Vedlegg",
- "attachment-delete-pop": "Sletting av vedlegg er permanent og kan ikke angres",
- "attachmentDeletePopup-title": "Slette vedlegg?",
- "attachments": "Vedlegg",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Tilbake",
- "board-change-color": "Endre farge",
- "board-nb-stars": "%s stjerner",
- "board-not-found": "Kunne ikke finne tavlen",
- "board-private-info": "Denne tavlen vil være privat.",
- "board-public-info": "Denne tavlen vil være offentlig.",
- "boardChangeColorPopup-title": "Ende tavlens bakgrunnsfarge",
- "boardChangeTitlePopup-title": "Endre navn på tavlen",
- "boardChangeVisibilityPopup-title": "Endre synlighet",
- "boardChangeWatchPopup-title": "Endre overvåkning",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Tavler",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Som \"Bucket List\" for eksempel",
- "cancel": "Avbryt",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Dette kortet har %s kommentar.",
- "card-delete-notice": "Sletting er permanent. Du vil miste alle hendelser knyttet til dette kortet.",
- "card-delete-pop": "Alle handlinger vil fjernes fra feeden for aktiviteter og du vil ikke kunne åpne kortet på nytt. Det er ingen mulighet å angre.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Frist",
- "card-due-on": "Frist til",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Rediger vedlegg",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Rediger etiketter",
- "card-edit-members": "Endre medlemmer",
- "card-labels-title": "Endre etiketter for kortet.",
- "card-members-title": "Legg til eller fjern tavle-medlemmer fra dette kortet.",
- "card-start": "Start",
- "card-start-on": "Starter på",
- "cardAttachmentsPopup-title": "Legg ved fra",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Slett kort?",
- "cardDetailsActionsPopup-title": "Kort-handlinger",
- "cardLabelsPopup-title": "Etiketter",
- "cardMembersPopup-title": "Medlemmer",
- "cardMorePopup-title": "Mer",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kort",
- "cards-count": "Kort",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Endre",
- "change-avatar": "Endre avatar",
- "change-password": "Endre passord",
- "change-permissions": "Endre rettigheter",
- "change-settings": "Endre innstillinger",
- "changeAvatarPopup-title": "Endre avatar",
- "changeLanguagePopup-title": "Endre språk",
- "changePasswordPopup-title": "Endre passord",
- "changePermissionsPopup-title": "Endre tillatelser",
- "changeSettingsPopup-title": "Endre innstillinger",
- "subtasks": "Deloppgave",
- "checklists": "Sjekklister",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Lukk",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "svart",
- "color-blue": "blå",
- "color-crimson": "crimson",
- "color-darkgreen": "mørkegrønn",
- "color-gold": "gull",
- "color-gray": "grå",
- "color-green": "grønn",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "plum",
- "color-purple": "lilla",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Dato",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(ukjent)",
- "custom-field-number": "Nummer",
- "custom-field-text": "Tekst",
- "custom-fields": "Custom Fields",
- "date": "Dato",
- "decline": "Avvis",
- "default-avatar": "Default avatar",
- "delete": "Slett",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Beskrivelse",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Last ned",
- "edit": "Rediger",
- "edit-avatar": "Endre avatar",
- "edit-profile": "Endre profil",
- "edit-wip-limit": "Endre WIP grense",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Endre start dato",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Endre profil",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "Denne tavlen finnes ikke",
- "error-board-notAdmin": "Du må være administrator for denne tavlen for å gjøre dette",
- "error-board-notAMember": "Du må være medlem av denne tavlen for å gjøre dette",
- "error-json-malformed": "Denne teksten er ikke gyldig JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Denne listen finnes ikke",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Tilbake til dine tavler",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiketter",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Mer",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Medlemmer",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Mine tavler",
- "name": "Navn",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Motta oppdatering av alle tavler, lister eller kort som du overvåker",
- "optional": "valgfritt",
- "or": "eller",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Passord",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Forhåndsvisning",
- "previewAttachedImagePopup-title": "Forhåndsvisning",
- "previewClipboardImagePopup-title": "Forhåndsvisning",
- "private": "Privat",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profil",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Endre navn på tavlen",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Brukernavn",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Innstillinger",
- "people": "Folk",
- "registration": "Registrering",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Brukernavn",
- "smtp-password": "Passord",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Legg til",
- "r-remove": "Fjern",
- "r-label": "label",
- "r-member": "medlem",
- "r-remove-all": "Fjern alle medlemmer fra kortet",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "til",
- "r-of": "of",
- "r-subject": "Emne",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Flytt kortet til bunnen av sin liste",
- "r-d-move-to-bottom-spec": "Flytt kortet til bunnen av listen",
- "r-d-send-email": "Send e-post",
- "r-d-send-email-to": "til",
- "r-d-send-email-subject": "Emne",
- "r-d-send-email-message": "Melding",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "Du ble nevnt i [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Er du sikker på at du vil slette denne kontoen?",
- "accounts-allowUserDelete": "Tillat at brukere sletter sin konto",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Godta",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Aktiviteter",
+ "activity": "Aktivitet",
+ "activity-added": "la %s til %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "la %s til %s",
+ "activity-created": "opprettet %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "ekskluderte %s fra %s",
+ "activity-imported": "importerte %s til %s fra %s",
+ "activity-imported-board": "importerte %s fra %s",
+ "activity-joined": "ble med %s",
+ "activity-moved": "flyttet %s fra %s til %s",
+ "activity-on": "på %s",
+ "activity-removed": "fjernet %s fra %s",
+ "activity-sent": "sendte %s til %s",
+ "activity-unjoined": "forlot %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "la til sjekkliste til %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Legg til",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Nytt punkt på sjekklisten",
+ "add-cover": "Nytt omslag",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Legg til medlemmer",
+ "added": "Lagt til",
+ "addMemberPopup-title": "Medlemmer",
+ "admin": "Admin",
+ "admin-desc": "Kan se og redigere kort, fjerne medlemmer, og endre innstillingene for tavlen.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Alle tavler",
+ "and-n-other-card": "Og __count__ andre kort",
+ "and-n-other-card_plural": "Og __count__ andre kort",
+ "apply": "Lagre",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arkiv",
+ "archived-boards": "Tavler i arkivet",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "Ingen tavler i arkivet",
+ "archives": "Arkiv",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Tildel medlem",
+ "attached": "la ved",
+ "attachment": "Vedlegg",
+ "attachment-delete-pop": "Sletting av vedlegg er permanent og kan ikke angres",
+ "attachmentDeletePopup-title": "Slette vedlegg?",
+ "attachments": "Vedlegg",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Tilbake",
+ "board-change-color": "Endre farge",
+ "board-nb-stars": "%s stjerner",
+ "board-not-found": "Kunne ikke finne tavlen",
+ "board-private-info": "Denne tavlen vil være privat.",
+ "board-public-info": "Denne tavlen vil være offentlig.",
+ "boardChangeColorPopup-title": "Ende tavlens bakgrunnsfarge",
+ "boardChangeTitlePopup-title": "Endre navn på tavlen",
+ "boardChangeVisibilityPopup-title": "Endre synlighet",
+ "boardChangeWatchPopup-title": "Endre overvåkning",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Tavler",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Som \"Bucket List\" for eksempel",
+ "cancel": "Avbryt",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Dette kortet har %s kommentar.",
+ "card-delete-notice": "Sletting er permanent. Du vil miste alle hendelser knyttet til dette kortet.",
+ "card-delete-pop": "Alle handlinger vil fjernes fra feeden for aktiviteter og du vil ikke kunne åpne kortet på nytt. Det er ingen mulighet å angre.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Frist",
+ "card-due-on": "Frist til",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Rediger vedlegg",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Rediger etiketter",
+ "card-edit-members": "Endre medlemmer",
+ "card-labels-title": "Endre etiketter for kortet.",
+ "card-members-title": "Legg til eller fjern tavle-medlemmer fra dette kortet.",
+ "card-start": "Start",
+ "card-start-on": "Starter på",
+ "cardAttachmentsPopup-title": "Legg ved fra",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Slett kort?",
+ "cardDetailsActionsPopup-title": "Kort-handlinger",
+ "cardLabelsPopup-title": "Etiketter",
+ "cardMembersPopup-title": "Medlemmer",
+ "cardMorePopup-title": "Mer",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kort",
+ "cards-count": "Kort",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Endre",
+ "change-avatar": "Endre avatar",
+ "change-password": "Endre passord",
+ "change-permissions": "Endre rettigheter",
+ "change-settings": "Endre innstillinger",
+ "changeAvatarPopup-title": "Endre avatar",
+ "changeLanguagePopup-title": "Endre språk",
+ "changePasswordPopup-title": "Endre passord",
+ "changePermissionsPopup-title": "Endre tillatelser",
+ "changeSettingsPopup-title": "Endre innstillinger",
+ "subtasks": "Deloppgave",
+ "checklists": "Sjekklister",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Lukk",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "svart",
+ "color-blue": "blå",
+ "color-crimson": "crimson",
+ "color-darkgreen": "mørkegrønn",
+ "color-gold": "gull",
+ "color-gray": "grå",
+ "color-green": "grønn",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "plum",
+ "color-purple": "lilla",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Dato",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(ukjent)",
+ "custom-field-number": "Nummer",
+ "custom-field-text": "Tekst",
+ "custom-fields": "Custom Fields",
+ "date": "Dato",
+ "decline": "Avvis",
+ "default-avatar": "Default avatar",
+ "delete": "Slett",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Beskrivelse",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Last ned",
+ "edit": "Rediger",
+ "edit-avatar": "Endre avatar",
+ "edit-profile": "Endre profil",
+ "edit-wip-limit": "Endre WIP grense",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Endre start dato",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Endre profil",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "Denne tavlen finnes ikke",
+ "error-board-notAdmin": "Du må være administrator for denne tavlen for å gjøre dette",
+ "error-board-notAMember": "Du må være medlem av denne tavlen for å gjøre dette",
+ "error-json-malformed": "Denne teksten er ikke gyldig JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Denne listen finnes ikke",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Tilbake til dine tavler",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiketter",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Mer",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Medlemmer",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Mine tavler",
+ "name": "Navn",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Motta oppdatering av alle tavler, lister eller kort som du overvåker",
+ "optional": "valgfritt",
+ "or": "eller",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Passord",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Forhåndsvisning",
+ "previewAttachedImagePopup-title": "Forhåndsvisning",
+ "previewClipboardImagePopup-title": "Forhåndsvisning",
+ "private": "Privat",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profil",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Endre navn på tavlen",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Brukernavn",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Innstillinger",
+ "people": "Folk",
+ "registration": "Registrering",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Brukernavn",
+ "smtp-password": "Passord",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Legg til",
+ "r-remove": "Fjern",
+ "r-label": "label",
+ "r-member": "medlem",
+ "r-remove-all": "Fjern alle medlemmer fra kortet",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "til",
+ "r-of": "of",
+ "r-subject": "Emne",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Flytt kortet til bunnen av sin liste",
+ "r-d-move-to-bottom-spec": "Flytt kortet til bunnen av listen",
+ "r-d-send-email": "Send e-post",
+ "r-d-send-email-to": "til",
+ "r-d-send-email-subject": "Emne",
+ "r-d-send-email-message": "Melding",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "Du ble nevnt i [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Er du sikker på at du vil slette denne kontoen?",
+ "accounts-allowUserDelete": "Tillat at brukere sletter sin konto",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json
index a2496b988..bc168e52a 100644
--- a/i18n/nl.i18n.json
+++ b/i18n/nl.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Toon Authenticatiemethode",
"default-authentication-method": "Standaard Authenticatiemethode",
"duplicate-board": "Dupliceer Bord",
+ "org-number": "Het aantal organisaties is:",
+ "team-number": "Het aantal teams is:",
"people-number": "Het aantal gebruikers is:",
"swimlaneDeletePopup-title": "Swimlane verwijderen?",
"swimlane-delete-pop": "Alle acties zullen verwijderd worden van de activiteiten feed en je kunt de swimlane niet terughalen. Er is geen herstelmogelijkheid.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Verberg aangevinkte items",
"task": "Taak",
"create-task": "Taak aanmaken",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organisaties",
+ "teams": "Teams",
+ "displayName": "Schermnaam",
+ "shortName": "Korte naam",
+ "website": "Website",
+ "person": "Persoon"
}
diff --git a/i18n/oc.i18n.json b/i18n/oc.i18n.json
index b5fc0fdba..69c810166 100644
--- a/i18n/oc.i18n.json
+++ b/i18n/oc.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Acceptar",
- "act-activity-notify": "Notificacion d'activitat",
- "act-addAttachment": "as apondut una pèça joncha __astacament__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-deleteAttachment": "as tirat una pèça joncha __astacament__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addSubtask": "as apondut una jos-tasca __subtask__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addedLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removedLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addChecklist": "as apondut la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addChecklistItem": " as apondut l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeChecklist": "as tirat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeChecklistItem": " as tirat l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-checkedItem": "as croiat __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-uncheckedItem": "as descroiar __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-completeChecklist": "as completat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-uncompleteChecklist": "as rendut incomplet la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addComment": "as comentat la carta __card__: __comment__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "as creat lo tablèu __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "as creat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "as apondut la tièra __list__ al tablèu __board__",
- "act-addBoardMember": "as apondut un participant __member__ al tablèu __board__",
- "act-archivedBoard": "Lo tablèu __board__ es estat desplaçar cap a Archius",
- "act-archivedCard": "La carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archiu",
- "act-archivedList": "La tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
- "act-archivedSwimlane": "Lo corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
- "act-importBoard": "as importat lo tablèu __board__",
- "act-importCard": "as importat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-importList": "as importat la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-joinMember": "as apondut un participant __member__ a la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "as desplaçat la carta __card__ de la tièra __oldList__ del corredor __oldSwimlane__ del tablèu __oldBoard__ cap a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeBoardMember": "as tirat lo participant __member__ del tablèu __board__",
- "act-restoredCard": "as restorat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-unjoinMember": "as tirat lo participant __member__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-withBoardTitle": "__tablèu__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Accions",
- "activities": "Activitats",
- "activity": "Activitat",
- "activity-added": "as apondut %s a %s",
- "activity-archived": "%s desplaçat cap a Archius",
- "activity-attached": "as ligat %s a %s",
- "activity-created": "as creat %s",
- "activity-customfield-created": "as creat lo camp personalizat %s",
- "activity-excluded": "as exclús %s de %s",
- "activity-imported": "as importat %s cap a %s dempuèi %s",
- "activity-imported-board": "as importat %s dempuèi %s",
- "activity-joined": "as rejonch %s",
- "activity-moved": "as desplaçat %s dempuèi %s cap a %s",
- "activity-on": "sus %s",
- "activity-removed": "as tirat %s de %s",
- "activity-sent": "as mandat %s cap a %s",
- "activity-unjoined": "as quitat %s",
- "activity-subtask-added": "as apondut una jos-tasca a %s",
- "activity-checked-item": "as croiat %s dins la checklist %s de %s",
- "activity-unchecked-item": "as descroiat %s dins la checklist %s de %s",
- "activity-checklist-added": "as apondut a checklist a %s",
- "activity-checklist-removed": "as tirat la checklist de %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "as rendut incomplet la checklist %s de %s",
- "activity-checklist-item-added": "as apondut un element a la checklist '%s' dins %s",
- "activity-checklist-item-removed": "as tirat un element a la checklist '%s' dins %s",
- "add": "Apondre",
- "activity-checked-item-card": "as croiat %s dins la checklist %s",
- "activity-unchecked-item-card": "as descroiat %s dins la checklist %s",
- "activity-checklist-completed-card": "as acabat la checklist__checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "activity-checklist-uncompleted-card": "as rendut incomplet la checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Apondre una pèça joncha",
- "add-board": "Apondre un tablèu",
- "add-card": "Apondre una carta",
- "add-swimlane": "Apondre un corredor",
- "add-subtask": "Apondre una jos-tasca",
- "add-checklist": "Apondre una checklist",
- "add-checklist-item": "Apondre un element a la checklist",
- "add-cover": "Apondre una cobèrta",
- "add-label": "Apondre una etiqueta",
- "add-list": "Apondre una tièra",
- "add-members": "Apondre un participant",
- "added": "Apondut lo",
- "addMemberPopup-title": "Participants",
- "admin": "Administartor",
- "admin-desc": "As lo drech de legir e modificar las cartas, tirar de participants, e modificar las opcions del tablèu.",
- "admin-announcement": "Anóncia",
- "admin-announcement-active": "Activar l'anóncia globala",
- "admin-announcement-title": "Anóncia de l'administrator",
- "all-boards": "Totes los tablèus",
- "and-n-other-card": "E __comptar__ carta de mai",
- "and-n-other-card_plural": "E __comptar__ cartas de mai",
- "apply": "Aplicar",
- "app-is-offline": "Cargament, vos cal esperar. Refrescar la pagina vos va far perdre vòstre trabalh. Se lo cargament es tròp long, vos cal agachar se lo servidor es pas blocat/arrestat.",
- "archive": "Archivar",
- "archive-all": "Archivar tot",
- "archive-board": "Archivar lo tablèu",
- "archive-card": "Archivar la carta",
- "archive-list": "Archivar la tièra",
- "archive-swimlane": "Archivar lo corredor",
- "archive-selection": "Archivar la seleccion",
- "archiveBoardPopup-title": "Archivar lo tablèu?",
- "archived-items": "Archius",
- "archived-boards": "Tablèu archivat",
- "restore-board": "Restaurar lo tablèu",
- "no-archived-boards": "Pas de tablèu archivat.",
- "archives": "Archivar",
- "template": "Modèl",
- "templates": "Modèls",
- "assign-member": "Affectar un participant",
- "attached": "jónher",
- "attachment": "pèça joncha",
- "attachment-delete-pop": "Tirar una pèça joncha es defenitiu.",
- "attachmentDeletePopup-title": "Tirar la pèça joncha ?",
- "attachments": "Pèças jonchas",
- "auto-watch": "Survelhar automaticament lo tablèu un còp creat",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Tornar",
- "board-change-color": "Cambiar de color",
- "board-nb-stars": "%s estèla",
- "board-not-found": "Tablèu pas trapat",
- "board-private-info": "Aqueste tablèu serà privat.",
- "board-public-info": "Aqueste tablèu serà public.",
- "boardChangeColorPopup-title": "Cambiar lo fons del tablèu",
- "boardChangeTitlePopup-title": "Tornar nomenar lo tablèu",
- "boardChangeVisibilityPopup-title": "Cambiar la visibilitat",
- "boardChangeWatchPopup-title": "Cambiar lo seguit",
- "boardMenuPopup-title": "Opcions del tablèu",
- "boardChangeViewPopup-title": "Presentacion del tablèu",
- "boards": "Tablèus",
- "board-view": "Presentacion del tablèu",
- "board-view-cal": "Calendièr",
- "board-view-swimlanes": "Corredor",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Tièras",
- "bucket-example": "Coma \"Tota la tièra\" per exemple",
- "cancel": "Tornar",
- "card-archived": "Aquesta carta es desplaçada dins Archius.",
- "board-archived": "Aqueste tablèu esdesplaçat dins Archius.",
- "card-comments-title": "Aquesta carta a %s comentari(s).",
- "card-delete-notice": "Un còp tirat, pas de posibilitat de tornar enrè",
- "card-delete-pop": "Totes las accions van èsser quitadas del seguit d'activitat e poiretz pas mai utilizar aquesta carta.",
- "card-delete-suggest-archive": "Podètz desplaçar una carta dins Archius per la quitar del tablèu e gardar las activitats.",
- "card-due": "Esperat",
- "card-due-on": "Esperat lo",
- "card-spent": "Temps passat",
- "card-edit-attachments": "Cambiar las pèças jonchas",
- "card-edit-custom-fields": "Cambiar los camps personalizats",
- "card-edit-labels": "Cambiar los labèls",
- "card-edit-members": "Cambiar los participants",
- "card-labels-title": "Cambiar l'etiqueta de la carta.",
- "card-members-title": "Apondre o quitar de participants a la carta. ",
- "card-start": "Debuta",
- "card-start-on": "Debuta lo",
- "cardAttachmentsPopup-title": "Apondut dempuèi",
- "cardCustomField-datePopup-title": "Cambiar la data",
- "cardCustomFieldsPopup-title": "Cambiar los camps personalizats",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Suprimir la carta?",
- "cardDetailsActionsPopup-title": "Accions sus la carta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Participants",
- "cardMorePopup-title": "Mai",
- "cardTemplatePopup-title": "Crear un modèl",
- "cards": "Cartas",
- "cards-count": "Cartas",
- "casSignIn": "Vos connectar amb CAS",
- "cardType-card": "Carta",
- "cardType-linkedCard": "Carta ligada",
- "cardType-linkedBoard": "Tablèu ligat",
- "change": "Cambiar",
- "change-avatar": "Cambiar la fòto",
- "change-password": "Cambiar lo mot de Santa-Clara",
- "change-permissions": "Cambiar las permissions",
- "change-settings": "Cambiar los paramètres",
- "changeAvatarPopup-title": "Cambiar la fòto",
- "changeLanguagePopup-title": "Cambiar la lenga",
- "changePasswordPopup-title": "Cambiar lo mot de Santa-Clara",
- "changePermissionsPopup-title": "Cambiar las permissions",
- "changeSettingsPopup-title": "Cambiar los paramètres",
- "subtasks": "Jos-tasca",
- "checklists": "Checklists",
- "click-to-star": "Apondre lo tablèu als favorits",
- "click-to-unstar": "Quitar lo tablèu dels favorits",
- "clipboard": "Copiar o far limpar",
- "close": "Tampar",
- "close-board": "Tampar lo tablèu",
- "close-board-pop": "Podètz tornar activar lo tablèu dempuèi la pagina d'acuèlh.",
- "color-black": "negre",
- "color-blue": "blau",
- "color-crimson": "purple clar",
- "color-darkgreen": "verd fonçat",
- "color-gold": "aur",
- "color-gray": "gris",
- "color-green": "verd",
- "color-indigo": "indi",
- "color-lime": "jaune clar",
- "color-magenta": "magenta",
- "color-mistyrose": "ròse clar",
- "color-navy": "blau marin",
- "color-orange": "irange",
- "color-paleturquoise": "turqués",
- "color-peachpuff": "persèc",
- "color-pink": "ròsa",
- "color-plum": "pruna",
- "color-purple": "violet",
- "color-red": "roge",
- "color-saddlebrown": "castanh",
- "color-silver": "argent",
- "color-sky": "blau clar",
- "color-slateblue": "blau lausa",
- "color-white": "blanc",
- "color-yellow": "jaune",
- "unset-color": "pas reglat",
- "comment": "Comentari",
- "comment-placeholder": "Escrire un comentari",
- "comment-only": "Comentari solament",
- "comment-only-desc": "Comentari sus las cartas solament.",
- "no-comments": "Pas cap de comentari",
- "no-comments-desc": "Podèts pas veire ni los comentaris ni las activitats",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Ordenator",
- "confirm-subtask-delete-dialog": "Sètz segur de voler quitar aquesta jos-tasca?",
- "confirm-checklist-delete-dialog": "Sètz segur de voler quitar aquesta checklist?",
- "copy-card-link-to-clipboard": "Còpia del ligam de la carta",
- "linkCardPopup-title": "Ligam de la carta",
- "searchElementPopup-title": "Cèrca",
- "copyCardPopup-title": "Còpia de la carta",
- "copyChecklistToManyCardsPopup-title": "Còpia del modèl de checklist cap a mai d'una carta",
- "copyChecklistToManyCardsPopup-instructions": "Un compte es estat creat per vos sus ",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primièra carta\", \"description\":\"Descripcion de la primièra carta\"}, {\"title\":\"Títol de la segonda carta\",\"description\":\"Descripcion de la segonda carta\"},{\"title\":\"Títol de la darrièra carta\",\"description\":\"Descripcion de la darrièra carta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear un tablèu",
- "chooseBoardSourcePopup-title": "Importar un tablèu",
- "createLabelPopup-title": "Crear una etiqueta",
- "createCustomField": "Crear un camp",
- "createCustomFieldPopup-title": "Crear un camp",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Casa de croiar",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Tièra de causidas",
- "custom-field-dropdown-none": "(pas res)",
- "custom-field-dropdown-options": "Opcions de la tièra",
- "custom-field-dropdown-options-placeholder": "Apiejar sus \"Enter\" per apondre d'opcions",
- "custom-field-dropdown-unknown": "(desconegut)",
- "custom-field-number": "Nombre",
- "custom-field-text": "Tèxte",
- "custom-fields": "Camps personalizats",
- "date": "Data",
- "decline": "Refusar",
- "default-avatar": "Fòto per defaut",
- "delete": "Suprimir",
- "deleteCustomFieldPopup-title": "Tirar lo camp personalizat?",
- "deleteLabelPopup-title": "Tirar l'etiqueta?",
- "description": "Descripcion",
- "disambiguateMultiLabelPopup-title": "Precisar l'accion de l'etiqueta",
- "disambiguateMultiMemberPopup-title": "Precisar l'accion del participant",
- "discard": "Botar dins l'escobilha",
- "done": "Acabat",
- "download": "Telecargar",
- "edit": "Modificar",
- "edit-avatar": "Cambiar la fòto",
- "edit-profile": "Modificar lo perfil",
- "edit-wip-limit": "Modificar la WIP limit",
- "soft-wip-limit": "Leugièr WIP limit",
- "editCardStartDatePopup-title": "Cambiar la data de debuta",
- "editCardDueDatePopup-title": "Cambiar la data de fin",
- "editCustomFieldPopup-title": "Modificar los camps",
- "editCardSpentTimePopup-title": "Cambiar lo temp passat",
- "editLabelPopup-title": "Cambiar l'etiqueta",
- "editNotificationPopup-title": "Modificar la notificacion",
- "editProfilePopup-title": "Modificar lo perfil",
- "email": "Corrièl",
- "email-enrollAccount-subject": "Vòstre compte es ara activat pel sit __siteName__",
- "email-enrollAccount-text": "Adieu __user__,\n\nPer comença d'utilizar lo servici, vos cal clicar sul ligam.\n\n__url__\n\nMercé.",
- "email-fail": "Pas possible de mandar lo corrièl",
- "email-fail-text": "Error per mandar lo corrièl",
- "email-invalid": "L'adreça corrièl es pas valida",
- "email-invite": "Convidar per corrièl",
- "email-invite-subject": "__inviter__ vos as mandat un convit",
- "email-invite-text": "Car __user__,\n\n__inviter__ vos a convidat per jónher lo tablèu \"__board__\".\n\nVos cal clicar sul ligam:\n\n__url__\n\nMercé.",
- "email-resetPassword-subject": "Tornar inicializar vòstre mot de Santa-Clara de sit __siteName__",
- "email-resetPassword-text": "Adieu __user__,\n\nPer tornar inicializar vòstre mot de Santa-Clara vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
- "email-sent": "Mail mandat",
- "email-verifyEmail-subject": "Vos cal verificar vòstra adreça corrièl del sit __siteName__",
- "email-verifyEmail-text": "Adieu __user__,\n\nPer verificar vòstra adreça corrièl, vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
- "enable-wip-limit": "Activar la WIP limit",
- "error-board-doesNotExist": "Aqueste tablèu existís pas",
- "error-board-notAdmin": "Devètz èsser un administrator del tablèu per far aquò ",
- "error-board-notAMember": "Devètz èsser un participant del tablèu per far aquò",
- "error-json-malformed": "Vòstre tèxte es pas valid JSON",
- "error-json-schema": "Vòstre JSON es pas al format correct ",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Aqueste tièra existís pas",
- "error-user-doesNotExist": "Aqueste utilizator existís pas",
- "error-user-notAllowSelf": "Vos podètz pas convidar vautres meteisses",
- "error-user-notCreated": "Aqueste utilizator es pas encara creat",
- "error-username-taken": "Lo nom es ja pres",
- "error-email-taken": "Lo corrièl es ja pres ",
- "export-board": "Exportar lo tablèu",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Exportar lo tablèu",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtre",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Escafar lo filtre",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Pas cap d'etiqueta",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Pas cap de participant",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Pas de camp personalizat",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Lo filtre es activat",
- "filter-on-desc": "Filtratz las cartas dins aqueste tablèu. Picar aquí per editar los filtres",
- "filter-to-selection": "Filtrar la seleccion",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Filtre avançat",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nom complet",
- "header-logo-title": "Retorn a vòstra pagina de tablèus",
- "hide-system-messages": "Amagar los messatges sistèm",
- "headerBarCreateBoardPopup-title": "Crear un tablèu",
- "home": "Acuèlh",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Ligar",
- "import-board": "Importar un tablèu",
- "import-board-c": "Importar un tablèu",
- "import-board-title-trello": "Importar un tablèu dempuèi Trello",
- "import-board-title-wekan": "Importar un tablèu dempuèi un export passat",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Dempuèi Trello",
- "from-wekan": "Dempuèi un export passat",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "Dins vòstre tablèu Trello, vos cal anar dins \"Menut\", puèi \"Mai\", \"Export\", \"Export JSON\", e copiar lo tèxte balhat.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "Dins vòstre tablèu, vos cal anar dins \"Menut\", puèi \"Exportar lo tablèu\", e de copiar lo tèxte del fichièr telecargat.",
- "import-board-instruction-about-errors": "Se avètz de errors al moment d'importar un tablèu, es possible que l'importacion as fonccionat, lo tablèu es belèu a la pagina \"Totes los tablèus\".",
- "import-json-placeholder": "Pegar las donadas del fichièr JSON aicí",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapa dels participants",
- "import-members-map": "Lo tablèu qu'avètz importat as ja de participants, vos cal far la migracion amb los utilizators actual",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Seleccionar un participant",
- "info": "Vesion",
- "initials": "Iniciala",
- "invalid-date": "Data invalida",
- "invalid-time": "Temps invalid",
- "invalid-user": "Participant invalid",
- "joined": "Jónher",
- "just-invited": "Sètz just convidat dins aqueste tablèu",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Crear una etiqueta",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiquetas",
- "language": "Lenga",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Ligam per aquesta carta",
- "list-archive-cards": "Mandar totas las cartas d'aquesta tièra dins Archius",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mandar totas las cartas dins aquesta tièra",
- "list-select-cards": "Seleccionar totas las cartas dins aquesta tièra",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Tièra de las accions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Importar una carta de Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Mai",
- "link-list": "Ligam d'aquesta tièra",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Tièras",
- "swimlanes": "Corredor",
- "log-out": "Desconnexion",
- "log-in": "Connexion",
- "loginPopup-title": "Connexion",
- "memberMenuPopup-title": "Paramètres dels participants",
- "members": "Participants",
- "menu": "Menut",
- "move-selection": "Bolegar la seleccion",
- "moveCardPopup-title": "Bolegar la carta",
- "moveCardToBottom-title": "Bolegar cap al bas",
- "moveCardToTop-title": "Bolegar cap al naut",
- "moveSelectionPopup-title": "Bolegar la seleccion",
- "multi-selection": "Multi-seleccion",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Silenciós",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Mon tablèu",
- "name": "Nom",
- "no-archived-cards": "Pas cap de carta dins Archius",
- "no-archived-lists": "Pas cap de tièra dins Archius",
- "no-archived-swimlanes": "Pas cap de corredor dins Archius",
- "no-results": "Pas brica de resultat",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Pagina pas trapada",
- "password": "Mot de Santa-Clara",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Apercebut",
- "previewAttachedImagePopup-title": "Apercebut",
- "previewClipboardImagePopup-title": "Apercebut",
- "private": "Privat",
- "private-desc": "Aqueste tablèu es privat. Solament las personas apondudas a aquete tablèu lo pòdon veire e editar.",
- "profile": "Perfil",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Quitar lo tablèu",
- "remove-label": "Quitar l'etiqueta",
- "listDeletePopup-title": "Quitar la tièra ?",
- "remove-member": "Quitar lo participant",
- "remove-member-from-card": "Quitar aquesta carta",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Tornar nomenar",
- "rename-board": "Tornar nomenar lo tablèu",
- "restore": "Restore",
- "save": "Salvar",
- "search": "Cèrca",
- "rules": "Règlas",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Color causida",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Tampar lo dialòg",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Crear un compte",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Còla",
- "this-board": "Aqueste tablèu",
- "this-card": "aquesta carta",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Temps",
- "title": "Títol",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Mena",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Telecargar",
- "upload-avatar": "Telecargar un avatar",
- "uploaded-avatar": "Avatar telecargat",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nom d’utilizaire",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Seguit",
- "watching": "Agachat",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Tablèu de benvenguda",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "Lista dels modèls",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Qué volètz far ?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Interfàcia d’admin",
- "settings": "Paramètres",
- "people": "Personas",
- "registration": "Inscripcion",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Convidar",
- "invite-people": "Convidat",
- "to-boards": "To board(s)",
- "email-addresses": "Adreça corrièl",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "Òst SMTP",
- "smtp-port": "Pòrt SMTP",
- "smtp-username": "Nom d’utilizaire",
- "smtp-password": "Mot de Santa-Clara",
- "smtp-tls": "Compatibilitat TLS",
- "send-from": "De",
- "send-smtp-test": "Se mandar un corrièl d'ensag",
- "invitation-code": "Còde de convit",
- "email-invite-register-subject": "__inviter__ vos a mandat un convit",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "As capitat de mandar un corrièl",
- "error-invitation-code-not-exist": "Lo còde de convit existís pas",
- "error-notAuthorized": "Sès pas autorizat a agachar aquesta pagina",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Desconegut)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "jorns",
- "hours": "oras",
- "minutes": "minutas",
- "seconds": "segondas",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Òc",
- "no": "Non",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verificat",
- "active": "Avtivat",
- "card-received": "Recebut",
- "card-received-on": "Received on",
- "card-end": "Fin",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Color seleccionada",
- "setCardActionsColorPopup-title": "Causir una color",
- "setSwimlaneColorPopup-title": "Causir una color",
- "setListColorPopup-title": "Causir una color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Suprimir lo tablèu ?",
- "delete-board": "Tablèu suprimit",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Desplaçar cap a Archius",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Apondre",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Acceptar",
+ "act-activity-notify": "Notificacion d'activitat",
+ "act-addAttachment": "as apondut una pèça joncha __astacament__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-deleteAttachment": "as tirat una pèça joncha __astacament__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addSubtask": "as apondut una jos-tasca __subtask__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addedLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removedLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addChecklist": "as apondut la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addChecklistItem": " as apondut l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeChecklist": "as tirat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeChecklistItem": " as tirat l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-checkedItem": "as croiat __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-uncheckedItem": "as descroiar __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-completeChecklist": "as completat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-uncompleteChecklist": "as rendut incomplet la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addComment": "as comentat la carta __card__: __comment__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "as creat lo tablèu __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "as creat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "as apondut la tièra __list__ al tablèu __board__",
+ "act-addBoardMember": "as apondut un participant __member__ al tablèu __board__",
+ "act-archivedBoard": "Lo tablèu __board__ es estat desplaçar cap a Archius",
+ "act-archivedCard": "La carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archiu",
+ "act-archivedList": "La tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
+ "act-archivedSwimlane": "Lo corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
+ "act-importBoard": "as importat lo tablèu __board__",
+ "act-importCard": "as importat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-importList": "as importat la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-joinMember": "as apondut un participant __member__ a la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "as desplaçat la carta __card__ de la tièra __oldList__ del corredor __oldSwimlane__ del tablèu __oldBoard__ cap a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeBoardMember": "as tirat lo participant __member__ del tablèu __board__",
+ "act-restoredCard": "as restorat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-unjoinMember": "as tirat lo participant __member__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-withBoardTitle": "__tablèu__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Accions",
+ "activities": "Activitats",
+ "activity": "Activitat",
+ "activity-added": "as apondut %s a %s",
+ "activity-archived": "%s desplaçat cap a Archius",
+ "activity-attached": "as ligat %s a %s",
+ "activity-created": "as creat %s",
+ "activity-customfield-created": "as creat lo camp personalizat %s",
+ "activity-excluded": "as exclús %s de %s",
+ "activity-imported": "as importat %s cap a %s dempuèi %s",
+ "activity-imported-board": "as importat %s dempuèi %s",
+ "activity-joined": "as rejonch %s",
+ "activity-moved": "as desplaçat %s dempuèi %s cap a %s",
+ "activity-on": "sus %s",
+ "activity-removed": "as tirat %s de %s",
+ "activity-sent": "as mandat %s cap a %s",
+ "activity-unjoined": "as quitat %s",
+ "activity-subtask-added": "as apondut una jos-tasca a %s",
+ "activity-checked-item": "as croiat %s dins la checklist %s de %s",
+ "activity-unchecked-item": "as descroiat %s dins la checklist %s de %s",
+ "activity-checklist-added": "as apondut a checklist a %s",
+ "activity-checklist-removed": "as tirat la checklist de %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "as rendut incomplet la checklist %s de %s",
+ "activity-checklist-item-added": "as apondut un element a la checklist '%s' dins %s",
+ "activity-checklist-item-removed": "as tirat un element a la checklist '%s' dins %s",
+ "add": "Apondre",
+ "activity-checked-item-card": "as croiat %s dins la checklist %s",
+ "activity-unchecked-item-card": "as descroiat %s dins la checklist %s",
+ "activity-checklist-completed-card": "as acabat la checklist__checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "activity-checklist-uncompleted-card": "as rendut incomplet la checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Apondre una pèça joncha",
+ "add-board": "Apondre un tablèu",
+ "add-card": "Apondre una carta",
+ "add-swimlane": "Apondre un corredor",
+ "add-subtask": "Apondre una jos-tasca",
+ "add-checklist": "Apondre una checklist",
+ "add-checklist-item": "Apondre un element a la checklist",
+ "add-cover": "Apondre una cobèrta",
+ "add-label": "Apondre una etiqueta",
+ "add-list": "Apondre una tièra",
+ "add-members": "Apondre un participant",
+ "added": "Apondut lo",
+ "addMemberPopup-title": "Participants",
+ "admin": "Administartor",
+ "admin-desc": "As lo drech de legir e modificar las cartas, tirar de participants, e modificar las opcions del tablèu.",
+ "admin-announcement": "Anóncia",
+ "admin-announcement-active": "Activar l'anóncia globala",
+ "admin-announcement-title": "Anóncia de l'administrator",
+ "all-boards": "Totes los tablèus",
+ "and-n-other-card": "E __comptar__ carta de mai",
+ "and-n-other-card_plural": "E __comptar__ cartas de mai",
+ "apply": "Aplicar",
+ "app-is-offline": "Cargament, vos cal esperar. Refrescar la pagina vos va far perdre vòstre trabalh. Se lo cargament es tròp long, vos cal agachar se lo servidor es pas blocat/arrestat.",
+ "archive": "Archivar",
+ "archive-all": "Archivar tot",
+ "archive-board": "Archivar lo tablèu",
+ "archive-card": "Archivar la carta",
+ "archive-list": "Archivar la tièra",
+ "archive-swimlane": "Archivar lo corredor",
+ "archive-selection": "Archivar la seleccion",
+ "archiveBoardPopup-title": "Archivar lo tablèu?",
+ "archived-items": "Archius",
+ "archived-boards": "Tablèu archivat",
+ "restore-board": "Restaurar lo tablèu",
+ "no-archived-boards": "Pas de tablèu archivat.",
+ "archives": "Archivar",
+ "template": "Modèl",
+ "templates": "Modèls",
+ "assign-member": "Affectar un participant",
+ "attached": "jónher",
+ "attachment": "pèça joncha",
+ "attachment-delete-pop": "Tirar una pèça joncha es defenitiu.",
+ "attachmentDeletePopup-title": "Tirar la pèça joncha ?",
+ "attachments": "Pèças jonchas",
+ "auto-watch": "Survelhar automaticament lo tablèu un còp creat",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Tornar",
+ "board-change-color": "Cambiar de color",
+ "board-nb-stars": "%s estèla",
+ "board-not-found": "Tablèu pas trapat",
+ "board-private-info": "Aqueste tablèu serà privat.",
+ "board-public-info": "Aqueste tablèu serà public.",
+ "boardChangeColorPopup-title": "Cambiar lo fons del tablèu",
+ "boardChangeTitlePopup-title": "Tornar nomenar lo tablèu",
+ "boardChangeVisibilityPopup-title": "Cambiar la visibilitat",
+ "boardChangeWatchPopup-title": "Cambiar lo seguit",
+ "boardMenuPopup-title": "Opcions del tablèu",
+ "boardChangeViewPopup-title": "Presentacion del tablèu",
+ "boards": "Tablèus",
+ "board-view": "Presentacion del tablèu",
+ "board-view-cal": "Calendièr",
+ "board-view-swimlanes": "Corredor",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Tièras",
+ "bucket-example": "Coma \"Tota la tièra\" per exemple",
+ "cancel": "Tornar",
+ "card-archived": "Aquesta carta es desplaçada dins Archius.",
+ "board-archived": "Aqueste tablèu esdesplaçat dins Archius.",
+ "card-comments-title": "Aquesta carta a %s comentari(s).",
+ "card-delete-notice": "Un còp tirat, pas de posibilitat de tornar enrè",
+ "card-delete-pop": "Totes las accions van èsser quitadas del seguit d'activitat e poiretz pas mai utilizar aquesta carta.",
+ "card-delete-suggest-archive": "Podètz desplaçar una carta dins Archius per la quitar del tablèu e gardar las activitats.",
+ "card-due": "Esperat",
+ "card-due-on": "Esperat lo",
+ "card-spent": "Temps passat",
+ "card-edit-attachments": "Cambiar las pèças jonchas",
+ "card-edit-custom-fields": "Cambiar los camps personalizats",
+ "card-edit-labels": "Cambiar los labèls",
+ "card-edit-members": "Cambiar los participants",
+ "card-labels-title": "Cambiar l'etiqueta de la carta.",
+ "card-members-title": "Apondre o quitar de participants a la carta. ",
+ "card-start": "Debuta",
+ "card-start-on": "Debuta lo",
+ "cardAttachmentsPopup-title": "Apondut dempuèi",
+ "cardCustomField-datePopup-title": "Cambiar la data",
+ "cardCustomFieldsPopup-title": "Cambiar los camps personalizats",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Suprimir la carta?",
+ "cardDetailsActionsPopup-title": "Accions sus la carta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Participants",
+ "cardMorePopup-title": "Mai",
+ "cardTemplatePopup-title": "Crear un modèl",
+ "cards": "Cartas",
+ "cards-count": "Cartas",
+ "casSignIn": "Vos connectar amb CAS",
+ "cardType-card": "Carta",
+ "cardType-linkedCard": "Carta ligada",
+ "cardType-linkedBoard": "Tablèu ligat",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar la fòto",
+ "change-password": "Cambiar lo mot de Santa-Clara",
+ "change-permissions": "Cambiar las permissions",
+ "change-settings": "Cambiar los paramètres",
+ "changeAvatarPopup-title": "Cambiar la fòto",
+ "changeLanguagePopup-title": "Cambiar la lenga",
+ "changePasswordPopup-title": "Cambiar lo mot de Santa-Clara",
+ "changePermissionsPopup-title": "Cambiar las permissions",
+ "changeSettingsPopup-title": "Cambiar los paramètres",
+ "subtasks": "Jos-tasca",
+ "checklists": "Checklists",
+ "click-to-star": "Apondre lo tablèu als favorits",
+ "click-to-unstar": "Quitar lo tablèu dels favorits",
+ "clipboard": "Copiar o far limpar",
+ "close": "Tampar",
+ "close-board": "Tampar lo tablèu",
+ "close-board-pop": "Podètz tornar activar lo tablèu dempuèi la pagina d'acuèlh.",
+ "color-black": "negre",
+ "color-blue": "blau",
+ "color-crimson": "purple clar",
+ "color-darkgreen": "verd fonçat",
+ "color-gold": "aur",
+ "color-gray": "gris",
+ "color-green": "verd",
+ "color-indigo": "indi",
+ "color-lime": "jaune clar",
+ "color-magenta": "magenta",
+ "color-mistyrose": "ròse clar",
+ "color-navy": "blau marin",
+ "color-orange": "irange",
+ "color-paleturquoise": "turqués",
+ "color-peachpuff": "persèc",
+ "color-pink": "ròsa",
+ "color-plum": "pruna",
+ "color-purple": "violet",
+ "color-red": "roge",
+ "color-saddlebrown": "castanh",
+ "color-silver": "argent",
+ "color-sky": "blau clar",
+ "color-slateblue": "blau lausa",
+ "color-white": "blanc",
+ "color-yellow": "jaune",
+ "unset-color": "pas reglat",
+ "comment": "Comentari",
+ "comment-placeholder": "Escrire un comentari",
+ "comment-only": "Comentari solament",
+ "comment-only-desc": "Comentari sus las cartas solament.",
+ "no-comments": "Pas cap de comentari",
+ "no-comments-desc": "Podèts pas veire ni los comentaris ni las activitats",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Ordenator",
+ "confirm-subtask-delete-dialog": "Sètz segur de voler quitar aquesta jos-tasca?",
+ "confirm-checklist-delete-dialog": "Sètz segur de voler quitar aquesta checklist?",
+ "copy-card-link-to-clipboard": "Còpia del ligam de la carta",
+ "linkCardPopup-title": "Ligam de la carta",
+ "searchElementPopup-title": "Cèrca",
+ "copyCardPopup-title": "Còpia de la carta",
+ "copyChecklistToManyCardsPopup-title": "Còpia del modèl de checklist cap a mai d'una carta",
+ "copyChecklistToManyCardsPopup-instructions": "Un compte es estat creat per vos sus ",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primièra carta\", \"description\":\"Descripcion de la primièra carta\"}, {\"title\":\"Títol de la segonda carta\",\"description\":\"Descripcion de la segonda carta\"},{\"title\":\"Títol de la darrièra carta\",\"description\":\"Descripcion de la darrièra carta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear un tablèu",
+ "chooseBoardSourcePopup-title": "Importar un tablèu",
+ "createLabelPopup-title": "Crear una etiqueta",
+ "createCustomField": "Crear un camp",
+ "createCustomFieldPopup-title": "Crear un camp",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Casa de croiar",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Tièra de causidas",
+ "custom-field-dropdown-none": "(pas res)",
+ "custom-field-dropdown-options": "Opcions de la tièra",
+ "custom-field-dropdown-options-placeholder": "Apiejar sus \"Enter\" per apondre d'opcions",
+ "custom-field-dropdown-unknown": "(desconegut)",
+ "custom-field-number": "Nombre",
+ "custom-field-text": "Tèxte",
+ "custom-fields": "Camps personalizats",
+ "date": "Data",
+ "decline": "Refusar",
+ "default-avatar": "Fòto per defaut",
+ "delete": "Suprimir",
+ "deleteCustomFieldPopup-title": "Tirar lo camp personalizat?",
+ "deleteLabelPopup-title": "Tirar l'etiqueta?",
+ "description": "Descripcion",
+ "disambiguateMultiLabelPopup-title": "Precisar l'accion de l'etiqueta",
+ "disambiguateMultiMemberPopup-title": "Precisar l'accion del participant",
+ "discard": "Botar dins l'escobilha",
+ "done": "Acabat",
+ "download": "Telecargar",
+ "edit": "Modificar",
+ "edit-avatar": "Cambiar la fòto",
+ "edit-profile": "Modificar lo perfil",
+ "edit-wip-limit": "Modificar la WIP limit",
+ "soft-wip-limit": "Leugièr WIP limit",
+ "editCardStartDatePopup-title": "Cambiar la data de debuta",
+ "editCardDueDatePopup-title": "Cambiar la data de fin",
+ "editCustomFieldPopup-title": "Modificar los camps",
+ "editCardSpentTimePopup-title": "Cambiar lo temp passat",
+ "editLabelPopup-title": "Cambiar l'etiqueta",
+ "editNotificationPopup-title": "Modificar la notificacion",
+ "editProfilePopup-title": "Modificar lo perfil",
+ "email": "Corrièl",
+ "email-enrollAccount-subject": "Vòstre compte es ara activat pel sit __siteName__",
+ "email-enrollAccount-text": "Adieu __user__,\n\nPer comença d'utilizar lo servici, vos cal clicar sul ligam.\n\n__url__\n\nMercé.",
+ "email-fail": "Pas possible de mandar lo corrièl",
+ "email-fail-text": "Error per mandar lo corrièl",
+ "email-invalid": "L'adreça corrièl es pas valida",
+ "email-invite": "Convidar per corrièl",
+ "email-invite-subject": "__inviter__ vos as mandat un convit",
+ "email-invite-text": "Car __user__,\n\n__inviter__ vos a convidat per jónher lo tablèu \"__board__\".\n\nVos cal clicar sul ligam:\n\n__url__\n\nMercé.",
+ "email-resetPassword-subject": "Tornar inicializar vòstre mot de Santa-Clara de sit __siteName__",
+ "email-resetPassword-text": "Adieu __user__,\n\nPer tornar inicializar vòstre mot de Santa-Clara vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
+ "email-sent": "Mail mandat",
+ "email-verifyEmail-subject": "Vos cal verificar vòstra adreça corrièl del sit __siteName__",
+ "email-verifyEmail-text": "Adieu __user__,\n\nPer verificar vòstra adreça corrièl, vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
+ "enable-wip-limit": "Activar la WIP limit",
+ "error-board-doesNotExist": "Aqueste tablèu existís pas",
+ "error-board-notAdmin": "Devètz èsser un administrator del tablèu per far aquò ",
+ "error-board-notAMember": "Devètz èsser un participant del tablèu per far aquò",
+ "error-json-malformed": "Vòstre tèxte es pas valid JSON",
+ "error-json-schema": "Vòstre JSON es pas al format correct ",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Aqueste tièra existís pas",
+ "error-user-doesNotExist": "Aqueste utilizator existís pas",
+ "error-user-notAllowSelf": "Vos podètz pas convidar vautres meteisses",
+ "error-user-notCreated": "Aqueste utilizator es pas encara creat",
+ "error-username-taken": "Lo nom es ja pres",
+ "error-email-taken": "Lo corrièl es ja pres ",
+ "export-board": "Exportar lo tablèu",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Exportar lo tablèu",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtre",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Escafar lo filtre",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Pas cap d'etiqueta",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Pas cap de participant",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Pas de camp personalizat",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Lo filtre es activat",
+ "filter-on-desc": "Filtratz las cartas dins aqueste tablèu. Picar aquí per editar los filtres",
+ "filter-to-selection": "Filtrar la seleccion",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Filtre avançat",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nom complet",
+ "header-logo-title": "Retorn a vòstra pagina de tablèus",
+ "hide-system-messages": "Amagar los messatges sistèm",
+ "headerBarCreateBoardPopup-title": "Crear un tablèu",
+ "home": "Acuèlh",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Ligar",
+ "import-board": "Importar un tablèu",
+ "import-board-c": "Importar un tablèu",
+ "import-board-title-trello": "Importar un tablèu dempuèi Trello",
+ "import-board-title-wekan": "Importar un tablèu dempuèi un export passat",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Dempuèi Trello",
+ "from-wekan": "Dempuèi un export passat",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "Dins vòstre tablèu Trello, vos cal anar dins \"Menut\", puèi \"Mai\", \"Export\", \"Export JSON\", e copiar lo tèxte balhat.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "Dins vòstre tablèu, vos cal anar dins \"Menut\", puèi \"Exportar lo tablèu\", e de copiar lo tèxte del fichièr telecargat.",
+ "import-board-instruction-about-errors": "Se avètz de errors al moment d'importar un tablèu, es possible que l'importacion as fonccionat, lo tablèu es belèu a la pagina \"Totes los tablèus\".",
+ "import-json-placeholder": "Pegar las donadas del fichièr JSON aicí",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapa dels participants",
+ "import-members-map": "Lo tablèu qu'avètz importat as ja de participants, vos cal far la migracion amb los utilizators actual",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Seleccionar un participant",
+ "info": "Vesion",
+ "initials": "Iniciala",
+ "invalid-date": "Data invalida",
+ "invalid-time": "Temps invalid",
+ "invalid-user": "Participant invalid",
+ "joined": "Jónher",
+ "just-invited": "Sètz just convidat dins aqueste tablèu",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Crear una etiqueta",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiquetas",
+ "language": "Lenga",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Ligam per aquesta carta",
+ "list-archive-cards": "Mandar totas las cartas d'aquesta tièra dins Archius",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mandar totas las cartas dins aquesta tièra",
+ "list-select-cards": "Seleccionar totas las cartas dins aquesta tièra",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Tièra de las accions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Importar una carta de Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Mai",
+ "link-list": "Ligam d'aquesta tièra",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Tièras",
+ "swimlanes": "Corredor",
+ "log-out": "Desconnexion",
+ "log-in": "Connexion",
+ "loginPopup-title": "Connexion",
+ "memberMenuPopup-title": "Paramètres dels participants",
+ "members": "Participants",
+ "menu": "Menut",
+ "move-selection": "Bolegar la seleccion",
+ "moveCardPopup-title": "Bolegar la carta",
+ "moveCardToBottom-title": "Bolegar cap al bas",
+ "moveCardToTop-title": "Bolegar cap al naut",
+ "moveSelectionPopup-title": "Bolegar la seleccion",
+ "multi-selection": "Multi-seleccion",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Silenciós",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Mon tablèu",
+ "name": "Nom",
+ "no-archived-cards": "Pas cap de carta dins Archius",
+ "no-archived-lists": "Pas cap de tièra dins Archius",
+ "no-archived-swimlanes": "Pas cap de corredor dins Archius",
+ "no-results": "Pas brica de resultat",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Pagina pas trapada",
+ "password": "Mot de Santa-Clara",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Apercebut",
+ "previewAttachedImagePopup-title": "Apercebut",
+ "previewClipboardImagePopup-title": "Apercebut",
+ "private": "Privat",
+ "private-desc": "Aqueste tablèu es privat. Solament las personas apondudas a aquete tablèu lo pòdon veire e editar.",
+ "profile": "Perfil",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Quitar lo tablèu",
+ "remove-label": "Quitar l'etiqueta",
+ "listDeletePopup-title": "Quitar la tièra ?",
+ "remove-member": "Quitar lo participant",
+ "remove-member-from-card": "Quitar aquesta carta",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Tornar nomenar",
+ "rename-board": "Tornar nomenar lo tablèu",
+ "restore": "Restore",
+ "save": "Salvar",
+ "search": "Cèrca",
+ "rules": "Règlas",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Color causida",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Tampar lo dialòg",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Crear un compte",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Còla",
+ "this-board": "Aqueste tablèu",
+ "this-card": "aquesta carta",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Temps",
+ "title": "Títol",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Mena",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Telecargar",
+ "upload-avatar": "Telecargar un avatar",
+ "uploaded-avatar": "Avatar telecargat",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nom d’utilizaire",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Seguit",
+ "watching": "Agachat",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Tablèu de benvenguda",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "Lista dels modèls",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Qué volètz far ?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Interfàcia d’admin",
+ "settings": "Paramètres",
+ "people": "Personas",
+ "registration": "Inscripcion",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Convidar",
+ "invite-people": "Convidat",
+ "to-boards": "To board(s)",
+ "email-addresses": "Adreça corrièl",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "Òst SMTP",
+ "smtp-port": "Pòrt SMTP",
+ "smtp-username": "Nom d’utilizaire",
+ "smtp-password": "Mot de Santa-Clara",
+ "smtp-tls": "Compatibilitat TLS",
+ "send-from": "De",
+ "send-smtp-test": "Se mandar un corrièl d'ensag",
+ "invitation-code": "Còde de convit",
+ "email-invite-register-subject": "__inviter__ vos a mandat un convit",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "As capitat de mandar un corrièl",
+ "error-invitation-code-not-exist": "Lo còde de convit existís pas",
+ "error-notAuthorized": "Sès pas autorizat a agachar aquesta pagina",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Desconegut)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "jorns",
+ "hours": "oras",
+ "minutes": "minutas",
+ "seconds": "segondas",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Òc",
+ "no": "Non",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verificat",
+ "active": "Avtivat",
+ "card-received": "Recebut",
+ "card-received-on": "Received on",
+ "card-end": "Fin",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Color seleccionada",
+ "setCardActionsColorPopup-title": "Causir una color",
+ "setSwimlaneColorPopup-title": "Causir una color",
+ "setListColorPopup-title": "Causir una color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Suprimir lo tablèu ?",
+ "delete-board": "Tablèu suprimit",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Desplaçar cap a Archius",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Apondre",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json
index 10d8f3d0a..d9352902f 100644
--- a/i18n/pl.i18n.json
+++ b/i18n/pl.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Wyświetl metodę logowania",
"default-authentication-method": "Domyślna metoda logowania",
"duplicate-board": "Duplikuj tablicę",
+ "org-number": "Liczba organizacji:",
+ "team-number": "Liczba zespołów:",
"people-number": "Liczba użytkowników to:",
"swimlaneDeletePopup-title": "Usunąć ścieżkę?",
"swimlane-delete-pop": "Wszystkie zdarzenia dotyczące tej ścieżki zostaną usunięte z historii aktywności. Tej operacji nie można cofnąć. Usunięcie jest nieodwracalne.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Ukryj ukończone",
"task": "Zadanie",
"create-task": "Utwórz zadanie",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizacje",
+ "teams": "Zespoły",
+ "displayName": "Nazwa wyświetlana",
+ "shortName": "Nazwa skrócona",
+ "website": "Strona internetowa",
+ "person": "Osoba"
}
diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json
index 07c082ab2..9991a9fdd 100644
--- a/i18n/pt-BR.i18n.json
+++ b/i18n/pt-BR.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Mostrar Método de Autenticação",
"default-authentication-method": "Método de Autenticação Padrão",
"duplicate-board": "Duplicar Quadro",
+ "org-number": "O número de organizações é:",
+ "team-number": "O número de times é:",
"people-number": "O número de pessoas é:",
"swimlaneDeletePopup-title": "Excluir Raia?",
"swimlane-delete-pop": "Todas as ações serão excluídas da lista de atividades e você não poderá recuperar a raia. Não há como desfazer.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Esconder itens marcados",
"task": "Tarefa",
"create-task": "Criar Tarefa",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizações",
+ "teams": "Times",
+ "displayName": "Nome em exibição",
+ "shortName": "Nome curto",
+ "website": "Website",
+ "person": "Pessoa"
}
diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json
index 4cbf9e97c..49f15ff69 100644
--- a/i18n/pt.i18n.json
+++ b/i18n/pt.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceitar",
- "act-activity-notify": "Notificação de Actividade",
- "act-addAttachment": "adicionou o anexo __attachment__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-deleteAttachment": "apagou o anexo __attachment__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addSubtask": "adicionou a sub-tarefa __subtask__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addedLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removedLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addChecklist": "adicionoua lista de verificação __checklist__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addChecklistItem": "adicionou o item __checklistItem__ à lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeChecklist": "removeu a lista de verificação __checklist__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeChecklistItem": "removeu o item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-checkedItem": "marcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-uncheckedItem": "desmarcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-completeChecklist": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-uncompleteChecklist": "descompletou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-editComment": "editou o comentário no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-deleteComment": "apagou o comentário no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-createBoard": "criou o quadro __board__",
- "act-createSwimlane": "criou a pista __swimlane__ no quadro __board__",
- "act-createCard": "criou o cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-createCustomField": "criou o campo personalizado __customField__ no quadro __board__",
- "act-deleteCustomField": "apagou o campo personalizado __customField__ no quadro __board__",
- "act-setCustomField": "editou o campo personalizado __customField__: __customFieldValue__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-createList": "adicionou a lista __list__ ao quadro __board__",
- "act-addBoardMember": "adicionou o membro __member__ ao quadro __board__",
- "act-archivedBoard": "O quadro __board__ foi movido para o Arquivo",
- "act-archivedCard": "O cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__ foi movido para o Arquivo",
- "act-archivedList": "A lista __list__ na pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
- "act-archivedSwimlane": "A pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
- "act-importBoard": "importou o quadro __board__",
- "act-importCard": "importou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-importList": "importou a lista __list__ para pista __swimlane__ no quadro __board__",
- "act-joinMember": "adicionou o membro __member__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-moveCard": "moveu o cartão __card__ do quadro __board__ da pista __oldSwimlane__ da lista __oldList__ para a pista __swimlane__ na lista __list__",
- "act-moveCardToOtherBoard": "moveuo cartão __card__ da lista __oldList__ na pista __oldSwimlane__ no quadro __oldBoard__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeBoardMember": "removeuo membro __member__ do quadro __board__",
- "act-restoredCard": "restaurou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-unjoinMember": "removeu o membro __member__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acções",
- "activities": "Actividades",
- "activity": "Actividade",
- "activity-added": "adicionou %s a %s",
- "activity-archived": "%s foi movido para o Arquivo",
- "activity-attached": "anexou %s a %s",
- "activity-created": "criou %s",
- "activity-customfield-created": "criado o campo personalizado %s",
- "activity-excluded": "excluiu %s de %s",
- "activity-imported": "importou %s para %s de %s",
- "activity-imported-board": "importou %s de %s",
- "activity-joined": "juntou-se a %s",
- "activity-moved": "moveu %s de %s para %s",
- "activity-on": "em %s",
- "activity-removed": "removeu %s de %s",
- "activity-sent": "enviou %s para %s",
- "activity-unjoined": "saiu de %s",
- "activity-subtask-added": "adicionou a sub-tarefa a",
- "activity-checked-item": "marcou %s na lista de verificação %s de %s",
- "activity-unchecked-item": "desmarcou %s na lista de verificação %s de %s",
- "activity-checklist-added": "adicionou a lista de verificação a %s",
- "activity-checklist-removed": "removeu a lista de verificação de %s",
- "activity-checklist-completed": "completou a lista de verificação %s de %s",
- "activity-checklist-uncompleted": "descompletou a lista de verificação %s de %s",
- "activity-checklist-item-added": "adicionou o item a '%s' em %s",
- "activity-checklist-item-removed": "removeu o item de '%s' na %s",
- "add": "Adicionar",
- "activity-checked-item-card": "marcou %s na lista de verificação %s",
- "activity-unchecked-item-card": "desmarcou %s na lista de verificação %s",
- "activity-checklist-completed-card": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "activity-checklist-uncompleted-card": "descompletou a lista de verificação %s",
- "activity-editComment": "editou o comentário %s",
- "activity-deleteComment": "apagou o comentário %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Adicionar Anexo",
- "add-board": "Adicionar Quadro",
- "add-card": "Adicionar Cartão",
- "add-swimlane": "Adicionar Pista",
- "add-subtask": "Adicionar Sub-tarefa",
- "add-checklist": "Adicionar Lista de Verificação",
- "add-checklist-item": "Adicionar um item à lista de verificação",
- "add-cover": "Adicionar Capa",
- "add-label": "Adicionar Etiqueta",
- "add-list": "Adicionar Lista",
- "add-members": "Adicionar Membros",
- "added": "Adicionado",
- "addMemberPopup-title": "Membros",
- "admin": "Administrador",
- "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
- "admin-announcement": "Anúncio",
- "admin-announcement-active": "Anúncio Activo em Todo o Sistema",
- "admin-announcement-title": "Anúncio do Administrador",
- "all-boards": "Todos os quadros",
- "and-n-other-card": "E __count__ outro cartão",
- "and-n-other-card_plural": "E __count__ outros cartões",
- "apply": "Aplicar",
- "app-is-offline": "A carregar, por favor aguarde. Actualizar a página causará perda de dados. Se o carregamento não funcionar, por favor verifique se o servidor não parou.",
- "archive": "Mover para o Arquivo",
- "archive-all": "Mover Tudo para o Arquivo",
- "archive-board": "Mover o Quadro para o Arquivo",
- "archive-card": "Mover o Cartão para o Arquivo",
- "archive-list": "Mover a Lista para o Arquivo",
- "archive-swimlane": "Mover a Pista para o Arquivo",
- "archive-selection": "Mover a selecção para o Arquivo",
- "archiveBoardPopup-title": "Mover o Quadro para o Arquivo?",
- "archived-items": "Arquivo",
- "archived-boards": "Quadros no Arquivo",
- "restore-board": "Restaurar Quadro",
- "no-archived-boards": "Sem Quadros no Arquivo.",
- "archives": "Arquivo",
- "template": "Modelo",
- "templates": "Modelos",
- "assign-member": "Atribuir Membro",
- "attached": "anexado",
- "attachment": "Anexo",
- "attachment-delete-pop": "Apagar um anexo é permanente. Não será possível recuperá-lo.",
- "attachmentDeletePopup-title": "Apagar Anexo?",
- "attachments": "Anexos",
- "auto-watch": "Observar automaticamente os quadros quando são criados",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Voltar",
- "board-change-color": "Alterar cor",
- "board-nb-stars": "%s estrelas",
- "board-not-found": "Quadro não encontrado",
- "board-private-info": "Este quadro será privado.",
- "board-public-info": "Este quadro será público.",
- "boardChangeColorPopup-title": "Alterar Imagem de Fundo do Quadro",
- "boardChangeTitlePopup-title": "Renomear Quadro",
- "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
- "boardChangeWatchPopup-title": "Alterar Observação",
- "boardMenuPopup-title": "Configurações do Quadro",
- "boardChangeViewPopup-title": "Visão do Quadro",
- "boards": "Quadros",
- "board-view": "Visão do Quadro",
- "board-view-cal": "Calendário",
- "board-view-swimlanes": "Pistas",
- "board-view-collapse": "Colapsar ",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listas",
- "bucket-example": "\"Lista de Desejos\", por exemplo",
- "cancel": "Cancelar",
- "card-archived": "Este cartão no Arquivo.",
- "board-archived": "Este quadro está no Arquivo.",
- "card-comments-title": "Este cartão possui %s comentário.",
- "card-delete-notice": "A remoção será permanente. Perderá todas as acções associadas a este cartão.",
- "card-delete-pop": "Todas as acções serão removidas do feed de Actividade e não poderá reabrir o cartão. Não há como desfazer.",
- "card-delete-suggest-archive": "Pode mover um cartão para o Arquivo para removê-lo do quadro e preservar a atividade.",
- "card-due": "Data limite",
- "card-due-on": "Data limite em",
- "card-spent": "Tempo Gasto",
- "card-edit-attachments": "Editar anexos",
- "card-edit-custom-fields": "Editar campos personalizados",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar membros",
- "card-labels-title": "Alterar as etiquetas do cartão.",
- "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
- "card-start": "Data de início",
- "card-start-on": "Inicia em",
- "cardAttachmentsPopup-title": "Anexar a partir de",
- "cardCustomField-datePopup-title": "Alterar a data",
- "cardCustomFieldsPopup-title": "Editar campos personalizados",
- "cardStartVotingPopup-title": "Iniciar uma votação",
- "positiveVoteMembersPopup-title": "Proponentes",
- "negativeVoteMembersPopup-title": "Oponentes",
- "card-edit-voting": "Alterar votação",
- "editVoteEndDatePopup-title": "Alterar data de fim da votação",
- "allowNonBoardMembers": "Permitir todos os utilizadores com sessão iniciada",
- "vote-question": "Questão da votação",
- "vote-public": "Mostrar quem votou o quê",
- "vote-for-it": "a favor",
- "vote-against": "contra",
- "deleteVotePopup-title": "Apagar votação?",
- "vote-delete-pop": "Apagar é permanente. Irá perder todas as ações associadas a este voto.",
- "cardDeletePopup-title": "Apagar Cartão?",
- "cardDetailsActionsPopup-title": "Acções do Cartão",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Membros",
- "cardMorePopup-title": "Mais",
- "cardTemplatePopup-title": "Criar Modelo",
- "cards": "Cartões",
- "cards-count": "Cartões",
- "casSignIn": "Entrar com CAS",
- "cardType-card": "Cartão",
- "cardType-linkedCard": "Cartão Ligado",
- "cardType-linkedBoard": "Quadro Ligado",
- "change": "Alterar",
- "change-avatar": "Alterar o Avatar",
- "change-password": "Alterar a Senha",
- "change-permissions": "Alterar as permissões",
- "change-settings": "Alterar as Configurações",
- "changeAvatarPopup-title": "Alterar o Avatar",
- "changeLanguagePopup-title": "Alterar o Idioma",
- "changePasswordPopup-title": "Alterar a Senha",
- "changePermissionsPopup-title": "Alterar as Permissões",
- "changeSettingsPopup-title": "Alterar as Configurações",
- "subtasks": "Sub-tarefas",
- "checklists": "Listas de verificação",
- "click-to-star": "Clique para marcar este quadro como favorito.",
- "click-to-unstar": "Clique para remover este quadro dos favoritos.",
- "clipboard": "Área de Transferência ou arraste e solte",
- "close": "Fechar",
- "close-board": "Fechar o Quadro",
- "close-board-pop": "Poderá restaurar o quadro clicando no botão “Arquivo” a partir do cabeçalho do Início.",
- "color-black": "preto",
- "color-blue": "azul",
- "color-crimson": "carmesim",
- "color-darkgreen": "verde escuro",
- "color-gold": "dourado",
- "color-gray": "cinza",
- "color-green": "verde",
- "color-indigo": "azul",
- "color-lime": "verde limão",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marinho",
- "color-orange": "laranja",
- "color-paleturquoise": "azul ciano",
- "color-peachpuff": "pêssego",
- "color-pink": "cor-de-rosa",
- "color-plum": "ameixa",
- "color-purple": "roxo",
- "color-red": "vermelho",
- "color-saddlebrown": "marrom",
- "color-silver": "prateado",
- "color-sky": "azul-celeste",
- "color-slateblue": "azul ardósia",
- "color-white": "branco",
- "color-yellow": "amarelo",
- "unset-color": "Remover",
- "comment": "Comentar",
- "comment-placeholder": "Escrever o Comentário",
- "comment-only": "Apenas comentários",
- "comment-only-desc": "Pode comentar apenas em cartões.",
- "no-comments": "Sem comentários",
- "no-comments-desc": "Não pode ver comentários nem actividades.",
- "worker": "Trabalhador",
- "worker-desc": "Apenas pode mover cartões, atribuir-se a si próprio ao cartão e comentar.",
- "computer": "Computador",
- "confirm-subtask-delete-dialog": "Tem certeza que deseja apagar a sub-tarefa?",
- "confirm-checklist-delete-dialog": "Tem certeza que quer apagar a lista de verificação?",
- "copy-card-link-to-clipboard": "Copiar a ligação do cartão para a área de transferência",
- "linkCardPopup-title": "Ligar Cartão",
- "searchElementPopup-title": "Procurar",
- "copyCardPopup-title": "Copiar o cartão",
- "copyChecklistToManyCardsPopup-title": "Copiar o Modelo de Lista de Verificação para Vários Cartões",
- "copyChecklistToManyCardsPopup-instructions": "Títulos e Descrições de Cartões de Destino neste formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
- "create": "Criar",
- "createBoardPopup-title": "Criar Quadro",
- "chooseBoardSourcePopup-title": "Importar quadro",
- "createLabelPopup-title": "Criar Etiqueta",
- "createCustomField": "Criar Campo",
- "createCustomFieldPopup-title": "Criar Campo",
- "current": "actual",
- "custom-field-delete-pop": "Não existe desfazer. Isto irá remover este campo personalizado de todos os cartões e destruir o seu histórico",
- "custom-field-checkbox": "Caixa de selecção",
- "custom-field-currency": "Moeda",
- "custom-field-currency-option": "Código de Moeda",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista Suspensa",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Opções da Lista",
- "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
- "custom-field-dropdown-unknown": "(desconhecido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos Personalizados",
- "date": "Data",
- "decline": "Rejeitar",
- "default-avatar": "Avatar por omissão",
- "delete": "Apagar",
- "deleteCustomFieldPopup-title": "Apagar o Campo Personalizado?",
- "deleteLabelPopup-title": "Apagar a Etiqueta?",
- "description": "Descrição",
- "disambiguateMultiLabelPopup-title": "Desambiguar Acção da Etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguar Acção do Membro",
- "discard": "Descartar",
- "done": "Feito",
- "download": "Descarregar",
- "edit": "Editar",
- "edit-avatar": "Alterar o Avatar",
- "edit-profile": "Editar o Perfil",
- "edit-wip-limit": "Editar o Limite WIP",
- "soft-wip-limit": "Limite Suave de WIP",
- "editCardStartDatePopup-title": "Alterar a data de início",
- "editCardDueDatePopup-title": "Alterar a data limite",
- "editCustomFieldPopup-title": "Editar Campo",
- "editCardSpentTimePopup-title": "Alterar o tempo gasto",
- "editLabelPopup-title": "Alterar a Etiqueta",
- "editNotificationPopup-title": "Editar a Notificação",
- "editProfilePopup-title": "Editar o Perfil",
- "email": "E-mail",
- "email-enrollAccount-subject": "Uma conta foi criada para si em __siteName__",
- "email-enrollAccount-text": "Olá __user__\nPara começar a utilizar o serviço, basta clicar na ligação abaixo.\n__url__\nObrigado.",
- "email-fail": "Falhou a enviar o e-mail",
- "email-fail-text": "Erro a tentar enviar o e-mail",
- "email-invalid": "E-mail inválido",
- "email-invite": "Convidar via E-mail",
- "email-invite-subject": "__inviter__ enviou-lhe um convite",
- "email-invite-text": "Caro __user__\n__inviter__ convidou-o para se juntar ao quadro \"__board__\" para colaborar.\nPor favor prossiga através da ligação abaixo:\n__url__\nObrigado.",
- "email-resetPassword-subject": "Redefina sua senha em __siteName__",
- "email-resetPassword-text": "Olá __user__\nPara redefinir a sua senha, por favor clique na ligação abaixo.\n__url__\nObrigado.",
- "email-sent": "E-mail enviado",
- "email-verifyEmail-subject": "Verifique o seu endereço de e-mail em __siteName__",
- "email-verifyEmail-text": "Olá __user__\nPara verificar a sua conta de e-mail, clique na ligação abaixo.\n__url__\nObrigado.",
- "enable-wip-limit": "Ativar Limite WIP",
- "error-board-doesNotExist": "Este quadro não existe",
- "error-board-notAdmin": "Precisa de ser administrador deste quadro para fazer isso",
- "error-board-notAMember": "Precisa de ser um membro deste quadro para fazer isso",
- "error-json-malformed": "O seu texto não é um JSON válido",
- "error-json-schema": "O seu JSON não inclui as informações apropriadas no formato correto",
- "error-csv-schema": "O seu CSV(Comma Separated Values)/TSV (Tab Separated Values) não inclui a informação apropriada no formato correto",
- "error-list-doesNotExist": "Esta lista não existe",
- "error-user-doesNotExist": "Este utilizador não existe",
- "error-user-notAllowSelf": "Não se pode convidar a si mesmo",
- "error-user-notCreated": "Este utilizador não foi criado",
- "error-username-taken": "Esse nome de utilizador já existe",
- "error-email-taken": "Endereço de e-mail já está em uso",
- "export-board": "Exportar quadro",
- "export-board-json": "Exportar quadro para JSON",
- "export-board-csv": "Exportar quadro para CSV",
- "export-board-tsv": "Exportar quadro para TSV",
- "export-board-html": "Exportar quadro para HTML",
- "exportBoardPopup-title": "Exportar quadro",
- "sort": "Ordenar",
- "sort-desc": "Clique para ordenar a Lista",
- "list-sort-by": "Ordenar a Lista por:",
- "list-label-modifiedAt": "Data do Último Acesso",
- "list-label-title": "Nome da Lista",
- "list-label-sort": "A Sua Ordem Manual",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrar",
- "filter-cards": "Filtrar Cartões ou Listas",
- "list-filter-label": "Filtrar Lista por Título",
- "filter-clear": "Limpar filtro",
- "filter-labels-label": "Filtrar por etiqueta",
- "filter-no-label": "Sem etiquetas",
- "filter-member-label": "Filtrar por membro",
- "filter-no-member": "Sem membros",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "Sem responsável",
- "filter-custom-fields-label": "Filtrar por campos personalizados",
- "filter-no-custom-fields": "Sem Campos Personalizados",
- "filter-show-archive": "Mostrar listas arquivadas",
- "filter-hide-empty": "Ocultar listas vazias",
- "filter-on": "Filtro está activo",
- "filter-on-desc": "Está a filtrar cartões neste quadro. Clique aqui para editar o filtro.",
- "filter-to-selection": "Filtrar esta selecção",
- "other-filters-label": "Outros filtros",
- "advanced-filter-label": "Filtro Avançado",
- "advanced-filter-description": "Filtro Avançado permite escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || ( ). Um espaço é usado como separador entre Operadores. Pode filtrar em todos os Campos Personalizados escreventos os seus nomes e valores. Por Exemplo: Campo1 == Valor1. Nota: Se os campos ou valores contiverem espaços, tem de os encapsular em apóstrofes. Por Exemplo: 'Campo 1' == 'Valor 1'. Para que caracteres de controlo únicos (' \\/) sejam ignorados, pode usar \\. Por exemplo: Campo1 == I\\'m. Pode também combinar múltiplas condições. Por Exemplo: F1 == V1 || F1 == V2. Normalmente todos os operadores são interpretados da esquerda para a direita. Pode alterar a ordem inserindo parênteses. Por Exemplo: F1 == V1 && ( F2 == V2 || F2 == V3 ). Pode também procurar em campos de texto utilizando uma expressão regular: F1 == /Tes.*/i",
- "fullname": "Nome Completo",
- "header-logo-title": "Voltar para a sua lista de quadros.",
- "hide-system-messages": "Esconder mensagens de sistema",
- "headerBarCreateBoardPopup-title": "Criar Quadro",
- "home": "Início",
- "import": "Importar",
- "impersonate-user": "Impersonate user",
- "link": "Ligação",
- "import-board": "importar quadro",
- "import-board-c": "Importar quadro",
- "import-board-title-trello": "Importar quadro do Trello",
- "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
- "import-board-title-csv": "Importar quadro de CSV/TSV",
- "from-trello": "Do Trello",
- "from-wekan": "A partir de exportação prévia",
- "from-csv": "De CSV/TSV",
- "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', e copie o texto resultante.",
- "import-board-instruction-csv": "Cole o seu Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "No seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no ficheiro descarregado.",
- "import-board-instruction-about-errors": "Se receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
- "import-json-placeholder": "Cole seus dados JSON válidos aqui",
- "import-csv-placeholder": "Copie aqui os seus dados CSV/TSV",
- "import-map-members": "Mapear membros",
- "import-members-map": "O seu quadro importado possui alguns membros. Por favor, mapeie os membros que deseja importar para seus utilizadores",
- "import-show-user-mapping": "Rever mapeamento dos membros",
- "import-user-select": "Escolha um utilizador existente que deseja usar como esse membro",
- "importMapMembersAddPopup-title": "Seleccione membro",
- "info": "Versão",
- "initials": "Iniciais",
- "invalid-date": "Data inválida",
- "invalid-time": "Hora inválida",
- "invalid-user": "Utilizador inválido",
- "joined": "juntou-se",
- "just-invited": "Acabou de ser convidado para este quadro",
- "keyboard-shortcuts": "Atalhos do teclado",
- "label-create": "Criar Etiqueta",
- "label-default": "%s etiqueta (omissão)",
- "label-delete-pop": "Não há como desfazer. A etiqueta será apagada de todos os cartões e o seu histórico será destruído.",
- "labels": "Etiquetas",
- "language": "Idioma",
- "last-admin-desc": "Não pode alterar funções porque deve existir pelo menos um administrador.",
- "leave-board": "Sair do Quadro",
- "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Será removido de todos os cartões neste quadro.",
- "leaveBoardPopup-title": "Sair do Quadro ?",
- "link-card": "Ligar a este cartão",
- "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo",
- "list-archive-cards-pop": "Isto irá remover todos os cartões nesta lista do quadro. Para ver os cartões no Arquivo e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo”.",
- "list-move-cards": "Mover todos os cartões nesta lista",
- "list-select-cards": "Seleccionar todos os cartões nesta lista",
- "set-color-list": "Definir Cor",
- "listActionPopup-title": "Listar Ações",
- "settingsUserPopup-title": "Configurações do utilizador",
- "swimlaneActionPopup-title": "Acções de Pista",
- "swimlaneAddPopup-title": "Adicionar uma Pista abaixo",
- "listImportCardPopup-title": "Importe um cartão do Trello",
- "listImportCardsTsvPopup-title": "Importar Excel CSV/TSV",
- "listMorePopup-title": "Mais",
- "link-list": "Ligar a esta lista",
- "list-delete-pop": "Todas as acções serão removidas do feed de actividade e não poderá recuperar a lista. Não há como desfazer.",
- "list-delete-suggest-archive": "Pode mover uma lista para o Arquivo para a remover do quadro e preservar a actividade.",
- "lists": "Listas",
- "swimlanes": "Pistas",
- "log-out": "Terminar a Sessão",
- "log-in": "Entrar",
- "loginPopup-title": "Entrar",
- "memberMenuPopup-title": "Configuração dos Membros",
- "members": "Membros",
- "menu": "Menu",
- "move-selection": "Mover a selecção",
- "moveCardPopup-title": "Mover o Cartão",
- "moveCardToBottom-title": "Mover para o Fundo",
- "moveCardToTop-title": "Mover para o Topo",
- "moveSelectionPopup-title": "Mover a selecção",
- "multi-selection": "Selecção Múltipla",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Selecção Múltipla está activa",
- "muted": "Silenciado",
- "muted-info": "Nunca será notificado de quaisquer alterações neste quadro",
- "my-boards": "Meus Quadros",
- "name": "Nome",
- "no-archived-cards": "Sem cartões no Arquivo.",
- "no-archived-lists": "Sem listas no Arquivo.",
- "no-archived-swimlanes": "Sem pistas no Arquivo.",
- "no-results": "Nenhum resultado.",
- "normal": "Normal",
- "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
- "not-accepted-yet": "Convite ainda não aceite",
- "notify-participate": "Receber actualizações de qualquer cartão que criar ou participar como membro",
- "notify-watch": "Receber actualizações de qualquer quadro, lista ou cartões que estiver a observar",
- "optional": "opcional",
- "or": "ou",
- "page-maybe-private": "Esta página pode ser privada. Poderá vê-la se iniciar a sessão.",
- "page-not-found": "Página não encontrada.",
- "password": "Senha",
- "paste-or-dragdrop": "para colar, ou arrastar e soltar o ficheiro da imagem para lá (somente imagens)",
- "participating": "Participando",
- "preview": "Pré-visualizar",
- "previewAttachedImagePopup-title": "Pré-visualizar",
- "previewClipboardImagePopup-title": "Pré-visualizar",
- "private": "Privado",
- "private-desc": "Este quadro é privado. Apenas o membros do quadro o podem visualizar e editar.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este quadro é público. Está visível para qualquer pessoa com a ligação e será exibido em motores de busca como o Google. Apenas os membros do quadro o podem editar.",
- "quick-access-description": "Clique na estrela de um quadro para adicionar um atalho nesta barra.",
- "remove-cover": "Remover Capa",
- "remove-from-board": "Remover do Quadro",
- "remove-label": "Remover Etiqueta",
- "listDeletePopup-title": "Apagar Lista ?",
- "remove-member": "Remover Membro",
- "remove-member-from-card": "Remover do Cartão",
- "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
- "removeMemberPopup-title": "Remover Membro?",
- "rename": "Renomear",
- "rename-board": "Renomear Quadro",
- "restore": "Restaurar",
- "save": "Guardar",
- "search": "Procurar",
- "rules": "Regras",
- "search-cards": "Procurar nos títulos, descrições e campos personalizados de cartões/listas neste quadro",
- "search-example": "Escreva o texto a pesquisar e pressione Enter",
- "select-color": "Seleccionar Cor",
- "select-board": "Select Board",
- "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
- "setWipLimitPopup-title": "Definir Limite WIP",
- "shortcut-assign-self": "Atribuir a si o cartão actual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Autocompletar membros",
- "shortcut-clear-filters": "Limpar todos os filtros",
- "shortcut-close-dialog": "Fechar Caixa de Dialogo",
- "shortcut-filter-my-cards": "Filtrar os meus cartões",
- "shortcut-show-shortcuts": "Mostrar esta lista de atalhos",
- "shortcut-toggle-filterbar": "Alternar a Barra Lateral de Filtros",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Alternar a Barra Lateral do Quadro",
- "show-cards-minimum-count": "Mostrar contagem de cartões se a lista tiver mais de",
- "sidebar-open": "Abrir a Barra Lateral",
- "sidebar-close": "Fechar a Barra Lateral",
- "signupPopup-title": "Criar uma Conta",
- "star-board-title": "Clique para marcar este quadro como favorito. O quadro irá aparecer no topo da sua lista de quadros.",
- "starred-boards": "Quadros Favoritos",
- "starred-boards-description": "Os quadros favoritos aparecem no topo da sua lista de quadros.",
- "subscribe": "Subscrever",
- "team": "Equipa",
- "this-board": "este quadro",
- "this-card": "este cartão",
- "spent-time-hours": "Tempo gasto (horas)",
- "overtime-hours": "Horas extra (horas)",
- "overtime": "Horas extra",
- "has-overtime-cards": "Tem cartões com horas extra",
- "has-spenttime-cards": "Tem cartões com tempo gasto",
- "time": "Tempo",
- "title": "Título",
- "tracking": "A seguir",
- "tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.",
- "type": "Tipo",
- "unassign-member": "Desatribuir membro",
- "unsaved-description": "Possui uma descrição não guardada.",
- "unwatch": "Deixar de observar",
- "upload": "Enviar",
- "upload-avatar": "Enviar um avatar",
- "uploaded-avatar": "Enviado um avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Nome de utilizador",
- "view-it": "Visualizá-lo",
- "warn-list-archived": "aviso: este cartão está numa lista no Arquivo",
- "watch": "Observar",
- "watching": "Observando",
- "watching-info": "Será notificado de quaisquer alterações neste quadro",
- "welcome-board": "Quadro de Boas Vindas",
- "welcome-swimlane": "Marco 1",
- "welcome-list1": "Básico",
- "welcome-list2": "Avançado",
- "card-templates-swimlane": "Modelos de Cartão",
- "list-templates-swimlane": "Modelos de Lista",
- "board-templates-swimlane": "Modelos de Quadro",
- "what-to-do": "O que gostaria de fazer?",
- "wipLimitErrorPopup-title": "Limite WIP Inválido",
- "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
- "admin-panel": "Painel Administrativo",
- "settings": "Configurações",
- "people": "Pessoas",
- "registration": "Registo",
- "disable-self-registration": "Desabilitar Auto-Registo",
- "invite": "Convidar",
- "invite-people": "Convidar Pessoas",
- "to-boards": "Para o(s) quadro(s)",
- "email-addresses": "Endereços de E-mail",
- "smtp-host-description": "O endereço do servidor SMTP que envia os seus e-mails.",
- "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
- "smtp-tls-description": "Habilitar suporte TLS para o servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Porta SMTP",
- "smtp-username": "Nome de utilizador",
- "smtp-password": "Senha",
- "smtp-tls": "Suporte TLS",
- "send-from": "De",
- "send-smtp-test": "Enviar um e-mail de teste para si mesmo",
- "invitation-code": "Código do Convite",
- "email-invite-register-subject": "__inviter__ enviou-lhe um convite",
- "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida-o para o quadro Kanban para colaborações.\n\nPor favor, siga a ligação abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
- "email-smtp-test-subject": "E-mail de Teste de SMTP",
- "email-smtp-test-text": "Enviou um e-mail com sucesso",
- "error-invitation-code-not-exist": "O código do convite não existe",
- "error-notAuthorized": "Não tem autorização para ver esta página.",
- "webhook-title": "Nome do Webhook",
- "webhook-token": "Token (Opcional para Autenticação)",
- "outgoing-webhooks": "Webhooks de saída",
- "bidirectional-webhooks": "Webhooks de Dois Sentidos",
- "outgoingWebhooksPopup-title": "Webhooks de saída",
- "boardCardTitlePopup-title": "Filtro do Título do Cartão",
- "disable-webhook": "Desativar Este Webhook",
- "global-webhook": "Webhooks Globais",
- "new-outgoing-webhook": "Novo Webhook de saída",
- "no-name": "(Desconhecido)",
- "Node_version": "Versão do Node",
- "Meteor_version": "Versão do Meteor",
- "MongoDB_version": "Versão do MongoDB",
- "MongoDB_storage_engine": "Versão do motor de armazenamento do MongoDB",
- "MongoDB_Oplog_enabled": "Oplog do MongoDB activo",
- "OS_Arch": "Arquitectura do SO",
- "OS_Cpus": "Quantidade de CPUs do SO",
- "OS_Freemem": "Memória Disponível do SO",
- "OS_Loadavg": "Carga Média do SO",
- "OS_Platform": "Plataforma do SO",
- "OS_Release": "Versão do SO",
- "OS_Totalmem": "Memória Total do SO",
- "OS_Type": "Tipo do SO",
- "OS_Uptime": "Disponibilidade do SO",
- "days": "dias",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo no cartão",
- "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
- "showLabel-field-on-card": "Mostrar etiqueta do campo no mini-cartão",
- "yes": "Sim",
- "no": "Não",
- "accounts": "Contas",
- "accounts-allowEmailChange": "Permitir Alteração do E-mail",
- "accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador",
- "createdAt": "Criado em",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recebido",
- "card-received-on": "Recebido em",
- "card-end": "Fim",
- "card-end-on": "Termina em",
- "editCardReceivedDatePopup-title": "Alterar data de recebimento",
- "editCardEndDatePopup-title": "Alterar data de fim",
- "setCardColorPopup-title": "Definir cor",
- "setCardActionsColorPopup-title": "Escolha uma cor",
- "setSwimlaneColorPopup-title": "Escolha uma cor",
- "setListColorPopup-title": "Escolha uma cor",
- "assigned-by": "Atribuído Por",
- "requested-by": "Solicitado Por",
- "board-delete-notice": "Apagar é permanente. Irá perder todas as listas, cartões e acções associadas a este quadro.",
- "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e actividades serão apagadas e não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
- "boardDeletePopup-title": "Apagar Quadro?",
- "delete-board": "Apagar Quadro",
- "default-subtasks-board": "Sub-tarefas para o quadro __board__",
- "default": "Omissão",
- "queue": "Fila",
- "subtask-settings": "Configurações de Sub-tarefas",
- "card-settings": "Definições do Cartão",
- "boardSubtaskSettingsPopup-title": "Configurações das Sub-tarefas do Quadro",
- "boardCardSettingsPopup-title": "Definições do Cartão",
- "deposit-subtasks-board": "Depositar sub-tarefas neste quadro:",
- "deposit-subtasks-list": "Lista de destino para sub-tarefas depositadas aqui:",
- "show-parent-in-minicard": "Mostrar pai no mini-cartão:",
- "prefix-with-full-path": "Prefixar com o caminho completo",
- "prefix-with-parent": "Prefixar com o pai",
- "subtext-with-full-path": "Sub-texto com o caminho completo",
- "subtext-with-parent": "Sub-texto com o pai",
- "change-card-parent": "Alterar o pai do cartão",
- "parent-card": "Pai do cartão",
- "source-board": "Quadro fonte",
- "no-parent": "Não mostrar o pai",
- "activity-added-label": "adicionou a etiqueta '%s' a %s",
- "activity-removed-label": "removeu a etiqueta '%s' de %s",
- "activity-delete-attach": "apagou um anexo de %s",
- "activity-added-label-card": "adicionou a etiqueta '%s'",
- "activity-removed-label-card": "removeu a etiqueta '%s'",
- "activity-delete-attach-card": "apagou um anexo",
- "activity-set-customfield": "definiu o campo personalizado '%s' para '%s' em %s",
- "activity-unset-customfield": "removeu o campo personalizado '%s' de %s",
- "r-rule": "Regra",
- "r-add-trigger": "Adicionar gatilho",
- "r-add-action": "Adicionar acção",
- "r-board-rules": "Regras do quadro",
- "r-add-rule": "Adicionar regra",
- "r-view-rule": "Ver regra",
- "r-delete-rule": "Apagar regra",
- "r-new-rule-name": "Título da nova regra",
- "r-no-rules": "Sem regras",
- "r-trigger": "Gatilho",
- "r-action": "Ação",
- "r-when-a-card": "Quando um cartão",
- "r-is": "é",
- "r-is-moved": "é movido",
- "r-added-to": "Adicionado a",
- "r-removed-from": "Removido de",
- "r-the-board": "o quadro",
- "r-list": "lista",
- "set-filter": "Definir Filtro",
- "r-moved-to": "Movido para",
- "r-moved-from": "Movido de",
- "r-archived": "Movido para o Arquivo",
- "r-unarchived": "Restaurado do Arquivo",
- "r-a-card": "um cartão",
- "r-when-a-label-is": "Quando uma etiqueta é",
- "r-when-the-label": "Quando a etiqueta é",
- "r-list-name": "listar o nome",
- "r-when-a-member": "Quando um membro é",
- "r-when-the-member": "Quando o membro",
- "r-name": "nome",
- "r-when-a-attach": "Quando um anexo",
- "r-when-a-checklist": "Quando a lista de verificação é",
- "r-when-the-checklist": "Quando a lista de verificação",
- "r-completed": "Completada",
- "r-made-incomplete": "Tornado incompleta",
- "r-when-a-item": "Quando um item de uma lista de verificação é",
- "r-when-the-item": "Quando o item da lista de verificação",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover cartão para",
- "r-top-of": "Topo de",
- "r-bottom-of": "Fundo de",
- "r-its-list": "a sua lista",
- "r-archive": "Mover para o Arquivo",
- "r-unarchive": "Restaurar do Arquivo",
- "r-card": "cartão",
- "r-add": "Novo",
- "r-remove": "Remover",
- "r-label": "etiqueta",
- "r-member": "membro",
- "r-remove-all": "Remover todos os membros do cartão",
- "r-set-color": "Definir a cor para",
- "r-checklist": "lista de verificação",
- "r-check-all": "Marcar todos",
- "r-uncheck-all": "Desmarcar todos",
- "r-items-check": "itens da lista de verificação",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "item",
- "r-of-checklist": "da lista de verificação",
- "r-send-email": "Enviar um e-mail",
- "r-to": "para",
- "r-of": "de",
- "r-subject": "assunto",
- "r-rule-details": "Detalhes da regra",
- "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
- "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
- "r-d-move-to-bottom-gen": "Mover cartão para o fundo da sua lista",
- "r-d-move-to-bottom-spec": "Mover cartão para fundo da lista",
- "r-d-send-email": "Enviar e-mail",
- "r-d-send-email-to": "para",
- "r-d-send-email-subject": "assunto",
- "r-d-send-email-message": "mensagem",
- "r-d-archive": "Mover cartão para o Arquivo",
- "r-d-unarchive": "Restaurar cartão do Arquivo",
- "r-d-add-label": "Adicionar etiqueta",
- "r-d-remove-label": "Remover etiqueta",
- "r-create-card": "Criar novo cartão",
- "r-in-list": "na lista",
- "r-in-swimlane": "na pista",
- "r-d-add-member": "Adicionar membro",
- "r-d-remove-member": "Remover membro",
- "r-d-remove-all-member": "Remover todos os membros",
- "r-d-check-all": "Marcar todos os itens de uma lista",
- "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
- "r-d-check-one": "Marcar item",
- "r-d-uncheck-one": "Desmarcar item",
- "r-d-check-of-list": "da lista de verificação",
- "r-d-add-checklist": "Adicionar lista de verificação",
- "r-d-remove-checklist": "Remover lista de verificação",
- "r-by": "por",
- "r-add-checklist": "Adicionar lista de verificação",
- "r-with-items": "com os itens",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Adicionar pista",
- "r-swimlane-name": "nome da pista",
- "r-board-note": "Nota: deixe o campo vazio para corresponder a todos os valores possíveis.",
- "r-checklist-note": "Nota: itens de listas de verificação devem ser escritos separados por vírgulas.",
- "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
- "r-set": "Definir",
- "r-update": "Actualizar",
- "r-datefield": "campo de data",
- "r-df-start-at": "início",
- "r-df-due-at": "data limite",
- "r-df-end-at": "fim",
- "r-df-received-at": "recebido",
- "r-to-current-datetime": "até à data/hora actual",
- "r-remove-value-from": "Remover valor de",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticação",
- "authentication-type": "Tipo de autenticação",
- "custom-product-name": "Nome Personalizado do Produto",
- "layout": "Layout",
- "hide-logo": "Esconder Logo",
- "add-custom-html-after-body-start": "Adicionar HTML Personalizado depois do início do ",
- "add-custom-html-before-body-end": "Adicionar HTML Personalizado antes do fim do ",
- "error-undefined": "Ocorreu um erro",
- "error-ldap-login": "Ocorreu um erro ocorreu enquanto tentava entrar",
- "display-authentication-method": "Mostrar Método de Autenticação",
- "default-authentication-method": "Método de Autenticação por Omissão",
- "duplicate-board": "Duplicar Quadro",
- "people-number": "O número de pessoas é:",
- "swimlaneDeletePopup-title": "Apagar Pista ?",
- "swimlane-delete-pop": "Todas as acções serão removidas do feed de actividade e não será possível recuperar a pista. Não há como desfazer.",
- "restore-all": "Restaurar todos",
- "delete-all": "Apagar todos",
- "loading": "A carregar, por favor aguarde.",
- "previous_as": "última data era",
- "act-a-dueAt": "modificou a data limite para \nQuando: __timeValue__\nOnde: __card__\n a data limite anterior era __timeOldValue__",
- "act-a-endAt": "modificou a data de fim para __timeValue__ de (__timeOldValue__)",
- "act-a-startAt": "modificou a data de início para __timeValue__ de (__timeOldValue__)",
- "act-a-receivedAt": "modificou a data recebida para __timeValue__ de (__timeOldValue__)",
- "a-dueAt": "modificou a data limite para",
- "a-endAt": "modificou a data de fim para",
- "a-startAt": "modificou a data de início para",
- "a-receivedAt": "modificou a data recebida para",
- "almostdue": "a data limite actual %s está-se a aproximar",
- "pastdue": "a data limite actual %s já passou",
- "duenow": "a data limite actual %s é hoje",
- "act-newDue": "__list__/__card__ tem o 1º lembrete de prazo [__board__]",
- "act-withDue": "__list__/__card__ lembretes de prazo [__board__]",
- "act-almostdue": "estava a lembrar que a data limite actual (__timeValue__) de __card__ está-se a aproximar",
- "act-pastdue": "estava a lembrar que a data limite (__timeValue__) de __card__ já passou",
- "act-duenow": "estava a lembrar que a data limite (__timeValue__) de __card__ é agora",
- "act-atUserComment": "Foi mencionado em [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Tem a certeza que pretende apagar esta conta? Não há como desfazer.",
- "accounts-allowUserDelete": "Permitir aos utilizadores apagar as suas próprias contas",
- "hide-minicard-label-text": "Ocultar texto das etiquetas dos mini-cartões",
- "show-desktop-drag-handles": "Mostrar alças de arrasto do desktop",
- "assignee": "Responsável",
- "cardAssigneesPopup-title": "Responsável",
- "addmore-detail": "Adicionar uma descrição mais detalhada",
- "show-on-card": "Mostrar no Cartão",
- "new": "Novo",
- "editUserPopup-title": "Editar Utilizador",
- "newUserPopup-title": "Novo Utilizador",
- "notifications": "Notificações",
- "view-all": "Ver Todos",
- "filter-by-unread": "Filtrar por não lidos",
- "mark-all-as-read": "Marcar todos como lidos",
- "remove-all-read": "Apagar todos os lidos",
- "allow-rename": "Permitir Renomear",
- "allowRenamePopup-title": "Permitir Renomear",
- "start-day-of-week": "Definir dia de início da semana",
- "monday": "Segunda-feira",
- "tuesday": "Terça-feira",
- "wednesday": "Quarta-feira",
- "thursday": "Quinta-feira",
- "friday": "Sexta-feira",
- "saturday": "Sábado",
- "sunday": "Domingo",
- "status": "Estado",
- "swimlane": "Pista",
- "owner": "Dono",
- "last-modified-at": "Modificado pela última vez em",
- "last-activity": "Última actividade",
- "voting": "Votação",
- "archived": "Arquivado",
- "delete-linked-card-before-this-card": "Não pode apagar este cartão sem primeiro apagar o cartão ligado que tem",
- "delete-linked-cards-before-this-list": "Não pode apagar esta lista sem primeiro apagar cartões ligados que apontam para cartões nesta lista",
- "hide-checked-items": "Ocultar items marcados",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Aceitar",
+ "act-activity-notify": "Notificação de Actividade",
+ "act-addAttachment": "adicionou o anexo __attachment__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-deleteAttachment": "apagou o anexo __attachment__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addSubtask": "adicionou a sub-tarefa __subtask__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addedLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removedLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addChecklist": "adicionoua lista de verificação __checklist__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addChecklistItem": "adicionou o item __checklistItem__ à lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeChecklist": "removeu a lista de verificação __checklist__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeChecklistItem": "removeu o item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-checkedItem": "marcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-uncheckedItem": "desmarcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-completeChecklist": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-uncompleteChecklist": "descompletou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-editComment": "editou o comentário no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-deleteComment": "apagou o comentário no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-createBoard": "criou o quadro __board__",
+ "act-createSwimlane": "criou a pista __swimlane__ no quadro __board__",
+ "act-createCard": "criou o cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-createCustomField": "criou o campo personalizado __customField__ no quadro __board__",
+ "act-deleteCustomField": "apagou o campo personalizado __customField__ no quadro __board__",
+ "act-setCustomField": "editou o campo personalizado __customField__: __customFieldValue__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-createList": "adicionou a lista __list__ ao quadro __board__",
+ "act-addBoardMember": "adicionou o membro __member__ ao quadro __board__",
+ "act-archivedBoard": "O quadro __board__ foi movido para o Arquivo",
+ "act-archivedCard": "O cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__ foi movido para o Arquivo",
+ "act-archivedList": "A lista __list__ na pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
+ "act-archivedSwimlane": "A pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
+ "act-importBoard": "importou o quadro __board__",
+ "act-importCard": "importou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-importList": "importou a lista __list__ para pista __swimlane__ no quadro __board__",
+ "act-joinMember": "adicionou o membro __member__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-moveCard": "moveu o cartão __card__ do quadro __board__ da pista __oldSwimlane__ da lista __oldList__ para a pista __swimlane__ na lista __list__",
+ "act-moveCardToOtherBoard": "moveuo cartão __card__ da lista __oldList__ na pista __oldSwimlane__ no quadro __oldBoard__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeBoardMember": "removeuo membro __member__ do quadro __board__",
+ "act-restoredCard": "restaurou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-unjoinMember": "removeu o membro __member__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acções",
+ "activities": "Actividades",
+ "activity": "Actividade",
+ "activity-added": "adicionou %s a %s",
+ "activity-archived": "%s foi movido para o Arquivo",
+ "activity-attached": "anexou %s a %s",
+ "activity-created": "criou %s",
+ "activity-customfield-created": "criado o campo personalizado %s",
+ "activity-excluded": "excluiu %s de %s",
+ "activity-imported": "importou %s para %s de %s",
+ "activity-imported-board": "importou %s de %s",
+ "activity-joined": "juntou-se a %s",
+ "activity-moved": "moveu %s de %s para %s",
+ "activity-on": "em %s",
+ "activity-removed": "removeu %s de %s",
+ "activity-sent": "enviou %s para %s",
+ "activity-unjoined": "saiu de %s",
+ "activity-subtask-added": "adicionou a sub-tarefa a",
+ "activity-checked-item": "marcou %s na lista de verificação %s de %s",
+ "activity-unchecked-item": "desmarcou %s na lista de verificação %s de %s",
+ "activity-checklist-added": "adicionou a lista de verificação a %s",
+ "activity-checklist-removed": "removeu a lista de verificação de %s",
+ "activity-checklist-completed": "completou a lista de verificação %s de %s",
+ "activity-checklist-uncompleted": "descompletou a lista de verificação %s de %s",
+ "activity-checklist-item-added": "adicionou o item a '%s' em %s",
+ "activity-checklist-item-removed": "removeu o item de '%s' na %s",
+ "add": "Adicionar",
+ "activity-checked-item-card": "marcou %s na lista de verificação %s",
+ "activity-unchecked-item-card": "desmarcou %s na lista de verificação %s",
+ "activity-checklist-completed-card": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "activity-checklist-uncompleted-card": "descompletou a lista de verificação %s",
+ "activity-editComment": "editou o comentário %s",
+ "activity-deleteComment": "apagou o comentário %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Adicionar Anexo",
+ "add-board": "Adicionar Quadro",
+ "add-card": "Adicionar Cartão",
+ "add-swimlane": "Adicionar Pista",
+ "add-subtask": "Adicionar Sub-tarefa",
+ "add-checklist": "Adicionar Lista de Verificação",
+ "add-checklist-item": "Adicionar um item à lista de verificação",
+ "add-cover": "Adicionar Capa",
+ "add-label": "Adicionar Etiqueta",
+ "add-list": "Adicionar Lista",
+ "add-members": "Adicionar Membros",
+ "added": "Adicionado",
+ "addMemberPopup-title": "Membros",
+ "admin": "Administrador",
+ "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
+ "admin-announcement": "Anúncio",
+ "admin-announcement-active": "Anúncio Activo em Todo o Sistema",
+ "admin-announcement-title": "Anúncio do Administrador",
+ "all-boards": "Todos os quadros",
+ "and-n-other-card": "E __count__ outro cartão",
+ "and-n-other-card_plural": "E __count__ outros cartões",
+ "apply": "Aplicar",
+ "app-is-offline": "A carregar, por favor aguarde. Actualizar a página causará perda de dados. Se o carregamento não funcionar, por favor verifique se o servidor não parou.",
+ "archive": "Mover para o Arquivo",
+ "archive-all": "Mover Tudo para o Arquivo",
+ "archive-board": "Mover o Quadro para o Arquivo",
+ "archive-card": "Mover o Cartão para o Arquivo",
+ "archive-list": "Mover a Lista para o Arquivo",
+ "archive-swimlane": "Mover a Pista para o Arquivo",
+ "archive-selection": "Mover a selecção para o Arquivo",
+ "archiveBoardPopup-title": "Mover o Quadro para o Arquivo?",
+ "archived-items": "Arquivo",
+ "archived-boards": "Quadros no Arquivo",
+ "restore-board": "Restaurar Quadro",
+ "no-archived-boards": "Sem Quadros no Arquivo.",
+ "archives": "Arquivo",
+ "template": "Modelo",
+ "templates": "Modelos",
+ "assign-member": "Atribuir Membro",
+ "attached": "anexado",
+ "attachment": "Anexo",
+ "attachment-delete-pop": "Apagar um anexo é permanente. Não será possível recuperá-lo.",
+ "attachmentDeletePopup-title": "Apagar Anexo?",
+ "attachments": "Anexos",
+ "auto-watch": "Observar automaticamente os quadros quando são criados",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Voltar",
+ "board-change-color": "Alterar cor",
+ "board-nb-stars": "%s estrelas",
+ "board-not-found": "Quadro não encontrado",
+ "board-private-info": "Este quadro será privado.",
+ "board-public-info": "Este quadro será público.",
+ "boardChangeColorPopup-title": "Alterar Imagem de Fundo do Quadro",
+ "boardChangeTitlePopup-title": "Renomear Quadro",
+ "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
+ "boardChangeWatchPopup-title": "Alterar Observação",
+ "boardMenuPopup-title": "Configurações do Quadro",
+ "boardChangeViewPopup-title": "Visão do Quadro",
+ "boards": "Quadros",
+ "board-view": "Visão do Quadro",
+ "board-view-cal": "Calendário",
+ "board-view-swimlanes": "Pistas",
+ "board-view-collapse": "Colapsar ",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listas",
+ "bucket-example": "\"Lista de Desejos\", por exemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Este cartão no Arquivo.",
+ "board-archived": "Este quadro está no Arquivo.",
+ "card-comments-title": "Este cartão possui %s comentário.",
+ "card-delete-notice": "A remoção será permanente. Perderá todas as acções associadas a este cartão.",
+ "card-delete-pop": "Todas as acções serão removidas do feed de Actividade e não poderá reabrir o cartão. Não há como desfazer.",
+ "card-delete-suggest-archive": "Pode mover um cartão para o Arquivo para removê-lo do quadro e preservar a atividade.",
+ "card-due": "Data limite",
+ "card-due-on": "Data limite em",
+ "card-spent": "Tempo Gasto",
+ "card-edit-attachments": "Editar anexos",
+ "card-edit-custom-fields": "Editar campos personalizados",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar membros",
+ "card-labels-title": "Alterar as etiquetas do cartão.",
+ "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
+ "card-start": "Data de início",
+ "card-start-on": "Inicia em",
+ "cardAttachmentsPopup-title": "Anexar a partir de",
+ "cardCustomField-datePopup-title": "Alterar a data",
+ "cardCustomFieldsPopup-title": "Editar campos personalizados",
+ "cardStartVotingPopup-title": "Iniciar uma votação",
+ "positiveVoteMembersPopup-title": "Proponentes",
+ "negativeVoteMembersPopup-title": "Oponentes",
+ "card-edit-voting": "Alterar votação",
+ "editVoteEndDatePopup-title": "Alterar data de fim da votação",
+ "allowNonBoardMembers": "Permitir todos os utilizadores com sessão iniciada",
+ "vote-question": "Questão da votação",
+ "vote-public": "Mostrar quem votou o quê",
+ "vote-for-it": "a favor",
+ "vote-against": "contra",
+ "deleteVotePopup-title": "Apagar votação?",
+ "vote-delete-pop": "Apagar é permanente. Irá perder todas as ações associadas a este voto.",
+ "cardDeletePopup-title": "Apagar Cartão?",
+ "cardDetailsActionsPopup-title": "Acções do Cartão",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Membros",
+ "cardMorePopup-title": "Mais",
+ "cardTemplatePopup-title": "Criar Modelo",
+ "cards": "Cartões",
+ "cards-count": "Cartões",
+ "casSignIn": "Entrar com CAS",
+ "cardType-card": "Cartão",
+ "cardType-linkedCard": "Cartão Ligado",
+ "cardType-linkedBoard": "Quadro Ligado",
+ "change": "Alterar",
+ "change-avatar": "Alterar o Avatar",
+ "change-password": "Alterar a Senha",
+ "change-permissions": "Alterar as permissões",
+ "change-settings": "Alterar as Configurações",
+ "changeAvatarPopup-title": "Alterar o Avatar",
+ "changeLanguagePopup-title": "Alterar o Idioma",
+ "changePasswordPopup-title": "Alterar a Senha",
+ "changePermissionsPopup-title": "Alterar as Permissões",
+ "changeSettingsPopup-title": "Alterar as Configurações",
+ "subtasks": "Sub-tarefas",
+ "checklists": "Listas de verificação",
+ "click-to-star": "Clique para marcar este quadro como favorito.",
+ "click-to-unstar": "Clique para remover este quadro dos favoritos.",
+ "clipboard": "Área de Transferência ou arraste e solte",
+ "close": "Fechar",
+ "close-board": "Fechar o Quadro",
+ "close-board-pop": "Poderá restaurar o quadro clicando no botão “Arquivo” a partir do cabeçalho do Início.",
+ "color-black": "preto",
+ "color-blue": "azul",
+ "color-crimson": "carmesim",
+ "color-darkgreen": "verde escuro",
+ "color-gold": "dourado",
+ "color-gray": "cinza",
+ "color-green": "verde",
+ "color-indigo": "azul",
+ "color-lime": "verde limão",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marinho",
+ "color-orange": "laranja",
+ "color-paleturquoise": "azul ciano",
+ "color-peachpuff": "pêssego",
+ "color-pink": "cor-de-rosa",
+ "color-plum": "ameixa",
+ "color-purple": "roxo",
+ "color-red": "vermelho",
+ "color-saddlebrown": "marrom",
+ "color-silver": "prateado",
+ "color-sky": "azul-celeste",
+ "color-slateblue": "azul ardósia",
+ "color-white": "branco",
+ "color-yellow": "amarelo",
+ "unset-color": "Remover",
+ "comment": "Comentar",
+ "comment-placeholder": "Escrever o Comentário",
+ "comment-only": "Apenas comentários",
+ "comment-only-desc": "Pode comentar apenas em cartões.",
+ "no-comments": "Sem comentários",
+ "no-comments-desc": "Não pode ver comentários nem actividades.",
+ "worker": "Trabalhador",
+ "worker-desc": "Apenas pode mover cartões, atribuir-se a si próprio ao cartão e comentar.",
+ "computer": "Computador",
+ "confirm-subtask-delete-dialog": "Tem certeza que deseja apagar a sub-tarefa?",
+ "confirm-checklist-delete-dialog": "Tem certeza que quer apagar a lista de verificação?",
+ "copy-card-link-to-clipboard": "Copiar a ligação do cartão para a área de transferência",
+ "linkCardPopup-title": "Ligar Cartão",
+ "searchElementPopup-title": "Procurar",
+ "copyCardPopup-title": "Copiar o cartão",
+ "copyChecklistToManyCardsPopup-title": "Copiar o Modelo de Lista de Verificação para Vários Cartões",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos e Descrições de Cartões de Destino neste formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
+ "create": "Criar",
+ "createBoardPopup-title": "Criar Quadro",
+ "chooseBoardSourcePopup-title": "Importar quadro",
+ "createLabelPopup-title": "Criar Etiqueta",
+ "createCustomField": "Criar Campo",
+ "createCustomFieldPopup-title": "Criar Campo",
+ "current": "actual",
+ "custom-field-delete-pop": "Não existe desfazer. Isto irá remover este campo personalizado de todos os cartões e destruir o seu histórico",
+ "custom-field-checkbox": "Caixa de selecção",
+ "custom-field-currency": "Moeda",
+ "custom-field-currency-option": "Código de Moeda",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista Suspensa",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Opções da Lista",
+ "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
+ "custom-field-dropdown-unknown": "(desconhecido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos Personalizados",
+ "date": "Data",
+ "decline": "Rejeitar",
+ "default-avatar": "Avatar por omissão",
+ "delete": "Apagar",
+ "deleteCustomFieldPopup-title": "Apagar o Campo Personalizado?",
+ "deleteLabelPopup-title": "Apagar a Etiqueta?",
+ "description": "Descrição",
+ "disambiguateMultiLabelPopup-title": "Desambiguar Acção da Etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguar Acção do Membro",
+ "discard": "Descartar",
+ "done": "Feito",
+ "download": "Descarregar",
+ "edit": "Editar",
+ "edit-avatar": "Alterar o Avatar",
+ "edit-profile": "Editar o Perfil",
+ "edit-wip-limit": "Editar o Limite WIP",
+ "soft-wip-limit": "Limite Suave de WIP",
+ "editCardStartDatePopup-title": "Alterar a data de início",
+ "editCardDueDatePopup-title": "Alterar a data limite",
+ "editCustomFieldPopup-title": "Editar Campo",
+ "editCardSpentTimePopup-title": "Alterar o tempo gasto",
+ "editLabelPopup-title": "Alterar a Etiqueta",
+ "editNotificationPopup-title": "Editar a Notificação",
+ "editProfilePopup-title": "Editar o Perfil",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Uma conta foi criada para si em __siteName__",
+ "email-enrollAccount-text": "Olá __user__\nPara começar a utilizar o serviço, basta clicar na ligação abaixo.\n__url__\nObrigado.",
+ "email-fail": "Falhou a enviar o e-mail",
+ "email-fail-text": "Erro a tentar enviar o e-mail",
+ "email-invalid": "E-mail inválido",
+ "email-invite": "Convidar via E-mail",
+ "email-invite-subject": "__inviter__ enviou-lhe um convite",
+ "email-invite-text": "Caro __user__\n__inviter__ convidou-o para se juntar ao quadro \"__board__\" para colaborar.\nPor favor prossiga através da ligação abaixo:\n__url__\nObrigado.",
+ "email-resetPassword-subject": "Redefina sua senha em __siteName__",
+ "email-resetPassword-text": "Olá __user__\nPara redefinir a sua senha, por favor clique na ligação abaixo.\n__url__\nObrigado.",
+ "email-sent": "E-mail enviado",
+ "email-verifyEmail-subject": "Verifique o seu endereço de e-mail em __siteName__",
+ "email-verifyEmail-text": "Olá __user__\nPara verificar a sua conta de e-mail, clique na ligação abaixo.\n__url__\nObrigado.",
+ "enable-wip-limit": "Ativar Limite WIP",
+ "error-board-doesNotExist": "Este quadro não existe",
+ "error-board-notAdmin": "Precisa de ser administrador deste quadro para fazer isso",
+ "error-board-notAMember": "Precisa de ser um membro deste quadro para fazer isso",
+ "error-json-malformed": "O seu texto não é um JSON válido",
+ "error-json-schema": "O seu JSON não inclui as informações apropriadas no formato correto",
+ "error-csv-schema": "O seu CSV(Comma Separated Values)/TSV (Tab Separated Values) não inclui a informação apropriada no formato correto",
+ "error-list-doesNotExist": "Esta lista não existe",
+ "error-user-doesNotExist": "Este utilizador não existe",
+ "error-user-notAllowSelf": "Não se pode convidar a si mesmo",
+ "error-user-notCreated": "Este utilizador não foi criado",
+ "error-username-taken": "Esse nome de utilizador já existe",
+ "error-email-taken": "Endereço de e-mail já está em uso",
+ "export-board": "Exportar quadro",
+ "export-board-json": "Exportar quadro para JSON",
+ "export-board-csv": "Exportar quadro para CSV",
+ "export-board-tsv": "Exportar quadro para TSV",
+ "export-board-html": "Exportar quadro para HTML",
+ "exportBoardPopup-title": "Exportar quadro",
+ "sort": "Ordenar",
+ "sort-desc": "Clique para ordenar a Lista",
+ "list-sort-by": "Ordenar a Lista por:",
+ "list-label-modifiedAt": "Data do Último Acesso",
+ "list-label-title": "Nome da Lista",
+ "list-label-sort": "A Sua Ordem Manual",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar Cartões ou Listas",
+ "list-filter-label": "Filtrar Lista por Título",
+ "filter-clear": "Limpar filtro",
+ "filter-labels-label": "Filtrar por etiqueta",
+ "filter-no-label": "Sem etiquetas",
+ "filter-member-label": "Filtrar por membro",
+ "filter-no-member": "Sem membros",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "Sem responsável",
+ "filter-custom-fields-label": "Filtrar por campos personalizados",
+ "filter-no-custom-fields": "Sem Campos Personalizados",
+ "filter-show-archive": "Mostrar listas arquivadas",
+ "filter-hide-empty": "Ocultar listas vazias",
+ "filter-on": "Filtro está activo",
+ "filter-on-desc": "Está a filtrar cartões neste quadro. Clique aqui para editar o filtro.",
+ "filter-to-selection": "Filtrar esta selecção",
+ "other-filters-label": "Outros filtros",
+ "advanced-filter-label": "Filtro Avançado",
+ "advanced-filter-description": "Filtro Avançado permite escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || ( ). Um espaço é usado como separador entre Operadores. Pode filtrar em todos os Campos Personalizados escreventos os seus nomes e valores. Por Exemplo: Campo1 == Valor1. Nota: Se os campos ou valores contiverem espaços, tem de os encapsular em apóstrofes. Por Exemplo: 'Campo 1' == 'Valor 1'. Para que caracteres de controlo únicos (' \\/) sejam ignorados, pode usar \\. Por exemplo: Campo1 == I\\'m. Pode também combinar múltiplas condições. Por Exemplo: F1 == V1 || F1 == V2. Normalmente todos os operadores são interpretados da esquerda para a direita. Pode alterar a ordem inserindo parênteses. Por Exemplo: F1 == V1 && ( F2 == V2 || F2 == V3 ). Pode também procurar em campos de texto utilizando uma expressão regular: F1 == /Tes.*/i",
+ "fullname": "Nome Completo",
+ "header-logo-title": "Voltar para a sua lista de quadros.",
+ "hide-system-messages": "Esconder mensagens de sistema",
+ "headerBarCreateBoardPopup-title": "Criar Quadro",
+ "home": "Início",
+ "import": "Importar",
+ "impersonate-user": "Impersonate user",
+ "link": "Ligação",
+ "import-board": "importar quadro",
+ "import-board-c": "Importar quadro",
+ "import-board-title-trello": "Importar quadro do Trello",
+ "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
+ "import-board-title-csv": "Importar quadro de CSV/TSV",
+ "from-trello": "Do Trello",
+ "from-wekan": "A partir de exportação prévia",
+ "from-csv": "De CSV/TSV",
+ "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', e copie o texto resultante.",
+ "import-board-instruction-csv": "Cole o seu Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "No seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no ficheiro descarregado.",
+ "import-board-instruction-about-errors": "Se receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
+ "import-json-placeholder": "Cole seus dados JSON válidos aqui",
+ "import-csv-placeholder": "Copie aqui os seus dados CSV/TSV",
+ "import-map-members": "Mapear membros",
+ "import-members-map": "O seu quadro importado possui alguns membros. Por favor, mapeie os membros que deseja importar para seus utilizadores",
+ "import-show-user-mapping": "Rever mapeamento dos membros",
+ "import-user-select": "Escolha um utilizador existente que deseja usar como esse membro",
+ "importMapMembersAddPopup-title": "Seleccione membro",
+ "info": "Versão",
+ "initials": "Iniciais",
+ "invalid-date": "Data inválida",
+ "invalid-time": "Hora inválida",
+ "invalid-user": "Utilizador inválido",
+ "joined": "juntou-se",
+ "just-invited": "Acabou de ser convidado para este quadro",
+ "keyboard-shortcuts": "Atalhos do teclado",
+ "label-create": "Criar Etiqueta",
+ "label-default": "%s etiqueta (omissão)",
+ "label-delete-pop": "Não há como desfazer. A etiqueta será apagada de todos os cartões e o seu histórico será destruído.",
+ "labels": "Etiquetas",
+ "language": "Idioma",
+ "last-admin-desc": "Não pode alterar funções porque deve existir pelo menos um administrador.",
+ "leave-board": "Sair do Quadro",
+ "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Será removido de todos os cartões neste quadro.",
+ "leaveBoardPopup-title": "Sair do Quadro ?",
+ "link-card": "Ligar a este cartão",
+ "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo",
+ "list-archive-cards-pop": "Isto irá remover todos os cartões nesta lista do quadro. Para ver os cartões no Arquivo e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo”.",
+ "list-move-cards": "Mover todos os cartões nesta lista",
+ "list-select-cards": "Seleccionar todos os cartões nesta lista",
+ "set-color-list": "Definir Cor",
+ "listActionPopup-title": "Listar Ações",
+ "settingsUserPopup-title": "Configurações do utilizador",
+ "swimlaneActionPopup-title": "Acções de Pista",
+ "swimlaneAddPopup-title": "Adicionar uma Pista abaixo",
+ "listImportCardPopup-title": "Importe um cartão do Trello",
+ "listImportCardsTsvPopup-title": "Importar Excel CSV/TSV",
+ "listMorePopup-title": "Mais",
+ "link-list": "Ligar a esta lista",
+ "list-delete-pop": "Todas as acções serão removidas do feed de actividade e não poderá recuperar a lista. Não há como desfazer.",
+ "list-delete-suggest-archive": "Pode mover uma lista para o Arquivo para a remover do quadro e preservar a actividade.",
+ "lists": "Listas",
+ "swimlanes": "Pistas",
+ "log-out": "Terminar a Sessão",
+ "log-in": "Entrar",
+ "loginPopup-title": "Entrar",
+ "memberMenuPopup-title": "Configuração dos Membros",
+ "members": "Membros",
+ "menu": "Menu",
+ "move-selection": "Mover a selecção",
+ "moveCardPopup-title": "Mover o Cartão",
+ "moveCardToBottom-title": "Mover para o Fundo",
+ "moveCardToTop-title": "Mover para o Topo",
+ "moveSelectionPopup-title": "Mover a selecção",
+ "multi-selection": "Selecção Múltipla",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Selecção Múltipla está activa",
+ "muted": "Silenciado",
+ "muted-info": "Nunca será notificado de quaisquer alterações neste quadro",
+ "my-boards": "Meus Quadros",
+ "name": "Nome",
+ "no-archived-cards": "Sem cartões no Arquivo.",
+ "no-archived-lists": "Sem listas no Arquivo.",
+ "no-archived-swimlanes": "Sem pistas no Arquivo.",
+ "no-results": "Nenhum resultado.",
+ "normal": "Normal",
+ "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
+ "not-accepted-yet": "Convite ainda não aceite",
+ "notify-participate": "Receber actualizações de qualquer cartão que criar ou participar como membro",
+ "notify-watch": "Receber actualizações de qualquer quadro, lista ou cartões que estiver a observar",
+ "optional": "opcional",
+ "or": "ou",
+ "page-maybe-private": "Esta página pode ser privada. Poderá vê-la se iniciar a sessão.",
+ "page-not-found": "Página não encontrada.",
+ "password": "Senha",
+ "paste-or-dragdrop": "para colar, ou arrastar e soltar o ficheiro da imagem para lá (somente imagens)",
+ "participating": "Participando",
+ "preview": "Pré-visualizar",
+ "previewAttachedImagePopup-title": "Pré-visualizar",
+ "previewClipboardImagePopup-title": "Pré-visualizar",
+ "private": "Privado",
+ "private-desc": "Este quadro é privado. Apenas o membros do quadro o podem visualizar e editar.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este quadro é público. Está visível para qualquer pessoa com a ligação e será exibido em motores de busca como o Google. Apenas os membros do quadro o podem editar.",
+ "quick-access-description": "Clique na estrela de um quadro para adicionar um atalho nesta barra.",
+ "remove-cover": "Remover Capa",
+ "remove-from-board": "Remover do Quadro",
+ "remove-label": "Remover Etiqueta",
+ "listDeletePopup-title": "Apagar Lista ?",
+ "remove-member": "Remover Membro",
+ "remove-member-from-card": "Remover do Cartão",
+ "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
+ "removeMemberPopup-title": "Remover Membro?",
+ "rename": "Renomear",
+ "rename-board": "Renomear Quadro",
+ "restore": "Restaurar",
+ "save": "Guardar",
+ "search": "Procurar",
+ "rules": "Regras",
+ "search-cards": "Procurar nos títulos, descrições e campos personalizados de cartões/listas neste quadro",
+ "search-example": "Escreva o texto a pesquisar e pressione Enter",
+ "select-color": "Seleccionar Cor",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
+ "setWipLimitPopup-title": "Definir Limite WIP",
+ "shortcut-assign-self": "Atribuir a si o cartão actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Autocompletar membros",
+ "shortcut-clear-filters": "Limpar todos os filtros",
+ "shortcut-close-dialog": "Fechar Caixa de Dialogo",
+ "shortcut-filter-my-cards": "Filtrar os meus cartões",
+ "shortcut-show-shortcuts": "Mostrar esta lista de atalhos",
+ "shortcut-toggle-filterbar": "Alternar a Barra Lateral de Filtros",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Alternar a Barra Lateral do Quadro",
+ "show-cards-minimum-count": "Mostrar contagem de cartões se a lista tiver mais de",
+ "sidebar-open": "Abrir a Barra Lateral",
+ "sidebar-close": "Fechar a Barra Lateral",
+ "signupPopup-title": "Criar uma Conta",
+ "star-board-title": "Clique para marcar este quadro como favorito. O quadro irá aparecer no topo da sua lista de quadros.",
+ "starred-boards": "Quadros Favoritos",
+ "starred-boards-description": "Os quadros favoritos aparecem no topo da sua lista de quadros.",
+ "subscribe": "Subscrever",
+ "team": "Equipa",
+ "this-board": "este quadro",
+ "this-card": "este cartão",
+ "spent-time-hours": "Tempo gasto (horas)",
+ "overtime-hours": "Horas extra (horas)",
+ "overtime": "Horas extra",
+ "has-overtime-cards": "Tem cartões com horas extra",
+ "has-spenttime-cards": "Tem cartões com tempo gasto",
+ "time": "Tempo",
+ "title": "Título",
+ "tracking": "A seguir",
+ "tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.",
+ "type": "Tipo",
+ "unassign-member": "Desatribuir membro",
+ "unsaved-description": "Possui uma descrição não guardada.",
+ "unwatch": "Deixar de observar",
+ "upload": "Enviar",
+ "upload-avatar": "Enviar um avatar",
+ "uploaded-avatar": "Enviado um avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Nome de utilizador",
+ "view-it": "Visualizá-lo",
+ "warn-list-archived": "aviso: este cartão está numa lista no Arquivo",
+ "watch": "Observar",
+ "watching": "Observando",
+ "watching-info": "Será notificado de quaisquer alterações neste quadro",
+ "welcome-board": "Quadro de Boas Vindas",
+ "welcome-swimlane": "Marco 1",
+ "welcome-list1": "Básico",
+ "welcome-list2": "Avançado",
+ "card-templates-swimlane": "Modelos de Cartão",
+ "list-templates-swimlane": "Modelos de Lista",
+ "board-templates-swimlane": "Modelos de Quadro",
+ "what-to-do": "O que gostaria de fazer?",
+ "wipLimitErrorPopup-title": "Limite WIP Inválido",
+ "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
+ "admin-panel": "Painel Administrativo",
+ "settings": "Configurações",
+ "people": "Pessoas",
+ "registration": "Registo",
+ "disable-self-registration": "Desabilitar Auto-Registo",
+ "invite": "Convidar",
+ "invite-people": "Convidar Pessoas",
+ "to-boards": "Para o(s) quadro(s)",
+ "email-addresses": "Endereços de E-mail",
+ "smtp-host-description": "O endereço do servidor SMTP que envia os seus e-mails.",
+ "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
+ "smtp-tls-description": "Habilitar suporte TLS para o servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Porta SMTP",
+ "smtp-username": "Nome de utilizador",
+ "smtp-password": "Senha",
+ "smtp-tls": "Suporte TLS",
+ "send-from": "De",
+ "send-smtp-test": "Enviar um e-mail de teste para si mesmo",
+ "invitation-code": "Código do Convite",
+ "email-invite-register-subject": "__inviter__ enviou-lhe um convite",
+ "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida-o para o quadro Kanban para colaborações.\n\nPor favor, siga a ligação abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
+ "email-smtp-test-subject": "E-mail de Teste de SMTP",
+ "email-smtp-test-text": "Enviou um e-mail com sucesso",
+ "error-invitation-code-not-exist": "O código do convite não existe",
+ "error-notAuthorized": "Não tem autorização para ver esta página.",
+ "webhook-title": "Nome do Webhook",
+ "webhook-token": "Token (Opcional para Autenticação)",
+ "outgoing-webhooks": "Webhooks de saída",
+ "bidirectional-webhooks": "Webhooks de Dois Sentidos",
+ "outgoingWebhooksPopup-title": "Webhooks de saída",
+ "boardCardTitlePopup-title": "Filtro do Título do Cartão",
+ "disable-webhook": "Desativar Este Webhook",
+ "global-webhook": "Webhooks Globais",
+ "new-outgoing-webhook": "Novo Webhook de saída",
+ "no-name": "(Desconhecido)",
+ "Node_version": "Versão do Node",
+ "Meteor_version": "Versão do Meteor",
+ "MongoDB_version": "Versão do MongoDB",
+ "MongoDB_storage_engine": "Versão do motor de armazenamento do MongoDB",
+ "MongoDB_Oplog_enabled": "Oplog do MongoDB activo",
+ "OS_Arch": "Arquitectura do SO",
+ "OS_Cpus": "Quantidade de CPUs do SO",
+ "OS_Freemem": "Memória Disponível do SO",
+ "OS_Loadavg": "Carga Média do SO",
+ "OS_Platform": "Plataforma do SO",
+ "OS_Release": "Versão do SO",
+ "OS_Totalmem": "Memória Total do SO",
+ "OS_Type": "Tipo do SO",
+ "OS_Uptime": "Disponibilidade do SO",
+ "days": "dias",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo no cartão",
+ "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
+ "showLabel-field-on-card": "Mostrar etiqueta do campo no mini-cartão",
+ "yes": "Sim",
+ "no": "Não",
+ "accounts": "Contas",
+ "accounts-allowEmailChange": "Permitir Alteração do E-mail",
+ "accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador",
+ "createdAt": "Criado em",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recebido",
+ "card-received-on": "Recebido em",
+ "card-end": "Fim",
+ "card-end-on": "Termina em",
+ "editCardReceivedDatePopup-title": "Alterar data de recebimento",
+ "editCardEndDatePopup-title": "Alterar data de fim",
+ "setCardColorPopup-title": "Definir cor",
+ "setCardActionsColorPopup-title": "Escolha uma cor",
+ "setSwimlaneColorPopup-title": "Escolha uma cor",
+ "setListColorPopup-title": "Escolha uma cor",
+ "assigned-by": "Atribuído Por",
+ "requested-by": "Solicitado Por",
+ "board-delete-notice": "Apagar é permanente. Irá perder todas as listas, cartões e acções associadas a este quadro.",
+ "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e actividades serão apagadas e não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
+ "boardDeletePopup-title": "Apagar Quadro?",
+ "delete-board": "Apagar Quadro",
+ "default-subtasks-board": "Sub-tarefas para o quadro __board__",
+ "default": "Omissão",
+ "queue": "Fila",
+ "subtask-settings": "Configurações de Sub-tarefas",
+ "card-settings": "Definições do Cartão",
+ "boardSubtaskSettingsPopup-title": "Configurações das Sub-tarefas do Quadro",
+ "boardCardSettingsPopup-title": "Definições do Cartão",
+ "deposit-subtasks-board": "Depositar sub-tarefas neste quadro:",
+ "deposit-subtasks-list": "Lista de destino para sub-tarefas depositadas aqui:",
+ "show-parent-in-minicard": "Mostrar pai no mini-cartão:",
+ "prefix-with-full-path": "Prefixar com o caminho completo",
+ "prefix-with-parent": "Prefixar com o pai",
+ "subtext-with-full-path": "Sub-texto com o caminho completo",
+ "subtext-with-parent": "Sub-texto com o pai",
+ "change-card-parent": "Alterar o pai do cartão",
+ "parent-card": "Pai do cartão",
+ "source-board": "Quadro fonte",
+ "no-parent": "Não mostrar o pai",
+ "activity-added-label": "adicionou a etiqueta '%s' a %s",
+ "activity-removed-label": "removeu a etiqueta '%s' de %s",
+ "activity-delete-attach": "apagou um anexo de %s",
+ "activity-added-label-card": "adicionou a etiqueta '%s'",
+ "activity-removed-label-card": "removeu a etiqueta '%s'",
+ "activity-delete-attach-card": "apagou um anexo",
+ "activity-set-customfield": "definiu o campo personalizado '%s' para '%s' em %s",
+ "activity-unset-customfield": "removeu o campo personalizado '%s' de %s",
+ "r-rule": "Regra",
+ "r-add-trigger": "Adicionar gatilho",
+ "r-add-action": "Adicionar acção",
+ "r-board-rules": "Regras do quadro",
+ "r-add-rule": "Adicionar regra",
+ "r-view-rule": "Ver regra",
+ "r-delete-rule": "Apagar regra",
+ "r-new-rule-name": "Título da nova regra",
+ "r-no-rules": "Sem regras",
+ "r-trigger": "Gatilho",
+ "r-action": "Ação",
+ "r-when-a-card": "Quando um cartão",
+ "r-is": "é",
+ "r-is-moved": "é movido",
+ "r-added-to": "Adicionado a",
+ "r-removed-from": "Removido de",
+ "r-the-board": "o quadro",
+ "r-list": "lista",
+ "set-filter": "Definir Filtro",
+ "r-moved-to": "Movido para",
+ "r-moved-from": "Movido de",
+ "r-archived": "Movido para o Arquivo",
+ "r-unarchived": "Restaurado do Arquivo",
+ "r-a-card": "um cartão",
+ "r-when-a-label-is": "Quando uma etiqueta é",
+ "r-when-the-label": "Quando a etiqueta é",
+ "r-list-name": "listar o nome",
+ "r-when-a-member": "Quando um membro é",
+ "r-when-the-member": "Quando o membro",
+ "r-name": "nome",
+ "r-when-a-attach": "Quando um anexo",
+ "r-when-a-checklist": "Quando a lista de verificação é",
+ "r-when-the-checklist": "Quando a lista de verificação",
+ "r-completed": "Completada",
+ "r-made-incomplete": "Tornado incompleta",
+ "r-when-a-item": "Quando um item de uma lista de verificação é",
+ "r-when-the-item": "Quando o item da lista de verificação",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover cartão para",
+ "r-top-of": "Topo de",
+ "r-bottom-of": "Fundo de",
+ "r-its-list": "a sua lista",
+ "r-archive": "Mover para o Arquivo",
+ "r-unarchive": "Restaurar do Arquivo",
+ "r-card": "cartão",
+ "r-add": "Novo",
+ "r-remove": "Remover",
+ "r-label": "etiqueta",
+ "r-member": "membro",
+ "r-remove-all": "Remover todos os membros do cartão",
+ "r-set-color": "Definir a cor para",
+ "r-checklist": "lista de verificação",
+ "r-check-all": "Marcar todos",
+ "r-uncheck-all": "Desmarcar todos",
+ "r-items-check": "itens da lista de verificação",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "item",
+ "r-of-checklist": "da lista de verificação",
+ "r-send-email": "Enviar um e-mail",
+ "r-to": "para",
+ "r-of": "de",
+ "r-subject": "assunto",
+ "r-rule-details": "Detalhes da regra",
+ "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
+ "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
+ "r-d-move-to-bottom-gen": "Mover cartão para o fundo da sua lista",
+ "r-d-move-to-bottom-spec": "Mover cartão para fundo da lista",
+ "r-d-send-email": "Enviar e-mail",
+ "r-d-send-email-to": "para",
+ "r-d-send-email-subject": "assunto",
+ "r-d-send-email-message": "mensagem",
+ "r-d-archive": "Mover cartão para o Arquivo",
+ "r-d-unarchive": "Restaurar cartão do Arquivo",
+ "r-d-add-label": "Adicionar etiqueta",
+ "r-d-remove-label": "Remover etiqueta",
+ "r-create-card": "Criar novo cartão",
+ "r-in-list": "na lista",
+ "r-in-swimlane": "na pista",
+ "r-d-add-member": "Adicionar membro",
+ "r-d-remove-member": "Remover membro",
+ "r-d-remove-all-member": "Remover todos os membros",
+ "r-d-check-all": "Marcar todos os itens de uma lista",
+ "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
+ "r-d-check-one": "Marcar item",
+ "r-d-uncheck-one": "Desmarcar item",
+ "r-d-check-of-list": "da lista de verificação",
+ "r-d-add-checklist": "Adicionar lista de verificação",
+ "r-d-remove-checklist": "Remover lista de verificação",
+ "r-by": "por",
+ "r-add-checklist": "Adicionar lista de verificação",
+ "r-with-items": "com os itens",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Adicionar pista",
+ "r-swimlane-name": "nome da pista",
+ "r-board-note": "Nota: deixe o campo vazio para corresponder a todos os valores possíveis.",
+ "r-checklist-note": "Nota: itens de listas de verificação devem ser escritos separados por vírgulas.",
+ "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
+ "r-set": "Definir",
+ "r-update": "Actualizar",
+ "r-datefield": "campo de data",
+ "r-df-start-at": "início",
+ "r-df-due-at": "data limite",
+ "r-df-end-at": "fim",
+ "r-df-received-at": "recebido",
+ "r-to-current-datetime": "até à data/hora actual",
+ "r-remove-value-from": "Remover valor de",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticação",
+ "authentication-type": "Tipo de autenticação",
+ "custom-product-name": "Nome Personalizado do Produto",
+ "layout": "Layout",
+ "hide-logo": "Esconder Logo",
+ "add-custom-html-after-body-start": "Adicionar HTML Personalizado depois do início do ",
+ "add-custom-html-before-body-end": "Adicionar HTML Personalizado antes do fim do ",
+ "error-undefined": "Ocorreu um erro",
+ "error-ldap-login": "Ocorreu um erro ocorreu enquanto tentava entrar",
+ "display-authentication-method": "Mostrar Método de Autenticação",
+ "default-authentication-method": "Método de Autenticação por Omissão",
+ "duplicate-board": "Duplicar Quadro",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "O número de pessoas é:",
+ "swimlaneDeletePopup-title": "Apagar Pista ?",
+ "swimlane-delete-pop": "Todas as acções serão removidas do feed de actividade e não será possível recuperar a pista. Não há como desfazer.",
+ "restore-all": "Restaurar todos",
+ "delete-all": "Apagar todos",
+ "loading": "A carregar, por favor aguarde.",
+ "previous_as": "última data era",
+ "act-a-dueAt": "modificou a data limite para \nQuando: __timeValue__\nOnde: __card__\n a data limite anterior era __timeOldValue__",
+ "act-a-endAt": "modificou a data de fim para __timeValue__ de (__timeOldValue__)",
+ "act-a-startAt": "modificou a data de início para __timeValue__ de (__timeOldValue__)",
+ "act-a-receivedAt": "modificou a data recebida para __timeValue__ de (__timeOldValue__)",
+ "a-dueAt": "modificou a data limite para",
+ "a-endAt": "modificou a data de fim para",
+ "a-startAt": "modificou a data de início para",
+ "a-receivedAt": "modificou a data recebida para",
+ "almostdue": "a data limite actual %s está-se a aproximar",
+ "pastdue": "a data limite actual %s já passou",
+ "duenow": "a data limite actual %s é hoje",
+ "act-newDue": "__list__/__card__ tem o 1º lembrete de prazo [__board__]",
+ "act-withDue": "__list__/__card__ lembretes de prazo [__board__]",
+ "act-almostdue": "estava a lembrar que a data limite actual (__timeValue__) de __card__ está-se a aproximar",
+ "act-pastdue": "estava a lembrar que a data limite (__timeValue__) de __card__ já passou",
+ "act-duenow": "estava a lembrar que a data limite (__timeValue__) de __card__ é agora",
+ "act-atUserComment": "Foi mencionado em [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Tem a certeza que pretende apagar esta conta? Não há como desfazer.",
+ "accounts-allowUserDelete": "Permitir aos utilizadores apagar as suas próprias contas",
+ "hide-minicard-label-text": "Ocultar texto das etiquetas dos mini-cartões",
+ "show-desktop-drag-handles": "Mostrar alças de arrasto do desktop",
+ "assignee": "Responsável",
+ "cardAssigneesPopup-title": "Responsável",
+ "addmore-detail": "Adicionar uma descrição mais detalhada",
+ "show-on-card": "Mostrar no Cartão",
+ "new": "Novo",
+ "editUserPopup-title": "Editar Utilizador",
+ "newUserPopup-title": "Novo Utilizador",
+ "notifications": "Notificações",
+ "view-all": "Ver Todos",
+ "filter-by-unread": "Filtrar por não lidos",
+ "mark-all-as-read": "Marcar todos como lidos",
+ "remove-all-read": "Apagar todos os lidos",
+ "allow-rename": "Permitir Renomear",
+ "allowRenamePopup-title": "Permitir Renomear",
+ "start-day-of-week": "Definir dia de início da semana",
+ "monday": "Segunda-feira",
+ "tuesday": "Terça-feira",
+ "wednesday": "Quarta-feira",
+ "thursday": "Quinta-feira",
+ "friday": "Sexta-feira",
+ "saturday": "Sábado",
+ "sunday": "Domingo",
+ "status": "Estado",
+ "swimlane": "Pista",
+ "owner": "Dono",
+ "last-modified-at": "Modificado pela última vez em",
+ "last-activity": "Última actividade",
+ "voting": "Votação",
+ "archived": "Arquivado",
+ "delete-linked-card-before-this-card": "Não pode apagar este cartão sem primeiro apagar o cartão ligado que tem",
+ "delete-linked-cards-before-this-list": "Não pode apagar esta lista sem primeiro apagar cartões ligados que apontam para cartões nesta lista",
+ "hide-checked-items": "Ocultar items marcados",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json
index 07b2fb216..ee6ce52ac 100644
--- a/i18n/ro.i18n.json
+++ b/i18n/ro.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Aceptă",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acțiuni",
- "activities": "Activități",
- "activity": "Activitate",
- "activity-added": "s-a adăugat %s la %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "s-a atașat %s la %s",
- "activity-created": "s-a creat %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "s-a exclus %s din %s",
- "activity-imported": "s-a importat %s în %s din %s",
- "activity-imported-board": "s-a importat %s din %s",
- "activity-joined": "ai devenit membru %s",
- "activity-moved": "s-a mutat %s din %s în%s",
- "activity-on": "on %s",
- "activity-removed": "s-a șters %s din %s",
- "activity-sent": "s-a trimis %s către%s",
- "activity-unjoined": "nu mai ești membru al %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Adaugă",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Adaugă Decor",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Adaugă Membrii",
- "added": "S-a adăugat",
- "addMemberPopup-title": "Membrii",
- "admin": "Admin",
- "admin-desc": "Poate vedea și edita carduri, șterge membrii, și schimba setările tablei.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Toate tablele",
- "and-n-other-card": "Și __count__ alt card",
- "and-n-other-card_plural": "Și __count__ alte carduri",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arhivă",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Atribuie unui membru",
- "attached": "s-a atașat",
- "attachment": "Ataşament",
- "attachment-delete-pop": "Ștergerea unui atașament este permanentă. Nu există recuperare.",
- "attachmentDeletePopup-title": "Șterge Atașament?",
- "attachments": "Ataşamente",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Înapoi",
- "board-change-color": "Schimbă culoare",
- "board-nb-stars": "%s stele",
- "board-not-found": "Tabla nu a fost găsită",
- "board-private-info": "Această tabla va fi privată.",
- "board-public-info": "Această tabla va fi publică.",
- "boardChangeColorPopup-title": "Schimbă Fundalul Tablei",
- "boardChangeTitlePopup-title": "Redenumește Tabla",
- "boardChangeVisibilityPopup-title": "Schimbă Vizibilitatea",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Table",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Liste",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Anulează",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Acest card are %s commentariu.",
- "card-delete-notice": "Ștergerea este permanentă. Se vor pierde toate acțiunile asociate acestui card.",
- "card-delete-pop": "Toate acțiunile vor fi șterse din jurnalul de activități si nu vei mai putea redeschide cardul. Nu există recuperare.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Editează atașamente",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Editează etichete",
- "card-edit-members": "Editează membrii",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Închide",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Caută",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Iniţiale",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Liste",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Meniu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nume",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Parolă",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Privat",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profil",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Salvează",
- "search": "Caută",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Titlu",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Ce ai vrea sa faci?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Parolă",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Aceptă",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acțiuni",
+ "activities": "Activități",
+ "activity": "Activitate",
+ "activity-added": "s-a adăugat %s la %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "s-a atașat %s la %s",
+ "activity-created": "s-a creat %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "s-a exclus %s din %s",
+ "activity-imported": "s-a importat %s în %s din %s",
+ "activity-imported-board": "s-a importat %s din %s",
+ "activity-joined": "ai devenit membru %s",
+ "activity-moved": "s-a mutat %s din %s în%s",
+ "activity-on": "on %s",
+ "activity-removed": "s-a șters %s din %s",
+ "activity-sent": "s-a trimis %s către%s",
+ "activity-unjoined": "nu mai ești membru al %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Adaugă",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Adaugă Decor",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Adaugă Membrii",
+ "added": "S-a adăugat",
+ "addMemberPopup-title": "Membrii",
+ "admin": "Admin",
+ "admin-desc": "Poate vedea și edita carduri, șterge membrii, și schimba setările tablei.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Toate tablele",
+ "and-n-other-card": "Și __count__ alt card",
+ "and-n-other-card_plural": "Și __count__ alte carduri",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arhivă",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Atribuie unui membru",
+ "attached": "s-a atașat",
+ "attachment": "Ataşament",
+ "attachment-delete-pop": "Ștergerea unui atașament este permanentă. Nu există recuperare.",
+ "attachmentDeletePopup-title": "Șterge Atașament?",
+ "attachments": "Ataşamente",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Înapoi",
+ "board-change-color": "Schimbă culoare",
+ "board-nb-stars": "%s stele",
+ "board-not-found": "Tabla nu a fost găsită",
+ "board-private-info": "Această tabla va fi privată.",
+ "board-public-info": "Această tabla va fi publică.",
+ "boardChangeColorPopup-title": "Schimbă Fundalul Tablei",
+ "boardChangeTitlePopup-title": "Redenumește Tabla",
+ "boardChangeVisibilityPopup-title": "Schimbă Vizibilitatea",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Table",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Liste",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Anulează",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Acest card are %s commentariu.",
+ "card-delete-notice": "Ștergerea este permanentă. Se vor pierde toate acțiunile asociate acestui card.",
+ "card-delete-pop": "Toate acțiunile vor fi șterse din jurnalul de activități si nu vei mai putea redeschide cardul. Nu există recuperare.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Editează atașamente",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Editează etichete",
+ "card-edit-members": "Editează membrii",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Închide",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Caută",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Iniţiale",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Liste",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Meniu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nume",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Parolă",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Privat",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profil",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Salvează",
+ "search": "Caută",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Titlu",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Ce ai vrea sa faci?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Parolă",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json
index f484467d6..5dc2fa5c4 100644
--- a/i18n/ru.i18n.json
+++ b/i18n/ru.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Показывать способ авторизации",
"default-authentication-method": "Способ авторизации по умолчанию",
"duplicate-board": "Клонировать доску",
+ "org-number": "Количество организаций:",
+ "team-number": "Количество команд:",
"people-number": "Количество человек:",
"swimlaneDeletePopup-title": "Удалить дорожку?",
"swimlane-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете восстановить дорожку. Данное действие необратимо.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Спрятать отмеченные",
"task": "Задача",
"create-task": "Создать задачу",
- "ok": "Ok"
+ "ok": "Ok",
+ "organizations": "Организации",
+ "teams": "Команды",
+ "displayName": "Отображаемое название",
+ "shortName": "Короткое название",
+ "website": "Вебсайт",
+ "person": "Представитель"
}
diff --git a/i18n/sl.i18n.json b/i18n/sl.i18n.json
index acf1c7f18..706cdf5eb 100644
--- a/i18n/sl.i18n.json
+++ b/i18n/sl.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Sprejmi",
- "act-activity-notify": "Obvestilo o dejavnosti",
- "act-addAttachment": "dodal priponko __attachment__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-deleteAttachment": "odstranil priponko __attachment__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addSubtask": "dodal podopravilo __subtask__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addLabel": "Dodal oznako __label__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addedLabel": "Dodal oznako __label__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-removeLabel": "Odstranil oznako __label__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-removedLabel": "Odstranil oznako __label__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addChecklist": "dodal kontrolni seznam __checklist__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addChecklistItem": "dodal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-removeChecklist": "odstranil kontrolni seznam __checklist__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-removeChecklistItem": "odstranil postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-checkedItem": "obkljukal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-uncheckedItem": "odkljukal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-completeChecklist": "dokončal kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-uncompleteChecklist": "nedokončan kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-addComment": "komentiral na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-editComment": "uredil komentar na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-deleteComment": "izbrisal komentar na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-createBoard": "ustvaril tablo __board__",
- "act-createSwimlane": "ustvaril plavalno stezo __swimlane__ na tabli __board__",
- "act-createCard": "ustvaril kartico __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-createCustomField": "ustvaril poljubno polje __customField__ na tabli __board__",
- "act-deleteCustomField": "izbrisal poljubno polje __customField__ na tabli __board__",
- "act-setCustomField": "uredil poljubno polje __customField__: __customFieldValue__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-createList": "dodal seznam __list__ na tablo __board__",
- "act-addBoardMember": "dodal člana __member__ k tabli __board__",
- "act-archivedBoard": "Tabla __board__ premaknjena v arhiv",
- "act-archivedCard": "Kartica __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__ premaknjena v arhiv",
- "act-archivedList": "Seznam __list__ na plavalni stezi __swimlane__ na tabli __board__ premaknjen v arhiv",
- "act-archivedSwimlane": "Plavalna steza __swimlane__ na tabli __board__ premaknjena v arhiv",
- "act-importBoard": "uvozil tablo __board__",
- "act-importCard": "uvozil kartico __card__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-importList": "uvozil seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-joinMember": "dodal član __member__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-moveCard": "premakil kartico __card__ na tabli __board__ iz seznama __oldList__ na plavalni stezi __oldSwimlane__ na seznam __list__ na plavalni stezi __swimlane__",
- "act-moveCardToOtherBoard": "premaknil kartico __card__ iz seznama __oldList__ na plavalni stezi __oldSwimlane__ na tabli __oldBoard__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-removeBoardMember": "odstranil člana __member__ iz table __board__",
- "act-restoredCard": "obnovil kartico __card__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-unjoinMember": "odstranil člana __member__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Dejanja",
- "activities": "Aktivnosti",
- "activity": "Aktivnost",
- "activity-added": "dodal %s v %s",
- "activity-archived": "%s premaknjeno v arhiv",
- "activity-attached": "pripel %s v %s",
- "activity-created": "ustvaril %s",
- "activity-customfield-created": "ustvaril poljubno polje%s",
- "activity-excluded": "izključil %s iz %s",
- "activity-imported": "uvozil %s v %s iz %s",
- "activity-imported-board": "uvozil %s iz %s",
- "activity-joined": "se je pridružil na %s",
- "activity-moved": "premakil %s iz %s na %s",
- "activity-on": "na %s",
- "activity-removed": "odstranil %s iz %s",
- "activity-sent": "poslano %s na %s",
- "activity-unjoined": "se je odjavil iz %s",
- "activity-subtask-added": "dodal podopravilo k %s",
- "activity-checked-item": "obkljukal %s na kontrolnem seznamu %s od %s",
- "activity-unchecked-item": "odkljukal %s na kontrolnem seznamu %s od %s",
- "activity-checklist-added": "dodal kontrolni seznam na %s",
- "activity-checklist-removed": "odstranil kontrolni seznam iz %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "nedokončal kontrolni seznam %s od %s",
- "activity-checklist-item-added": "dodal postavko kontrolnega seznama na '%s' v %s",
- "activity-checklist-item-removed": "odstranil postavko kontrolnega seznama iz '%s' v %s",
- "add": "Dodaj",
- "activity-checked-item-card": "obkljukal %s na kontrolnem seznamu %s",
- "activity-unchecked-item-card": "odkljukal %s na kontrolnem seznamu %s",
- "activity-checklist-completed-card": "dokončal kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
- "activity-checklist-uncompleted-card": "nedokončal kontrolni seznam %s",
- "activity-editComment": "uredil komentar %s",
- "activity-deleteComment": "izbrisal komentar %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Dodaj priponko",
- "add-board": "Dodaj tablo",
- "add-card": "Dodaj kartico",
- "add-swimlane": "Dodaj plavalno stezo",
- "add-subtask": "Dodaj podopravilo",
- "add-checklist": "Dodaj kontrolni seznam",
- "add-checklist-item": "Dodaj postavko na kontrolni seznam",
- "add-cover": "Dodaj ovitek",
- "add-label": "Dodaj oznako",
- "add-list": "Dodaj seznam",
- "add-members": "Dodaj člane",
- "added": "Dodano",
- "addMemberPopup-title": "Člani",
- "admin": "Administrator",
- "admin-desc": "Lahko gleda in ureja kartice, odstrani člane ter spreminja nastavitve table.",
- "admin-announcement": "Najava",
- "admin-announcement-active": "Aktivna vse-sistemska najava",
- "admin-announcement-title": "Najava od administratorja",
- "all-boards": "Vse table",
- "and-n-other-card": "In __count__ druga kartica",
- "and-n-other-card_plural": "In __count__ drugih kartic",
- "apply": "Uporabi",
- "app-is-offline": "Nalaganje, prosimo počakajte. Osveževanje strani bo povzročilo izgubo podatkov. Če nalaganje ne deluje, preverite, ali se strežnik ni ustavil.",
- "archive": "Premakni v arhiv",
- "archive-all": "Premakni vse v arhiv",
- "archive-board": "Arhiviraj tablo",
- "archive-card": "Arhiviraj kartico",
- "archive-list": "Arhiviraj seznam",
- "archive-swimlane": "Arhiviraj plavalno stezo",
- "archive-selection": "Arhiviraj označeno",
- "archiveBoardPopup-title": "Arhiviraj tablo?",
- "archived-items": "Arhiv",
- "archived-boards": "Table v arhivu",
- "restore-board": "Obnovi tablo",
- "no-archived-boards": "Nobene table ni v arhivu.",
- "archives": "Arhiv",
- "template": "Predloga",
- "templates": "Predloge",
- "assign-member": "Dodeli člana",
- "attached": "pripeto",
- "attachment": "Priponka",
- "attachment-delete-pop": "Brisanje priponke je trajno. Ne obstaja razveljavitev.",
- "attachmentDeletePopup-title": "Briši priponko?",
- "attachments": "Priponke",
- "auto-watch": "Samodejno spremljaj ustvarjene table",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Nazaj",
- "board-change-color": "Spremeni barvo",
- "board-nb-stars": "%s zvezdic",
- "board-not-found": "Tabla ni najdena",
- "board-private-info": "Ta tabla bo privatna.",
- "board-public-info": "Ta tabla bo javna.",
- "boardChangeColorPopup-title": "Spremeni ozadje table",
- "boardChangeTitlePopup-title": "Preimenuj tablo",
- "boardChangeVisibilityPopup-title": "Spremeni vidnost",
- "boardChangeWatchPopup-title": "Spremeni opazovanje",
- "boardMenuPopup-title": "Nastavitve table",
- "boardChangeViewPopup-title": "Pogled table",
- "boards": "Table",
- "board-view": "Pogled table",
- "board-view-cal": "Koledar",
- "board-view-swimlanes": "Plavalne steze",
- "board-view-collapse": "Skrči",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Seznami",
- "bucket-example": "Kot na primer \"Življenjski seznam\"",
- "cancel": "Prekliči",
- "card-archived": "Kartica je premaknjena v arhiv.",
- "board-archived": "Tabla je premaknjena v arhiv.",
- "card-comments-title": "Ta kartica ima %s komentar.",
- "card-delete-notice": "Brisanje je trajno. Izgubili boste vsa dejanja, povezana s kartico.",
- "card-delete-pop": "Vsa dejanja bodo odstranjena iz zgodovine dejavnosti. Kartice ne boste mogli znova odpreti. Razveljavitve ni.",
- "card-delete-suggest-archive": "Kartico lahko premaknete v arhiv, da jo odstranite s table in ohranite dejavnost.",
- "card-due": "Rok",
- "card-due-on": "Rok",
- "card-spent": "Porabljen čas",
- "card-edit-attachments": "Uredi priponke",
- "card-edit-custom-fields": "Uredi poljubna polja",
- "card-edit-labels": "Uredi oznake",
- "card-edit-members": "Uredi člane",
- "card-labels-title": "Spremeni oznake za kartico.",
- "card-members-title": "Dodaj ali odstrani člane table iz kartice.",
- "card-start": "Začetek",
- "card-start-on": "Začne ob",
- "cardAttachmentsPopup-title": "Pripni od",
- "cardCustomField-datePopup-title": "Spremeni datum",
- "cardCustomFieldsPopup-title": "Uredi poljubna polja",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Briši kartico?",
- "cardDetailsActionsPopup-title": "Dejanja kartice",
- "cardLabelsPopup-title": "Oznake",
- "cardMembersPopup-title": "Člani",
- "cardMorePopup-title": "Več",
- "cardTemplatePopup-title": "Ustvari predlogo",
- "cards": "Kartice",
- "cards-count": "Kartic",
- "casSignIn": "Vpiši se s CAS",
- "cardType-card": "Kartica",
- "cardType-linkedCard": "Povezana kartica",
- "cardType-linkedBoard": "Povezana tabla",
- "change": "Spremeni",
- "change-avatar": "Spremeni avatar",
- "change-password": "Spremeni geslo",
- "change-permissions": "Spremeni dovoljenja",
- "change-settings": "Spremeni nastavitve",
- "changeAvatarPopup-title": "Spremeni avatar",
- "changeLanguagePopup-title": "Spremeni jezik",
- "changePasswordPopup-title": "Spremeni geslo",
- "changePermissionsPopup-title": "Spremeni dovoljenja",
- "changeSettingsPopup-title": "Spremeni nastavitve",
- "subtasks": "Podopravila",
- "checklists": "Kontrolni seznami",
- "click-to-star": "Kliknite, da označite tablo z zvezdico.",
- "click-to-unstar": "Kliknite, da odznačite tablo z zvezdico.",
- "clipboard": "Odložišče ali povleci & spusti",
- "close": "Zapri",
- "close-board": "Zapri tablo",
- "close-board-pop": "Tablo boste lahko obnovili s klikom na gumb »Arhiviraj« na vstopni strani.",
- "color-black": "črna",
- "color-blue": "modra",
- "color-crimson": "temno rdeča",
- "color-darkgreen": "temno zelena",
- "color-gold": "zlata",
- "color-gray": "siva",
- "color-green": "zelena",
- "color-indigo": "indigo",
- "color-lime": "limeta",
- "color-magenta": "magenta",
- "color-mistyrose": "rožnata",
- "color-navy": "navy modra",
- "color-orange": "oranžna",
- "color-paleturquoise": "bledo turkizna",
- "color-peachpuff": "breskvasta",
- "color-pink": "roza",
- "color-plum": "slivova",
- "color-purple": "vijolična",
- "color-red": "rdeča",
- "color-saddlebrown": "rjava",
- "color-silver": "srebrna",
- "color-sky": "nebesna",
- "color-slateblue": "skrilasto modra",
- "color-white": "bela",
- "color-yellow": "rumena",
- "unset-color": "Onemogoči",
- "comment": "Komentiraj",
- "comment-placeholder": "Napiši komentar",
- "comment-only": "Samo komentar",
- "comment-only-desc": "Lahko komentirate samo na karticah.",
- "no-comments": "Ni komentarjev",
- "no-comments-desc": "Ne morete videti komentarjev in dejavnosti.",
- "worker": "Delavec",
- "worker-desc": "Lahko samo premikam kartice, se dodelim na kartico in komentiram.",
- "computer": "Računalnik",
- "confirm-subtask-delete-dialog": "Ste prepričani, da želite izbrisati podopravilo?",
- "confirm-checklist-delete-dialog": "Ste prepričani, da želite izbrisati kontrolni seznam?",
- "copy-card-link-to-clipboard": "Kopiraj povezavo kartice na odložišče",
- "linkCardPopup-title": "Poveži kartico",
- "searchElementPopup-title": "Išči",
- "copyCardPopup-title": "Kopiraj kartico",
- "copyChecklistToManyCardsPopup-title": "Kopiraj predlogo kontrolnega seznama na več kartic",
- "copyChecklistToManyCardsPopup-instructions": "Naslovi ciljnih kartic in opisi v JSON formatu",
- "copyChecklistToManyCardsPopup-format": "[ {\"naslov\": \"Naslov prve kartice\", \"opis\":\"Opis prve kartice\"}, {\"naslov\":\"Opis druge kartice\",\"opis\":\"Opis druge kartice\"},{\"naslov\":\"Naslov zadnje kartice\",\"opis\":\"Opis zadnje kartice\"} ]",
- "create": "Ustvari",
- "createBoardPopup-title": "Ustvari tablo",
- "chooseBoardSourcePopup-title": "Uvozi tablo",
- "createLabelPopup-title": "Ustvari oznako",
- "createCustomField": "Ustvari polje",
- "createCustomFieldPopup-title": "Ustvari polje",
- "current": "trenutno",
- "custom-field-delete-pop": "Razveljavitve ni. To bo odstranilo to poljubno polje iz vseh kartic in izbrisalo njegovo zgodovino.",
- "custom-field-checkbox": "Potrditveno polje",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Spustni seznam",
- "custom-field-dropdown-none": "(nobeno)",
- "custom-field-dropdown-options": "Možnosti seznama",
- "custom-field-dropdown-options-placeholder": "Pritisnite enter da dodate več možnosti",
- "custom-field-dropdown-unknown": "(neznano)",
- "custom-field-number": "Število",
- "custom-field-text": "Besedilo",
- "custom-fields": "Poljubna polja",
- "date": "Datum",
- "decline": "Zavrni",
- "default-avatar": "Privzeti avatar",
- "delete": "Briši",
- "deleteCustomFieldPopup-title": "Briši poljubno polje?",
- "deleteLabelPopup-title": "Briši oznako?",
- "description": "Opis",
- "disambiguateMultiLabelPopup-title": "Razdvoji Dejanje Oznake",
- "disambiguateMultiMemberPopup-title": "Razdvoji dejanje člana",
- "discard": "Razveljavi",
- "done": "Končano",
- "download": "Prenos",
- "edit": "Uredi",
- "edit-avatar": "Spremeni avatar",
- "edit-profile": "Uredi profil",
- "edit-wip-limit": "Uredi omejitev št. kartic",
- "soft-wip-limit": "Omehčaj omejitev št. kartic",
- "editCardStartDatePopup-title": "Spremeni začetni datum",
- "editCardDueDatePopup-title": "Spremeni datum zapadlosti",
- "editCustomFieldPopup-title": "Uredi polje",
- "editCardSpentTimePopup-title": "Spremeni porabljen čas",
- "editLabelPopup-title": "Spremeni oznako",
- "editNotificationPopup-title": "Uredi obvestilo",
- "editProfilePopup-title": "Uredi profil",
- "email": "E-pošta",
- "email-enrollAccount-subject": "Up. račun ustvarjen za vas na __siteName__",
- "email-enrollAccount-text": "Pozdravljeni __user__,\n\nZa začetek uporabe kliknite spodnjo povezavo.\n\n__url__\n\nHvala.",
- "email-fail": "Pošiljanje e-pošte ni uspelo",
- "email-fail-text": "Napaka pri poskusu pošiljanja e-pošte",
- "email-invalid": "Neveljavna e-pošta",
- "email-invite": "Povabi z uporabo e-pošte",
- "email-invite-subject": "__inviter__ vam je poslal povabilo",
- "email-invite-text": "Spoštovani __user__,\n\n__inviter__ vas vabi k sodelovanju na tabli \"__board__\".\n\nProsimo sledite spodnji povezavi:\n\n__url__\n\nHvala.",
- "email-resetPassword-subject": "Ponastavite geslo na __siteName__",
- "email-resetPassword-text": "Pozdravljeni __user__,\n\nZa ponastavitev gesla kliknite na spodnjo povezavo.\n\n__url__\n\nHvala.",
- "email-sent": "E-pošta poslana",
- "email-verifyEmail-subject": "Preverite svoje e-poštni naslov na __siteName__",
- "email-verifyEmail-text": "Pozdravljeni __user__,\n\nDa preverite e-poštni naslov za vaš uporabniški račun, kliknite na spodnjo povezavo.\n\n__url__\n\nHvala.",
- "enable-wip-limit": "Vklopi omejitev št. kartic",
- "error-board-doesNotExist": "Ta tabla ne obstaja",
- "error-board-notAdmin": "Nimate administrativnih pravic za tablo.",
- "error-board-notAMember": "Niste član table.",
- "error-json-malformed": "Vaše besedilo ni veljaven JSON",
- "error-json-schema": "Vaši JSON podatki ne vsebujejo pravilnih informacij v ustreznem formatu",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "Seznam ne obstaja",
- "error-user-doesNotExist": "Uporabnik ne obstaja",
- "error-user-notAllowSelf": "Ne morete povabiti sebe",
- "error-user-notCreated": "Ta uporabnik ni ustvarjen",
- "error-username-taken": "To up. ime že obstaja",
- "error-email-taken": "E-poštni naslov je že zaseden",
- "export-board": "Izvozi tablo",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Izvozi tablo",
- "sort": "Sortiraj",
- "sort-desc": "Klikni za sortiranje seznama",
- "list-sort-by": "Sortiraj po:",
- "list-label-modifiedAt": "Nazadnje dostopano",
- "list-label-title": "Ime seznama",
- "list-label-sort": "Ročno nastavljen vrstni red",
- "list-label-short-modifiedAt": "(N)",
- "list-label-short-title": "(I)",
- "list-label-short-sort": "(R)",
- "filter": "Filtriraj",
- "filter-cards": "Filtriraj kartice ali sezname",
- "list-filter-label": "Filtriraj seznam po imenu",
- "filter-clear": "Počisti filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Brez oznake",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Brez člana",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "Brez poljubnih polj",
- "filter-show-archive": "Prikaži arhivirane sezname",
- "filter-hide-empty": "Skrij prazne sezname",
- "filter-on": "Filter vklopljen",
- "filter-on-desc": "Filtrirane kartice na tej tabli. Kliknite tukaj za urejanje filtra.",
- "filter-to-selection": "Filtriraj izbrane",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Napredni filter",
- "advanced-filter-description": "Napredni filter omogoča pripravo niza, ki vsebuje naslednje operaterje: == != <= >= && || () Preslednica se uporablja kot ločilo med operatorji. Vsa polja po meri lahko filtrirate tako, da vtipkate njihova imena in vrednosti. Na primer: Polje1 == Vrednost1. Opomba: Če polja ali vrednosti vsebujejo presledke, jih morate postaviti v enojne narekovaje. Primer: 'Polje 1' == 'Vrednost 1'. Če želite preskočiti posamezne kontrolne znake (' \\/), lahko uporabite \\. Na primer: Polje1 == I\\'m. Prav tako lahko kombinirate več pogojev. Na primer: F1 == V1 || F1 == V2. Običajno se vsi operaterji interpretirajo od leve proti desni. Vrstni red lahko spremenite tako, da postavite oklepaje. Na primer: F1 == V1 && ( F2 == V2 || F2 == V3 ). Prav tako lahko po besedilu iščete z uporabo pravil regex: F1 == /Tes.*/i",
- "fullname": "Polno Ime",
- "header-logo-title": "Pojdi nazaj na stran s tablami.",
- "hide-system-messages": "Skrij sistemska sporočila",
- "headerBarCreateBoardPopup-title": "Ustvari tablo",
- "home": "Domov",
- "import": "Uvozi",
- "impersonate-user": "Impersonate user",
- "link": "Poveži",
- "import-board": "uvozi tablo",
- "import-board-c": "Uvozi tablo",
- "import-board-title-trello": "Uvozi tablo iz orodja Trello",
- "import-board-title-wekan": "Uvozi tablo iz prejšnjega izvoza",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Iz orodja Trello",
- "from-wekan": "Od prejšnjega izvoza",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "V vaši Trello tabli pojdite na 'Meni', 'Več', 'Natisni in Izvozi', 'Izvozi JSON', in kopirajte prikazano besedilo.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "V vaši tabli pojdite na 'Meni', 'Izvozi tablo' in kopirajte besedilo iz prenesene datoteke.",
- "import-board-instruction-about-errors": "Pri napakah med uvozom table v nekaterih primerih uvažanje še deluje, uvožena tabla pa je na strani Vse Table.",
- "import-json-placeholder": "Tukaj prilepite veljavne JSON podatke",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapiraj člane",
- "import-members-map": "Vaša uvožena tabla vsebuje nekaj članov. Prosimo mapirajte člane, ki jih želite uvoziti, z vašimi uporabniki.",
- "import-show-user-mapping": "Preglejte povezane člane",
- "import-user-select": "Izberite obstoječega uporabnika, ki ga želite uporabiti kot tega člana.",
- "importMapMembersAddPopup-title": "Izberite člana",
- "info": "Različica",
- "initials": "Inicialke",
- "invalid-date": "Neveljaven datum",
- "invalid-time": "Neveljaven čas",
- "invalid-user": "Neveljaven uporabnik",
- "joined": "se je pridružil",
- "just-invited": "Povabljeni ste k tej tabli",
- "keyboard-shortcuts": "Bližnjice",
- "label-create": "Ustvari Oznako",
- "label-default": "%s oznaka (privzeto)",
- "label-delete-pop": "Razveljavitve ni. To bo odstranilo oznako iz vseh kartic in izbrisalo njeno zgodovino.",
- "labels": "Oznake",
- "language": "Jezik",
- "last-admin-desc": "Ne morete zamenjati vlog, ker mora obstajati vsaj en admin.",
- "leave-board": "Zapusti tablo",
- "leave-board-pop": "Ste prepričani, da želite zapustiti tablo __boardTitle__? Odstranjeni boste iz vseh kartic na tej tabli.",
- "leaveBoardPopup-title": "Zapusti tablo ?",
- "link-card": "Poveži s kartico",
- "list-archive-cards": "Arhiviraj vse kartice v seznamu",
- "list-archive-cards-pop": "To bo odstranilo vse kartice tega seznama. Za ogled in vrnitev kartic iz arhiva na tablo, kliknite \"Meni\" > \"arhiv\".",
- "list-move-cards": "Premakni vse kartice na seznamu",
- "list-select-cards": "Izberi vse kartice na seznamu",
- "set-color-list": "Nastavi barvo",
- "listActionPopup-title": "Dejanja seznama",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Dejanja plavalnih stez",
- "swimlaneAddPopup-title": "Dodaj plavalno stezo spodaj",
- "listImportCardPopup-title": "Uvozi Trello kartico",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Več",
- "link-list": "Poveži s seznamom",
- "list-delete-pop": "Vsa dejanja bodo odstranjena iz vira dejavnosti in seznama ne boste mogli obnoviti. Razveljavitve ni.",
- "list-delete-suggest-archive": "Lahko premaknete seznam v arhiv, da ga odstranite iz table in ohranite dejavnosti.",
- "lists": "Seznami",
- "swimlanes": "Plavalne steze",
- "log-out": "Odjava",
- "log-in": "Prijava",
- "loginPopup-title": "Prijava",
- "memberMenuPopup-title": "Nastavitve članov",
- "members": "Člani",
- "menu": "Meni",
- "move-selection": "Premakni izbiro",
- "moveCardPopup-title": "Premakni kartico",
- "moveCardToBottom-title": "Premakni na dno",
- "moveCardToTop-title": "Premakni na vrh",
- "moveSelectionPopup-title": "Premakni izbiro",
- "multi-selection": "Multi-Izbira",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Izbira je omogočena",
- "muted": "Utišano",
- "muted-info": "O spremembah na tej tabli ne boste prejemali obvestil.",
- "my-boards": "Moje Table",
- "name": "Ime",
- "no-archived-cards": "Ni kartic v arhivu",
- "no-archived-lists": "Ni seznamov v arhivu",
- "no-archived-swimlanes": "Ni plavalnih stez v arhivu",
- "no-results": "Ni zadetkov",
- "normal": "Normalno",
- "normal-desc": "Lahko gleda in ureja kartice. Ne more spreminjati nastavitev.",
- "not-accepted-yet": "Povabilo še ni sprejeto.",
- "notify-participate": "Prejemajte posodobitve kartic, na katerih sodelujete kot ustvarjalec ali član",
- "notify-watch": "Prejemajte posodobitve opazovanih tabel, seznamov ali kartic",
- "optional": "opcijsko",
- "or": "ali",
- "page-maybe-private": "Ta stran je morda privatna. Verjetno si jo lahko ogledate poprijavi.",
- "page-not-found": "Stran ne obstaja.",
- "password": "Geslo",
- "paste-or-dragdrop": "prilepi ali povleci & spusti datoteko slike (samo slika)",
- "participating": "Sodelovanje",
- "preview": "Predogled",
- "previewAttachedImagePopup-title": "Predogled",
- "previewClipboardImagePopup-title": "Predogled",
- "private": "Zasebno",
- "private-desc": "Ta tabla je zasebna. Vsebino lahko vidijo ali urejajo samo dodani uporabniki.",
- "profile": "Profil",
- "public": "Javno",
- "public-desc": "Ta tabla je javna. Vidna je vsakomur s povezavo do table in bo prikazana v zadetkih iskalnikov kot Google. Urejajo jo lahko samo člani table.",
- "quick-access-description": "Če tablo označite z zvezdico, bo tukaj dodana bližnjica.",
- "remove-cover": "Odstrani ovitek",
- "remove-from-board": "Odstrani iz table",
- "remove-label": "Odstrani oznako",
- "listDeletePopup-title": "Odstrani seznam?",
- "remove-member": "Odstrani člana",
- "remove-member-from-card": "Odstrani iz kartice",
- "remove-member-pop": "Odstrani __name__ (__username__) iz __boardTitle__? Član bo odstranjen iz vseh kartic te table in bo prejel obvestilo.",
- "removeMemberPopup-title": "Odstrani člana?",
- "rename": "Preimenuj",
- "rename-board": "Preimenuj tablo",
- "restore": "Obnovi",
- "save": "Shrani",
- "search": "Išči",
- "rules": "Pravila",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Izberi barvo",
- "select-board": "Select Board",
- "set-wip-limit-value": "Omeji maksimalno število opravil v seznamu",
- "setWipLimitPopup-title": "Omeji število kartic",
- "shortcut-assign-self": "Dodeli sebe k trenutni kartici",
- "shortcut-autocomplete-emoji": "Samodokončaj emoji",
- "shortcut-autocomplete-members": "Samodokončaj člane",
- "shortcut-clear-filters": "Počisti vse filtre",
- "shortcut-close-dialog": "Zapri dialog",
- "shortcut-filter-my-cards": "Filtriraj moje kartice",
- "shortcut-show-shortcuts": "Prikaži seznam bližnjic",
- "shortcut-toggle-filterbar": "Preklopi stransko vrstico za filter",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Preklopi stransko vrstico table",
- "show-cards-minimum-count": "Prikaži število kartic, če seznam vsebuje več kot",
- "sidebar-open": "Odpri stransko vrstico",
- "sidebar-close": "Zapri stransko vrstico",
- "signupPopup-title": "Ustvari up. račun",
- "star-board-title": "Označite tablo z zvezdico, da bo prikazana na vrhu v seznamu tabel.",
- "starred-boards": "Table z zvezdico",
- "starred-boards-description": "Table z zvezdico se prikažejo na vrhu vašega seznama tabel.",
- "subscribe": "Naročite se",
- "team": "Skupina",
- "this-board": "tablo",
- "this-card": "kartico",
- "spent-time-hours": "Porabljen čas (ure)",
- "overtime-hours": "Presežen čas (ure)",
- "overtime": "Presežen čas",
- "has-overtime-cards": "Ima kartice s preseženim časom",
- "has-spenttime-cards": "Ima kartice s porabljenim časom",
- "time": "Čas",
- "title": "Naslov",
- "tracking": "Sledenje",
- "tracking-info": "Obveščeni boste o vseh spremembah nad karticami, kjer ste lastnik ali član.",
- "type": "Tip",
- "unassign-member": "Odjavi člana",
- "unsaved-description": "Imate neshranjen opis.",
- "unwatch": "Prekliči opazovanje",
- "upload": "Naloži",
- "upload-avatar": "Naloži avatar",
- "uploaded-avatar": "Naložil avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Up. ime",
- "view-it": "Poglej",
- "warn-list-archived": "opozorilo: ta kartica je v seznamu v arhivu",
- "watch": "Opazuj",
- "watching": "Opazuje",
- "watching-info": "O spremembah na tej tabli boste obveščeni",
- "welcome-board": "Tabla Dobrodošli",
- "welcome-swimlane": "Mejnik 1",
- "welcome-list1": "Osnove",
- "welcome-list2": "Napredno",
- "card-templates-swimlane": "Predloge kartice",
- "list-templates-swimlane": "Predloge seznama",
- "board-templates-swimlane": "Predloge table",
- "what-to-do": "Kaj želite storiti?",
- "wipLimitErrorPopup-title": "Neveljaven limit št. kartic",
- "wipLimitErrorPopup-dialog-pt1": "Število opravil v seznamu je višje od limita št. kartic.",
- "wipLimitErrorPopup-dialog-pt2": "Prosimo premaknite nekaj opravil iz tega seznama ali nastavite višji limit št. kartic.",
- "admin-panel": "Skrbniška plošča",
- "settings": "Nastavitve",
- "people": "Ljudje",
- "registration": "Registracija",
- "disable-self-registration": "Onemogoči samo-registracijo",
- "invite": "Povabi",
- "invite-people": "Povabi ljudi",
- "to-boards": "K tabli(am)",
- "email-addresses": "E-poštni naslovi",
- "smtp-host-description": "Naslov vašega strežnika SMTP.",
- "smtp-port-description": "Vrata vašega strežnika SMTP za odhodno pošto.",
- "smtp-tls-description": "Omogoči šifriranje TLS za SMTP strežnik.",
- "smtp-host": "SMTP gostitelj",
- "smtp-port": "SMTP vrata",
- "smtp-username": "Up. ime",
- "smtp-password": "Geslo",
- "smtp-tls": "TLS podpora",
- "send-from": "Od",
- "send-smtp-test": "Pošljite testno e-pošto na svoj naslov",
- "invitation-code": "Koda Povabila",
- "email-invite-register-subject": "__inviter__ vam je poslal povabilo",
- "email-invite-register-text": "Dragi __user__,\n\n__inviter__ vas vabi na kanban tablo za sodelovanje.\n\nProsimo sledite spodnji povezavi:\n__url__\n\nVaša koda povabila je: __icode__\n\nHvala.",
- "email-smtp-test-subject": "SMTP testna e-pošta",
- "email-smtp-test-text": "Uspešno ste poslali e-pošto",
- "error-invitation-code-not-exist": "Koda povabila ne obstaja",
- "error-notAuthorized": "Nimate pravic za ogled te strani.",
- "webhook-title": "Ime spletnega vmesnika (webhook)",
- "webhook-token": "Žeton (opcijsko za avtentikacijo)",
- "outgoing-webhooks": "Izhodni spletni vmesniki (webhooks)",
- "bidirectional-webhooks": "Dvo-smerni spletni vmesniki (webhooks)",
- "outgoingWebhooksPopup-title": "Izhodni spletni vmesniki (webhooks)",
- "boardCardTitlePopup-title": "Filter po naslovu kartice",
- "disable-webhook": "Onemogoči ta spletni vmesnik (webhook)",
- "global-webhook": "Globalni spletni vmesnik (webhook)",
- "new-outgoing-webhook": "Nov izhodni spletni vmesnik (webhook)",
- "no-name": "(Neznano)",
- "Node_version": "Node različica",
- "Meteor_version": "Meteor različica",
- "MongoDB_version": "MongoDB različica",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog omogočen",
- "OS_Arch": "OS Arhitektura",
- "OS_Cpus": "OS število CPU",
- "OS_Freemem": "OS prost pomnilnik",
- "OS_Loadavg": "OS povp. obremenitev",
- "OS_Platform": "OS platforma",
- "OS_Release": "OS izdaja",
- "OS_Totalmem": "OS skupni pomnilnik",
- "OS_Type": "OS tip",
- "OS_Uptime": "OS čas delovanja",
- "days": "dnevi",
- "hours": "ure",
- "minutes": "minute",
- "seconds": "sekunde",
- "show-field-on-card": "Prikaži to polje na kartici",
- "automatically-field-on-card": "Samodejno dodaj polja na vse kartice",
- "showLabel-field-on-card": "Prikaži oznako polja na mini kartici",
- "yes": "Da",
- "no": "Ne",
- "accounts": "Up. računi",
- "accounts-allowEmailChange": "Dovoli spremembo e-poštnega naslova",
- "accounts-allowUserNameChange": "Dovoli spremembo up. imena",
- "createdAt": "Ustvarjen ob",
- "verified": "Preverjeno",
- "active": "Aktivno",
- "card-received": "Prejeto",
- "card-received-on": "Prejeto ob",
- "card-end": "Konec",
- "card-end-on": "Končano na",
- "editCardReceivedDatePopup-title": "Spremeni datum prejema",
- "editCardEndDatePopup-title": "Spremeni končni datum",
- "setCardColorPopup-title": "Nastavi barvo",
- "setCardActionsColorPopup-title": "Izberi barvo",
- "setSwimlaneColorPopup-title": "Izberi barvo",
- "setListColorPopup-title": "Izberi barvo",
- "assigned-by": "Dodelil",
- "requested-by": "Zahteval",
- "board-delete-notice": "Brisanje je trajno. Izgubili boste vse sezname, kartice in akcije, povezane z desko.",
- "delete-board-confirm-popup": "Vsi seznami, kartice, oznake in dejavnosti bodo izbrisani in vsebine table ne boste mogli obnoviti. Razveljavitve ni.",
- "boardDeletePopup-title": "Izbriši tablo?",
- "delete-board": "Izbriši tablo",
- "default-subtasks-board": "Podopravila za tablo",
- "default": "Privzeto",
- "queue": "Čakalna vrsta",
- "subtask-settings": "Nastavitve podopravil",
- "card-settings": "Nastavitve kartice",
- "boardSubtaskSettingsPopup-title": "Nastavitve podopravil table",
- "boardCardSettingsPopup-title": "Nastavitve kartice",
- "deposit-subtasks-board": "Deponiraj podopravila na tablo:",
- "deposit-subtasks-list": "Ciljni seznam za deponirana podopravila:",
- "show-parent-in-minicard": "Pokaži starša na mini-kartici:",
- "prefix-with-full-path": "Predpona s celotno potjo",
- "prefix-with-parent": "Predpona s staršem",
- "subtext-with-full-path": "Podbesedilo s celotno potjo",
- "subtext-with-parent": "Podbesedilo s staršem",
- "change-card-parent": "Zamenjaj starša kartice",
- "parent-card": "Starševska kartica",
- "source-board": "Izvorna tabla",
- "no-parent": "Ne prikaži starša",
- "activity-added-label": "dodal oznako '%s' do %s",
- "activity-removed-label": "odstranil oznako '%s' od %s",
- "activity-delete-attach": "izbrisal priponko od %s",
- "activity-added-label-card": "dodal oznako '%s'",
- "activity-removed-label-card": "izbrisal oznako '%s'",
- "activity-delete-attach-card": "izbrisal priponko",
- "activity-set-customfield": "nastavi polje po meri '%s' do '%s' v %s",
- "activity-unset-customfield": "zbriši polje po meri '%s' v %s",
- "r-rule": "Pravilo",
- "r-add-trigger": "Dodaj prožilec",
- "r-add-action": "Dodaj akcijo",
- "r-board-rules": "Pravila table",
- "r-add-rule": "Dodaj pravilo",
- "r-view-rule": "Poglej pravilo",
- "r-delete-rule": "Izbriši pravilo",
- "r-new-rule-name": "Ime novega pravila",
- "r-no-rules": "Ni pravil",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Ko je kartica",
- "r-is": " ",
- "r-is-moved": "premaknjena",
- "r-added-to": "Added to",
- "r-removed-from": "izbrisan iz",
- "r-the-board": "tabla",
- "r-list": "seznam",
- "set-filter": "Nastavi filter",
- "r-moved-to": "premaknjena v",
- "r-moved-from": "premaknjena iz",
- "r-archived": "premaknjena v arhiv",
- "r-unarchived": "obnovljena iz arhiva",
- "r-a-card": "kartico",
- "r-when-a-label-is": "Ko je oznaka",
- "r-when-the-label": "Ko je oznaka",
- "r-list-name": "ime sezn.",
- "r-when-a-member": "Ko je član",
- "r-when-the-member": "Ko je član",
- "r-name": "ime",
- "r-when-a-attach": "Ko je priponka",
- "r-when-a-checklist": "Ko je kontrolni seznam",
- "r-when-the-checklist": "Ko kontrolni seznam",
- "r-completed": "zaključen",
- "r-made-incomplete": "nastavljen kot nedokončan",
- "r-when-a-item": "Ko je kontrolni seznam",
- "r-when-the-item": "Ko je element kontrolnega seznama",
- "r-checked": "označen",
- "r-unchecked": "odznačen",
- "r-move-card-to": "Premakni kartico na",
- "r-top-of": "Vrh",
- "r-bottom-of": "Dno",
- "r-its-list": "pripadajočega seznama",
- "r-archive": "premaknjena v arhiv",
- "r-unarchive": "Obnovi iz arhiva",
- "r-card": "kartico",
- "r-add": "Dodaj",
- "r-remove": "Odstrani",
- "r-label": "oznaka",
- "r-member": "član",
- "r-remove-all": "Izbriši vse člane iz kartice",
- "r-set-color": "Nastavi barvo na",
- "r-checklist": "kontrolni seznam",
- "r-check-all": "Označi vse",
- "r-uncheck-all": "Odznači vse",
- "r-items-check": "postavke kontrolnega lista",
- "r-check": "Označi",
- "r-uncheck": "Odznači",
- "r-item": "postavka",
- "r-of-checklist": "kontrolnega seznama",
- "r-send-email": "Pošlji e-pošto",
- "r-to": "naslovnik",
- "r-of": "of",
- "r-subject": "zadeva",
- "r-rule-details": "Podrobnosti pravila",
- "r-d-move-to-top-gen": "Premakni kartico na vrh pripadajočega sezama",
- "r-d-move-to-top-spec": "Premakni kartico na vrh seznama",
- "r-d-move-to-bottom-gen": "Premakni kartico na dno pripadajočega seznama",
- "r-d-move-to-bottom-spec": "Premakni kartico na dno seznama",
- "r-d-send-email": "Pošlji e-pošto",
- "r-d-send-email-to": "na",
- "r-d-send-email-subject": "zadeva",
- "r-d-send-email-message": "vsebina",
- "r-d-archive": "Premakni kartico v arhiv",
- "r-d-unarchive": "Obnovi kartico iz arhiva",
- "r-d-add-label": "Dodaj oznako",
- "r-d-remove-label": "Izbriši oznako",
- "r-create-card": "Ustvari novo kartico",
- "r-in-list": "v seznamu",
- "r-in-swimlane": "v plavalni stezi",
- "r-d-add-member": "Dodaj člana",
- "r-d-remove-member": "Odstrani člana",
- "r-d-remove-all-member": "Odstrani vse člane",
- "r-d-check-all": "Označi vse elemente seznama",
- "r-d-uncheck-all": "Odznači vse elemente seznama",
- "r-d-check-one": "Označi element",
- "r-d-uncheck-one": "Odznači element",
- "r-d-check-of-list": "kontrolnega seznama",
- "r-d-add-checklist": "Dodaj kontrolni list",
- "r-d-remove-checklist": "Odstrani kotrolni list",
- "r-by": "od",
- "r-add-checklist": "Dodaj kontrolni list",
- "r-with-items": "s postavkami",
- "r-items-list": "el1,el2,el3",
- "r-add-swimlane": "Dodaj plavalno stezo",
- "r-swimlane-name": "ime pl. steze",
- "r-board-note": "Opomba: polje pustite prazno, da ustreza vsaki možni vrednosti.",
- "r-checklist-note": "Opomba: elementi kontrolnega seznama morajo biti zapisani kot vrednosti, ločene z vejicami.",
- "r-when-a-card-is-moved": "Ko je kartica premaknjena v drug seznam",
- "r-set": "Nastavi",
- "r-update": "Posodobi",
- "r-datefield": "polje z datumom",
- "r-df-start-at": "začetek",
- "r-df-due-at": "rok",
- "r-df-end-at": "konec",
- "r-df-received-at": "prejeto",
- "r-to-current-datetime": "v trenutni datum/čas",
- "r-remove-value-from": "Izbriši vrednost iz",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Metoda avtentikacije",
- "authentication-type": "Način avtentikacije",
- "custom-product-name": "Ime izdelka po meri",
- "layout": "Postavitev",
- "hide-logo": "Skrij logo",
- "add-custom-html-after-body-start": "Dodaj HTML po meri po začetku",
- "add-custom-html-before-body-end": "Dodaj HMTL po meri po koncu",
- "error-undefined": "Prišlo je do napake",
- "error-ldap-login": "Prišlo je do napake ob prijavi",
- "display-authentication-method": "Prikaži metodo avtentikacije",
- "default-authentication-method": "Privzeta metoda avtentikacije",
- "duplicate-board": "Dupliciraj tablo",
- "people-number": "Število ljudi je:",
- "swimlaneDeletePopup-title": "Zbriši plavalno stezo?",
- "swimlane-delete-pop": "Vsa dejanja bodo odstranjena iz seznama dejavnosti. Plavalne steze ne boste mogli obnoviti. Razveljavitve ni.",
- "restore-all": "Obnovi vse",
- "delete-all": "Izbriši vse",
- "loading": "Nalagam, prosimo počakajte",
- "previous_as": "zadnji čas je bil",
- "act-a-dueAt": "spremenil rok zapadlosti na \nKdaj: __timeValue__\nKje: __card__\n prejšnji rok zapadlosti je bil __timeOldValue__",
- "act-a-endAt": "spremenil čas dokončanja na __timeValue__ iz (__timeOldValue__)",
- "act-a-startAt": "spremenil čas pričetka na __timeValue__ iz (__timeOldValue__)",
- "act-a-receivedAt": "spremenil čas prejema na __timeValue__ iz (__timeOldValue__)",
- "a-dueAt": "spremenil rok v",
- "a-endAt": "spremenil končni čas v",
- "a-startAt": "spremenil začetni čas v",
- "a-receivedAt": "spremenil čas prejetja v",
- "almostdue": "trenutni rok %s se približuje",
- "pastdue": "trenutni rok %s je potekel",
- "duenow": "trenutni rok %s je danes",
- "act-newDue": "__list__/__card__ ima 1. opomnik roka zapadlosti [__board__]",
- "act-withDue": "__list__/__card__ opomniki roka zapadlosti [__board__]",
- "act-almostdue": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ se bliža",
- "act-pastdue": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ je potekel",
- "act-duenow": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ je sedaj",
- "act-atUserComment": "Omenjeni ste bili v [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Ali ste prepričani, da želite izbrisati ta račun? Razveljavitve ni.",
- "accounts-allowUserDelete": "Dovoli uporabnikom, da sami izbrišejo svoj račun",
- "hide-minicard-label-text": "Skrij besedilo oznak na karticah",
- "show-desktop-drag-handles": "Pokaži ročke za povleko na namizju",
- "assignee": "Dodeljen član",
- "cardAssigneesPopup-title": "Dodeljen član",
- "addmore-detail": "Dodaj podrobnejši opis",
- "show-on-card": "Prikaži na kartici",
- "new": "Novo",
- "editUserPopup-title": "Uredi uporabnika",
- "newUserPopup-title": "Nov uporabnik",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Sprejmi",
+ "act-activity-notify": "Obvestilo o dejavnosti",
+ "act-addAttachment": "dodal priponko __attachment__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-deleteAttachment": "odstranil priponko __attachment__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addSubtask": "dodal podopravilo __subtask__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addLabel": "Dodal oznako __label__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addedLabel": "Dodal oznako __label__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-removeLabel": "Odstranil oznako __label__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-removedLabel": "Odstranil oznako __label__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addChecklist": "dodal kontrolni seznam __checklist__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addChecklistItem": "dodal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-removeChecklist": "odstranil kontrolni seznam __checklist__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-removeChecklistItem": "odstranil postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-checkedItem": "obkljukal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-uncheckedItem": "odkljukal postavko __checklistItem__ kontrolnega seznama __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-completeChecklist": "dokončal kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-uncompleteChecklist": "nedokončan kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-addComment": "komentiral na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-editComment": "uredil komentar na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-deleteComment": "izbrisal komentar na kartici __card__: __comment__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-createBoard": "ustvaril tablo __board__",
+ "act-createSwimlane": "ustvaril plavalno stezo __swimlane__ na tabli __board__",
+ "act-createCard": "ustvaril kartico __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-createCustomField": "ustvaril poljubno polje __customField__ na tabli __board__",
+ "act-deleteCustomField": "izbrisal poljubno polje __customField__ na tabli __board__",
+ "act-setCustomField": "uredil poljubno polje __customField__: __customFieldValue__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-createList": "dodal seznam __list__ na tablo __board__",
+ "act-addBoardMember": "dodal člana __member__ k tabli __board__",
+ "act-archivedBoard": "Tabla __board__ premaknjena v arhiv",
+ "act-archivedCard": "Kartica __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__ premaknjena v arhiv",
+ "act-archivedList": "Seznam __list__ na plavalni stezi __swimlane__ na tabli __board__ premaknjen v arhiv",
+ "act-archivedSwimlane": "Plavalna steza __swimlane__ na tabli __board__ premaknjena v arhiv",
+ "act-importBoard": "uvozil tablo __board__",
+ "act-importCard": "uvozil kartico __card__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-importList": "uvozil seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-joinMember": "dodal član __member__ h kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-moveCard": "premakil kartico __card__ na tabli __board__ iz seznama __oldList__ na plavalni stezi __oldSwimlane__ na seznam __list__ na plavalni stezi __swimlane__",
+ "act-moveCardToOtherBoard": "premaknil kartico __card__ iz seznama __oldList__ na plavalni stezi __oldSwimlane__ na tabli __oldBoard__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-removeBoardMember": "odstranil člana __member__ iz table __board__",
+ "act-restoredCard": "obnovil kartico __card__ na seznam __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-unjoinMember": "odstranil člana __member__ iz kartice __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Dejanja",
+ "activities": "Aktivnosti",
+ "activity": "Aktivnost",
+ "activity-added": "dodal %s v %s",
+ "activity-archived": "%s premaknjeno v arhiv",
+ "activity-attached": "pripel %s v %s",
+ "activity-created": "ustvaril %s",
+ "activity-customfield-created": "ustvaril poljubno polje%s",
+ "activity-excluded": "izključil %s iz %s",
+ "activity-imported": "uvozil %s v %s iz %s",
+ "activity-imported-board": "uvozil %s iz %s",
+ "activity-joined": "se je pridružil na %s",
+ "activity-moved": "premakil %s iz %s na %s",
+ "activity-on": "na %s",
+ "activity-removed": "odstranil %s iz %s",
+ "activity-sent": "poslano %s na %s",
+ "activity-unjoined": "se je odjavil iz %s",
+ "activity-subtask-added": "dodal podopravilo k %s",
+ "activity-checked-item": "obkljukal %s na kontrolnem seznamu %s od %s",
+ "activity-unchecked-item": "odkljukal %s na kontrolnem seznamu %s od %s",
+ "activity-checklist-added": "dodal kontrolni seznam na %s",
+ "activity-checklist-removed": "odstranil kontrolni seznam iz %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "nedokončal kontrolni seznam %s od %s",
+ "activity-checklist-item-added": "dodal postavko kontrolnega seznama na '%s' v %s",
+ "activity-checklist-item-removed": "odstranil postavko kontrolnega seznama iz '%s' v %s",
+ "add": "Dodaj",
+ "activity-checked-item-card": "obkljukal %s na kontrolnem seznamu %s",
+ "activity-unchecked-item-card": "odkljukal %s na kontrolnem seznamu %s",
+ "activity-checklist-completed-card": "dokončal kontrolni seznam __checklist__ na kartici __card__ na seznamu __list__ na plavalni stezi __swimlane__ na tabli __board__",
+ "activity-checklist-uncompleted-card": "nedokončal kontrolni seznam %s",
+ "activity-editComment": "uredil komentar %s",
+ "activity-deleteComment": "izbrisal komentar %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Dodaj priponko",
+ "add-board": "Dodaj tablo",
+ "add-card": "Dodaj kartico",
+ "add-swimlane": "Dodaj plavalno stezo",
+ "add-subtask": "Dodaj podopravilo",
+ "add-checklist": "Dodaj kontrolni seznam",
+ "add-checklist-item": "Dodaj postavko na kontrolni seznam",
+ "add-cover": "Dodaj ovitek",
+ "add-label": "Dodaj oznako",
+ "add-list": "Dodaj seznam",
+ "add-members": "Dodaj člane",
+ "added": "Dodano",
+ "addMemberPopup-title": "Člani",
+ "admin": "Administrator",
+ "admin-desc": "Lahko gleda in ureja kartice, odstrani člane ter spreminja nastavitve table.",
+ "admin-announcement": "Najava",
+ "admin-announcement-active": "Aktivna vse-sistemska najava",
+ "admin-announcement-title": "Najava od administratorja",
+ "all-boards": "Vse table",
+ "and-n-other-card": "In __count__ druga kartica",
+ "and-n-other-card_plural": "In __count__ drugih kartic",
+ "apply": "Uporabi",
+ "app-is-offline": "Nalaganje, prosimo počakajte. Osveževanje strani bo povzročilo izgubo podatkov. Če nalaganje ne deluje, preverite, ali se strežnik ni ustavil.",
+ "archive": "Premakni v arhiv",
+ "archive-all": "Premakni vse v arhiv",
+ "archive-board": "Arhiviraj tablo",
+ "archive-card": "Arhiviraj kartico",
+ "archive-list": "Arhiviraj seznam",
+ "archive-swimlane": "Arhiviraj plavalno stezo",
+ "archive-selection": "Arhiviraj označeno",
+ "archiveBoardPopup-title": "Arhiviraj tablo?",
+ "archived-items": "Arhiv",
+ "archived-boards": "Table v arhivu",
+ "restore-board": "Obnovi tablo",
+ "no-archived-boards": "Nobene table ni v arhivu.",
+ "archives": "Arhiv",
+ "template": "Predloga",
+ "templates": "Predloge",
+ "assign-member": "Dodeli člana",
+ "attached": "pripeto",
+ "attachment": "Priponka",
+ "attachment-delete-pop": "Brisanje priponke je trajno. Ne obstaja razveljavitev.",
+ "attachmentDeletePopup-title": "Briši priponko?",
+ "attachments": "Priponke",
+ "auto-watch": "Samodejno spremljaj ustvarjene table",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Nazaj",
+ "board-change-color": "Spremeni barvo",
+ "board-nb-stars": "%s zvezdic",
+ "board-not-found": "Tabla ni najdena",
+ "board-private-info": "Ta tabla bo privatna.",
+ "board-public-info": "Ta tabla bo javna.",
+ "boardChangeColorPopup-title": "Spremeni ozadje table",
+ "boardChangeTitlePopup-title": "Preimenuj tablo",
+ "boardChangeVisibilityPopup-title": "Spremeni vidnost",
+ "boardChangeWatchPopup-title": "Spremeni opazovanje",
+ "boardMenuPopup-title": "Nastavitve table",
+ "boardChangeViewPopup-title": "Pogled table",
+ "boards": "Table",
+ "board-view": "Pogled table",
+ "board-view-cal": "Koledar",
+ "board-view-swimlanes": "Plavalne steze",
+ "board-view-collapse": "Skrči",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Seznami",
+ "bucket-example": "Kot na primer \"Življenjski seznam\"",
+ "cancel": "Prekliči",
+ "card-archived": "Kartica je premaknjena v arhiv.",
+ "board-archived": "Tabla je premaknjena v arhiv.",
+ "card-comments-title": "Ta kartica ima %s komentar.",
+ "card-delete-notice": "Brisanje je trajno. Izgubili boste vsa dejanja, povezana s kartico.",
+ "card-delete-pop": "Vsa dejanja bodo odstranjena iz zgodovine dejavnosti. Kartice ne boste mogli znova odpreti. Razveljavitve ni.",
+ "card-delete-suggest-archive": "Kartico lahko premaknete v arhiv, da jo odstranite s table in ohranite dejavnost.",
+ "card-due": "Rok",
+ "card-due-on": "Rok",
+ "card-spent": "Porabljen čas",
+ "card-edit-attachments": "Uredi priponke",
+ "card-edit-custom-fields": "Uredi poljubna polja",
+ "card-edit-labels": "Uredi oznake",
+ "card-edit-members": "Uredi člane",
+ "card-labels-title": "Spremeni oznake za kartico.",
+ "card-members-title": "Dodaj ali odstrani člane table iz kartice.",
+ "card-start": "Začetek",
+ "card-start-on": "Začne ob",
+ "cardAttachmentsPopup-title": "Pripni od",
+ "cardCustomField-datePopup-title": "Spremeni datum",
+ "cardCustomFieldsPopup-title": "Uredi poljubna polja",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Briši kartico?",
+ "cardDetailsActionsPopup-title": "Dejanja kartice",
+ "cardLabelsPopup-title": "Oznake",
+ "cardMembersPopup-title": "Člani",
+ "cardMorePopup-title": "Več",
+ "cardTemplatePopup-title": "Ustvari predlogo",
+ "cards": "Kartice",
+ "cards-count": "Kartic",
+ "casSignIn": "Vpiši se s CAS",
+ "cardType-card": "Kartica",
+ "cardType-linkedCard": "Povezana kartica",
+ "cardType-linkedBoard": "Povezana tabla",
+ "change": "Spremeni",
+ "change-avatar": "Spremeni avatar",
+ "change-password": "Spremeni geslo",
+ "change-permissions": "Spremeni dovoljenja",
+ "change-settings": "Spremeni nastavitve",
+ "changeAvatarPopup-title": "Spremeni avatar",
+ "changeLanguagePopup-title": "Spremeni jezik",
+ "changePasswordPopup-title": "Spremeni geslo",
+ "changePermissionsPopup-title": "Spremeni dovoljenja",
+ "changeSettingsPopup-title": "Spremeni nastavitve",
+ "subtasks": "Podopravila",
+ "checklists": "Kontrolni seznami",
+ "click-to-star": "Kliknite, da označite tablo z zvezdico.",
+ "click-to-unstar": "Kliknite, da odznačite tablo z zvezdico.",
+ "clipboard": "Odložišče ali povleci & spusti",
+ "close": "Zapri",
+ "close-board": "Zapri tablo",
+ "close-board-pop": "Tablo boste lahko obnovili s klikom na gumb »Arhiviraj« na vstopni strani.",
+ "color-black": "črna",
+ "color-blue": "modra",
+ "color-crimson": "temno rdeča",
+ "color-darkgreen": "temno zelena",
+ "color-gold": "zlata",
+ "color-gray": "siva",
+ "color-green": "zelena",
+ "color-indigo": "indigo",
+ "color-lime": "limeta",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rožnata",
+ "color-navy": "navy modra",
+ "color-orange": "oranžna",
+ "color-paleturquoise": "bledo turkizna",
+ "color-peachpuff": "breskvasta",
+ "color-pink": "roza",
+ "color-plum": "slivova",
+ "color-purple": "vijolična",
+ "color-red": "rdeča",
+ "color-saddlebrown": "rjava",
+ "color-silver": "srebrna",
+ "color-sky": "nebesna",
+ "color-slateblue": "skrilasto modra",
+ "color-white": "bela",
+ "color-yellow": "rumena",
+ "unset-color": "Onemogoči",
+ "comment": "Komentiraj",
+ "comment-placeholder": "Napiši komentar",
+ "comment-only": "Samo komentar",
+ "comment-only-desc": "Lahko komentirate samo na karticah.",
+ "no-comments": "Ni komentarjev",
+ "no-comments-desc": "Ne morete videti komentarjev in dejavnosti.",
+ "worker": "Delavec",
+ "worker-desc": "Lahko samo premikam kartice, se dodelim na kartico in komentiram.",
+ "computer": "Računalnik",
+ "confirm-subtask-delete-dialog": "Ste prepričani, da želite izbrisati podopravilo?",
+ "confirm-checklist-delete-dialog": "Ste prepričani, da želite izbrisati kontrolni seznam?",
+ "copy-card-link-to-clipboard": "Kopiraj povezavo kartice na odložišče",
+ "linkCardPopup-title": "Poveži kartico",
+ "searchElementPopup-title": "Išči",
+ "copyCardPopup-title": "Kopiraj kartico",
+ "copyChecklistToManyCardsPopup-title": "Kopiraj predlogo kontrolnega seznama na več kartic",
+ "copyChecklistToManyCardsPopup-instructions": "Naslovi ciljnih kartic in opisi v JSON formatu",
+ "copyChecklistToManyCardsPopup-format": "[ {\"naslov\": \"Naslov prve kartice\", \"opis\":\"Opis prve kartice\"}, {\"naslov\":\"Opis druge kartice\",\"opis\":\"Opis druge kartice\"},{\"naslov\":\"Naslov zadnje kartice\",\"opis\":\"Opis zadnje kartice\"} ]",
+ "create": "Ustvari",
+ "createBoardPopup-title": "Ustvari tablo",
+ "chooseBoardSourcePopup-title": "Uvozi tablo",
+ "createLabelPopup-title": "Ustvari oznako",
+ "createCustomField": "Ustvari polje",
+ "createCustomFieldPopup-title": "Ustvari polje",
+ "current": "trenutno",
+ "custom-field-delete-pop": "Razveljavitve ni. To bo odstranilo to poljubno polje iz vseh kartic in izbrisalo njegovo zgodovino.",
+ "custom-field-checkbox": "Potrditveno polje",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Spustni seznam",
+ "custom-field-dropdown-none": "(nobeno)",
+ "custom-field-dropdown-options": "Možnosti seznama",
+ "custom-field-dropdown-options-placeholder": "Pritisnite enter da dodate več možnosti",
+ "custom-field-dropdown-unknown": "(neznano)",
+ "custom-field-number": "Število",
+ "custom-field-text": "Besedilo",
+ "custom-fields": "Poljubna polja",
+ "date": "Datum",
+ "decline": "Zavrni",
+ "default-avatar": "Privzeti avatar",
+ "delete": "Briši",
+ "deleteCustomFieldPopup-title": "Briši poljubno polje?",
+ "deleteLabelPopup-title": "Briši oznako?",
+ "description": "Opis",
+ "disambiguateMultiLabelPopup-title": "Razdvoji Dejanje Oznake",
+ "disambiguateMultiMemberPopup-title": "Razdvoji dejanje člana",
+ "discard": "Razveljavi",
+ "done": "Končano",
+ "download": "Prenos",
+ "edit": "Uredi",
+ "edit-avatar": "Spremeni avatar",
+ "edit-profile": "Uredi profil",
+ "edit-wip-limit": "Uredi omejitev št. kartic",
+ "soft-wip-limit": "Omehčaj omejitev št. kartic",
+ "editCardStartDatePopup-title": "Spremeni začetni datum",
+ "editCardDueDatePopup-title": "Spremeni datum zapadlosti",
+ "editCustomFieldPopup-title": "Uredi polje",
+ "editCardSpentTimePopup-title": "Spremeni porabljen čas",
+ "editLabelPopup-title": "Spremeni oznako",
+ "editNotificationPopup-title": "Uredi obvestilo",
+ "editProfilePopup-title": "Uredi profil",
+ "email": "E-pošta",
+ "email-enrollAccount-subject": "Up. račun ustvarjen za vas na __siteName__",
+ "email-enrollAccount-text": "Pozdravljeni __user__,\n\nZa začetek uporabe kliknite spodnjo povezavo.\n\n__url__\n\nHvala.",
+ "email-fail": "Pošiljanje e-pošte ni uspelo",
+ "email-fail-text": "Napaka pri poskusu pošiljanja e-pošte",
+ "email-invalid": "Neveljavna e-pošta",
+ "email-invite": "Povabi z uporabo e-pošte",
+ "email-invite-subject": "__inviter__ vam je poslal povabilo",
+ "email-invite-text": "Spoštovani __user__,\n\n__inviter__ vas vabi k sodelovanju na tabli \"__board__\".\n\nProsimo sledite spodnji povezavi:\n\n__url__\n\nHvala.",
+ "email-resetPassword-subject": "Ponastavite geslo na __siteName__",
+ "email-resetPassword-text": "Pozdravljeni __user__,\n\nZa ponastavitev gesla kliknite na spodnjo povezavo.\n\n__url__\n\nHvala.",
+ "email-sent": "E-pošta poslana",
+ "email-verifyEmail-subject": "Preverite svoje e-poštni naslov na __siteName__",
+ "email-verifyEmail-text": "Pozdravljeni __user__,\n\nDa preverite e-poštni naslov za vaš uporabniški račun, kliknite na spodnjo povezavo.\n\n__url__\n\nHvala.",
+ "enable-wip-limit": "Vklopi omejitev št. kartic",
+ "error-board-doesNotExist": "Ta tabla ne obstaja",
+ "error-board-notAdmin": "Nimate administrativnih pravic za tablo.",
+ "error-board-notAMember": "Niste član table.",
+ "error-json-malformed": "Vaše besedilo ni veljaven JSON",
+ "error-json-schema": "Vaši JSON podatki ne vsebujejo pravilnih informacij v ustreznem formatu",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Seznam ne obstaja",
+ "error-user-doesNotExist": "Uporabnik ne obstaja",
+ "error-user-notAllowSelf": "Ne morete povabiti sebe",
+ "error-user-notCreated": "Ta uporabnik ni ustvarjen",
+ "error-username-taken": "To up. ime že obstaja",
+ "error-email-taken": "E-poštni naslov je že zaseden",
+ "export-board": "Izvozi tablo",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Izvozi tablo",
+ "sort": "Sortiraj",
+ "sort-desc": "Klikni za sortiranje seznama",
+ "list-sort-by": "Sortiraj po:",
+ "list-label-modifiedAt": "Nazadnje dostopano",
+ "list-label-title": "Ime seznama",
+ "list-label-sort": "Ročno nastavljen vrstni red",
+ "list-label-short-modifiedAt": "(N)",
+ "list-label-short-title": "(I)",
+ "list-label-short-sort": "(R)",
+ "filter": "Filtriraj",
+ "filter-cards": "Filtriraj kartice ali sezname",
+ "list-filter-label": "Filtriraj seznam po imenu",
+ "filter-clear": "Počisti filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Brez oznake",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Brez člana",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "Brez poljubnih polj",
+ "filter-show-archive": "Prikaži arhivirane sezname",
+ "filter-hide-empty": "Skrij prazne sezname",
+ "filter-on": "Filter vklopljen",
+ "filter-on-desc": "Filtrirane kartice na tej tabli. Kliknite tukaj za urejanje filtra.",
+ "filter-to-selection": "Filtriraj izbrane",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Napredni filter",
+ "advanced-filter-description": "Napredni filter omogoča pripravo niza, ki vsebuje naslednje operaterje: == != <= >= && || () Preslednica se uporablja kot ločilo med operatorji. Vsa polja po meri lahko filtrirate tako, da vtipkate njihova imena in vrednosti. Na primer: Polje1 == Vrednost1. Opomba: Če polja ali vrednosti vsebujejo presledke, jih morate postaviti v enojne narekovaje. Primer: 'Polje 1' == 'Vrednost 1'. Če želite preskočiti posamezne kontrolne znake (' \\/), lahko uporabite \\. Na primer: Polje1 == I\\'m. Prav tako lahko kombinirate več pogojev. Na primer: F1 == V1 || F1 == V2. Običajno se vsi operaterji interpretirajo od leve proti desni. Vrstni red lahko spremenite tako, da postavite oklepaje. Na primer: F1 == V1 && ( F2 == V2 || F2 == V3 ). Prav tako lahko po besedilu iščete z uporabo pravil regex: F1 == /Tes.*/i",
+ "fullname": "Polno Ime",
+ "header-logo-title": "Pojdi nazaj na stran s tablami.",
+ "hide-system-messages": "Skrij sistemska sporočila",
+ "headerBarCreateBoardPopup-title": "Ustvari tablo",
+ "home": "Domov",
+ "import": "Uvozi",
+ "impersonate-user": "Impersonate user",
+ "link": "Poveži",
+ "import-board": "uvozi tablo",
+ "import-board-c": "Uvozi tablo",
+ "import-board-title-trello": "Uvozi tablo iz orodja Trello",
+ "import-board-title-wekan": "Uvozi tablo iz prejšnjega izvoza",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Iz orodja Trello",
+ "from-wekan": "Od prejšnjega izvoza",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "V vaši Trello tabli pojdite na 'Meni', 'Več', 'Natisni in Izvozi', 'Izvozi JSON', in kopirajte prikazano besedilo.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "V vaši tabli pojdite na 'Meni', 'Izvozi tablo' in kopirajte besedilo iz prenesene datoteke.",
+ "import-board-instruction-about-errors": "Pri napakah med uvozom table v nekaterih primerih uvažanje še deluje, uvožena tabla pa je na strani Vse Table.",
+ "import-json-placeholder": "Tukaj prilepite veljavne JSON podatke",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapiraj člane",
+ "import-members-map": "Vaša uvožena tabla vsebuje nekaj članov. Prosimo mapirajte člane, ki jih želite uvoziti, z vašimi uporabniki.",
+ "import-show-user-mapping": "Preglejte povezane člane",
+ "import-user-select": "Izberite obstoječega uporabnika, ki ga želite uporabiti kot tega člana.",
+ "importMapMembersAddPopup-title": "Izberite člana",
+ "info": "Različica",
+ "initials": "Inicialke",
+ "invalid-date": "Neveljaven datum",
+ "invalid-time": "Neveljaven čas",
+ "invalid-user": "Neveljaven uporabnik",
+ "joined": "se je pridružil",
+ "just-invited": "Povabljeni ste k tej tabli",
+ "keyboard-shortcuts": "Bližnjice",
+ "label-create": "Ustvari Oznako",
+ "label-default": "%s oznaka (privzeto)",
+ "label-delete-pop": "Razveljavitve ni. To bo odstranilo oznako iz vseh kartic in izbrisalo njeno zgodovino.",
+ "labels": "Oznake",
+ "language": "Jezik",
+ "last-admin-desc": "Ne morete zamenjati vlog, ker mora obstajati vsaj en admin.",
+ "leave-board": "Zapusti tablo",
+ "leave-board-pop": "Ste prepričani, da želite zapustiti tablo __boardTitle__? Odstranjeni boste iz vseh kartic na tej tabli.",
+ "leaveBoardPopup-title": "Zapusti tablo ?",
+ "link-card": "Poveži s kartico",
+ "list-archive-cards": "Arhiviraj vse kartice v seznamu",
+ "list-archive-cards-pop": "To bo odstranilo vse kartice tega seznama. Za ogled in vrnitev kartic iz arhiva na tablo, kliknite \"Meni\" > \"arhiv\".",
+ "list-move-cards": "Premakni vse kartice na seznamu",
+ "list-select-cards": "Izberi vse kartice na seznamu",
+ "set-color-list": "Nastavi barvo",
+ "listActionPopup-title": "Dejanja seznama",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Dejanja plavalnih stez",
+ "swimlaneAddPopup-title": "Dodaj plavalno stezo spodaj",
+ "listImportCardPopup-title": "Uvozi Trello kartico",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Več",
+ "link-list": "Poveži s seznamom",
+ "list-delete-pop": "Vsa dejanja bodo odstranjena iz vira dejavnosti in seznama ne boste mogli obnoviti. Razveljavitve ni.",
+ "list-delete-suggest-archive": "Lahko premaknete seznam v arhiv, da ga odstranite iz table in ohranite dejavnosti.",
+ "lists": "Seznami",
+ "swimlanes": "Plavalne steze",
+ "log-out": "Odjava",
+ "log-in": "Prijava",
+ "loginPopup-title": "Prijava",
+ "memberMenuPopup-title": "Nastavitve članov",
+ "members": "Člani",
+ "menu": "Meni",
+ "move-selection": "Premakni izbiro",
+ "moveCardPopup-title": "Premakni kartico",
+ "moveCardToBottom-title": "Premakni na dno",
+ "moveCardToTop-title": "Premakni na vrh",
+ "moveSelectionPopup-title": "Premakni izbiro",
+ "multi-selection": "Multi-Izbira",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Izbira je omogočena",
+ "muted": "Utišano",
+ "muted-info": "O spremembah na tej tabli ne boste prejemali obvestil.",
+ "my-boards": "Moje Table",
+ "name": "Ime",
+ "no-archived-cards": "Ni kartic v arhivu",
+ "no-archived-lists": "Ni seznamov v arhivu",
+ "no-archived-swimlanes": "Ni plavalnih stez v arhivu",
+ "no-results": "Ni zadetkov",
+ "normal": "Normalno",
+ "normal-desc": "Lahko gleda in ureja kartice. Ne more spreminjati nastavitev.",
+ "not-accepted-yet": "Povabilo še ni sprejeto.",
+ "notify-participate": "Prejemajte posodobitve kartic, na katerih sodelujete kot ustvarjalec ali član",
+ "notify-watch": "Prejemajte posodobitve opazovanih tabel, seznamov ali kartic",
+ "optional": "opcijsko",
+ "or": "ali",
+ "page-maybe-private": "Ta stran je morda privatna. Verjetno si jo lahko ogledate poprijavi.",
+ "page-not-found": "Stran ne obstaja.",
+ "password": "Geslo",
+ "paste-or-dragdrop": "prilepi ali povleci & spusti datoteko slike (samo slika)",
+ "participating": "Sodelovanje",
+ "preview": "Predogled",
+ "previewAttachedImagePopup-title": "Predogled",
+ "previewClipboardImagePopup-title": "Predogled",
+ "private": "Zasebno",
+ "private-desc": "Ta tabla je zasebna. Vsebino lahko vidijo ali urejajo samo dodani uporabniki.",
+ "profile": "Profil",
+ "public": "Javno",
+ "public-desc": "Ta tabla je javna. Vidna je vsakomur s povezavo do table in bo prikazana v zadetkih iskalnikov kot Google. Urejajo jo lahko samo člani table.",
+ "quick-access-description": "Če tablo označite z zvezdico, bo tukaj dodana bližnjica.",
+ "remove-cover": "Odstrani ovitek",
+ "remove-from-board": "Odstrani iz table",
+ "remove-label": "Odstrani oznako",
+ "listDeletePopup-title": "Odstrani seznam?",
+ "remove-member": "Odstrani člana",
+ "remove-member-from-card": "Odstrani iz kartice",
+ "remove-member-pop": "Odstrani __name__ (__username__) iz __boardTitle__? Član bo odstranjen iz vseh kartic te table in bo prejel obvestilo.",
+ "removeMemberPopup-title": "Odstrani člana?",
+ "rename": "Preimenuj",
+ "rename-board": "Preimenuj tablo",
+ "restore": "Obnovi",
+ "save": "Shrani",
+ "search": "Išči",
+ "rules": "Pravila",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Izberi barvo",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Omeji maksimalno število opravil v seznamu",
+ "setWipLimitPopup-title": "Omeji število kartic",
+ "shortcut-assign-self": "Dodeli sebe k trenutni kartici",
+ "shortcut-autocomplete-emoji": "Samodokončaj emoji",
+ "shortcut-autocomplete-members": "Samodokončaj člane",
+ "shortcut-clear-filters": "Počisti vse filtre",
+ "shortcut-close-dialog": "Zapri dialog",
+ "shortcut-filter-my-cards": "Filtriraj moje kartice",
+ "shortcut-show-shortcuts": "Prikaži seznam bližnjic",
+ "shortcut-toggle-filterbar": "Preklopi stransko vrstico za filter",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Preklopi stransko vrstico table",
+ "show-cards-minimum-count": "Prikaži število kartic, če seznam vsebuje več kot",
+ "sidebar-open": "Odpri stransko vrstico",
+ "sidebar-close": "Zapri stransko vrstico",
+ "signupPopup-title": "Ustvari up. račun",
+ "star-board-title": "Označite tablo z zvezdico, da bo prikazana na vrhu v seznamu tabel.",
+ "starred-boards": "Table z zvezdico",
+ "starred-boards-description": "Table z zvezdico se prikažejo na vrhu vašega seznama tabel.",
+ "subscribe": "Naročite se",
+ "team": "Skupina",
+ "this-board": "tablo",
+ "this-card": "kartico",
+ "spent-time-hours": "Porabljen čas (ure)",
+ "overtime-hours": "Presežen čas (ure)",
+ "overtime": "Presežen čas",
+ "has-overtime-cards": "Ima kartice s preseženim časom",
+ "has-spenttime-cards": "Ima kartice s porabljenim časom",
+ "time": "Čas",
+ "title": "Naslov",
+ "tracking": "Sledenje",
+ "tracking-info": "Obveščeni boste o vseh spremembah nad karticami, kjer ste lastnik ali član.",
+ "type": "Tip",
+ "unassign-member": "Odjavi člana",
+ "unsaved-description": "Imate neshranjen opis.",
+ "unwatch": "Prekliči opazovanje",
+ "upload": "Naloži",
+ "upload-avatar": "Naloži avatar",
+ "uploaded-avatar": "Naložil avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Up. ime",
+ "view-it": "Poglej",
+ "warn-list-archived": "opozorilo: ta kartica je v seznamu v arhivu",
+ "watch": "Opazuj",
+ "watching": "Opazuje",
+ "watching-info": "O spremembah na tej tabli boste obveščeni",
+ "welcome-board": "Tabla Dobrodošli",
+ "welcome-swimlane": "Mejnik 1",
+ "welcome-list1": "Osnove",
+ "welcome-list2": "Napredno",
+ "card-templates-swimlane": "Predloge kartice",
+ "list-templates-swimlane": "Predloge seznama",
+ "board-templates-swimlane": "Predloge table",
+ "what-to-do": "Kaj želite storiti?",
+ "wipLimitErrorPopup-title": "Neveljaven limit št. kartic",
+ "wipLimitErrorPopup-dialog-pt1": "Število opravil v seznamu je višje od limita št. kartic.",
+ "wipLimitErrorPopup-dialog-pt2": "Prosimo premaknite nekaj opravil iz tega seznama ali nastavite višji limit št. kartic.",
+ "admin-panel": "Skrbniška plošča",
+ "settings": "Nastavitve",
+ "people": "Ljudje",
+ "registration": "Registracija",
+ "disable-self-registration": "Onemogoči samo-registracijo",
+ "invite": "Povabi",
+ "invite-people": "Povabi ljudi",
+ "to-boards": "K tabli(am)",
+ "email-addresses": "E-poštni naslovi",
+ "smtp-host-description": "Naslov vašega strežnika SMTP.",
+ "smtp-port-description": "Vrata vašega strežnika SMTP za odhodno pošto.",
+ "smtp-tls-description": "Omogoči šifriranje TLS za SMTP strežnik.",
+ "smtp-host": "SMTP gostitelj",
+ "smtp-port": "SMTP vrata",
+ "smtp-username": "Up. ime",
+ "smtp-password": "Geslo",
+ "smtp-tls": "TLS podpora",
+ "send-from": "Od",
+ "send-smtp-test": "Pošljite testno e-pošto na svoj naslov",
+ "invitation-code": "Koda Povabila",
+ "email-invite-register-subject": "__inviter__ vam je poslal povabilo",
+ "email-invite-register-text": "Dragi __user__,\n\n__inviter__ vas vabi na kanban tablo za sodelovanje.\n\nProsimo sledite spodnji povezavi:\n__url__\n\nVaša koda povabila je: __icode__\n\nHvala.",
+ "email-smtp-test-subject": "SMTP testna e-pošta",
+ "email-smtp-test-text": "Uspešno ste poslali e-pošto",
+ "error-invitation-code-not-exist": "Koda povabila ne obstaja",
+ "error-notAuthorized": "Nimate pravic za ogled te strani.",
+ "webhook-title": "Ime spletnega vmesnika (webhook)",
+ "webhook-token": "Žeton (opcijsko za avtentikacijo)",
+ "outgoing-webhooks": "Izhodni spletni vmesniki (webhooks)",
+ "bidirectional-webhooks": "Dvo-smerni spletni vmesniki (webhooks)",
+ "outgoingWebhooksPopup-title": "Izhodni spletni vmesniki (webhooks)",
+ "boardCardTitlePopup-title": "Filter po naslovu kartice",
+ "disable-webhook": "Onemogoči ta spletni vmesnik (webhook)",
+ "global-webhook": "Globalni spletni vmesnik (webhook)",
+ "new-outgoing-webhook": "Nov izhodni spletni vmesnik (webhook)",
+ "no-name": "(Neznano)",
+ "Node_version": "Node različica",
+ "Meteor_version": "Meteor različica",
+ "MongoDB_version": "MongoDB različica",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog omogočen",
+ "OS_Arch": "OS Arhitektura",
+ "OS_Cpus": "OS število CPU",
+ "OS_Freemem": "OS prost pomnilnik",
+ "OS_Loadavg": "OS povp. obremenitev",
+ "OS_Platform": "OS platforma",
+ "OS_Release": "OS izdaja",
+ "OS_Totalmem": "OS skupni pomnilnik",
+ "OS_Type": "OS tip",
+ "OS_Uptime": "OS čas delovanja",
+ "days": "dnevi",
+ "hours": "ure",
+ "minutes": "minute",
+ "seconds": "sekunde",
+ "show-field-on-card": "Prikaži to polje na kartici",
+ "automatically-field-on-card": "Samodejno dodaj polja na vse kartice",
+ "showLabel-field-on-card": "Prikaži oznako polja na mini kartici",
+ "yes": "Da",
+ "no": "Ne",
+ "accounts": "Up. računi",
+ "accounts-allowEmailChange": "Dovoli spremembo e-poštnega naslova",
+ "accounts-allowUserNameChange": "Dovoli spremembo up. imena",
+ "createdAt": "Ustvarjen ob",
+ "verified": "Preverjeno",
+ "active": "Aktivno",
+ "card-received": "Prejeto",
+ "card-received-on": "Prejeto ob",
+ "card-end": "Konec",
+ "card-end-on": "Končano na",
+ "editCardReceivedDatePopup-title": "Spremeni datum prejema",
+ "editCardEndDatePopup-title": "Spremeni končni datum",
+ "setCardColorPopup-title": "Nastavi barvo",
+ "setCardActionsColorPopup-title": "Izberi barvo",
+ "setSwimlaneColorPopup-title": "Izberi barvo",
+ "setListColorPopup-title": "Izberi barvo",
+ "assigned-by": "Dodelil",
+ "requested-by": "Zahteval",
+ "board-delete-notice": "Brisanje je trajno. Izgubili boste vse sezname, kartice in akcije, povezane z desko.",
+ "delete-board-confirm-popup": "Vsi seznami, kartice, oznake in dejavnosti bodo izbrisani in vsebine table ne boste mogli obnoviti. Razveljavitve ni.",
+ "boardDeletePopup-title": "Izbriši tablo?",
+ "delete-board": "Izbriši tablo",
+ "default-subtasks-board": "Podopravila za tablo",
+ "default": "Privzeto",
+ "queue": "Čakalna vrsta",
+ "subtask-settings": "Nastavitve podopravil",
+ "card-settings": "Nastavitve kartice",
+ "boardSubtaskSettingsPopup-title": "Nastavitve podopravil table",
+ "boardCardSettingsPopup-title": "Nastavitve kartice",
+ "deposit-subtasks-board": "Deponiraj podopravila na tablo:",
+ "deposit-subtasks-list": "Ciljni seznam za deponirana podopravila:",
+ "show-parent-in-minicard": "Pokaži starša na mini-kartici:",
+ "prefix-with-full-path": "Predpona s celotno potjo",
+ "prefix-with-parent": "Predpona s staršem",
+ "subtext-with-full-path": "Podbesedilo s celotno potjo",
+ "subtext-with-parent": "Podbesedilo s staršem",
+ "change-card-parent": "Zamenjaj starša kartice",
+ "parent-card": "Starševska kartica",
+ "source-board": "Izvorna tabla",
+ "no-parent": "Ne prikaži starša",
+ "activity-added-label": "dodal oznako '%s' do %s",
+ "activity-removed-label": "odstranil oznako '%s' od %s",
+ "activity-delete-attach": "izbrisal priponko od %s",
+ "activity-added-label-card": "dodal oznako '%s'",
+ "activity-removed-label-card": "izbrisal oznako '%s'",
+ "activity-delete-attach-card": "izbrisal priponko",
+ "activity-set-customfield": "nastavi polje po meri '%s' do '%s' v %s",
+ "activity-unset-customfield": "zbriši polje po meri '%s' v %s",
+ "r-rule": "Pravilo",
+ "r-add-trigger": "Dodaj prožilec",
+ "r-add-action": "Dodaj akcijo",
+ "r-board-rules": "Pravila table",
+ "r-add-rule": "Dodaj pravilo",
+ "r-view-rule": "Poglej pravilo",
+ "r-delete-rule": "Izbriši pravilo",
+ "r-new-rule-name": "Ime novega pravila",
+ "r-no-rules": "Ni pravil",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Ko je kartica",
+ "r-is": " ",
+ "r-is-moved": "premaknjena",
+ "r-added-to": "Added to",
+ "r-removed-from": "izbrisan iz",
+ "r-the-board": "tabla",
+ "r-list": "seznam",
+ "set-filter": "Nastavi filter",
+ "r-moved-to": "premaknjena v",
+ "r-moved-from": "premaknjena iz",
+ "r-archived": "premaknjena v arhiv",
+ "r-unarchived": "obnovljena iz arhiva",
+ "r-a-card": "kartico",
+ "r-when-a-label-is": "Ko je oznaka",
+ "r-when-the-label": "Ko je oznaka",
+ "r-list-name": "ime sezn.",
+ "r-when-a-member": "Ko je član",
+ "r-when-the-member": "Ko je član",
+ "r-name": "ime",
+ "r-when-a-attach": "Ko je priponka",
+ "r-when-a-checklist": "Ko je kontrolni seznam",
+ "r-when-the-checklist": "Ko kontrolni seznam",
+ "r-completed": "zaključen",
+ "r-made-incomplete": "nastavljen kot nedokončan",
+ "r-when-a-item": "Ko je kontrolni seznam",
+ "r-when-the-item": "Ko je element kontrolnega seznama",
+ "r-checked": "označen",
+ "r-unchecked": "odznačen",
+ "r-move-card-to": "Premakni kartico na",
+ "r-top-of": "Vrh",
+ "r-bottom-of": "Dno",
+ "r-its-list": "pripadajočega seznama",
+ "r-archive": "premaknjena v arhiv",
+ "r-unarchive": "Obnovi iz arhiva",
+ "r-card": "kartico",
+ "r-add": "Dodaj",
+ "r-remove": "Odstrani",
+ "r-label": "oznaka",
+ "r-member": "član",
+ "r-remove-all": "Izbriši vse člane iz kartice",
+ "r-set-color": "Nastavi barvo na",
+ "r-checklist": "kontrolni seznam",
+ "r-check-all": "Označi vse",
+ "r-uncheck-all": "Odznači vse",
+ "r-items-check": "postavke kontrolnega lista",
+ "r-check": "Označi",
+ "r-uncheck": "Odznači",
+ "r-item": "postavka",
+ "r-of-checklist": "kontrolnega seznama",
+ "r-send-email": "Pošlji e-pošto",
+ "r-to": "naslovnik",
+ "r-of": "of",
+ "r-subject": "zadeva",
+ "r-rule-details": "Podrobnosti pravila",
+ "r-d-move-to-top-gen": "Premakni kartico na vrh pripadajočega sezama",
+ "r-d-move-to-top-spec": "Premakni kartico na vrh seznama",
+ "r-d-move-to-bottom-gen": "Premakni kartico na dno pripadajočega seznama",
+ "r-d-move-to-bottom-spec": "Premakni kartico na dno seznama",
+ "r-d-send-email": "Pošlji e-pošto",
+ "r-d-send-email-to": "na",
+ "r-d-send-email-subject": "zadeva",
+ "r-d-send-email-message": "vsebina",
+ "r-d-archive": "Premakni kartico v arhiv",
+ "r-d-unarchive": "Obnovi kartico iz arhiva",
+ "r-d-add-label": "Dodaj oznako",
+ "r-d-remove-label": "Izbriši oznako",
+ "r-create-card": "Ustvari novo kartico",
+ "r-in-list": "v seznamu",
+ "r-in-swimlane": "v plavalni stezi",
+ "r-d-add-member": "Dodaj člana",
+ "r-d-remove-member": "Odstrani člana",
+ "r-d-remove-all-member": "Odstrani vse člane",
+ "r-d-check-all": "Označi vse elemente seznama",
+ "r-d-uncheck-all": "Odznači vse elemente seznama",
+ "r-d-check-one": "Označi element",
+ "r-d-uncheck-one": "Odznači element",
+ "r-d-check-of-list": "kontrolnega seznama",
+ "r-d-add-checklist": "Dodaj kontrolni list",
+ "r-d-remove-checklist": "Odstrani kotrolni list",
+ "r-by": "od",
+ "r-add-checklist": "Dodaj kontrolni list",
+ "r-with-items": "s postavkami",
+ "r-items-list": "el1,el2,el3",
+ "r-add-swimlane": "Dodaj plavalno stezo",
+ "r-swimlane-name": "ime pl. steze",
+ "r-board-note": "Opomba: polje pustite prazno, da ustreza vsaki možni vrednosti.",
+ "r-checklist-note": "Opomba: elementi kontrolnega seznama morajo biti zapisani kot vrednosti, ločene z vejicami.",
+ "r-when-a-card-is-moved": "Ko je kartica premaknjena v drug seznam",
+ "r-set": "Nastavi",
+ "r-update": "Posodobi",
+ "r-datefield": "polje z datumom",
+ "r-df-start-at": "začetek",
+ "r-df-due-at": "rok",
+ "r-df-end-at": "konec",
+ "r-df-received-at": "prejeto",
+ "r-to-current-datetime": "v trenutni datum/čas",
+ "r-remove-value-from": "Izbriši vrednost iz",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Metoda avtentikacije",
+ "authentication-type": "Način avtentikacije",
+ "custom-product-name": "Ime izdelka po meri",
+ "layout": "Postavitev",
+ "hide-logo": "Skrij logo",
+ "add-custom-html-after-body-start": "Dodaj HTML po meri po začetku",
+ "add-custom-html-before-body-end": "Dodaj HMTL po meri po koncu",
+ "error-undefined": "Prišlo je do napake",
+ "error-ldap-login": "Prišlo je do napake ob prijavi",
+ "display-authentication-method": "Prikaži metodo avtentikacije",
+ "default-authentication-method": "Privzeta metoda avtentikacije",
+ "duplicate-board": "Dupliciraj tablo",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Število ljudi je:",
+ "swimlaneDeletePopup-title": "Zbriši plavalno stezo?",
+ "swimlane-delete-pop": "Vsa dejanja bodo odstranjena iz seznama dejavnosti. Plavalne steze ne boste mogli obnoviti. Razveljavitve ni.",
+ "restore-all": "Obnovi vse",
+ "delete-all": "Izbriši vse",
+ "loading": "Nalagam, prosimo počakajte",
+ "previous_as": "zadnji čas je bil",
+ "act-a-dueAt": "spremenil rok zapadlosti na \nKdaj: __timeValue__\nKje: __card__\n prejšnji rok zapadlosti je bil __timeOldValue__",
+ "act-a-endAt": "spremenil čas dokončanja na __timeValue__ iz (__timeOldValue__)",
+ "act-a-startAt": "spremenil čas pričetka na __timeValue__ iz (__timeOldValue__)",
+ "act-a-receivedAt": "spremenil čas prejema na __timeValue__ iz (__timeOldValue__)",
+ "a-dueAt": "spremenil rok v",
+ "a-endAt": "spremenil končni čas v",
+ "a-startAt": "spremenil začetni čas v",
+ "a-receivedAt": "spremenil čas prejetja v",
+ "almostdue": "trenutni rok %s se približuje",
+ "pastdue": "trenutni rok %s je potekel",
+ "duenow": "trenutni rok %s je danes",
+ "act-newDue": "__list__/__card__ ima 1. opomnik roka zapadlosti [__board__]",
+ "act-withDue": "__list__/__card__ opomniki roka zapadlosti [__board__]",
+ "act-almostdue": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ se bliža",
+ "act-pastdue": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ je potekel",
+ "act-duenow": "je opomnil trenuten rok zapadlosti (__timeValue__) kartice __card__ je sedaj",
+ "act-atUserComment": "Omenjeni ste bili v [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Ali ste prepričani, da želite izbrisati ta račun? Razveljavitve ni.",
+ "accounts-allowUserDelete": "Dovoli uporabnikom, da sami izbrišejo svoj račun",
+ "hide-minicard-label-text": "Skrij besedilo oznak na karticah",
+ "show-desktop-drag-handles": "Pokaži ročke za povleko na namizju",
+ "assignee": "Dodeljen član",
+ "cardAssigneesPopup-title": "Dodeljen član",
+ "addmore-detail": "Dodaj podrobnejši opis",
+ "show-on-card": "Prikaži na kartici",
+ "new": "Novo",
+ "editUserPopup-title": "Uredi uporabnika",
+ "newUserPopup-title": "Nov uporabnik",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json
index 72cbefb87..400fcfee1 100644
--- a/i18n/sr.i18n.json
+++ b/i18n/sr.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Prihvati",
- "act-activity-notify": "Obaveštenje o aktivnosti",
- "act-addAttachment": "dodao attachment __prilog__ na kartici __kartica__ na listi __lista__ na swimlane dijagramu toka __swimlane dijagram toka__ na tabli __tabla__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "izmenio komentar na kartici__kartica__:__komentar__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
- "act-deleteComment": "izbrisan komentar na kartici__kartica__:__komentar__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
- "act-createBoard": "kreirana tabla __tabla__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "kreirano prilagodjeno polje__prilagodjenoPolje__na tabli__tabla",
- "act-deleteCustomField": "izbrisano prilagodjeno polje__prilagodjenoPolje__na tabli__tabla",
- "act-setCustomField": "izmenjeno prilagodjeno polje__prilagodjenoPolje__:__vrednostPilagodjenogPolja__na kartici__kartica__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akcije",
- "activities": "Aktivnosti",
- "activity": "Aktivnost",
- "activity-added": "dodao %s u %s",
- "activity-archived": "%s premešteno u Arhivu",
- "activity-attached": "prikačio %s u %s",
- "activity-created": "kreirao %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "izuzmi %s iz %s",
- "activity-imported": "uvezao %s u %s iz %s",
- "activity-imported-board": "uvezao %s iz %s",
- "activity-joined": "spojio %s",
- "activity-moved": "premestio %s iz %s u %s",
- "activity-on": "na %s",
- "activity-removed": "uklonio %s iz %s",
- "activity-sent": "poslao %s %s-u",
- "activity-unjoined": "rastavio %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "lista je dodata u %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "završena čeklista %s od %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Dodaj",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "izmenjen komentar",
- "activity-deleteComment": "izbrisan komentar",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Dodaj prilog",
- "add-board": "Add Board",
- "add-card": "Dodaj karticu",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Dodaj podzadatak",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Dodaj novu stavku u listu",
- "add-cover": "Dodaj zaglavlje",
- "add-label": "Dodaj oznaku",
- "add-list": "Dodaj Listu",
- "add-members": "Dodaj članove",
- "added": "Dodao",
- "addMemberPopup-title": "Članovi",
- "admin": "Administrator",
- "admin-desc": "Može da pregleda i menja kartice, uklanja članove i menja podešavanja table",
- "admin-announcement": "Najava",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Najava za administratora",
- "all-boards": "Sve table",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Primeni",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Premesti u arhivu",
- "archive-all": "Premesti sve u arhivu",
- "archive-board": "Move Board to Archive",
- "archive-card": "Premesti karticu u arhivu",
- "archive-list": "Premesti listu u arhivu",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arhiviraj",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arhiviraj",
- "template": "Obrazac",
- "templates": "Obrasci",
- "assign-member": "Dodeli člana",
- "attached": "Prikačeno",
- "attachment": "Prikačeni dokument",
- "attachment-delete-pop": "Brisanje prikačenog dokumenta je trajno. Ne postoji vraćanje obrisanog.",
- "attachmentDeletePopup-title": "Obrisati prikačeni dokument?",
- "attachments": "Prikačeni dokumenti",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Nazad",
- "board-change-color": "Promeni boju",
- "board-nb-stars": "%s zvezdice",
- "board-not-found": "Tabla nije pronađena",
- "board-private-info": "Ova tabla će biti privatna.",
- "board-public-info": "Ova tabla će biti javna.",
- "boardChangeColorPopup-title": "Promeni pozadinu table",
- "boardChangeTitlePopup-title": "Preimenuj tablu",
- "boardChangeVisibilityPopup-title": "Promeni vidljivost",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Table",
- "board-view": "Board View",
- "board-view-cal": "Kalendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Sažmi",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Liste",
- "bucket-example": "Na primer \"Lista zadataka\"",
- "cancel": "Otkaži",
- "card-archived": "Ova kartica je premeštena u arhivu.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Ova kartica ima %s komentar.",
- "card-delete-notice": "Brisanje je trajno. Izgubićeš sve akcije povezane sa ovom karticom.",
- "card-delete-pop": "Sve akcije će biti uklonjene sa liste aktivnosti i kartica neće moći biti ponovo otvorena. Nema vraćanja unazad.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Rok",
- "card-due-on": "Završava se",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Uredi priloge",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Uredi natpise",
- "card-edit-members": "Uredi članove",
- "card-labels-title": "Promeni natpis na kartici.",
- "card-members-title": "Dodaj ili ukloni članove table sa kartice.",
- "card-start": "Početak",
- "card-start-on": "Počinje",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Promeni datum",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Novo glasanje",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Pitanje za glasanje",
- "vote-public": "Show who voted what",
- "vote-for-it": "za",
- "vote-against": "protiv",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Obrisati karticu?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Oznake",
- "cardMembersPopup-title": "Članovi",
- "cardMorePopup-title": "Više",
- "cardTemplatePopup-title": "Napravi šemu",
- "cards": "Kartice",
- "cards-count": "Kartice",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Kartica",
- "cardType-linkedCard": "Povezana kartica",
- "cardType-linkedBoard": "Linked Board",
- "change": "Promeni",
- "change-avatar": "Promeni avatara",
- "change-password": "Promeni lozinku",
- "change-permissions": "Promeni dozvole",
- "change-settings": "Promeni podešavanja",
- "changeAvatarPopup-title": "Promeni avatara",
- "changeLanguagePopup-title": "Promeni jezik",
- "changePasswordPopup-title": "Promeni lozinku",
- "changePermissionsPopup-title": "Promeni dozvole",
- "changeSettingsPopup-title": "Promeni podešavanja",
- "subtasks": "Podzadaci",
- "checklists": "Liste",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Zatvori",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "crno",
- "color-blue": "plavo",
- "color-crimson": "grimizno",
- "color-darkgreen": "tamnozeleno",
- "color-gold": "zlatno",
- "color-gray": "sivo",
- "color-green": "zeleno",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "mornarsko",
- "color-orange": "narandžasto",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "šljiva",
- "color-purple": "ljubičasto",
- "color-red": "crveno",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "srebrno",
- "color-sky": "nebesko",
- "color-slateblue": "slateblue",
- "color-white": "belo",
- "color-yellow": "žuto",
- "unset-color": "Unset",
- "comment": "Komentar",
- "comment-placeholder": "Napiši komentar",
- "comment-only": "Samo komentari",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Radnik",
- "worker-desc": "Može samo da pomera kartice, dodeljuje sebe kartici i da komentariše. ",
- "computer": "Računar",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Poveži karticu",
- "searchElementPopup-title": "Pretraga",
- "copyCardPopup-title": "Kopiraj karticu",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Napravi",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Napravi oznaku",
- "createCustomField": "Napravi polje",
- "createCustomFieldPopup-title": "Napravi polje",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Padajuća lista",
- "custom-field-dropdown-none": "(ništa)",
- "custom-field-dropdown-options": "Opcije liste",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(nepoznato)",
- "custom-field-number": "Broj",
- "custom-field-text": "Tekst",
- "custom-fields": "Custom Fields",
- "date": "Datum",
- "decline": "Odbij",
- "default-avatar": "Default avatar",
- "delete": "Obriši",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Obrisati oznaku?",
- "description": "Opis",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Odbaci",
- "done": "Završeno",
- "download": "Preuzmi",
- "edit": "Uredi",
- "edit-avatar": "Promeni avatara",
- "edit-profile": "Uredi profil",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Izmeni početni datum",
- "editCardDueDatePopup-title": "Izmeni krajnji datum",
- "editCustomFieldPopup-title": "Izmeni polje",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Izmeni oznaku",
- "editNotificationPopup-title": "Izmeni obaveštenje",
- "editProfilePopup-title": "Izmeni profil",
- "email": "Epošta",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Neuspelo slanje epošte",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "Korisnik ne postoji",
- "error-user-notAllowSelf": "Ne možeš pozvati samog sebe",
- "error-user-notCreated": "Korisnik nije kreiran",
- "error-username-taken": "Korisničko ime je već zauzeto",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sortiraj",
- "sort-desc": "Kliknite da biste sortirali listu",
- "list-sort-by": "Poredaj listu po:",
- "list-label-modifiedAt": "Poslednje vreme pristupa",
- "list-label-title": "Naziv liste",
- "list-label-sort": "Vaš ručni nalog",
- "list-label-short-modifiedAt": "(P)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(R)",
- "filter": "Filter",
- "filter-cards": "Filtriraj kartice ili liste",
- "list-filter-label": "Filtriraj liste po naslovu",
- "filter-clear": "Očisti filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "Nema oznake",
- "filter-member-label": "Filter by member",
- "filter-no-member": "Nema člana",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "Nema zastupnika",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Prikaži arhivirane liste",
- "filter-hide-empty": "Sakrij prazne liste",
- "filter-on": "Filter je uključen",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Napredni filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Puno ime",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Sakrij sistemske poruke",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Početna",
- "import": "Uvezi",
- "impersonate-user": "Impersonate user",
- "link": "Veza",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Uvezi tablu iz Trella",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Mapiraj članove",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Izaberi člana",
- "info": "Verzija",
- "initials": "Inicijali",
- "invalid-date": "Neispravan datum",
- "invalid-time": "Neispravno vreme",
- "invalid-user": "Neispravan korisnik",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Prečice tastature",
- "label-create": "Napravi oznaku",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Oznake",
- "language": "Jezik",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Veza do ove kartice",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Premesti sve kartice u ovoj listi",
- "list-select-cards": "Izaberi sve kartice u ovoj listi",
- "set-color-list": "Postavi boju",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "Više",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Liste",
- "swimlanes": "Swimlanes",
- "log-out": "Odjavi se",
- "log-in": "Prijava",
- "loginPopup-title": "Prijava",
- "memberMenuPopup-title": "Member Settings",
- "members": "Članovi",
- "menu": "Meni",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Premesti karticu",
- "moveCardToBottom-title": "Premesti na dno",
- "moveCardToTop-title": "Premesti na vrh",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Utišano",
- "muted-info": "Nećete biti obavešteni o promenama u ovoj tabli",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Nema rezultata",
- "normal": "Normalno",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "opciono",
- "or": "ili",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Stranica nije pronađena.",
- "password": "Lozinka",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Učestvujem",
- "preview": "Prikaz",
- "previewAttachedImagePopup-title": "Prikaz",
- "previewClipboardImagePopup-title": "Prikaz",
- "private": "Privatno",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profil",
- "public": "Javno",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Ukloni iz table",
- "remove-label": "Ukloni oznaku",
- "listDeletePopup-title": "Obrisati listu?",
- "remove-member": "Ukloni člana",
- "remove-member-from-card": "Ukloni iz kartice",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Ukloni člana?",
- "rename": "Preimenuj",
- "rename-board": "Preimenuj tablu",
- "restore": "Oporavi",
- "save": "Snimi",
- "search": "Pretraga",
- "rules": "Pravila",
- "search-cards": "Pretraži u naslovima kartica/listi, opsima i proizvoljnim poljima sa ove table",
- "search-example": "Write text you search and press Enter",
- "select-color": "Izaberi boju",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Pridruži sebe trenutnoj kartici",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Sam popuni članove",
- "shortcut-clear-filters": "Očisti sve filtere",
- "shortcut-close-dialog": "Zatvori dijalog",
- "shortcut-filter-my-cards": "Filtriraj kartice",
- "shortcut-show-shortcuts": "Prikaži ovu listu prečica",
- "shortcut-toggle-filterbar": "Uključi ili isključi bočni meni filtera",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Uključi ili isključi bočni meni table",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Kreiraj nalog",
- "star-board-title": "Klikni da označiš zvezdicom ovu tablu. Pokazaće se na vrhu tvoje liste tabli.",
- "starred-boards": "Table sa zvezdicom",
- "starred-boards-description": "Table sa zvezdicom se pokazuju na vrhu liste tabli.",
- "subscribe": "Pretplati se",
- "team": "Tim",
- "this-board": "ova tabla",
- "this-card": "ova kartica",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Vreme",
- "title": "Naslov",
- "tracking": "Praćenje",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Tip",
- "unassign-member": "Unassign member",
- "unsaved-description": "Imaš nesnimljen opis.",
- "unwatch": "Ne posmatraj",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Korisničko ime",
- "view-it": "Pregledaj je",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Posmatraj",
- "watching": "Posmatranje",
- "watching-info": "Bićete obavešteni o promenama u ovoj tabli",
- "welcome-board": "Tabla dobrodošlice",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Osnove",
- "welcome-list2": "Napredno",
- "card-templates-swimlane": "Šeme kartice",
- "list-templates-swimlane": "Šeme liste",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Šta želiš da uradiš ?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Podešavanja",
- "people": "Ljudi",
- "registration": "Registracija",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Adrese epošte",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Korisničko ime",
- "smtp-password": "Lozinka",
- "smtp-tls": "TLS podrška",
- "send-from": "Od",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Naziv mrežne kuke",
- "webhook-token": "Token (neobavezno za autentifikaciju)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Dvosmerne mrežne kuke",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Onesposobi ovu mrežnu kuku",
- "global-webhook": "Globalna mrežna kuka",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Nepoznato)",
- "Node_version": "Verzija čvora",
- "Meteor_version": "Verzija Meteor-a",
- "MongoDB_version": "Verzija MongoDB-a",
- "MongoDB_storage_engine": "MongoDB mehanizam za skladištenje",
- "MongoDB_Oplog_enabled": "MongoDB Oplog omogućen",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "dana",
- "hours": "sati",
- "minutes": "minuta",
- "seconds": "sekundi",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Da",
- "no": "Ne",
- "accounts": "Nalozi",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Podesi boju",
- "setCardActionsColorPopup-title": "Izaberi boju",
- "setSwimlaneColorPopup-title": "Izaberi boju",
- "setListColorPopup-title": "Izaberi boju",
- "assigned-by": "Dodeljeno od strane",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Predefinisano",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Podešavanja kartice",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Podešavanja kartice",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Pravilo",
- "r-add-trigger": "Dodaj okidač",
- "r-add-action": "Dodaj akciju",
- "r-board-rules": "Board rules",
- "r-add-rule": "Dodaj pravilo",
- "r-view-rule": "Pregledaj pravilo",
- "r-delete-rule": "Obriši pravilo",
- "r-new-rule-name": "Novi naslov pravila",
- "r-no-rules": "Nema pravila",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "Kada kartica",
- "r-is": "je",
- "r-is-moved": "je premeštena",
- "r-added-to": "Added to",
- "r-removed-from": "Uklonjena iz",
- "r-the-board": "table",
- "r-list": "liste",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Završeno",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "kartica",
- "r-add": "Dodaj",
- "r-remove": "Ukloni",
- "r-label": "oznaka",
- "r-member": "član",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "stavka",
- "r-of-checklist": "of checklist",
- "r-send-email": "Pošalji epoštu",
- "r-to": "za",
- "r-of": "of",
- "r-subject": "naslov",
- "r-rule-details": "Detalji pravila",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Pošalji epoštu",
- "r-d-send-email-to": "za",
- "r-d-send-email-subject": "naslov",
- "r-d-send-email-message": "poruka",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Dodaj oznaku",
- "r-d-remove-label": "Ukloni oznaku",
- "r-create-card": "Napravi novu karticu",
- "r-in-list": "u listi",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Dodaj člana",
- "r-d-remove-member": "Ukloni člana",
- "r-d-remove-all-member": "Ukloni sve članove",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Postavi",
- "r-update": "Ažuriraj",
- "r-datefield": "polje za datum",
- "r-df-start-at": "početak",
- "r-df-due-at": "krajnji datum",
- "r-df-end-at": "kraj",
- "r-df-received-at": "primljen",
- "r-to-current-datetime": "do trenutnog datuma/vremena",
- "r-remove-value-from": "Ukloni vrednost sa",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Metod autentifikacije",
- "authentication-type": "Tip autentifikacije",
- "custom-product-name": "Custom Product Name",
- "layout": "Raspored",
- "hide-logo": "Sakrij logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Obriši sve",
- "loading": "Učitavanje, molim sačekajte.",
- "previous_as": "prošli put je bio",
- "act-a-dueAt": "modifikovano u vreme\nKada:__vremenskaVrednost__\nGde:__kartica__\nprethodni rok je bio__StaraVremenskaVrednost",
- "act-a-endAt": "izmenjeno vreme završetaka za__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
- "act-a-startAt": "izmenjeno vreme početka u__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
- "act-a-receivedAt": "izmenjeno primljeno vreme u__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
- "a-dueAt": "izmenjen krajnji datum da bude",
- "a-endAt": "izmenjeno vreme završetka",
- "a-startAt": "izmenjeno vreme početka",
- "a-receivedAt": "izmenjeno primljeno vreme da bude",
- "almostdue": "trenutni krajnji datum %s se približava",
- "pastdue": "trenutni krajnji datum %s je prošao",
- "duenow": "trenutni krajnji datum %s je danas",
- "act-newDue": "__lista__/__kartica__ima 1. podsetnik za krajnji datum [__tabla__]",
- "act-withDue": "__lista__/__kartica__ podsetnici za krajnji datum [__tabla__]",
- "act-almostdue": "podsećao da se trenutni krajnji rok (__vremenskaVrednost__) __kartica__ približava",
- "act-pastdue": "podsećao da je trenutni krajnji rok (__vremenskaVrednost__) __kartica__ prošao",
- "act-duenow": "podsećao da je trenutni krajnji rok (__vremenskaVrednost__) __kartica__ trenutno",
- "act-atUserComment": "Spomenuti ste na [__tabla__] __lista__/__kartica__",
- "delete-user-confirm-popup": "Da li ste sigurni da želite da izbrišete nalog? Nema poništenja akcije. ",
- "accounts-allowUserDelete": "Dozvoli korisnicima da sami brišu svoj nalog",
- "hide-minicard-label-text": "Sakrij tekst nalepnice minikartice",
- "show-desktop-drag-handles": "Prikaži kvake za povlačenje sa radne površine",
- "assignee": "Zastupnik",
- "cardAssigneesPopup-title": "Zastupnik",
- "addmore-detail": "Dodaj detaljaniji opis",
- "show-on-card": "Prikaži na kartici",
- "new": "Novo",
- "editUserPopup-title": "Uredi korisnika",
- "newUserPopup-title": "Novi korisnik",
- "notifications": "Obaveštenja",
- "view-all": "Prikaži sve",
- "filter-by-unread": "Filtriraj nepročitano",
- "mark-all-as-read": "Označi sve kao pročitano",
- "remove-all-read": "Ukloni sve pročitano",
- "allow-rename": "Dozvoli preimenovanje",
- "allowRenamePopup-title": "Dozvoli preimenovanje",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Prihvati",
+ "act-activity-notify": "Obaveštenje o aktivnosti",
+ "act-addAttachment": "dodao attachment __prilog__ na kartici __kartica__ na listi __lista__ na swimlane dijagramu toka __swimlane dijagram toka__ na tabli __tabla__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "izmenio komentar na kartici__kartica__:__komentar__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
+ "act-deleteComment": "izbrisan komentar na kartici__kartica__:__komentar__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
+ "act-createBoard": "kreirana tabla __tabla__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "kreirano prilagodjeno polje__prilagodjenoPolje__na tabli__tabla",
+ "act-deleteCustomField": "izbrisano prilagodjeno polje__prilagodjenoPolje__na tabli__tabla",
+ "act-setCustomField": "izmenjeno prilagodjeno polje__prilagodjenoPolje__:__vrednostPilagodjenogPolja__na kartici__kartica__na listi__lista__na swimlane dijagramu toka__swimlane dijagram toka__na tabli__tabla",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akcije",
+ "activities": "Aktivnosti",
+ "activity": "Aktivnost",
+ "activity-added": "dodao %s u %s",
+ "activity-archived": "%s premešteno u Arhivu",
+ "activity-attached": "prikačio %s u %s",
+ "activity-created": "kreirao %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "izuzmi %s iz %s",
+ "activity-imported": "uvezao %s u %s iz %s",
+ "activity-imported-board": "uvezao %s iz %s",
+ "activity-joined": "spojio %s",
+ "activity-moved": "premestio %s iz %s u %s",
+ "activity-on": "na %s",
+ "activity-removed": "uklonio %s iz %s",
+ "activity-sent": "poslao %s %s-u",
+ "activity-unjoined": "rastavio %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "lista je dodata u %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "završena čeklista %s od %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Dodaj",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "izmenjen komentar",
+ "activity-deleteComment": "izbrisan komentar",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Dodaj prilog",
+ "add-board": "Add Board",
+ "add-card": "Dodaj karticu",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Dodaj podzadatak",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Dodaj novu stavku u listu",
+ "add-cover": "Dodaj zaglavlje",
+ "add-label": "Dodaj oznaku",
+ "add-list": "Dodaj Listu",
+ "add-members": "Dodaj članove",
+ "added": "Dodao",
+ "addMemberPopup-title": "Članovi",
+ "admin": "Administrator",
+ "admin-desc": "Može da pregleda i menja kartice, uklanja članove i menja podešavanja table",
+ "admin-announcement": "Najava",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Najava za administratora",
+ "all-boards": "Sve table",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Primeni",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Premesti u arhivu",
+ "archive-all": "Premesti sve u arhivu",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Premesti karticu u arhivu",
+ "archive-list": "Premesti listu u arhivu",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arhiviraj",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arhiviraj",
+ "template": "Obrazac",
+ "templates": "Obrasci",
+ "assign-member": "Dodeli člana",
+ "attached": "Prikačeno",
+ "attachment": "Prikačeni dokument",
+ "attachment-delete-pop": "Brisanje prikačenog dokumenta je trajno. Ne postoji vraćanje obrisanog.",
+ "attachmentDeletePopup-title": "Obrisati prikačeni dokument?",
+ "attachments": "Prikačeni dokumenti",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Nazad",
+ "board-change-color": "Promeni boju",
+ "board-nb-stars": "%s zvezdice",
+ "board-not-found": "Tabla nije pronađena",
+ "board-private-info": "Ova tabla će biti privatna.",
+ "board-public-info": "Ova tabla će biti javna.",
+ "boardChangeColorPopup-title": "Promeni pozadinu table",
+ "boardChangeTitlePopup-title": "Preimenuj tablu",
+ "boardChangeVisibilityPopup-title": "Promeni vidljivost",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Table",
+ "board-view": "Board View",
+ "board-view-cal": "Kalendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Sažmi",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Liste",
+ "bucket-example": "Na primer \"Lista zadataka\"",
+ "cancel": "Otkaži",
+ "card-archived": "Ova kartica je premeštena u arhivu.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Ova kartica ima %s komentar.",
+ "card-delete-notice": "Brisanje je trajno. Izgubićeš sve akcije povezane sa ovom karticom.",
+ "card-delete-pop": "Sve akcije će biti uklonjene sa liste aktivnosti i kartica neće moći biti ponovo otvorena. Nema vraćanja unazad.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Rok",
+ "card-due-on": "Završava se",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Uredi priloge",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Uredi natpise",
+ "card-edit-members": "Uredi članove",
+ "card-labels-title": "Promeni natpis na kartici.",
+ "card-members-title": "Dodaj ili ukloni članove table sa kartice.",
+ "card-start": "Početak",
+ "card-start-on": "Počinje",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Promeni datum",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Novo glasanje",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Pitanje za glasanje",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "za",
+ "vote-against": "protiv",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Obrisati karticu?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Oznake",
+ "cardMembersPopup-title": "Članovi",
+ "cardMorePopup-title": "Više",
+ "cardTemplatePopup-title": "Napravi šemu",
+ "cards": "Kartice",
+ "cards-count": "Kartice",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Kartica",
+ "cardType-linkedCard": "Povezana kartica",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Promeni",
+ "change-avatar": "Promeni avatara",
+ "change-password": "Promeni lozinku",
+ "change-permissions": "Promeni dozvole",
+ "change-settings": "Promeni podešavanja",
+ "changeAvatarPopup-title": "Promeni avatara",
+ "changeLanguagePopup-title": "Promeni jezik",
+ "changePasswordPopup-title": "Promeni lozinku",
+ "changePermissionsPopup-title": "Promeni dozvole",
+ "changeSettingsPopup-title": "Promeni podešavanja",
+ "subtasks": "Podzadaci",
+ "checklists": "Liste",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Zatvori",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "crno",
+ "color-blue": "plavo",
+ "color-crimson": "grimizno",
+ "color-darkgreen": "tamnozeleno",
+ "color-gold": "zlatno",
+ "color-gray": "sivo",
+ "color-green": "zeleno",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "mornarsko",
+ "color-orange": "narandžasto",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "šljiva",
+ "color-purple": "ljubičasto",
+ "color-red": "crveno",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "srebrno",
+ "color-sky": "nebesko",
+ "color-slateblue": "slateblue",
+ "color-white": "belo",
+ "color-yellow": "žuto",
+ "unset-color": "Unset",
+ "comment": "Komentar",
+ "comment-placeholder": "Napiši komentar",
+ "comment-only": "Samo komentari",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Radnik",
+ "worker-desc": "Može samo da pomera kartice, dodeljuje sebe kartici i da komentariše. ",
+ "computer": "Računar",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Poveži karticu",
+ "searchElementPopup-title": "Pretraga",
+ "copyCardPopup-title": "Kopiraj karticu",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Napravi",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Napravi oznaku",
+ "createCustomField": "Napravi polje",
+ "createCustomFieldPopup-title": "Napravi polje",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Padajuća lista",
+ "custom-field-dropdown-none": "(ništa)",
+ "custom-field-dropdown-options": "Opcije liste",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(nepoznato)",
+ "custom-field-number": "Broj",
+ "custom-field-text": "Tekst",
+ "custom-fields": "Custom Fields",
+ "date": "Datum",
+ "decline": "Odbij",
+ "default-avatar": "Default avatar",
+ "delete": "Obriši",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Obrisati oznaku?",
+ "description": "Opis",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Odbaci",
+ "done": "Završeno",
+ "download": "Preuzmi",
+ "edit": "Uredi",
+ "edit-avatar": "Promeni avatara",
+ "edit-profile": "Uredi profil",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Izmeni početni datum",
+ "editCardDueDatePopup-title": "Izmeni krajnji datum",
+ "editCustomFieldPopup-title": "Izmeni polje",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Izmeni oznaku",
+ "editNotificationPopup-title": "Izmeni obaveštenje",
+ "editProfilePopup-title": "Izmeni profil",
+ "email": "Epošta",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Neuspelo slanje epošte",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "Korisnik ne postoji",
+ "error-user-notAllowSelf": "Ne možeš pozvati samog sebe",
+ "error-user-notCreated": "Korisnik nije kreiran",
+ "error-username-taken": "Korisničko ime je već zauzeto",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sortiraj",
+ "sort-desc": "Kliknite da biste sortirali listu",
+ "list-sort-by": "Poredaj listu po:",
+ "list-label-modifiedAt": "Poslednje vreme pristupa",
+ "list-label-title": "Naziv liste",
+ "list-label-sort": "Vaš ručni nalog",
+ "list-label-short-modifiedAt": "(P)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(R)",
+ "filter": "Filter",
+ "filter-cards": "Filtriraj kartice ili liste",
+ "list-filter-label": "Filtriraj liste po naslovu",
+ "filter-clear": "Očisti filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "Nema oznake",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "Nema člana",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "Nema zastupnika",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Prikaži arhivirane liste",
+ "filter-hide-empty": "Sakrij prazne liste",
+ "filter-on": "Filter je uključen",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Napredni filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Puno ime",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Sakrij sistemske poruke",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Početna",
+ "import": "Uvezi",
+ "impersonate-user": "Impersonate user",
+ "link": "Veza",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Uvezi tablu iz Trella",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Mapiraj članove",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Izaberi člana",
+ "info": "Verzija",
+ "initials": "Inicijali",
+ "invalid-date": "Neispravan datum",
+ "invalid-time": "Neispravno vreme",
+ "invalid-user": "Neispravan korisnik",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Prečice tastature",
+ "label-create": "Napravi oznaku",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Oznake",
+ "language": "Jezik",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Veza do ove kartice",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Premesti sve kartice u ovoj listi",
+ "list-select-cards": "Izaberi sve kartice u ovoj listi",
+ "set-color-list": "Postavi boju",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "Više",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Liste",
+ "swimlanes": "Swimlanes",
+ "log-out": "Odjavi se",
+ "log-in": "Prijava",
+ "loginPopup-title": "Prijava",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Članovi",
+ "menu": "Meni",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Premesti karticu",
+ "moveCardToBottom-title": "Premesti na dno",
+ "moveCardToTop-title": "Premesti na vrh",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Utišano",
+ "muted-info": "Nećete biti obavešteni o promenama u ovoj tabli",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Nema rezultata",
+ "normal": "Normalno",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "opciono",
+ "or": "ili",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Stranica nije pronađena.",
+ "password": "Lozinka",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Učestvujem",
+ "preview": "Prikaz",
+ "previewAttachedImagePopup-title": "Prikaz",
+ "previewClipboardImagePopup-title": "Prikaz",
+ "private": "Privatno",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profil",
+ "public": "Javno",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Ukloni iz table",
+ "remove-label": "Ukloni oznaku",
+ "listDeletePopup-title": "Obrisati listu?",
+ "remove-member": "Ukloni člana",
+ "remove-member-from-card": "Ukloni iz kartice",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Ukloni člana?",
+ "rename": "Preimenuj",
+ "rename-board": "Preimenuj tablu",
+ "restore": "Oporavi",
+ "save": "Snimi",
+ "search": "Pretraga",
+ "rules": "Pravila",
+ "search-cards": "Pretraži u naslovima kartica/listi, opsima i proizvoljnim poljima sa ove table",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Izaberi boju",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Pridruži sebe trenutnoj kartici",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Sam popuni članove",
+ "shortcut-clear-filters": "Očisti sve filtere",
+ "shortcut-close-dialog": "Zatvori dijalog",
+ "shortcut-filter-my-cards": "Filtriraj kartice",
+ "shortcut-show-shortcuts": "Prikaži ovu listu prečica",
+ "shortcut-toggle-filterbar": "Uključi ili isključi bočni meni filtera",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Uključi ili isključi bočni meni table",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Kreiraj nalog",
+ "star-board-title": "Klikni da označiš zvezdicom ovu tablu. Pokazaće se na vrhu tvoje liste tabli.",
+ "starred-boards": "Table sa zvezdicom",
+ "starred-boards-description": "Table sa zvezdicom se pokazuju na vrhu liste tabli.",
+ "subscribe": "Pretplati se",
+ "team": "Tim",
+ "this-board": "ova tabla",
+ "this-card": "ova kartica",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Vreme",
+ "title": "Naslov",
+ "tracking": "Praćenje",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Tip",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "Imaš nesnimljen opis.",
+ "unwatch": "Ne posmatraj",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Korisničko ime",
+ "view-it": "Pregledaj je",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Posmatraj",
+ "watching": "Posmatranje",
+ "watching-info": "Bićete obavešteni o promenama u ovoj tabli",
+ "welcome-board": "Tabla dobrodošlice",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Osnove",
+ "welcome-list2": "Napredno",
+ "card-templates-swimlane": "Šeme kartice",
+ "list-templates-swimlane": "Šeme liste",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Šta želiš da uradiš ?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Podešavanja",
+ "people": "Ljudi",
+ "registration": "Registracija",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Adrese epošte",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Korisničko ime",
+ "smtp-password": "Lozinka",
+ "smtp-tls": "TLS podrška",
+ "send-from": "Od",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Naziv mrežne kuke",
+ "webhook-token": "Token (neobavezno za autentifikaciju)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Dvosmerne mrežne kuke",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Onesposobi ovu mrežnu kuku",
+ "global-webhook": "Globalna mrežna kuka",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Nepoznato)",
+ "Node_version": "Verzija čvora",
+ "Meteor_version": "Verzija Meteor-a",
+ "MongoDB_version": "Verzija MongoDB-a",
+ "MongoDB_storage_engine": "MongoDB mehanizam za skladištenje",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog omogućen",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "dana",
+ "hours": "sati",
+ "minutes": "minuta",
+ "seconds": "sekundi",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Da",
+ "no": "Ne",
+ "accounts": "Nalozi",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Podesi boju",
+ "setCardActionsColorPopup-title": "Izaberi boju",
+ "setSwimlaneColorPopup-title": "Izaberi boju",
+ "setListColorPopup-title": "Izaberi boju",
+ "assigned-by": "Dodeljeno od strane",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Predefinisano",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Podešavanja kartice",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Podešavanja kartice",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Pravilo",
+ "r-add-trigger": "Dodaj okidač",
+ "r-add-action": "Dodaj akciju",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Dodaj pravilo",
+ "r-view-rule": "Pregledaj pravilo",
+ "r-delete-rule": "Obriši pravilo",
+ "r-new-rule-name": "Novi naslov pravila",
+ "r-no-rules": "Nema pravila",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "Kada kartica",
+ "r-is": "je",
+ "r-is-moved": "je premeštena",
+ "r-added-to": "Added to",
+ "r-removed-from": "Uklonjena iz",
+ "r-the-board": "table",
+ "r-list": "liste",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Završeno",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "kartica",
+ "r-add": "Dodaj",
+ "r-remove": "Ukloni",
+ "r-label": "oznaka",
+ "r-member": "član",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "stavka",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Pošalji epoštu",
+ "r-to": "za",
+ "r-of": "of",
+ "r-subject": "naslov",
+ "r-rule-details": "Detalji pravila",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Pošalji epoštu",
+ "r-d-send-email-to": "za",
+ "r-d-send-email-subject": "naslov",
+ "r-d-send-email-message": "poruka",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Dodaj oznaku",
+ "r-d-remove-label": "Ukloni oznaku",
+ "r-create-card": "Napravi novu karticu",
+ "r-in-list": "u listi",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Dodaj člana",
+ "r-d-remove-member": "Ukloni člana",
+ "r-d-remove-all-member": "Ukloni sve članove",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Postavi",
+ "r-update": "Ažuriraj",
+ "r-datefield": "polje za datum",
+ "r-df-start-at": "početak",
+ "r-df-due-at": "krajnji datum",
+ "r-df-end-at": "kraj",
+ "r-df-received-at": "primljen",
+ "r-to-current-datetime": "do trenutnog datuma/vremena",
+ "r-remove-value-from": "Ukloni vrednost sa",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Metod autentifikacije",
+ "authentication-type": "Tip autentifikacije",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Raspored",
+ "hide-logo": "Sakrij logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Obriši sve",
+ "loading": "Učitavanje, molim sačekajte.",
+ "previous_as": "prošli put je bio",
+ "act-a-dueAt": "modifikovano u vreme\nKada:__vremenskaVrednost__\nGde:__kartica__\nprethodni rok je bio__StaraVremenskaVrednost",
+ "act-a-endAt": "izmenjeno vreme završetaka za__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
+ "act-a-startAt": "izmenjeno vreme početka u__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
+ "act-a-receivedAt": "izmenjeno primljeno vreme u__vremenskaVrednost__od (__StaraVremenskaVrednost__)",
+ "a-dueAt": "izmenjen krajnji datum da bude",
+ "a-endAt": "izmenjeno vreme završetka",
+ "a-startAt": "izmenjeno vreme početka",
+ "a-receivedAt": "izmenjeno primljeno vreme da bude",
+ "almostdue": "trenutni krajnji datum %s se približava",
+ "pastdue": "trenutni krajnji datum %s je prošao",
+ "duenow": "trenutni krajnji datum %s je danas",
+ "act-newDue": "__lista__/__kartica__ima 1. podsetnik za krajnji datum [__tabla__]",
+ "act-withDue": "__lista__/__kartica__ podsetnici za krajnji datum [__tabla__]",
+ "act-almostdue": "podsećao da se trenutni krajnji rok (__vremenskaVrednost__) __kartica__ približava",
+ "act-pastdue": "podsećao da je trenutni krajnji rok (__vremenskaVrednost__) __kartica__ prošao",
+ "act-duenow": "podsećao da je trenutni krajnji rok (__vremenskaVrednost__) __kartica__ trenutno",
+ "act-atUserComment": "Spomenuti ste na [__tabla__] __lista__/__kartica__",
+ "delete-user-confirm-popup": "Da li ste sigurni da želite da izbrišete nalog? Nema poništenja akcije. ",
+ "accounts-allowUserDelete": "Dozvoli korisnicima da sami brišu svoj nalog",
+ "hide-minicard-label-text": "Sakrij tekst nalepnice minikartice",
+ "show-desktop-drag-handles": "Prikaži kvake za povlačenje sa radne površine",
+ "assignee": "Zastupnik",
+ "cardAssigneesPopup-title": "Zastupnik",
+ "addmore-detail": "Dodaj detaljaniji opis",
+ "show-on-card": "Prikaži na kartici",
+ "new": "Novo",
+ "editUserPopup-title": "Uredi korisnika",
+ "newUserPopup-title": "Novi korisnik",
+ "notifications": "Obaveštenja",
+ "view-all": "Prikaži sve",
+ "filter-by-unread": "Filtriraj nepročitano",
+ "mark-all-as-read": "Označi sve kao pročitano",
+ "remove-all-read": "Ukloni sve pročitano",
+ "allow-rename": "Dozvoli preimenovanje",
+ "allowRenamePopup-title": "Dozvoli preimenovanje",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json
index a1d45bdee..91ff6ca22 100644
--- a/i18n/sv.i18n.json
+++ b/i18n/sv.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Acceptera",
- "act-activity-notify": "Aktivitetsnotis",
- "act-addAttachment": "lade till filen __attachment__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-deleteAttachment": "raderade filen __attachment__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addSubtask": "lade till underaktivitet __subtask__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addedLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-removeLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-removedLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addChecklist": "lade till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addChecklistItem": "lade till checklisteobjekt __checklistItem__ till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-removeChecklist": "tog bort checklista __checklist__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-removeChecklistItem": "tog bort checklisteobjekt __checklistItem__ från __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-checkedItem": "klarmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-uncheckedItem": "avmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-completeChecklist": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-uncompleteChecklist": "ofullbordade checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-addComment": "kommenterade på kort __card__: __comment__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-editComment": "redigerade kommentar på kort __card__: __comment__ i listan __list__ i simbana __swimlane__ på tavla __board__",
- "act-deleteComment": "raderade kommentar på kort __card__: __comment__ i listan __list__ i simbana __swimlane__ på tavla __board__",
- "act-createBoard": "skapade tavla __board__",
- "act-createSwimlane": "skapade simbana __swimlane__ i tavla __board__",
- "act-createCard": "skapade kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-createCustomField": "skapade anpassat fält __customField__ på tavla __board__",
- "act-deleteCustomField": "raderade anpassat fält __customField__ på tavla __board__",
- "act-setCustomField": "redigerade anpassat fält __customField__: __customFieldValue__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-createList": "lade till lista __list__ på tavla __board__",
- "act-addBoardMember": "lade till medlem __member__ på tavla __board__",
- "act-archivedBoard": "Tavlan __board__ flyttad till arkivet",
- "act-archivedCard": "Kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
- "act-archivedList": "Lista __list__ i simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
- "act-archivedSwimlane": "Simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
- "act-importBoard": "importerade tavla __board__",
- "act-importCard": "importerade kort __card__ till lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-importList": "importerade lista __list__ till simbana __swimlane__ på tavla __board__",
- "act-joinMember": "lade till medlem __member__ till kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-moveCard": "flyttade kort __card__ på tavla __board__ från lista __oldList__ i simbana __oldSwimlane__ till lista __list__ i simbana __swimlane__",
- "act-moveCardToOtherBoard": "flyttade kort __card__ från lista __oldList__ i simbana __oldSwimlane__ på tavla __oldBoard__ till lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-removeBoardMember": "tog bort medlem __member__ från tavla __board__",
- "act-restoredCard": "återställde kort __card__ till lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-unjoinMember": "tog bort medlem __member__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Händelser",
- "activities": "Aktiviteter",
- "activity": "Aktivitet",
- "activity-added": "lade till %s till %s",
- "activity-archived": "%s flyttades till Arkiv",
- "activity-attached": "bifogade %s till %s",
- "activity-created": "skapade %s",
- "activity-customfield-created": "skapade anpassat fält %s",
- "activity-excluded": "exkluderade %s från %s",
- "activity-imported": "importerade %s till %s från %s",
- "activity-imported-board": "importerade %s från %s",
- "activity-joined": "gick med i %s",
- "activity-moved": "flyttade %s från %s till %s",
- "activity-on": "på %s",
- "activity-removed": "tog bort %s från %s",
- "activity-sent": "skickade %s till %s",
- "activity-unjoined": "lämnade %s",
- "activity-subtask-added": "lade till deluppgift till %s",
- "activity-checked-item": "klarmarkerade %s i checklistan %s av %s",
- "activity-unchecked-item": "avmarkerade %s i checklistan %s av %s",
- "activity-checklist-added": "lade till checklista till %s",
- "activity-checklist-removed": "tog bort en checklista från %s",
- "activity-checklist-completed": "slutförde checklista %s av %s",
- "activity-checklist-uncompleted": "ofullbordade checklistan %s av %s",
- "activity-checklist-item-added": "lade till checklistobjekt till \"%s\" i %s",
- "activity-checklist-item-removed": "tog bort ett checklistobjekt från \"%s\" i %s",
- "add": "Lägg till",
- "activity-checked-item-card": "klarmarkerade %s i checklistan %s",
- "activity-unchecked-item-card": "avmarkerade %s i checklistan %s",
- "activity-checklist-completed-card": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
- "activity-checklist-uncompleted-card": "ofullbordade checklistan %s",
- "activity-editComment": "redigerade kommentar %s",
- "activity-deleteComment": "raderade kommentar %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Lägg till bilaga",
- "add-board": "Lägg till tavla",
- "add-card": "Lägg till kort",
- "add-swimlane": "Lägg till simbana",
- "add-subtask": "Lägg till deluppgift",
- "add-checklist": "Lägg till checklista",
- "add-checklist-item": "Lägg till objekt i checklista",
- "add-cover": "Lägg till omslag",
- "add-label": "Lägg till etikett",
- "add-list": "Lägg till lista",
- "add-members": "Lägg till medlemmar",
- "added": "Lades till",
- "addMemberPopup-title": "Medlemmar",
- "admin": "Adminstratör",
- "admin-desc": "Kan visa och redigera kort, ta bort medlemmar och ändra inställningarna för tavlan.",
- "admin-announcement": "Meddelande",
- "admin-announcement-active": "Aktivt systemövergripande meddelande",
- "admin-announcement-title": "Meddelande från administratör",
- "all-boards": "Alla tavlor",
- "and-n-other-card": "Och __count__ annat kort",
- "and-n-other-card_plural": "Och __count__ andra kort",
- "apply": "Tillämpa",
- "app-is-offline": "Läser in, vänligen vänta. Uppdatering av sidan kommer att orsaka förlust av data. Om inläsningen inte fungerar, kontrollera att servern inte har stoppats.",
- "archive": "Flytta till Arkiv",
- "archive-all": "Flytta Alla till Arkiv",
- "archive-board": "Flytta Tavla till Arkiv",
- "archive-card": "Flytta kort till arkiv",
- "archive-list": "Flytta Lista till Arkiv",
- "archive-swimlane": "Flytta simbana till arkiv",
- "archive-selection": "Flytta markerad till Arkiv",
- "archiveBoardPopup-title": "Flytta tavla till arkiv?",
- "archived-items": "Arkiv",
- "archived-boards": "Tavlor i arkiv",
- "restore-board": "Återställ tavla",
- "no-archived-boards": "Inga tavlor i arkiv.",
- "archives": "Arkiv",
- "template": "Mall",
- "templates": "Mallar",
- "assign-member": "Tilldela medlem",
- "attached": "bifogad",
- "attachment": "Bilaga",
- "attachment-delete-pop": "Radera en bilaga är permanent. Det går inte att ångra.",
- "attachmentDeletePopup-title": "Radera bilaga?",
- "attachments": "Bilagor",
- "auto-watch": "Bevaka automatiskt tavlor när de skapas",
- "avatar-too-big": "Avataren är för stor (max 520 kB)",
- "back": "Tillbaka",
- "board-change-color": "Ändra färg",
- "board-nb-stars": "%s stjärnor",
- "board-not-found": "Tavla hittades inte",
- "board-private-info": "Denna tavla kommer vara privat.",
- "board-public-info": "Denna tavla kommer vara offentlig.",
- "boardChangeColorPopup-title": "Ändra tavelbakgrund",
- "boardChangeTitlePopup-title": "Byt namn på tavla",
- "boardChangeVisibilityPopup-title": "Ändra synlighet",
- "boardChangeWatchPopup-title": "Ändra bevaka",
- "boardMenuPopup-title": "Tavelinställningar",
- "boardChangeViewPopup-title": "Tavelvy",
- "boards": "Tavlor",
- "board-view": "Tavelvy",
- "board-view-cal": "Kalender",
- "board-view-swimlanes": "Simbanor",
- "board-view-collapse": "Fäll ihop",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listor",
- "bucket-example": "Som t.ex. \"Kalasplanering\"",
- "cancel": "Avbryt",
- "card-archived": "Detta kort är flyttat till arkiv.",
- "board-archived": "Den här tavlan är flyttad till arkiv.",
- "card-comments-title": "Detta kort har %s kommentar.",
- "card-delete-notice": "Radering är permanent. Du kommer att förlora alla händelser kopplade till detta kort.",
- "card-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna öppna kortet igen. Det går inte att ångra.",
- "card-delete-suggest-archive": "Du kan flytta ett kort till Arkiv för att ta bort det från tavlan och bevara aktiviteten.",
- "card-due": "Förfaller",
- "card-due-on": "Förfaller på",
- "card-spent": "Spenderad tid",
- "card-edit-attachments": "Redigera bilagor",
- "card-edit-custom-fields": "Redigera anpassade fält",
- "card-edit-labels": "Redigera etiketter",
- "card-edit-members": "Redigera medlemmar",
- "card-labels-title": "Ändra etiketterna för kortet.",
- "card-members-title": "Lägg till eller ta bort medlemmar i tavlan från kortet.",
- "card-start": "Påbörjades",
- "card-start-on": "Börjar med",
- "cardAttachmentsPopup-title": "Bifoga Från",
- "cardCustomField-datePopup-title": "Ändra datum",
- "cardCustomFieldsPopup-title": "Redigera anpassade fält",
- "cardStartVotingPopup-title": "Påbörja en omröstning",
- "positiveVoteMembersPopup-title": "Förespråkare",
- "negativeVoteMembersPopup-title": "Opponenter",
- "card-edit-voting": "Redigera omröstning",
- "editVoteEndDatePopup-title": "Ändra slutdatum för omröstning",
- "allowNonBoardMembers": "Tillåt alla inloggade användare",
- "vote-question": "Omröstningsfråga",
- "vote-public": "Visa vem som röstade på vad",
- "vote-for-it": "för",
- "vote-against": "emot",
- "deleteVotePopup-title": "Radera omröstning?",
- "vote-delete-pop": "Radering är permanent. Du kommer förlora alla händelser kopplade till denna röstning.",
- "cardDeletePopup-title": "Radera kort?",
- "cardDetailsActionsPopup-title": "Korthändelser",
- "cardLabelsPopup-title": "Etiketter",
- "cardMembersPopup-title": "Medlemmar",
- "cardMorePopup-title": "Mer",
- "cardTemplatePopup-title": "Skapa mall",
- "cards": "Kort",
- "cards-count": "Kort",
- "casSignIn": "Logga in med CAS",
- "cardType-card": "Kort",
- "cardType-linkedCard": "Länkat kort",
- "cardType-linkedBoard": "Länkad tavla",
- "change": "Ändra",
- "change-avatar": "Ändra avatar",
- "change-password": "Ändra lösenord",
- "change-permissions": "Ändra behörigheter",
- "change-settings": "Ändra inställningar",
- "changeAvatarPopup-title": "Ändra avatar",
- "changeLanguagePopup-title": "Ändra språk",
- "changePasswordPopup-title": "Ändra lösenord",
- "changePermissionsPopup-title": "Ändra behörigheter",
- "changeSettingsPopup-title": "Ändra inställningar",
- "subtasks": "Deluppgifter",
- "checklists": "Checklistor",
- "click-to-star": "Klicka för att stjärnmärka denna tavla.",
- "click-to-unstar": "Klicka för att ta bort stjärnmärkningen från denna tavla.",
- "clipboard": "Urklipp eller dra & släpp",
- "close": "Stäng",
- "close-board": "Stäng tavla",
- "close-board-pop": "Du kommer att kunna återställa tavlan genom att klicka på knappen \"Arkiv\" i huvudmenyn.",
- "color-black": "svart",
- "color-blue": "blå",
- "color-crimson": "mörkröd",
- "color-darkgreen": "mörkgrön",
- "color-gold": "guld",
- "color-gray": "grå",
- "color-green": "grön",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "ljusrosa",
- "color-navy": "marinblå",
- "color-orange": "orange",
- "color-paleturquoise": "turkos",
- "color-peachpuff": "persika",
- "color-pink": "rosa",
- "color-plum": "lila",
- "color-purple": "lila",
- "color-red": "röd",
- "color-saddlebrown": "sadelbrun",
- "color-silver": "silver",
- "color-sky": "himmel",
- "color-slateblue": "skifferblå",
- "color-white": "vit",
- "color-yellow": "gul",
- "unset-color": "Ta bort",
- "comment": "Kommentera",
- "comment-placeholder": "Skriv kommentar",
- "comment-only": "Kommentera endast",
- "comment-only-desc": "Kan endast kommentera kort.",
- "no-comments": "Inga kommentarer",
- "no-comments-desc": "Kan inte se kommentarer och aktiviteter.",
- "worker": "Worker",
- "worker-desc": "Kan endast flytta kort, tilldela sig själv till kort och kommentera.",
- "computer": "Dator",
- "confirm-subtask-delete-dialog": "Är du säker på att du vill radera deluppgift?",
- "confirm-checklist-delete-dialog": "Är du säker på att du vill radera checklista?",
- "copy-card-link-to-clipboard": "Kopiera kortlänk till urklipp",
- "linkCardPopup-title": "Länka kort",
- "searchElementPopup-title": "Sök",
- "copyCardPopup-title": "Kopiera kort",
- "copyChecklistToManyCardsPopup-title": "Kopiera Checklistmallen till Flera Kort",
- "copyChecklistToManyCardsPopup-instructions": "Destinationskorttitlar och beskrivningar i detta JSON-format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Första kortets titel\", \"description\":\"Första kortets beskrivning\"}, {\"title\":\"Andra kortets titel\",\"description\":\"Andra kortets beskrivning\"},{\"title\":\"Sista kortets titel\",\"description\":\"Sista kortets beskrivning\"} ]",
- "create": "Skapa",
- "createBoardPopup-title": "Skapa tavla",
- "chooseBoardSourcePopup-title": "Importera tavla",
- "createLabelPopup-title": "Skapa etikett",
- "createCustomField": "Skapa fält",
- "createCustomFieldPopup-title": "Skapa fält",
- "current": "aktuell",
- "custom-field-delete-pop": "Det går inte att ångra. Detta tar bort det här anpassade fältet från alla kort och förstör dess historik.",
- "custom-field-checkbox": "Kryssruta",
- "custom-field-currency": "Valuta",
- "custom-field-currency-option": "Valutakod",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Rullgardinsmeny",
- "custom-field-dropdown-none": "(inga)",
- "custom-field-dropdown-options": "Listalternativ",
- "custom-field-dropdown-options-placeholder": "Tryck på enter för att lägga till fler alternativ",
- "custom-field-dropdown-unknown": "(okänd)",
- "custom-field-number": "Nummer",
- "custom-field-text": "Text",
- "custom-fields": "Anpassade fält",
- "date": "Datum",
- "decline": "Nedgång",
- "default-avatar": "Standard avatar",
- "delete": "Ta bort",
- "deleteCustomFieldPopup-title": "Radera anpassat fält?",
- "deleteLabelPopup-title": "Radera etikett?",
- "description": "Beskrivning",
- "disambiguateMultiLabelPopup-title": "Precisera etiketthändelse",
- "disambiguateMultiMemberPopup-title": "Precisera medlemshändelse",
- "discard": "Ignorera",
- "done": "Färdig",
- "download": "Hämta",
- "edit": "Redigera",
- "edit-avatar": "Ändra avatar",
- "edit-profile": "Redigera profil",
- "edit-wip-limit": "Redigera WIP-gräns",
- "soft-wip-limit": "Mjuk WIP-gräns",
- "editCardStartDatePopup-title": "Ändra startdatum",
- "editCardDueDatePopup-title": "Ändra förfallodatum",
- "editCustomFieldPopup-title": "Redigera fält",
- "editCardSpentTimePopup-title": "Ändra spenderad tid",
- "editLabelPopup-title": "Ändra etikett",
- "editNotificationPopup-title": "Redigera notis",
- "editProfilePopup-title": "Redigera profil",
- "email": "E-post",
- "email-enrollAccount-subject": "Ett konto skapat för dig på __siteName__",
- "email-enrollAccount-text": "Hej __user__,\n\nFör att börja använda tjänsten, klicka på länken nedan.\n\n__url__\n\nTack!",
- "email-fail": "Sändning av e-post misslyckades",
- "email-fail-text": "Ett fel vid försök att skicka e-post",
- "email-invalid": "Ogiltig e-post",
- "email-invite": "Bjud in via e-post",
- "email-invite-subject": "__inviter__ skickade dig en inbjudan",
- "email-invite-text": "Kära __user__,\n\n__inviter__ inbjuder dig till tavlan \"__board__\" för samarbete.\n\nFölj länken nedan:\n\n__url__\n\nTack.",
- "email-resetPassword-subject": "Återställa lösenordet för __siteName__",
- "email-resetPassword-text": "Hej __user__,\n\nFör att återställa ditt lösenord, klicka på länken nedan.\n\n__url__\n\nTack!",
- "email-sent": "E-post skickad",
- "email-verifyEmail-subject": "Verifiera din e-post adress på __siteName__",
- "email-verifyEmail-text": "Hej __user__,\n\nFör att verifiera din konto e-post, klicka på länken nedan.\n\n__url__\n\nTack!",
- "enable-wip-limit": "Aktivera WIP-gräns",
- "error-board-doesNotExist": "Denna tavla finns inte",
- "error-board-notAdmin": "Du måste vara administratör för denna tavla för att göra det",
- "error-board-notAMember": "Du måste vara medlem i denna tavla för att göra det",
- "error-json-malformed": "Din text är inte giltigt JSON",
- "error-json-schema": "Din JSON data inkluderar inte korrekt information i rätt format",
- "error-csv-schema": "Din CSV(Comma Separated Values)/TSV (Tab Separated Values) innehåller inte korrekt information i rätt format.",
- "error-list-doesNotExist": "Denna lista finns inte",
- "error-user-doesNotExist": "Denna användare finns inte",
- "error-user-notAllowSelf": "Du kan inte bjuda in dig själv",
- "error-user-notCreated": "Den här användaren har inte skapats",
- "error-username-taken": "Detta användarnamn är redan taget",
- "error-email-taken": "E-post har redan tagits",
- "export-board": "Exportera tavla",
- "export-board-json": "Exportera tavla till JSON",
- "export-board-csv": "Expoertera tavla till CSV",
- "export-board-tsv": "Exportera tavla till TSV",
- "export-board-html": "Exportera tavla till HTML",
- "exportBoardPopup-title": "Exportera tavla",
- "sort": "Sortera",
- "sort-desc": "Klicka för att sortera listan",
- "list-sort-by": "Sortera listan efter:",
- "list-label-modifiedAt": "Sista åtkomsttid",
- "list-label-title": "Namn på listan",
- "list-label-sort": "Din Manuella Ordning",
- "list-label-short-modifiedAt": "(S)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filtrera",
- "filter-cards": "Filtrera kort eller listor",
- "list-filter-label": "Filtrera lista efter titel",
- "filter-clear": "Rensa filter",
- "filter-labels-label": "Filtrera på etikett",
- "filter-no-label": "Ingen etikett",
- "filter-member-label": "Filtrera på medlem",
- "filter-no-member": "Ingen medlem",
- "filter-assignee-label": "Filtrera på tilldelad till",
- "filter-no-assignee": "Inte tilldelad",
- "filter-custom-fields-label": "Filtrera på anpassade fält",
- "filter-no-custom-fields": "Inga anpassade fält",
- "filter-show-archive": "Visa arkiverade listor",
- "filter-hide-empty": "Dölj tomma listor",
- "filter-on": "Filter är på",
- "filter-on-desc": "Du filtrerar kort på denna tavla. Klicka här för att redigera filter.",
- "filter-to-selection": "Filter till val",
- "other-filters-label": "Andra filter",
- "advanced-filter-label": "Avancerat filter",
- "advanced-filter-description": "Avancerade filter låter dig skriva en sträng innehållande följande operatorer: == != <= >= && || ( ). Ett mellanslag används som separator mellan operatorerna. Du kan filtrera alla specialfält genom att skriva dess namn och värde. Till exempel: Fält1 == Vårde1. Notera: om fälten eller värden innehåller mellanrum behöver du innesluta dem med enkla citatstecken. Till exempel: 'Fält 1' == 'Värde 1'. För att skippa enkla kontrolltecken (' \\/) kan du använda \\. Till exempel: Fält1 == I\\'m. Du kan även kombinera fler villkor. TIll exempel: F1 == V1 || F1 == V2. Vanligtvis läses operatorerna från vänster till höger. Du kan ändra ordning genom att använda paranteser. TIll exempel: F1 == V1 && ( F2 == V2 || F2 == V3 ). Du kan även söka efter textfält med hjälp av regex: F1 == /Tes.*/i",
- "fullname": "Namn",
- "header-logo-title": "Gå tillbaka till din anslagstavlor-sida.",
- "hide-system-messages": "Dölj systemmeddelanden",
- "headerBarCreateBoardPopup-title": "Skapa tavla",
- "home": "Hem",
- "import": "Importera",
- "impersonate-user": "Imitera användare",
- "link": "Länk",
- "import-board": "importera tavla",
- "import-board-c": "Importera tavla",
- "import-board-title-trello": "Importera tavla från Trello",
- "import-board-title-wekan": "Importera tavla från tidigare export",
- "import-board-title-csv": "Importera tavla från CSV/TSV",
- "from-trello": "Från Trello",
- "from-wekan": "Från tidigare export",
- "from-csv": "Från CSV/TSV",
- "import-board-instruction-trello": "I din Trello-tavla, gå till 'Meny', sedan 'Mera', 'Skriv ut och exportera', 'Exportera JSON' och kopiera den resulterande text.",
- "import-board-instruction-csv": "Klistra in Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "På din tavla, gå till \"Meny\", sedan \"Exportera tavla\" och kopiera texten i den hämtade filen.",
- "import-board-instruction-about-errors": "Om du får ett fel vid import av tavlor kan importen ändå gått bra och tavlan finns på översiktssidan.",
- "import-json-placeholder": "Klistra in giltigt JSON data här",
- "import-csv-placeholder": "Klistra in CSV/TSV data här",
- "import-map-members": "Kartlägg medlemmar",
- "import-members-map": "Din importerade tavla har några medlemmar. Vänligen matcha medlemmarna du vill importera mot dina användare",
- "import-show-user-mapping": "Granska medlemskartläggning",
- "import-user-select": "Välj din befintliga användare du vill använda som den här medlemmen",
- "importMapMembersAddPopup-title": "Välj medlem",
- "info": "Version",
- "initials": "Initialer",
- "invalid-date": "Ogiltigt datum",
- "invalid-time": "Ogiltig tid",
- "invalid-user": "Ogiltig användare",
- "joined": "gick med",
- "just-invited": "Du blev nyss inbjuden till denna tavla",
- "keyboard-shortcuts": "Tangentbordsgenvägar",
- "label-create": "Skapa etikett",
- "label-default": "%s etikett (standard)",
- "label-delete-pop": "Det går inte att ångra. Detta tar bort denna etikett från alla kort och förstör dess historik.",
- "labels": "Etiketter",
- "language": "Språk",
- "last-admin-desc": "Du kan inte ändra roller för det måste finnas minst en administratör.",
- "leave-board": "Lämna tavla",
- "leave-board-pop": "Är du säker på att du vill lämna __boardTitle__? Du kommer att tas bort från alla kort på den här tavlan.",
- "leaveBoardPopup-title": "Lämna tavla?",
- "link-card": "Länk till detta kort",
- "list-archive-cards": "Flytta alla kort i den här listan till arkiv",
- "list-archive-cards-pop": "Detta kommer att ta bort alla kort i denna lista från tavlan. För att visa kort i Arkiv och få dem tillbaka till tavlan, klicka på \"Meny\" > \"Arkiv\".",
- "list-move-cards": "Flytta alla kort i denna lista",
- "list-select-cards": "Välj alla kort i denna lista",
- "set-color-list": "Ange färg",
- "listActionPopup-title": "Liståtgärder",
- "settingsUserPopup-title": "Användarinställningar",
- "swimlaneActionPopup-title": "Inställningar för simbana",
- "swimlaneAddPopup-title": "Lägg till en simbana nedan",
- "listImportCardPopup-title": "Importera ett Trello kort",
- "listImportCardsTsvPopup-title": "Importera Excel CSV/TSV",
- "listMorePopup-title": "Mera",
- "link-list": "Länk till den här listan",
- "list-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna återställa listan. Det går inte att ångra.",
- "list-delete-suggest-archive": "Du kan flytta en lista till Arkiv för att ta bort den från tavlan och bevara aktiviteten.",
- "lists": "Listor",
- "swimlanes": "Simbanor",
- "log-out": "Logga ut",
- "log-in": "Logga in",
- "loginPopup-title": "Logga in",
- "memberMenuPopup-title": "Användarinställningar",
- "members": "Medlemmar",
- "menu": "Meny",
- "move-selection": "Flytta vald",
- "moveCardPopup-title": "Flytta kort",
- "moveCardToBottom-title": "Flytta längst ner",
- "moveCardToTop-title": "Flytta högst upp",
- "moveSelectionPopup-title": "Flytta vald",
- "multi-selection": "Flerval",
- "multi-selection-label": "Ange etikett för val",
- "multi-selection-member": "Ange medlem för val",
- "multi-selection-on": "Flerval är på",
- "muted": "Tystad",
- "muted-info": "Du kommer aldrig att få notiser om eventuella ändringar i denna tavla",
- "my-boards": "Mina tavlor",
- "name": "Namn",
- "no-archived-cards": "Inga kort i Arkiv.",
- "no-archived-lists": "Inga listor i Arkiv.",
- "no-archived-swimlanes": "Inga simbanor i arkiv.",
- "no-results": "Inga reslutat",
- "normal": "Normal",
- "normal-desc": "Kan se och redigera kort. Kan inte ändra inställningar.",
- "not-accepted-yet": "Inbjudan inte ännu accepterad",
- "notify-participate": "Få uppdateringar till alla kort du deltar i som skapare eller medlem",
- "notify-watch": "Få uppdateringar till alla anslagstavlor, listor, eller kort du bevakar",
- "optional": "valfri",
- "or": "eller",
- "page-maybe-private": "Denna sida kan vara privat. Du kanske kan se den genom att logga in.",
- "page-not-found": "Sidan hittades inte.",
- "password": "Lösenord",
- "paste-or-dragdrop": "klistra in eller dra och släpp bildfil till den (endast bilder)",
- "participating": "Deltagande",
- "preview": "Förhandsvisning",
- "previewAttachedImagePopup-title": "Förhandsvisning",
- "previewClipboardImagePopup-title": "Förhandsvisning",
- "private": "Privat",
- "private-desc": "Denna tavla är privat. Endast personer tillagda i tavlan kan se och redigera den.",
- "profile": "Profil",
- "public": "Offentlig",
- "public-desc": "Denna tavla är offentlig. Den är synlig för alla med länken och kommer att dyka upp i sökmotorer som Google. Endast personer tillagda i tavlan kan redigera.",
- "quick-access-description": "Stjärnmärk en tavla för att lägga till som genväg här.",
- "remove-cover": "Radera omslag",
- "remove-from-board": "Ta bort från tavla",
- "remove-label": "Ta bort etikett",
- "listDeletePopup-title": "Ta bort lista",
- "remove-member": "Ta bort medlem",
- "remove-member-from-card": "Ta bort från kort",
- "remove-member-pop": "Ta bort __name__ (__username__) från __boardTitle__? Medlemmen kommer att bli borttagen från alla kort i denna tavla. De kommer att få en notis.",
- "removeMemberPopup-title": "Ta bort medlem?",
- "rename": "Byt namn",
- "rename-board": "Byt namn på tavla",
- "restore": "Återställ",
- "save": "Spara",
- "search": "Sök",
- "rules": "Regler",
- "search-cards": "Sök i kort- och listtitlar, beskrivningar och anpassade fält på denna tavla",
- "search-example": "Text att söka efter?",
- "select-color": "Välj färg",
- "select-board": "Välj tavla",
- "set-wip-limit-value": "Ange en gräns för det maximala antalet uppgifter i den här listan",
- "setWipLimitPopup-title": "Ställ in WIP-gräns",
- "shortcut-assign-self": "Tilldela dig nuvarande kort",
- "shortcut-autocomplete-emoji": "Komplettera automatiskt emoji",
- "shortcut-autocomplete-members": "Komplettera automatiskt medlemmar",
- "shortcut-clear-filters": "Rensa alla filter",
- "shortcut-close-dialog": "Stäng dialog",
- "shortcut-filter-my-cards": "Filtrera mina kort",
- "shortcut-show-shortcuts": "Ta fram denna genvägslista",
- "shortcut-toggle-filterbar": "Växla filtrets sidofält",
- "shortcut-toggle-searchbar": "Växla sökfältet",
- "shortcut-toggle-sidebar": "Växla anslagstavlans sidofält",
- "show-cards-minimum-count": "Visa kortantal om listan innehåller mer än",
- "sidebar-open": "Stäng sidofält",
- "sidebar-close": "Stäng sidofält",
- "signupPopup-title": "Skapa ett konto",
- "star-board-title": "Klicka för att stjärnmärka denna tavla. Den kommer att visas högst upp på din lista över tavlor.",
- "starred-boards": "Stjärnmärkta anslagstavlor",
- "starred-boards-description": "Stjärnmärkta anslagstavlor visas högst upp på din lista över anslagstavlor.",
- "subscribe": "Prenumenera",
- "team": "Grupp",
- "this-board": "denna tavla",
- "this-card": "detta kort",
- "spent-time-hours": "Spenderad tid (timmar)",
- "overtime-hours": "Övertid (timmar)",
- "overtime": "Övertid",
- "has-overtime-cards": "Har övertidskort",
- "has-spenttime-cards": "Har spenderat tidkort",
- "time": "Tid",
- "title": "Titel",
- "tracking": "Spåra",
- "tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.",
- "type": "Skriv",
- "unassign-member": "Ta bort tilldelad medlem",
- "unsaved-description": "Du har en osparad beskrivning.",
- "unwatch": "Avbevaka",
- "upload": "Ladda upp",
- "upload-avatar": "Ladda upp en avatar",
- "uploaded-avatar": "Laddade upp en avatar",
- "custom-top-left-corner-logo-image-url": "Länk till anpassad logotypbild",
- "custom-top-left-corner-logo-link-url": "Länk för anpassad logotyp",
- "custom-top-left-corner-logo-height": "Anpassad logotyphöjd uppe till vänster. Standard: 27",
- "custom-login-logo-image-url": "Länk till bild för anpassad logotyp på inloggningssidan",
- "custom-login-logo-link-url": "Länk för anpassad logotyp på inloggningssidan",
- "text-below-custom-login-logo": "Text under anpassad logga för inloggning",
- "username": "Änvandarnamn",
- "view-it": "Visa det",
- "warn-list-archived": "varning: detta kort finns i en lista i Arkiv",
- "watch": "Bevaka",
- "watching": "Bevaka",
- "watching-info": "Du kommer att få notis om alla ändringar på denna tavla",
- "welcome-board": "Välkomstanslagstavla",
- "welcome-swimlane": "Milstolpe 1",
- "welcome-list1": "Grunderna",
- "welcome-list2": "Avancerad",
- "card-templates-swimlane": "Kortmallar",
- "list-templates-swimlane": "Listmallar",
- "board-templates-swimlane": "Tavelmallar",
- "what-to-do": "Vad vill du göra?",
- "wipLimitErrorPopup-title": "Ogiltig WIP-gräns",
- "wipLimitErrorPopup-dialog-pt1": "Antalet uppgifter i den här listan är högre än WIP-gränsen du har definierat.",
- "wipLimitErrorPopup-dialog-pt2": "Flytta några uppgifter ur listan, eller ställ in en högre WIP-gräns.",
- "admin-panel": "Administratörspanel",
- "settings": "Inställningar",
- "people": "Personer",
- "registration": "Registrering",
- "disable-self-registration": "Avaktiverar självregistrering",
- "invite": "Bjud in",
- "invite-people": "Bjud in personer",
- "to-boards": "Till anslagstavl(a/or)",
- "email-addresses": "E-post adresser",
- "smtp-host-description": "Adressen till SMTP-servern som hanterar din e-post.",
- "smtp-port-description": "Porten SMTP-servern använder för utgående e-post.",
- "smtp-tls-description": "Aktivera TLS-stöd för SMTP-server",
- "smtp-host": "SMTP-värd",
- "smtp-port": "SMTP-port",
- "smtp-username": "Användarnamn",
- "smtp-password": "Lösenord",
- "smtp-tls": "TLS-stöd",
- "send-from": "Från",
- "send-smtp-test": "Skicka ett prov e-postmeddelande till dig själv",
- "invitation-code": "Inbjudningskod",
- "email-invite-register-subject": "__inviter__ skickade dig en inbjudan",
- "email-invite-register-text": "Kära__user__,\n\n__inviter__ bjuder in dig att samarbeta på kanban-tavla.\n\nFölj länken nedan:\n__url__\n\nDin inbjudningskod är: __icode__\n\nTack!",
- "email-smtp-test-subject": "SMTP Test E-post",
- "email-smtp-test-text": "Du har skickat ett e-postmeddelande",
- "error-invitation-code-not-exist": "Inbjudningskod finns inte",
- "error-notAuthorized": "Du är inte behörig att se den här sidan.",
- "webhook-title": "Namn på webhook",
- "webhook-token": "Token (valfritt för autentisering)",
- "outgoing-webhooks": "Utgående Webhookar",
- "bidirectional-webhooks": "Dubbelriktade Webhookar",
- "outgoingWebhooksPopup-title": "Utgående Webhookar",
- "boardCardTitlePopup-title": "Korttitelfilter",
- "disable-webhook": "Avaktivera Denna Webhook",
- "global-webhook": "Globala Webhooks",
- "new-outgoing-webhook": "Ny utgående webhook",
- "no-name": "(Okänd)",
- "Node_version": "Nodversion",
- "Meteor_version": "Meteor-version",
- "MongoDB_version": "MongoDB-version",
- "MongoDB_storage_engine": "MongoDB-lagringsmotor",
- "MongoDB_Oplog_enabled": "MongoDB Oplog aktiverad",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU-räkning",
- "OS_Freemem": "OS ledigt minne",
- "OS_Loadavg": "OS belastningsgenomsnitt",
- "OS_Platform": "OS plattforme",
- "OS_Release": "OS utgåva",
- "OS_Totalmem": "OS totalt minne",
- "OS_Type": "OS Typ",
- "OS_Uptime": "OS drifttid",
- "days": "dagar",
- "hours": "timmar",
- "minutes": "minuter",
- "seconds": "sekunder",
- "show-field-on-card": "Visa detta fält på kort",
- "automatically-field-on-card": "Skapa automatiskt fält till alla kort",
- "showLabel-field-on-card": "Visa fältetikett på minikort",
- "yes": "Ja",
- "no": "Nej",
- "accounts": "Konton",
- "accounts-allowEmailChange": "Tillåt e-poständring",
- "accounts-allowUserNameChange": "Tillåt användarnamnändring",
- "createdAt": "Skapad vid",
- "verified": "Verifierad",
- "active": "Aktiv",
- "card-received": "Mottagen",
- "card-received-on": "Mottagen den",
- "card-end": "Avslutades",
- "card-end-on": "Slutar den",
- "editCardReceivedDatePopup-title": "Ändra mottagningsdatum",
- "editCardEndDatePopup-title": "Ändra slutdatum",
- "setCardColorPopup-title": "Ange färg",
- "setCardActionsColorPopup-title": "Välj en färg",
- "setSwimlaneColorPopup-title": "Välj en färg",
- "setListColorPopup-title": "Välj en färg",
- "assigned-by": "Tilldelad av",
- "requested-by": "Efterfrågad av",
- "board-delete-notice": "Radering är permanent. Du kommer förlora alla listor, kort och händelser kopplade till den här tavlan.",
- "delete-board-confirm-popup": "Alla listor, kort, etiketter och aktiviteter kommer tas bort och du kommer inte kunna återställa tavlans innehåll. Det går inte att ångra.",
- "boardDeletePopup-title": "Ta bort tavla?",
- "delete-board": "Ta bort tavla",
- "default-subtasks-board": "Deluppgifter för __board__ board",
- "default": "Standard",
- "queue": "Kö",
- "subtask-settings": "Deluppgift inställningar",
- "card-settings": "Kortinställningar",
- "boardSubtaskSettingsPopup-title": "Tavelinställningar för Deluppgifter",
- "boardCardSettingsPopup-title": "Kortinställningar",
- "deposit-subtasks-board": "Lägg till deluppgifter till denna tavla:",
- "deposit-subtasks-list": "Landningslista för deluppgifter deponerade här:",
- "show-parent-in-minicard": "Visa överordnad i minikort:",
- "prefix-with-full-path": "Prefix med fullständig sökväg",
- "prefix-with-parent": "Prefix med överordnad",
- "subtext-with-full-path": "Undertext med fullständig sökväg",
- "subtext-with-parent": "Undertext med överordnad",
- "change-card-parent": "Ändra kortets förälder",
- "parent-card": "Ovankort",
- "source-board": "Tavelkälla",
- "no-parent": "Visa inte överordnad",
- "activity-added-label": "lade till etiketten '%s' till %s",
- "activity-removed-label": "tog bort etiketten '%s' från %s",
- "activity-delete-attach": "raderade en bilaga från %s",
- "activity-added-label-card": "lade till etiketten \"%s\"",
- "activity-removed-label-card": "tog bort etiketten \"%s\"",
- "activity-delete-attach-card": "tog bort en bilaga",
- "activity-set-customfield": "ställ in anpassat fält \"%s\" till \"%s\" i %s",
- "activity-unset-customfield": "koppla bort anpassat fält \"%s\" i %s",
- "r-rule": "Regel",
- "r-add-trigger": "Lägg till utlösare",
- "r-add-action": "Lägg till åtgärd",
- "r-board-rules": "Tavelregler",
- "r-add-rule": "Lägg till regel",
- "r-view-rule": "Visa regel",
- "r-delete-rule": "Ta bort regel",
- "r-new-rule-name": "Ny titel på regel",
- "r-no-rules": "Inga regler",
- "r-trigger": "Trigger",
- "r-action": "Åtgärd",
- "r-when-a-card": "När ett kort",
- "r-is": "är",
- "r-is-moved": "är flyttat",
- "r-added-to": "Tillagd till",
- "r-removed-from": "Borttagen från",
- "r-the-board": "tavlan",
- "r-list": "lista",
- "set-filter": "Ställ in filter",
- "r-moved-to": "Flyttat till",
- "r-moved-from": "Flyttad från",
- "r-archived": "Flyttad till Arkiv",
- "r-unarchived": "Återställd från Arkiv",
- "r-a-card": "ett kort",
- "r-when-a-label-is": "När en etikett är",
- "r-when-the-label": "När etiketten",
- "r-list-name": "listnamn",
- "r-when-a-member": "När en medlem är",
- "r-when-the-member": "När medlemmen",
- "r-name": "namn",
- "r-when-a-attach": "När en bilaga",
- "r-when-a-checklist": "När en checklista är",
- "r-when-the-checklist": "När checklistan",
- "r-completed": "Avslutad",
- "r-made-incomplete": "Gjord ofullständig",
- "r-when-a-item": "När ett checklistobjekt är",
- "r-when-the-item": "När checklistans objekt",
- "r-checked": "Kryssad",
- "r-unchecked": "Okryssad",
- "r-move-card-to": "Flytta kort till",
- "r-top-of": "Överst på",
- "r-bottom-of": "Nederst av",
- "r-its-list": "sin lista",
- "r-archive": "Flytta till Arkiv",
- "r-unarchive": "Återställ från Arkiv",
- "r-card": "kort",
- "r-add": "Lägg till",
- "r-remove": "Ta bort",
- "r-label": "etikett",
- "r-member": "medlem",
- "r-remove-all": "Ta bort alla medlemmar från kortet",
- "r-set-color": "Ställ in färg till",
- "r-checklist": "checklista",
- "r-check-all": "Kryssa alla",
- "r-uncheck-all": "Avkryssa alla",
- "r-items-check": "objekt på checklistan",
- "r-check": "Kryssa",
- "r-uncheck": "Avkryssa",
- "r-item": "objekt",
- "r-of-checklist": "av checklistan",
- "r-send-email": "Skicka ett e-postmeddelande",
- "r-to": "till",
- "r-of": "av",
- "r-subject": "änme",
- "r-rule-details": "Regeldetaljer",
- "r-d-move-to-top-gen": "Flytta kort till toppen av sin lista",
- "r-d-move-to-top-spec": "Flytta kort till toppen av listan",
- "r-d-move-to-bottom-gen": "Flytta kort till botten av sin lista",
- "r-d-move-to-bottom-spec": "Flytta kort till botten av listan",
- "r-d-send-email": "Skicka e-post",
- "r-d-send-email-to": "till",
- "r-d-send-email-subject": "ämne",
- "r-d-send-email-message": "meddelande",
- "r-d-archive": "Flytta kort till arkiv",
- "r-d-unarchive": "Återställ kortet från Arkiv",
- "r-d-add-label": "Lägg till etikett",
- "r-d-remove-label": "Ta bort etikett",
- "r-create-card": "Skapa nytt kort",
- "r-in-list": "i listan",
- "r-in-swimlane": "i simbana",
- "r-d-add-member": "Lägg till medlem",
- "r-d-remove-member": "Ta bort medlem",
- "r-d-remove-all-member": "Ta bort alla medlemmar",
- "r-d-check-all": "Kryssa alla objekt i en lista",
- "r-d-uncheck-all": "Avkryssa alla objekt i en lista",
- "r-d-check-one": "Kryssa objekt",
- "r-d-uncheck-one": "Avkryssa objekt",
- "r-d-check-of-list": "av checklistan",
- "r-d-add-checklist": "Lägg till checklista",
- "r-d-remove-checklist": "Ta bort checklista",
- "r-by": "av",
- "r-add-checklist": "Lägg till checklista",
- "r-with-items": "med objekt",
- "r-items-list": "objekt1,objekt2,objekt3",
- "r-add-swimlane": "Lägg till simbana",
- "r-swimlane-name": "Simbanans namn",
- "r-board-note": "Notera: lämna ett fält tomt för att matcha alla möjliga värden.",
- "r-checklist-note": "Notera: objekt i en checklista måste skrivas som kommaseparerade värden.",
- "r-when-a-card-is-moved": "När ett kort flyttas till en annan lista",
- "r-set": "Ange",
- "r-update": "Uppdatera",
- "r-datefield": "datumfält",
- "r-df-start-at": "start",
- "r-df-due-at": "förfallotid",
- "r-df-end-at": "slut",
- "r-df-received-at": "mottaget",
- "r-to-current-datetime": "till aktuellt datum/klockslag",
- "r-remove-value-from": "Ta bort värde från",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Autentiseringsmetod",
- "authentication-type": "Autentiseringstyp",
- "custom-product-name": "Anpassat produktnamn",
- "layout": "Layout",
- "hide-logo": "Dölj logotypen",
- "add-custom-html-after-body-start": "Lägg till anpassad HTML efter start",
- "add-custom-html-before-body-end": "Lägg till anpassad HTML före slut",
- "error-undefined": "Något gick fel",
- "error-ldap-login": "Ett fel uppstod när du försökte logga in",
- "display-authentication-method": "Visa autentiseringsmetod",
- "default-authentication-method": "Standard autentiseringsmetod",
- "duplicate-board": "Duplicera tavla",
- "people-number": "Antalet personer är:",
- "swimlaneDeletePopup-title": "Radera simbana?",
- "swimlane-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna återställa simbanan. Det går inte att ångra.",
- "restore-all": "Återställ alla",
- "delete-all": "Ta bort alla",
- "loading": "Läser in, var god vänta.",
- "previous_as": "förra gången var",
- "act-a-dueAt": "ändrad förfallotid till \nNär: __timeValue__\nVar: __card__\n tidigare förfallotid var __timeOldValue__",
- "act-a-endAt": "ändrad sluttid till __timeValue__ från (__timeOldValue__)",
- "act-a-startAt": "ändrad starttid till __timeValue__ från (__timeOldValue__)",
- "act-a-receivedAt": "ändrad mottagen tid till __timeValue__ från (__timeOldValue__)",
- "a-dueAt": "ändrad förfallotid att vara",
- "a-endAt": "ändrad sluttid att vara",
- "a-startAt": "ändrad starttid att vara",
- "a-receivedAt": "ändrad mottagen tid att vara",
- "almostdue": "aktuell förfallotid %s närmar sig",
- "pastdue": "aktuell förfallotid %s är förbi",
- "duenow": "aktuell förfallotid %s är idag",
- "act-newDue": "__list__/__card__ har en 1:a påminnelse [__board__]",
- "act-withDue": "__list__/__card__ påminnelser [__board__]",
- "act-almostdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ närmar sig",
- "act-pastdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är förbi",
- "act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
- "act-atUserComment": "Du omnämndes i [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Är du säker på att du vill ta bort det här kontot? Det går inte att ångra sig.",
- "accounts-allowUserDelete": "Tillåt användare att själv ta bort sina konton",
- "hide-minicard-label-text": "Dölj etikett för minikort",
- "show-desktop-drag-handles": "Visa greppytor i desktop",
- "assignee": "Tilldelad till",
- "cardAssigneesPopup-title": "Tilldelad till",
- "addmore-detail": "Lägg till detaljerad beskrivning",
- "show-on-card": "Visa på kort",
- "new": "Ny",
- "editUserPopup-title": "Redigera användare",
- "newUserPopup-title": "Ny användare",
- "notifications": "Notiser",
- "view-all": "Visa Allt",
- "filter-by-unread": "Filtrera efter Oläst",
- "mark-all-as-read": "Markera alla som lästa",
- "remove-all-read": "Ta bort alla lästa",
- "allow-rename": "Tillåt Namnändring",
- "allowRenamePopup-title": "Tillåt Namnändring",
- "start-day-of-week": "Ange veckans första dag",
- "monday": "Måndag",
- "tuesday": "Tisdag",
- "wednesday": "Onsdag",
- "thursday": "Torsdag",
- "friday": "Fredag",
- "saturday": "Lördag",
- "sunday": "Söndag",
- "status": "Status",
- "swimlane": "Simbana",
- "owner": "Ägare",
- "last-modified-at": "Senast ändrad",
- "last-activity": "Senaste aktivitet",
- "voting": "Röstning",
- "archived": "Arkiverad",
- "delete-linked-card-before-this-card": "Du kan inte radera det här kortet innan du raderat länkat kort som har",
- "delete-linked-cards-before-this-list": "Du kan inte radera den här listan innan du raderat länkade kort som pekar till kort i den här listan",
- "hide-checked-items": "Dölj markerade objekt",
- "task": "Uppgift",
- "create-task": "Skapa uppgift",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Acceptera",
+ "act-activity-notify": "Aktivitetsnotis",
+ "act-addAttachment": "lade till filen __attachment__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-deleteAttachment": "raderade filen __attachment__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addSubtask": "lade till underaktivitet __subtask__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addedLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-removeLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-removedLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addChecklist": "lade till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addChecklistItem": "lade till checklisteobjekt __checklistItem__ till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-removeChecklist": "tog bort checklista __checklist__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-removeChecklistItem": "tog bort checklisteobjekt __checklistItem__ från __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-checkedItem": "klarmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-uncheckedItem": "avmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-completeChecklist": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-uncompleteChecklist": "ofullbordade checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-addComment": "kommenterade på kort __card__: __comment__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-editComment": "redigerade kommentar på kort __card__: __comment__ i listan __list__ i simbana __swimlane__ på tavla __board__",
+ "act-deleteComment": "raderade kommentar på kort __card__: __comment__ i listan __list__ i simbana __swimlane__ på tavla __board__",
+ "act-createBoard": "skapade tavla __board__",
+ "act-createSwimlane": "skapade simbana __swimlane__ i tavla __board__",
+ "act-createCard": "skapade kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-createCustomField": "skapade anpassat fält __customField__ på tavla __board__",
+ "act-deleteCustomField": "raderade anpassat fält __customField__ på tavla __board__",
+ "act-setCustomField": "redigerade anpassat fält __customField__: __customFieldValue__ på kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-createList": "lade till lista __list__ på tavla __board__",
+ "act-addBoardMember": "lade till medlem __member__ på tavla __board__",
+ "act-archivedBoard": "Tavlan __board__ flyttad till arkivet",
+ "act-archivedCard": "Kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
+ "act-archivedList": "Lista __list__ i simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
+ "act-archivedSwimlane": "Simbana __swimlane__ på tavla __board__ flyttad till Arkiv",
+ "act-importBoard": "importerade tavla __board__",
+ "act-importCard": "importerade kort __card__ till lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-importList": "importerade lista __list__ till simbana __swimlane__ på tavla __board__",
+ "act-joinMember": "lade till medlem __member__ till kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-moveCard": "flyttade kort __card__ på tavla __board__ från lista __oldList__ i simbana __oldSwimlane__ till lista __list__ i simbana __swimlane__",
+ "act-moveCardToOtherBoard": "flyttade kort __card__ från lista __oldList__ i simbana __oldSwimlane__ på tavla __oldBoard__ till lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-removeBoardMember": "tog bort medlem __member__ från tavla __board__",
+ "act-restoredCard": "återställde kort __card__ till lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-unjoinMember": "tog bort medlem __member__ från kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Händelser",
+ "activities": "Aktiviteter",
+ "activity": "Aktivitet",
+ "activity-added": "lade till %s till %s",
+ "activity-archived": "%s flyttades till Arkiv",
+ "activity-attached": "bifogade %s till %s",
+ "activity-created": "skapade %s",
+ "activity-customfield-created": "skapade anpassat fält %s",
+ "activity-excluded": "exkluderade %s från %s",
+ "activity-imported": "importerade %s till %s från %s",
+ "activity-imported-board": "importerade %s från %s",
+ "activity-joined": "gick med i %s",
+ "activity-moved": "flyttade %s från %s till %s",
+ "activity-on": "på %s",
+ "activity-removed": "tog bort %s från %s",
+ "activity-sent": "skickade %s till %s",
+ "activity-unjoined": "lämnade %s",
+ "activity-subtask-added": "lade till deluppgift till %s",
+ "activity-checked-item": "klarmarkerade %s i checklistan %s av %s",
+ "activity-unchecked-item": "avmarkerade %s i checklistan %s av %s",
+ "activity-checklist-added": "lade till checklista till %s",
+ "activity-checklist-removed": "tog bort en checklista från %s",
+ "activity-checklist-completed": "slutförde checklista %s av %s",
+ "activity-checklist-uncompleted": "ofullbordade checklistan %s av %s",
+ "activity-checklist-item-added": "lade till checklistobjekt till \"%s\" i %s",
+ "activity-checklist-item-removed": "tog bort ett checklistobjekt från \"%s\" i %s",
+ "add": "Lägg till",
+ "activity-checked-item-card": "klarmarkerade %s i checklistan %s",
+ "activity-unchecked-item-card": "avmarkerade %s i checklistan %s",
+ "activity-checklist-completed-card": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på tavla __board__",
+ "activity-checklist-uncompleted-card": "ofullbordade checklistan %s",
+ "activity-editComment": "redigerade kommentar %s",
+ "activity-deleteComment": "raderade kommentar %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Lägg till bilaga",
+ "add-board": "Lägg till tavla",
+ "add-card": "Lägg till kort",
+ "add-swimlane": "Lägg till simbana",
+ "add-subtask": "Lägg till deluppgift",
+ "add-checklist": "Lägg till checklista",
+ "add-checklist-item": "Lägg till objekt i checklista",
+ "add-cover": "Lägg till omslag",
+ "add-label": "Lägg till etikett",
+ "add-list": "Lägg till lista",
+ "add-members": "Lägg till medlemmar",
+ "added": "Lades till",
+ "addMemberPopup-title": "Medlemmar",
+ "admin": "Adminstratör",
+ "admin-desc": "Kan visa och redigera kort, ta bort medlemmar och ändra inställningarna för tavlan.",
+ "admin-announcement": "Meddelande",
+ "admin-announcement-active": "Aktivt systemövergripande meddelande",
+ "admin-announcement-title": "Meddelande från administratör",
+ "all-boards": "Alla tavlor",
+ "and-n-other-card": "Och __count__ annat kort",
+ "and-n-other-card_plural": "Och __count__ andra kort",
+ "apply": "Tillämpa",
+ "app-is-offline": "Läser in, vänligen vänta. Uppdatering av sidan kommer att orsaka förlust av data. Om inläsningen inte fungerar, kontrollera att servern inte har stoppats.",
+ "archive": "Flytta till Arkiv",
+ "archive-all": "Flytta Alla till Arkiv",
+ "archive-board": "Flytta Tavla till Arkiv",
+ "archive-card": "Flytta kort till arkiv",
+ "archive-list": "Flytta Lista till Arkiv",
+ "archive-swimlane": "Flytta simbana till arkiv",
+ "archive-selection": "Flytta markerad till Arkiv",
+ "archiveBoardPopup-title": "Flytta tavla till arkiv?",
+ "archived-items": "Arkiv",
+ "archived-boards": "Tavlor i arkiv",
+ "restore-board": "Återställ tavla",
+ "no-archived-boards": "Inga tavlor i arkiv.",
+ "archives": "Arkiv",
+ "template": "Mall",
+ "templates": "Mallar",
+ "assign-member": "Tilldela medlem",
+ "attached": "bifogad",
+ "attachment": "Bilaga",
+ "attachment-delete-pop": "Radera en bilaga är permanent. Det går inte att ångra.",
+ "attachmentDeletePopup-title": "Radera bilaga?",
+ "attachments": "Bilagor",
+ "auto-watch": "Bevaka automatiskt tavlor när de skapas",
+ "avatar-too-big": "Avataren är för stor (max 520 kB)",
+ "back": "Tillbaka",
+ "board-change-color": "Ändra färg",
+ "board-nb-stars": "%s stjärnor",
+ "board-not-found": "Tavla hittades inte",
+ "board-private-info": "Denna tavla kommer vara privat.",
+ "board-public-info": "Denna tavla kommer vara offentlig.",
+ "boardChangeColorPopup-title": "Ändra tavelbakgrund",
+ "boardChangeTitlePopup-title": "Byt namn på tavla",
+ "boardChangeVisibilityPopup-title": "Ändra synlighet",
+ "boardChangeWatchPopup-title": "Ändra bevaka",
+ "boardMenuPopup-title": "Tavelinställningar",
+ "boardChangeViewPopup-title": "Tavelvy",
+ "boards": "Tavlor",
+ "board-view": "Tavelvy",
+ "board-view-cal": "Kalender",
+ "board-view-swimlanes": "Simbanor",
+ "board-view-collapse": "Fäll ihop",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listor",
+ "bucket-example": "Som t.ex. \"Kalasplanering\"",
+ "cancel": "Avbryt",
+ "card-archived": "Detta kort är flyttat till arkiv.",
+ "board-archived": "Den här tavlan är flyttad till arkiv.",
+ "card-comments-title": "Detta kort har %s kommentar.",
+ "card-delete-notice": "Radering är permanent. Du kommer att förlora alla händelser kopplade till detta kort.",
+ "card-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna öppna kortet igen. Det går inte att ångra.",
+ "card-delete-suggest-archive": "Du kan flytta ett kort till Arkiv för att ta bort det från tavlan och bevara aktiviteten.",
+ "card-due": "Förfaller",
+ "card-due-on": "Förfaller på",
+ "card-spent": "Spenderad tid",
+ "card-edit-attachments": "Redigera bilagor",
+ "card-edit-custom-fields": "Redigera anpassade fält",
+ "card-edit-labels": "Redigera etiketter",
+ "card-edit-members": "Redigera medlemmar",
+ "card-labels-title": "Ändra etiketterna för kortet.",
+ "card-members-title": "Lägg till eller ta bort medlemmar i tavlan från kortet.",
+ "card-start": "Påbörjades",
+ "card-start-on": "Börjar med",
+ "cardAttachmentsPopup-title": "Bifoga Från",
+ "cardCustomField-datePopup-title": "Ändra datum",
+ "cardCustomFieldsPopup-title": "Redigera anpassade fält",
+ "cardStartVotingPopup-title": "Påbörja en omröstning",
+ "positiveVoteMembersPopup-title": "Förespråkare",
+ "negativeVoteMembersPopup-title": "Opponenter",
+ "card-edit-voting": "Redigera omröstning",
+ "editVoteEndDatePopup-title": "Ändra slutdatum för omröstning",
+ "allowNonBoardMembers": "Tillåt alla inloggade användare",
+ "vote-question": "Omröstningsfråga",
+ "vote-public": "Visa vem som röstade på vad",
+ "vote-for-it": "för",
+ "vote-against": "emot",
+ "deleteVotePopup-title": "Radera omröstning?",
+ "vote-delete-pop": "Radering är permanent. Du kommer förlora alla händelser kopplade till denna röstning.",
+ "cardDeletePopup-title": "Radera kort?",
+ "cardDetailsActionsPopup-title": "Korthändelser",
+ "cardLabelsPopup-title": "Etiketter",
+ "cardMembersPopup-title": "Medlemmar",
+ "cardMorePopup-title": "Mer",
+ "cardTemplatePopup-title": "Skapa mall",
+ "cards": "Kort",
+ "cards-count": "Kort",
+ "casSignIn": "Logga in med CAS",
+ "cardType-card": "Kort",
+ "cardType-linkedCard": "Länkat kort",
+ "cardType-linkedBoard": "Länkad tavla",
+ "change": "Ändra",
+ "change-avatar": "Ändra avatar",
+ "change-password": "Ändra lösenord",
+ "change-permissions": "Ändra behörigheter",
+ "change-settings": "Ändra inställningar",
+ "changeAvatarPopup-title": "Ändra avatar",
+ "changeLanguagePopup-title": "Ändra språk",
+ "changePasswordPopup-title": "Ändra lösenord",
+ "changePermissionsPopup-title": "Ändra behörigheter",
+ "changeSettingsPopup-title": "Ändra inställningar",
+ "subtasks": "Deluppgifter",
+ "checklists": "Checklistor",
+ "click-to-star": "Klicka för att stjärnmärka denna tavla.",
+ "click-to-unstar": "Klicka för att ta bort stjärnmärkningen från denna tavla.",
+ "clipboard": "Urklipp eller dra & släpp",
+ "close": "Stäng",
+ "close-board": "Stäng tavla",
+ "close-board-pop": "Du kommer att kunna återställa tavlan genom att klicka på knappen \"Arkiv\" i huvudmenyn.",
+ "color-black": "svart",
+ "color-blue": "blå",
+ "color-crimson": "mörkröd",
+ "color-darkgreen": "mörkgrön",
+ "color-gold": "guld",
+ "color-gray": "grå",
+ "color-green": "grön",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "ljusrosa",
+ "color-navy": "marinblå",
+ "color-orange": "orange",
+ "color-paleturquoise": "turkos",
+ "color-peachpuff": "persika",
+ "color-pink": "rosa",
+ "color-plum": "lila",
+ "color-purple": "lila",
+ "color-red": "röd",
+ "color-saddlebrown": "sadelbrun",
+ "color-silver": "silver",
+ "color-sky": "himmel",
+ "color-slateblue": "skifferblå",
+ "color-white": "vit",
+ "color-yellow": "gul",
+ "unset-color": "Ta bort",
+ "comment": "Kommentera",
+ "comment-placeholder": "Skriv kommentar",
+ "comment-only": "Kommentera endast",
+ "comment-only-desc": "Kan endast kommentera kort.",
+ "no-comments": "Inga kommentarer",
+ "no-comments-desc": "Kan inte se kommentarer och aktiviteter.",
+ "worker": "Worker",
+ "worker-desc": "Kan endast flytta kort, tilldela sig själv till kort och kommentera.",
+ "computer": "Dator",
+ "confirm-subtask-delete-dialog": "Är du säker på att du vill radera deluppgift?",
+ "confirm-checklist-delete-dialog": "Är du säker på att du vill radera checklista?",
+ "copy-card-link-to-clipboard": "Kopiera kortlänk till urklipp",
+ "linkCardPopup-title": "Länka kort",
+ "searchElementPopup-title": "Sök",
+ "copyCardPopup-title": "Kopiera kort",
+ "copyChecklistToManyCardsPopup-title": "Kopiera Checklistmallen till Flera Kort",
+ "copyChecklistToManyCardsPopup-instructions": "Destinationskorttitlar och beskrivningar i detta JSON-format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Första kortets titel\", \"description\":\"Första kortets beskrivning\"}, {\"title\":\"Andra kortets titel\",\"description\":\"Andra kortets beskrivning\"},{\"title\":\"Sista kortets titel\",\"description\":\"Sista kortets beskrivning\"} ]",
+ "create": "Skapa",
+ "createBoardPopup-title": "Skapa tavla",
+ "chooseBoardSourcePopup-title": "Importera tavla",
+ "createLabelPopup-title": "Skapa etikett",
+ "createCustomField": "Skapa fält",
+ "createCustomFieldPopup-title": "Skapa fält",
+ "current": "aktuell",
+ "custom-field-delete-pop": "Det går inte att ångra. Detta tar bort det här anpassade fältet från alla kort och förstör dess historik.",
+ "custom-field-checkbox": "Kryssruta",
+ "custom-field-currency": "Valuta",
+ "custom-field-currency-option": "Valutakod",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Rullgardinsmeny",
+ "custom-field-dropdown-none": "(inga)",
+ "custom-field-dropdown-options": "Listalternativ",
+ "custom-field-dropdown-options-placeholder": "Tryck på enter för att lägga till fler alternativ",
+ "custom-field-dropdown-unknown": "(okänd)",
+ "custom-field-number": "Nummer",
+ "custom-field-text": "Text",
+ "custom-fields": "Anpassade fält",
+ "date": "Datum",
+ "decline": "Nedgång",
+ "default-avatar": "Standard avatar",
+ "delete": "Ta bort",
+ "deleteCustomFieldPopup-title": "Radera anpassat fält?",
+ "deleteLabelPopup-title": "Radera etikett?",
+ "description": "Beskrivning",
+ "disambiguateMultiLabelPopup-title": "Precisera etiketthändelse",
+ "disambiguateMultiMemberPopup-title": "Precisera medlemshändelse",
+ "discard": "Ignorera",
+ "done": "Färdig",
+ "download": "Hämta",
+ "edit": "Redigera",
+ "edit-avatar": "Ändra avatar",
+ "edit-profile": "Redigera profil",
+ "edit-wip-limit": "Redigera WIP-gräns",
+ "soft-wip-limit": "Mjuk WIP-gräns",
+ "editCardStartDatePopup-title": "Ändra startdatum",
+ "editCardDueDatePopup-title": "Ändra förfallodatum",
+ "editCustomFieldPopup-title": "Redigera fält",
+ "editCardSpentTimePopup-title": "Ändra spenderad tid",
+ "editLabelPopup-title": "Ändra etikett",
+ "editNotificationPopup-title": "Redigera notis",
+ "editProfilePopup-title": "Redigera profil",
+ "email": "E-post",
+ "email-enrollAccount-subject": "Ett konto skapat för dig på __siteName__",
+ "email-enrollAccount-text": "Hej __user__,\n\nFör att börja använda tjänsten, klicka på länken nedan.\n\n__url__\n\nTack!",
+ "email-fail": "Sändning av e-post misslyckades",
+ "email-fail-text": "Ett fel vid försök att skicka e-post",
+ "email-invalid": "Ogiltig e-post",
+ "email-invite": "Bjud in via e-post",
+ "email-invite-subject": "__inviter__ skickade dig en inbjudan",
+ "email-invite-text": "Kära __user__,\n\n__inviter__ inbjuder dig till tavlan \"__board__\" för samarbete.\n\nFölj länken nedan:\n\n__url__\n\nTack.",
+ "email-resetPassword-subject": "Återställa lösenordet för __siteName__",
+ "email-resetPassword-text": "Hej __user__,\n\nFör att återställa ditt lösenord, klicka på länken nedan.\n\n__url__\n\nTack!",
+ "email-sent": "E-post skickad",
+ "email-verifyEmail-subject": "Verifiera din e-post adress på __siteName__",
+ "email-verifyEmail-text": "Hej __user__,\n\nFör att verifiera din konto e-post, klicka på länken nedan.\n\n__url__\n\nTack!",
+ "enable-wip-limit": "Aktivera WIP-gräns",
+ "error-board-doesNotExist": "Denna tavla finns inte",
+ "error-board-notAdmin": "Du måste vara administratör för denna tavla för att göra det",
+ "error-board-notAMember": "Du måste vara medlem i denna tavla för att göra det",
+ "error-json-malformed": "Din text är inte giltigt JSON",
+ "error-json-schema": "Din JSON data inkluderar inte korrekt information i rätt format",
+ "error-csv-schema": "Din CSV(Comma Separated Values)/TSV (Tab Separated Values) innehåller inte korrekt information i rätt format.",
+ "error-list-doesNotExist": "Denna lista finns inte",
+ "error-user-doesNotExist": "Denna användare finns inte",
+ "error-user-notAllowSelf": "Du kan inte bjuda in dig själv",
+ "error-user-notCreated": "Den här användaren har inte skapats",
+ "error-username-taken": "Detta användarnamn är redan taget",
+ "error-email-taken": "E-post har redan tagits",
+ "export-board": "Exportera tavla",
+ "export-board-json": "Exportera tavla till JSON",
+ "export-board-csv": "Expoertera tavla till CSV",
+ "export-board-tsv": "Exportera tavla till TSV",
+ "export-board-html": "Exportera tavla till HTML",
+ "exportBoardPopup-title": "Exportera tavla",
+ "sort": "Sortera",
+ "sort-desc": "Klicka för att sortera listan",
+ "list-sort-by": "Sortera listan efter:",
+ "list-label-modifiedAt": "Sista åtkomsttid",
+ "list-label-title": "Namn på listan",
+ "list-label-sort": "Din Manuella Ordning",
+ "list-label-short-modifiedAt": "(S)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtrera",
+ "filter-cards": "Filtrera kort eller listor",
+ "list-filter-label": "Filtrera lista efter titel",
+ "filter-clear": "Rensa filter",
+ "filter-labels-label": "Filtrera på etikett",
+ "filter-no-label": "Ingen etikett",
+ "filter-member-label": "Filtrera på medlem",
+ "filter-no-member": "Ingen medlem",
+ "filter-assignee-label": "Filtrera på tilldelad till",
+ "filter-no-assignee": "Inte tilldelad",
+ "filter-custom-fields-label": "Filtrera på anpassade fält",
+ "filter-no-custom-fields": "Inga anpassade fält",
+ "filter-show-archive": "Visa arkiverade listor",
+ "filter-hide-empty": "Dölj tomma listor",
+ "filter-on": "Filter är på",
+ "filter-on-desc": "Du filtrerar kort på denna tavla. Klicka här för att redigera filter.",
+ "filter-to-selection": "Filter till val",
+ "other-filters-label": "Andra filter",
+ "advanced-filter-label": "Avancerat filter",
+ "advanced-filter-description": "Avancerade filter låter dig skriva en sträng innehållande följande operatorer: == != <= >= && || ( ). Ett mellanslag används som separator mellan operatorerna. Du kan filtrera alla specialfält genom att skriva dess namn och värde. Till exempel: Fält1 == Vårde1. Notera: om fälten eller värden innehåller mellanrum behöver du innesluta dem med enkla citatstecken. Till exempel: 'Fält 1' == 'Värde 1'. För att skippa enkla kontrolltecken (' \\/) kan du använda \\. Till exempel: Fält1 == I\\'m. Du kan även kombinera fler villkor. TIll exempel: F1 == V1 || F1 == V2. Vanligtvis läses operatorerna från vänster till höger. Du kan ändra ordning genom att använda paranteser. TIll exempel: F1 == V1 && ( F2 == V2 || F2 == V3 ). Du kan även söka efter textfält med hjälp av regex: F1 == /Tes.*/i",
+ "fullname": "Namn",
+ "header-logo-title": "Gå tillbaka till din anslagstavlor-sida.",
+ "hide-system-messages": "Dölj systemmeddelanden",
+ "headerBarCreateBoardPopup-title": "Skapa tavla",
+ "home": "Hem",
+ "import": "Importera",
+ "impersonate-user": "Imitera användare",
+ "link": "Länk",
+ "import-board": "importera tavla",
+ "import-board-c": "Importera tavla",
+ "import-board-title-trello": "Importera tavla från Trello",
+ "import-board-title-wekan": "Importera tavla från tidigare export",
+ "import-board-title-csv": "Importera tavla från CSV/TSV",
+ "from-trello": "Från Trello",
+ "from-wekan": "Från tidigare export",
+ "from-csv": "Från CSV/TSV",
+ "import-board-instruction-trello": "I din Trello-tavla, gå till 'Meny', sedan 'Mera', 'Skriv ut och exportera', 'Exportera JSON' och kopiera den resulterande text.",
+ "import-board-instruction-csv": "Klistra in Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "På din tavla, gå till \"Meny\", sedan \"Exportera tavla\" och kopiera texten i den hämtade filen.",
+ "import-board-instruction-about-errors": "Om du får ett fel vid import av tavlor kan importen ändå gått bra och tavlan finns på översiktssidan.",
+ "import-json-placeholder": "Klistra in giltigt JSON data här",
+ "import-csv-placeholder": "Klistra in CSV/TSV data här",
+ "import-map-members": "Kartlägg medlemmar",
+ "import-members-map": "Din importerade tavla har några medlemmar. Vänligen matcha medlemmarna du vill importera mot dina användare",
+ "import-show-user-mapping": "Granska medlemskartläggning",
+ "import-user-select": "Välj din befintliga användare du vill använda som den här medlemmen",
+ "importMapMembersAddPopup-title": "Välj medlem",
+ "info": "Version",
+ "initials": "Initialer",
+ "invalid-date": "Ogiltigt datum",
+ "invalid-time": "Ogiltig tid",
+ "invalid-user": "Ogiltig användare",
+ "joined": "gick med",
+ "just-invited": "Du blev nyss inbjuden till denna tavla",
+ "keyboard-shortcuts": "Tangentbordsgenvägar",
+ "label-create": "Skapa etikett",
+ "label-default": "%s etikett (standard)",
+ "label-delete-pop": "Det går inte att ångra. Detta tar bort denna etikett från alla kort och förstör dess historik.",
+ "labels": "Etiketter",
+ "language": "Språk",
+ "last-admin-desc": "Du kan inte ändra roller för det måste finnas minst en administratör.",
+ "leave-board": "Lämna tavla",
+ "leave-board-pop": "Är du säker på att du vill lämna __boardTitle__? Du kommer att tas bort från alla kort på den här tavlan.",
+ "leaveBoardPopup-title": "Lämna tavla?",
+ "link-card": "Länk till detta kort",
+ "list-archive-cards": "Flytta alla kort i den här listan till arkiv",
+ "list-archive-cards-pop": "Detta kommer att ta bort alla kort i denna lista från tavlan. För att visa kort i Arkiv och få dem tillbaka till tavlan, klicka på \"Meny\" > \"Arkiv\".",
+ "list-move-cards": "Flytta alla kort i denna lista",
+ "list-select-cards": "Välj alla kort i denna lista",
+ "set-color-list": "Ange färg",
+ "listActionPopup-title": "Liståtgärder",
+ "settingsUserPopup-title": "Användarinställningar",
+ "swimlaneActionPopup-title": "Inställningar för simbana",
+ "swimlaneAddPopup-title": "Lägg till en simbana nedan",
+ "listImportCardPopup-title": "Importera ett Trello kort",
+ "listImportCardsTsvPopup-title": "Importera Excel CSV/TSV",
+ "listMorePopup-title": "Mera",
+ "link-list": "Länk till den här listan",
+ "list-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna återställa listan. Det går inte att ångra.",
+ "list-delete-suggest-archive": "Du kan flytta en lista till Arkiv för att ta bort den från tavlan och bevara aktiviteten.",
+ "lists": "Listor",
+ "swimlanes": "Simbanor",
+ "log-out": "Logga ut",
+ "log-in": "Logga in",
+ "loginPopup-title": "Logga in",
+ "memberMenuPopup-title": "Användarinställningar",
+ "members": "Medlemmar",
+ "menu": "Meny",
+ "move-selection": "Flytta vald",
+ "moveCardPopup-title": "Flytta kort",
+ "moveCardToBottom-title": "Flytta längst ner",
+ "moveCardToTop-title": "Flytta högst upp",
+ "moveSelectionPopup-title": "Flytta vald",
+ "multi-selection": "Flerval",
+ "multi-selection-label": "Ange etikett för val",
+ "multi-selection-member": "Ange medlem för val",
+ "multi-selection-on": "Flerval är på",
+ "muted": "Tystad",
+ "muted-info": "Du kommer aldrig att få notiser om eventuella ändringar i denna tavla",
+ "my-boards": "Mina tavlor",
+ "name": "Namn",
+ "no-archived-cards": "Inga kort i Arkiv.",
+ "no-archived-lists": "Inga listor i Arkiv.",
+ "no-archived-swimlanes": "Inga simbanor i arkiv.",
+ "no-results": "Inga reslutat",
+ "normal": "Normal",
+ "normal-desc": "Kan se och redigera kort. Kan inte ändra inställningar.",
+ "not-accepted-yet": "Inbjudan inte ännu accepterad",
+ "notify-participate": "Få uppdateringar till alla kort du deltar i som skapare eller medlem",
+ "notify-watch": "Få uppdateringar till alla anslagstavlor, listor, eller kort du bevakar",
+ "optional": "valfri",
+ "or": "eller",
+ "page-maybe-private": "Denna sida kan vara privat. Du kanske kan se den genom att logga in.",
+ "page-not-found": "Sidan hittades inte.",
+ "password": "Lösenord",
+ "paste-or-dragdrop": "klistra in eller dra och släpp bildfil till den (endast bilder)",
+ "participating": "Deltagande",
+ "preview": "Förhandsvisning",
+ "previewAttachedImagePopup-title": "Förhandsvisning",
+ "previewClipboardImagePopup-title": "Förhandsvisning",
+ "private": "Privat",
+ "private-desc": "Denna tavla är privat. Endast personer tillagda i tavlan kan se och redigera den.",
+ "profile": "Profil",
+ "public": "Offentlig",
+ "public-desc": "Denna tavla är offentlig. Den är synlig för alla med länken och kommer att dyka upp i sökmotorer som Google. Endast personer tillagda i tavlan kan redigera.",
+ "quick-access-description": "Stjärnmärk en tavla för att lägga till som genväg här.",
+ "remove-cover": "Radera omslag",
+ "remove-from-board": "Ta bort från tavla",
+ "remove-label": "Ta bort etikett",
+ "listDeletePopup-title": "Ta bort lista",
+ "remove-member": "Ta bort medlem",
+ "remove-member-from-card": "Ta bort från kort",
+ "remove-member-pop": "Ta bort __name__ (__username__) från __boardTitle__? Medlemmen kommer att bli borttagen från alla kort i denna tavla. De kommer att få en notis.",
+ "removeMemberPopup-title": "Ta bort medlem?",
+ "rename": "Byt namn",
+ "rename-board": "Byt namn på tavla",
+ "restore": "Återställ",
+ "save": "Spara",
+ "search": "Sök",
+ "rules": "Regler",
+ "search-cards": "Sök i kort- och listtitlar, beskrivningar och anpassade fält på denna tavla",
+ "search-example": "Text att söka efter?",
+ "select-color": "Välj färg",
+ "select-board": "Välj tavla",
+ "set-wip-limit-value": "Ange en gräns för det maximala antalet uppgifter i den här listan",
+ "setWipLimitPopup-title": "Ställ in WIP-gräns",
+ "shortcut-assign-self": "Tilldela dig nuvarande kort",
+ "shortcut-autocomplete-emoji": "Komplettera automatiskt emoji",
+ "shortcut-autocomplete-members": "Komplettera automatiskt medlemmar",
+ "shortcut-clear-filters": "Rensa alla filter",
+ "shortcut-close-dialog": "Stäng dialog",
+ "shortcut-filter-my-cards": "Filtrera mina kort",
+ "shortcut-show-shortcuts": "Ta fram denna genvägslista",
+ "shortcut-toggle-filterbar": "Växla filtrets sidofält",
+ "shortcut-toggle-searchbar": "Växla sökfältet",
+ "shortcut-toggle-sidebar": "Växla anslagstavlans sidofält",
+ "show-cards-minimum-count": "Visa kortantal om listan innehåller mer än",
+ "sidebar-open": "Stäng sidofält",
+ "sidebar-close": "Stäng sidofält",
+ "signupPopup-title": "Skapa ett konto",
+ "star-board-title": "Klicka för att stjärnmärka denna tavla. Den kommer att visas högst upp på din lista över tavlor.",
+ "starred-boards": "Stjärnmärkta anslagstavlor",
+ "starred-boards-description": "Stjärnmärkta anslagstavlor visas högst upp på din lista över anslagstavlor.",
+ "subscribe": "Prenumenera",
+ "team": "Grupp",
+ "this-board": "denna tavla",
+ "this-card": "detta kort",
+ "spent-time-hours": "Spenderad tid (timmar)",
+ "overtime-hours": "Övertid (timmar)",
+ "overtime": "Övertid",
+ "has-overtime-cards": "Har övertidskort",
+ "has-spenttime-cards": "Har spenderat tidkort",
+ "time": "Tid",
+ "title": "Titel",
+ "tracking": "Spåra",
+ "tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.",
+ "type": "Skriv",
+ "unassign-member": "Ta bort tilldelad medlem",
+ "unsaved-description": "Du har en osparad beskrivning.",
+ "unwatch": "Avbevaka",
+ "upload": "Ladda upp",
+ "upload-avatar": "Ladda upp en avatar",
+ "uploaded-avatar": "Laddade upp en avatar",
+ "custom-top-left-corner-logo-image-url": "Länk till anpassad logotypbild",
+ "custom-top-left-corner-logo-link-url": "Länk för anpassad logotyp",
+ "custom-top-left-corner-logo-height": "Anpassad logotyphöjd uppe till vänster. Standard: 27",
+ "custom-login-logo-image-url": "Länk till bild för anpassad logotyp på inloggningssidan",
+ "custom-login-logo-link-url": "Länk för anpassad logotyp på inloggningssidan",
+ "text-below-custom-login-logo": "Text under anpassad logga för inloggning",
+ "username": "Änvandarnamn",
+ "view-it": "Visa det",
+ "warn-list-archived": "varning: detta kort finns i en lista i Arkiv",
+ "watch": "Bevaka",
+ "watching": "Bevaka",
+ "watching-info": "Du kommer att få notis om alla ändringar på denna tavla",
+ "welcome-board": "Välkomstanslagstavla",
+ "welcome-swimlane": "Milstolpe 1",
+ "welcome-list1": "Grunderna",
+ "welcome-list2": "Avancerad",
+ "card-templates-swimlane": "Kortmallar",
+ "list-templates-swimlane": "Listmallar",
+ "board-templates-swimlane": "Tavelmallar",
+ "what-to-do": "Vad vill du göra?",
+ "wipLimitErrorPopup-title": "Ogiltig WIP-gräns",
+ "wipLimitErrorPopup-dialog-pt1": "Antalet uppgifter i den här listan är högre än WIP-gränsen du har definierat.",
+ "wipLimitErrorPopup-dialog-pt2": "Flytta några uppgifter ur listan, eller ställ in en högre WIP-gräns.",
+ "admin-panel": "Administratörspanel",
+ "settings": "Inställningar",
+ "people": "Personer",
+ "registration": "Registrering",
+ "disable-self-registration": "Avaktiverar självregistrering",
+ "invite": "Bjud in",
+ "invite-people": "Bjud in personer",
+ "to-boards": "Till anslagstavl(a/or)",
+ "email-addresses": "E-post adresser",
+ "smtp-host-description": "Adressen till SMTP-servern som hanterar din e-post.",
+ "smtp-port-description": "Porten SMTP-servern använder för utgående e-post.",
+ "smtp-tls-description": "Aktivera TLS-stöd för SMTP-server",
+ "smtp-host": "SMTP-värd",
+ "smtp-port": "SMTP-port",
+ "smtp-username": "Användarnamn",
+ "smtp-password": "Lösenord",
+ "smtp-tls": "TLS-stöd",
+ "send-from": "Från",
+ "send-smtp-test": "Skicka ett prov e-postmeddelande till dig själv",
+ "invitation-code": "Inbjudningskod",
+ "email-invite-register-subject": "__inviter__ skickade dig en inbjudan",
+ "email-invite-register-text": "Kära__user__,\n\n__inviter__ bjuder in dig att samarbeta på kanban-tavla.\n\nFölj länken nedan:\n__url__\n\nDin inbjudningskod är: __icode__\n\nTack!",
+ "email-smtp-test-subject": "SMTP Test E-post",
+ "email-smtp-test-text": "Du har skickat ett e-postmeddelande",
+ "error-invitation-code-not-exist": "Inbjudningskod finns inte",
+ "error-notAuthorized": "Du är inte behörig att se den här sidan.",
+ "webhook-title": "Namn på webhook",
+ "webhook-token": "Token (valfritt för autentisering)",
+ "outgoing-webhooks": "Utgående Webhookar",
+ "bidirectional-webhooks": "Dubbelriktade Webhookar",
+ "outgoingWebhooksPopup-title": "Utgående Webhookar",
+ "boardCardTitlePopup-title": "Korttitelfilter",
+ "disable-webhook": "Avaktivera Denna Webhook",
+ "global-webhook": "Globala Webhooks",
+ "new-outgoing-webhook": "Ny utgående webhook",
+ "no-name": "(Okänd)",
+ "Node_version": "Nodversion",
+ "Meteor_version": "Meteor-version",
+ "MongoDB_version": "MongoDB-version",
+ "MongoDB_storage_engine": "MongoDB-lagringsmotor",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog aktiverad",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU-räkning",
+ "OS_Freemem": "OS ledigt minne",
+ "OS_Loadavg": "OS belastningsgenomsnitt",
+ "OS_Platform": "OS plattforme",
+ "OS_Release": "OS utgåva",
+ "OS_Totalmem": "OS totalt minne",
+ "OS_Type": "OS Typ",
+ "OS_Uptime": "OS drifttid",
+ "days": "dagar",
+ "hours": "timmar",
+ "minutes": "minuter",
+ "seconds": "sekunder",
+ "show-field-on-card": "Visa detta fält på kort",
+ "automatically-field-on-card": "Skapa automatiskt fält till alla kort",
+ "showLabel-field-on-card": "Visa fältetikett på minikort",
+ "yes": "Ja",
+ "no": "Nej",
+ "accounts": "Konton",
+ "accounts-allowEmailChange": "Tillåt e-poständring",
+ "accounts-allowUserNameChange": "Tillåt användarnamnändring",
+ "createdAt": "Skapad vid",
+ "verified": "Verifierad",
+ "active": "Aktiv",
+ "card-received": "Mottagen",
+ "card-received-on": "Mottagen den",
+ "card-end": "Avslutades",
+ "card-end-on": "Slutar den",
+ "editCardReceivedDatePopup-title": "Ändra mottagningsdatum",
+ "editCardEndDatePopup-title": "Ändra slutdatum",
+ "setCardColorPopup-title": "Ange färg",
+ "setCardActionsColorPopup-title": "Välj en färg",
+ "setSwimlaneColorPopup-title": "Välj en färg",
+ "setListColorPopup-title": "Välj en färg",
+ "assigned-by": "Tilldelad av",
+ "requested-by": "Efterfrågad av",
+ "board-delete-notice": "Radering är permanent. Du kommer förlora alla listor, kort och händelser kopplade till den här tavlan.",
+ "delete-board-confirm-popup": "Alla listor, kort, etiketter och aktiviteter kommer tas bort och du kommer inte kunna återställa tavlans innehåll. Det går inte att ångra.",
+ "boardDeletePopup-title": "Ta bort tavla?",
+ "delete-board": "Ta bort tavla",
+ "default-subtasks-board": "Deluppgifter för __board__ board",
+ "default": "Standard",
+ "queue": "Kö",
+ "subtask-settings": "Deluppgift inställningar",
+ "card-settings": "Kortinställningar",
+ "boardSubtaskSettingsPopup-title": "Tavelinställningar för Deluppgifter",
+ "boardCardSettingsPopup-title": "Kortinställningar",
+ "deposit-subtasks-board": "Lägg till deluppgifter till denna tavla:",
+ "deposit-subtasks-list": "Landningslista för deluppgifter deponerade här:",
+ "show-parent-in-minicard": "Visa överordnad i minikort:",
+ "prefix-with-full-path": "Prefix med fullständig sökväg",
+ "prefix-with-parent": "Prefix med överordnad",
+ "subtext-with-full-path": "Undertext med fullständig sökväg",
+ "subtext-with-parent": "Undertext med överordnad",
+ "change-card-parent": "Ändra kortets förälder",
+ "parent-card": "Ovankort",
+ "source-board": "Tavelkälla",
+ "no-parent": "Visa inte överordnad",
+ "activity-added-label": "lade till etiketten '%s' till %s",
+ "activity-removed-label": "tog bort etiketten '%s' från %s",
+ "activity-delete-attach": "raderade en bilaga från %s",
+ "activity-added-label-card": "lade till etiketten \"%s\"",
+ "activity-removed-label-card": "tog bort etiketten \"%s\"",
+ "activity-delete-attach-card": "tog bort en bilaga",
+ "activity-set-customfield": "ställ in anpassat fält \"%s\" till \"%s\" i %s",
+ "activity-unset-customfield": "koppla bort anpassat fält \"%s\" i %s",
+ "r-rule": "Regel",
+ "r-add-trigger": "Lägg till utlösare",
+ "r-add-action": "Lägg till åtgärd",
+ "r-board-rules": "Tavelregler",
+ "r-add-rule": "Lägg till regel",
+ "r-view-rule": "Visa regel",
+ "r-delete-rule": "Ta bort regel",
+ "r-new-rule-name": "Ny titel på regel",
+ "r-no-rules": "Inga regler",
+ "r-trigger": "Trigger",
+ "r-action": "Åtgärd",
+ "r-when-a-card": "När ett kort",
+ "r-is": "är",
+ "r-is-moved": "är flyttat",
+ "r-added-to": "Tillagd till",
+ "r-removed-from": "Borttagen från",
+ "r-the-board": "tavlan",
+ "r-list": "lista",
+ "set-filter": "Ställ in filter",
+ "r-moved-to": "Flyttat till",
+ "r-moved-from": "Flyttad från",
+ "r-archived": "Flyttad till Arkiv",
+ "r-unarchived": "Återställd från Arkiv",
+ "r-a-card": "ett kort",
+ "r-when-a-label-is": "När en etikett är",
+ "r-when-the-label": "När etiketten",
+ "r-list-name": "listnamn",
+ "r-when-a-member": "När en medlem är",
+ "r-when-the-member": "När medlemmen",
+ "r-name": "namn",
+ "r-when-a-attach": "När en bilaga",
+ "r-when-a-checklist": "När en checklista är",
+ "r-when-the-checklist": "När checklistan",
+ "r-completed": "Avslutad",
+ "r-made-incomplete": "Gjord ofullständig",
+ "r-when-a-item": "När ett checklistobjekt är",
+ "r-when-the-item": "När checklistans objekt",
+ "r-checked": "Kryssad",
+ "r-unchecked": "Okryssad",
+ "r-move-card-to": "Flytta kort till",
+ "r-top-of": "Överst på",
+ "r-bottom-of": "Nederst av",
+ "r-its-list": "sin lista",
+ "r-archive": "Flytta till Arkiv",
+ "r-unarchive": "Återställ från Arkiv",
+ "r-card": "kort",
+ "r-add": "Lägg till",
+ "r-remove": "Ta bort",
+ "r-label": "etikett",
+ "r-member": "medlem",
+ "r-remove-all": "Ta bort alla medlemmar från kortet",
+ "r-set-color": "Ställ in färg till",
+ "r-checklist": "checklista",
+ "r-check-all": "Kryssa alla",
+ "r-uncheck-all": "Avkryssa alla",
+ "r-items-check": "objekt på checklistan",
+ "r-check": "Kryssa",
+ "r-uncheck": "Avkryssa",
+ "r-item": "objekt",
+ "r-of-checklist": "av checklistan",
+ "r-send-email": "Skicka ett e-postmeddelande",
+ "r-to": "till",
+ "r-of": "av",
+ "r-subject": "änme",
+ "r-rule-details": "Regeldetaljer",
+ "r-d-move-to-top-gen": "Flytta kort till toppen av sin lista",
+ "r-d-move-to-top-spec": "Flytta kort till toppen av listan",
+ "r-d-move-to-bottom-gen": "Flytta kort till botten av sin lista",
+ "r-d-move-to-bottom-spec": "Flytta kort till botten av listan",
+ "r-d-send-email": "Skicka e-post",
+ "r-d-send-email-to": "till",
+ "r-d-send-email-subject": "ämne",
+ "r-d-send-email-message": "meddelande",
+ "r-d-archive": "Flytta kort till arkiv",
+ "r-d-unarchive": "Återställ kortet från Arkiv",
+ "r-d-add-label": "Lägg till etikett",
+ "r-d-remove-label": "Ta bort etikett",
+ "r-create-card": "Skapa nytt kort",
+ "r-in-list": "i listan",
+ "r-in-swimlane": "i simbana",
+ "r-d-add-member": "Lägg till medlem",
+ "r-d-remove-member": "Ta bort medlem",
+ "r-d-remove-all-member": "Ta bort alla medlemmar",
+ "r-d-check-all": "Kryssa alla objekt i en lista",
+ "r-d-uncheck-all": "Avkryssa alla objekt i en lista",
+ "r-d-check-one": "Kryssa objekt",
+ "r-d-uncheck-one": "Avkryssa objekt",
+ "r-d-check-of-list": "av checklistan",
+ "r-d-add-checklist": "Lägg till checklista",
+ "r-d-remove-checklist": "Ta bort checklista",
+ "r-by": "av",
+ "r-add-checklist": "Lägg till checklista",
+ "r-with-items": "med objekt",
+ "r-items-list": "objekt1,objekt2,objekt3",
+ "r-add-swimlane": "Lägg till simbana",
+ "r-swimlane-name": "Simbanans namn",
+ "r-board-note": "Notera: lämna ett fält tomt för att matcha alla möjliga värden.",
+ "r-checklist-note": "Notera: objekt i en checklista måste skrivas som kommaseparerade värden.",
+ "r-when-a-card-is-moved": "När ett kort flyttas till en annan lista",
+ "r-set": "Ange",
+ "r-update": "Uppdatera",
+ "r-datefield": "datumfält",
+ "r-df-start-at": "start",
+ "r-df-due-at": "förfallotid",
+ "r-df-end-at": "slut",
+ "r-df-received-at": "mottaget",
+ "r-to-current-datetime": "till aktuellt datum/klockslag",
+ "r-remove-value-from": "Ta bort värde från",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Autentiseringsmetod",
+ "authentication-type": "Autentiseringstyp",
+ "custom-product-name": "Anpassat produktnamn",
+ "layout": "Layout",
+ "hide-logo": "Dölj logotypen",
+ "add-custom-html-after-body-start": "Lägg till anpassad HTML efter start",
+ "add-custom-html-before-body-end": "Lägg till anpassad HTML före slut",
+ "error-undefined": "Något gick fel",
+ "error-ldap-login": "Ett fel uppstod när du försökte logga in",
+ "display-authentication-method": "Visa autentiseringsmetod",
+ "default-authentication-method": "Standard autentiseringsmetod",
+ "duplicate-board": "Duplicera tavla",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Antalet personer är:",
+ "swimlaneDeletePopup-title": "Radera simbana?",
+ "swimlane-delete-pop": "Alla händelser kommer att tas bort från aktivitetsflödet och du kommer inte att kunna återställa simbanan. Det går inte att ångra.",
+ "restore-all": "Återställ alla",
+ "delete-all": "Ta bort alla",
+ "loading": "Läser in, var god vänta.",
+ "previous_as": "förra gången var",
+ "act-a-dueAt": "ändrad förfallotid till \nNär: __timeValue__\nVar: __card__\n tidigare förfallotid var __timeOldValue__",
+ "act-a-endAt": "ändrad sluttid till __timeValue__ från (__timeOldValue__)",
+ "act-a-startAt": "ändrad starttid till __timeValue__ från (__timeOldValue__)",
+ "act-a-receivedAt": "ändrad mottagen tid till __timeValue__ från (__timeOldValue__)",
+ "a-dueAt": "ändrad förfallotid att vara",
+ "a-endAt": "ändrad sluttid att vara",
+ "a-startAt": "ändrad starttid att vara",
+ "a-receivedAt": "ändrad mottagen tid att vara",
+ "almostdue": "aktuell förfallotid %s närmar sig",
+ "pastdue": "aktuell förfallotid %s är förbi",
+ "duenow": "aktuell förfallotid %s är idag",
+ "act-newDue": "__list__/__card__ har en 1:a påminnelse [__board__]",
+ "act-withDue": "__list__/__card__ påminnelser [__board__]",
+ "act-almostdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ närmar sig",
+ "act-pastdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är förbi",
+ "act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
+ "act-atUserComment": "Du omnämndes i [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Är du säker på att du vill ta bort det här kontot? Det går inte att ångra sig.",
+ "accounts-allowUserDelete": "Tillåt användare att själv ta bort sina konton",
+ "hide-minicard-label-text": "Dölj etikett för minikort",
+ "show-desktop-drag-handles": "Visa greppytor i desktop",
+ "assignee": "Tilldelad till",
+ "cardAssigneesPopup-title": "Tilldelad till",
+ "addmore-detail": "Lägg till detaljerad beskrivning",
+ "show-on-card": "Visa på kort",
+ "new": "Ny",
+ "editUserPopup-title": "Redigera användare",
+ "newUserPopup-title": "Ny användare",
+ "notifications": "Notiser",
+ "view-all": "Visa Allt",
+ "filter-by-unread": "Filtrera efter Oläst",
+ "mark-all-as-read": "Markera alla som lästa",
+ "remove-all-read": "Ta bort alla lästa",
+ "allow-rename": "Tillåt Namnändring",
+ "allowRenamePopup-title": "Tillåt Namnändring",
+ "start-day-of-week": "Ange veckans första dag",
+ "monday": "Måndag",
+ "tuesday": "Tisdag",
+ "wednesday": "Onsdag",
+ "thursday": "Torsdag",
+ "friday": "Fredag",
+ "saturday": "Lördag",
+ "sunday": "Söndag",
+ "status": "Status",
+ "swimlane": "Simbana",
+ "owner": "Ägare",
+ "last-modified-at": "Senast ändrad",
+ "last-activity": "Senaste aktivitet",
+ "voting": "Röstning",
+ "archived": "Arkiverad",
+ "delete-linked-card-before-this-card": "Du kan inte radera det här kortet innan du raderat länkat kort som har",
+ "delete-linked-cards-before-this-list": "Du kan inte radera den här listan innan du raderat länkade kort som pekar till kort i den här listan",
+ "hide-checked-items": "Dölj markerade objekt",
+ "task": "Uppgift",
+ "create-task": "Skapa uppgift",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/sw.i18n.json b/i18n/sw.i18n.json
index e0d47cb4b..bea44cdcd 100644
--- a/i18n/sw.i18n.json
+++ b/i18n/sw.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Kubali",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Rudi",
- "board-change-color": "Badilisha rangi",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Muda uliotumika",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Badilisha tarehe",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Funga",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "Nyeusi",
- "color-blue": "Samawati",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "Kijani",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Changia",
- "comment-placeholder": "Andika changio",
- "comment-only": "Changia pekee",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Tarakilishi",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Kubali",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Rudi",
+ "board-change-color": "Badilisha rangi",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Muda uliotumika",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Badilisha tarehe",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Funga",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "Nyeusi",
+ "color-blue": "Samawati",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "Kijani",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Changia",
+ "comment-placeholder": "Andika changio",
+ "comment-only": "Changia pekee",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Tarakilishi",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json
index 2b8091b4b..398e50996 100644
--- a/i18n/ta.i18n.json
+++ b/i18n/ta.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "ஏற்றுக்கொள்",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "உருவாக்கப்பட்டது ",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "சேர்ந்தது ",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "பிரிக்கப்பட்டது ",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "சேர் ",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "இணைப்பு ",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "இணைப்புகள் ",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "பின்செல் ",
- "board-change-color": "நிறம் மாற்று ",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "நாள்கட்டி ",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "மேலும் ",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "கடவுச்சொல்லை மாற்று ",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "கடவுச்சொல்லை மாற்றுக ",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "அடர் பச்சை ",
- "color-gold": "தங்கம் ",
- "color-gray": "gray",
- "color-green": "பச்சை ",
- "color-indigo": "indigo",
- "color-lime": "வெளிர் பச்சை ",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ஆரஞ்சு ",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "சிகப்பு ",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "வெள்ளி ",
- "color-sky": "வாணம் ",
- "color-slateblue": "slateblue",
- "color-white": "வெள்ளை ",
- "color-yellow": "மஞ்சள் ",
- "unset-color": "Unset",
- "comment": "கருத்து ",
- "comment-placeholder": "Write Comment",
- "comment-only": "கருத்து மட்டும் ",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "கருத்து இல்லை ",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "கணினி ",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "தேடு ",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "உருவாக்கு ",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "நாள் ",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "எண் ",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "நாள் ",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "பதிவிறக்கம் ",
- "edit": "திருத்து ",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "மின் அஞ்சல் ",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "முழு பெயர் ",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "தொடக்கம் ",
- "import": "பதிவேற்றம் ",
- "impersonate-user": "Impersonate user",
- "link": "இணை ",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "Trello ல் இருந்து ",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "மொழி ",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "நிறத்தை மாற்று ",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "மேலும் ",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "பெயர் ",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "கடவுச்சொல் ",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "தனியார் ",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "பொது ",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "பெயர்மாற்றம் ",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "சேமி ",
- "search": "தேடு ",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "சந்தா ",
- "team": "குழு ",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "அழைப்பு ",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "கடவுச்சொல் ",
- "smtp-tls": "TLS support",
- "send-from": "அனுப்புனர் ",
- "send-smtp-test": "சோதனை மின்னஞ்சல் அணுப்புக ",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "முடிவு ",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "சேர் ",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "ஏற்றுக்கொள்",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "உருவாக்கப்பட்டது ",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "சேர்ந்தது ",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "பிரிக்கப்பட்டது ",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "சேர் ",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "இணைப்பு ",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "இணைப்புகள் ",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "பின்செல் ",
+ "board-change-color": "நிறம் மாற்று ",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "நாள்கட்டி ",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "மேலும் ",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "கடவுச்சொல்லை மாற்று ",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "கடவுச்சொல்லை மாற்றுக ",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "அடர் பச்சை ",
+ "color-gold": "தங்கம் ",
+ "color-gray": "gray",
+ "color-green": "பச்சை ",
+ "color-indigo": "indigo",
+ "color-lime": "வெளிர் பச்சை ",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ஆரஞ்சு ",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "சிகப்பு ",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "வெள்ளி ",
+ "color-sky": "வாணம் ",
+ "color-slateblue": "slateblue",
+ "color-white": "வெள்ளை ",
+ "color-yellow": "மஞ்சள் ",
+ "unset-color": "Unset",
+ "comment": "கருத்து ",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "கருத்து மட்டும் ",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "கருத்து இல்லை ",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "கணினி ",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "தேடு ",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "உருவாக்கு ",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "நாள் ",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "எண் ",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "நாள் ",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "பதிவிறக்கம் ",
+ "edit": "திருத்து ",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "மின் அஞ்சல் ",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "முழு பெயர் ",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "தொடக்கம் ",
+ "import": "பதிவேற்றம் ",
+ "impersonate-user": "Impersonate user",
+ "link": "இணை ",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "Trello ல் இருந்து ",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "மொழி ",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "நிறத்தை மாற்று ",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "மேலும் ",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "பெயர் ",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "கடவுச்சொல் ",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "தனியார் ",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "பொது ",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "பெயர்மாற்றம் ",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "சேமி ",
+ "search": "தேடு ",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "சந்தா ",
+ "team": "குழு ",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "அழைப்பு ",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "கடவுச்சொல் ",
+ "smtp-tls": "TLS support",
+ "send-from": "அனுப்புனர் ",
+ "send-smtp-test": "சோதனை மின்னஞ்சல் அணுப்புக ",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "முடிவு ",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "சேர் ",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json
index f4cd8f11d..9976a4fba 100644
--- a/i18n/th.i18n.json
+++ b/i18n/th.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "ยอมรับ",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "ปฎิบัติการ",
- "activities": "กิจกรรม",
- "activity": "กิจกรรม",
- "activity-added": "เพิ่ม %s ไปยัง %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "แนบ %s ไปยัง %s",
- "activity-created": "สร้าง %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "ยกเว้น %s จาก %s",
- "activity-imported": "ถูกนำเข้า %s ไปยัง %s จาก %s",
- "activity-imported-board": "นำเข้า %s จาก %s",
- "activity-joined": "เข้าร่วม %s",
- "activity-moved": "ย้าย %s จาก %s ถึง %s",
- "activity-on": "บน %s",
- "activity-removed": "ลบ %s จาด %s",
- "activity-sent": "ส่ง %s ถึง %s",
- "activity-unjoined": "ยกเลิกเข้าร่วม %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "รายการถูกเพิ่มไป %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "เพิ่ม",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "เพิ่มรายการตรวจสอบ",
- "add-cover": "เพิ่มหน้าปก",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "เพิ่มสมาชิก",
- "added": "เพิ่ม",
- "addMemberPopup-title": "สมาชิก",
- "admin": "ผู้ดูแลระบบ",
- "admin-desc": "สามารถดูและแก้ไขการ์ด ลบสมาชิก และเปลี่ยนการตั้งค่าบอร์ดได้",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "บอร์ดทั้งหมด",
- "and-n-other-card": "และการ์ดอื่น __count__",
- "and-n-other-card_plural": "และการ์ดอื่น ๆ __count__",
- "apply": "นำมาใช้",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "เอกสารที่เก็บไว้",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "เอกสารที่เก็บไว้",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "กำหนดสมาชิก",
- "attached": "แนบมาด้วย",
- "attachment": "สิ่งที่แนบมา",
- "attachment-delete-pop": "ลบสิ่งที่แนบมาถาวร ไม่สามารถเลิกทำได้",
- "attachmentDeletePopup-title": "ลบสิ่งที่แนบมาหรือไม่",
- "attachments": "สิ่งที่แนบมา",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "ย้อนกลับ",
- "board-change-color": "เปลี่ยนสี",
- "board-nb-stars": "ติดดาว %s",
- "board-not-found": "ไม่มีบอร์ด",
- "board-private-info": "บอร์ดนี้จะเป็น ส่วนตัว.",
- "board-public-info": "บอร์ดนี้จะเป็น สาธารณะ.",
- "boardChangeColorPopup-title": "เปลี่ยนสีพื้นหลังบอร์ด",
- "boardChangeTitlePopup-title": "เปลี่ยนชื่อบอร์ด",
- "boardChangeVisibilityPopup-title": "เปลี่ยนการเข้าถึง",
- "boardChangeWatchPopup-title": "เปลี่ยนการเฝ้าดู",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "บอร์ด",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "รายการ",
- "bucket-example": "ตัวอย่างเช่น “ระบบที่ต้องทำ”",
- "cancel": "ยกเลิก",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "การ์ดนี้มี %s ความเห็น.",
- "card-delete-notice": "เป็นการลบถาวร คุณจะสูญเสียข้อมูลที่เกี่ยวข้องกับการ์ดนี้ทั้งหมด",
- "card-delete-pop": "การดำเนินการทั้งหมดจะถูกลบจาก feed กิจกรรมและคุณไม่สามารถเปิดได้อีกครั้งหรือยกเลิกการทำ",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "ครบกำหนด",
- "card-due-on": "ครบกำหนดเมื่อ",
- "card-spent": "Spent Time",
- "card-edit-attachments": "แก้ไขสิ่งที่แนบมา",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "แก้ไขป้ายกำกับ",
- "card-edit-members": "แก้ไขสมาชิก",
- "card-labels-title": "เปลี่ยนป้ายกำกับของการ์ด",
- "card-members-title": "เพิ่มหรือลบสมาชิกของบอร์ดจากการ์ด",
- "card-start": "เริ่ม",
- "card-start-on": "เริ่มเมื่อ",
- "cardAttachmentsPopup-title": "แนบจาก",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "ลบการ์ดนี้หรือไม่",
- "cardDetailsActionsPopup-title": "การดำเนินการการ์ด",
- "cardLabelsPopup-title": "ป้ายกำกับ",
- "cardMembersPopup-title": "สมาชิก",
- "cardMorePopup-title": "เพิ่มเติม",
- "cardTemplatePopup-title": "Create template",
- "cards": "การ์ด",
- "cards-count": "การ์ด",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "เปลี่ยน",
- "change-avatar": "เปลี่ยนภาพ",
- "change-password": "เปลี่ยนรหัสผ่าน",
- "change-permissions": "เปลี่ยนสิทธิ์",
- "change-settings": "เปลี่ยนการตั้งค่า",
- "changeAvatarPopup-title": "เปลี่ยนภาพ",
- "changeLanguagePopup-title": "เปลี่ยนภาษา",
- "changePasswordPopup-title": "เปลี่ยนรหัสผ่าน",
- "changePermissionsPopup-title": "เปลี่ยนสิทธิ์",
- "changeSettingsPopup-title": "เปลี่ยนการตั้งค่า",
- "subtasks": "Subtasks",
- "checklists": "รายการตรวจสอบ",
- "click-to-star": "คลิกดาวบอร์ดนี้",
- "click-to-unstar": "คลิกยกเลิกดาวบอร์ดนี้",
- "clipboard": "Clipboard หรือลากและวาง",
- "close": "ปิด",
- "close-board": "ปิดบอร์ด",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "ดำ",
- "color-blue": "น้ำเงิน",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "เขียว",
- "color-indigo": "indigo",
- "color-lime": "เหลืองมะนาว",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ส้ม",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ชมพู",
- "color-plum": "plum",
- "color-purple": "ม่วง",
- "color-red": "แดง",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "ฟ้า",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "เหลือง",
- "unset-color": "Unset",
- "comment": "คอมเม็นต์",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "คอมพิวเตอร์",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "ค้นหา",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "สร้าง",
- "createBoardPopup-title": "สร้างบอร์ด",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "สร้างป้ายกำกับ",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "ปัจจุบัน",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "วันที่",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "วันที่",
- "decline": "ปฎิเสธ",
- "default-avatar": "ภาพเริ่มต้น",
- "delete": "ลบ",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "ลบป้ายกำกับนี้หรือไม่",
- "description": "คำอธิบาย",
- "disambiguateMultiLabelPopup-title": "การดำเนินการกำกับป้ายชัดเจน",
- "disambiguateMultiMemberPopup-title": "การดำเนินการสมาชิกชัดเจน",
- "discard": "ทิ้ง",
- "done": "เสร็จสิ้น",
- "download": "ดาวน์โหลด",
- "edit": "แก้ไข",
- "edit-avatar": "เปลี่ยนภาพ",
- "edit-profile": "แก้ไขโปรไฟล์",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "เปลี่ยนวันเริ่มต้น",
- "editCardDueDatePopup-title": "เปลี่ยนวันครบกำหนด",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "เปลี่ยนป้ายกำกับ",
- "editNotificationPopup-title": "แก้ไขการแจ้งเตือน",
- "editProfilePopup-title": "แก้ไขโปรไฟล์",
- "email": "อีเมล์",
- "email-enrollAccount-subject": "บัญชีคุณถูกสร้างใน __siteName__",
- "email-enrollAccount-text": "สวัสดี __user__,\n\nเริ่มใช้บริการง่าย ๆ , ด้วยการคลิกลิงค์ด้านล่าง.\n\n__url__\n\n ขอบคุณค่ะ",
- "email-fail": "การส่งอีเมล์ล้มเหลว",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "อีเมล์ไม่ถูกต้อง",
- "email-invite": "เชิญผ่านทางอีเมล์",
- "email-invite-subject": "__inviter__ ส่งคำเชิญให้คุณ",
- "email-invite-text": "สวัสดี __user__,\n\n__inviter__ ขอเชิญคุณเข้าร่วม \"__board__\" เพื่อขอความร่วมมือ \n\n โปรดคลิกตามลิงค์ข้างล่างนี้ \n\n__url__\n\n ขอบคุณ",
- "email-resetPassword-subject": "ตั้งรหัสผ่่านใหม่ของคุณบน __siteName__",
- "email-resetPassword-text": "สวัสดี __user__,\n\nในการรีเซ็ตรหัสผ่านของคุณ, คลิกตามลิงค์ด้านล่าง \n\n__url__\n\nขอบคุณค่ะ",
- "email-sent": "ส่งอีเมล์",
- "email-verifyEmail-subject": "ยืนยันที่อยู่อีเม์ของคุณบน __siteName__",
- "email-verifyEmail-text": "สวัสดี __user__,\n\nตรวจสอบบัญชีอีเมล์ของคุณ ง่าย ๆ ตามลิงค์ด้านล่าง \n\n__url__\n\n ขอบคุณค่ะ",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "บอร์ดนี้ไม่มีอยู่แล้ว",
- "error-board-notAdmin": "คุณจะต้องเป็นผู้ดูแลระบบถึงจะทำสิ่งเหล่านี้ได้",
- "error-board-notAMember": "คุณต้องเป็นสมาชิกของบอร์ดนี้ถึงจะทำได้",
- "error-json-malformed": "ข้อความของคุณไม่ใช่ JSON",
- "error-json-schema": "รูปแบบข้้้อมูล JSON ของคุณไม่ถูกต้อง",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "รายการนี้ไม่มีอยู่",
- "error-user-doesNotExist": "ผู้ใช้นี้ไม่มีอยู่",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "ผู้ใช้รายนี้ไม่ได้สร้าง",
- "error-username-taken": "ชื่อนี้ถูกใช้งานแล้ว",
- "error-email-taken": "Email has already been taken",
- "export-board": "ส่งออกกระดาน",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "ส่งออกกระดาน",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "กรอง",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "ล้างตัวกรอง",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "ไม่มีฉลาก",
- "filter-member-label": "Filter by member",
- "filter-no-member": "ไม่มีสมาชิก",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "กรองบน",
- "filter-on-desc": "คุณกำลังกรองการ์ดในบอร์ดนี้ คลิกที่นี่เพื่อแก้ไขตัวกรอง",
- "filter-to-selection": "กรองตัวเลือก",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "ชื่อ นามสกุล",
- "header-logo-title": "ย้อนกลับไปที่หน้าบอร์ดของคุณ",
- "hide-system-messages": "ซ่อนข้อความของระบบ",
- "headerBarCreateBoardPopup-title": "สร้างบอร์ด",
- "home": "หน้าหลัก",
- "import": "นำเข้า",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "นำเข้าบอร์ดจาก Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "ใน Trello ของคุณให้ไปที่ 'Menu' และไปที่ More -> Print and Export -> Export JSON และคัดลอกข้อความจากนั้น",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "วางข้อมูล JSON ที่ถูกต้องของคุณที่นี่",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "แผนที่สมาชิก",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review การทำแผนที่สมาชิก",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "ชื่อย่อ",
- "invalid-date": "วันที่ไม่ถูกต้อง",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "เข้าร่วม",
- "just-invited": "คุณพึ่งได้รับเชิญบอร์ดนี้",
- "keyboard-shortcuts": "แป้นพิมพ์ลัด",
- "label-create": "สร้างป้ายกำกับ",
- "label-default": "ป้าย %s (ค่าเริ่มต้น)",
- "label-delete-pop": "ไม่มีการยกเลิกการทำนี้ ลบป้ายกำกับนี้จากทุกการ์ดและล้างประวัติทิ้ง",
- "labels": "ป้ายกำกับ",
- "language": "ภาษา",
- "last-admin-desc": "คุณไม่สามารถเปลี่ยนบทบาทเพราะต้องมีผู้ดูแลระบบหนึ่งคนเป็นอย่างน้อย",
- "leave-board": "ทิ้งบอร์ด",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "เชื่อมโยงไปยังการ์ดใบนี้",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "ย้ายการ์ดทั้งหมดในรายการนี้",
- "list-select-cards": "เลือกการ์ดทั้งหมดในรายการนี้",
- "set-color-list": "Set Color",
- "listActionPopup-title": "รายการการดำเนิน",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "นำเข้าการ์ด Trello",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "เพิ่มเติม",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "รายการ",
- "swimlanes": "Swimlanes",
- "log-out": "ออกจากระบบ",
- "log-in": "เข้าสู่ระบบ",
- "loginPopup-title": "เข้าสู่ระบบ",
- "memberMenuPopup-title": "การตั้งค่า",
- "members": "สมาชิก",
- "menu": "เมนู",
- "move-selection": "ย้ายตัวเลือก",
- "moveCardPopup-title": "ย้ายการ์ด",
- "moveCardToBottom-title": "ย้ายไปล่าง",
- "moveCardToTop-title": "ย้ายไปบน",
- "moveSelectionPopup-title": "เลือกย้าย",
- "multi-selection": "เลือกหลายรายการ",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "เลือกหลายรายการเมื่อ",
- "muted": "ไม่ออกเสียง",
- "muted-info": "คุณจะไม่ได้รับแจ้งการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
- "my-boards": "บอร์ดของฉัน",
- "name": "ชื่อ",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "ไม่มีข้อมูล",
- "normal": "ธรรมดา",
- "normal-desc": "สามารถดูและแก้ไขการ์ดได้ แต่ไม่สามารถเปลี่ยนการตั้งค่าได้",
- "not-accepted-yet": "ยังไม่ยอมรับคำเชิญ",
- "notify-participate": "ได้รับการแจ้งปรับปรุงการ์ดอื่น ๆ ที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
- "notify-watch": "ได้รับการแจ้งปรับปรุงบอร์ด รายการหรือการ์ดที่คุณเฝ้าติดตาม",
- "optional": "ไม่จำเป็น",
- "or": "หรือ",
- "page-maybe-private": "หน้านี้อาจจะเป็นส่วนตัว. คุณอาจจะสามารถดูจาก logging in.",
- "page-not-found": "ไม่พบหน้า",
- "password": "รหัสผ่าน",
- "paste-or-dragdrop": "วาง หรือลากและวาง ไฟล์ภาพ(ภาพเท่านั้น)",
- "participating": "Participating",
- "preview": "ภาพตัวอย่าง",
- "previewAttachedImagePopup-title": "ตัวอย่าง",
- "previewClipboardImagePopup-title": "ตัวอย่าง",
- "private": "ส่วนตัว",
- "private-desc": "บอร์ดนี้เป็นส่วนตัว. คนที่ถูกเพิ่มเข้าในบอร์ดเท่านั้นที่สามารถดูและแก้ไขได้",
- "profile": "โปรไฟล์",
- "public": "สาธารณะ",
- "public-desc": "บอร์ดนี้เป็นสาธารณะ. ทุกคนสามารถเข้าถึงได้ผ่าน url นี้ แต่สามารถแก้ไขได้เฉพาะผู้ที่ถูกเพิ่มเข้าไปในการ์ดเท่านั้น",
- "quick-access-description": "เพิ่มไว้ในนี้เพื่อเป็นทางลัด",
- "remove-cover": "ลบหน้าปก",
- "remove-from-board": "ลบจากบอร์ด",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "ลบสมาชิก",
- "remove-member-from-card": "ลบจากการ์ด",
- "remove-member-pop": "ลบ __name__ (__username__) จาก __boardTitle__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
- "removeMemberPopup-title": "ลบสมาชิกหรือไม่",
- "rename": "ตั้งชื่อใหม่",
- "rename-board": "ตั้งชื่อบอร์ดใหม่",
- "restore": "กู้คืน",
- "save": "บันทึก",
- "search": "ค้นหา",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "กำหนดตัวเองให้การ์ดนี้",
- "shortcut-autocomplete-emoji": "เติม emoji อัตโนมัติ",
- "shortcut-autocomplete-members": "เติมสมาชิกอัตโนมัติ",
- "shortcut-clear-filters": "ล้างตัวกรองทั้งหมด",
- "shortcut-close-dialog": "ปิดหน้าต่าง",
- "shortcut-filter-my-cards": "กรองการ์ดฉัน",
- "shortcut-show-shortcuts": "นำรายการทางลัดนี้ขึ้น",
- "shortcut-toggle-filterbar": "สลับแถบกรองสไลด์ด้้านข้าง",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "สลับโชว์แถบด้านข้าง",
- "show-cards-minimum-count": "แสดงจำนวนของการ์ดถ้ารายการมีมากกว่า(เลื่อนกำหนดตัวเลข)",
- "sidebar-open": "เปิดแถบเลื่อน",
- "sidebar-close": "ปิดแถบเลื่อน",
- "signupPopup-title": "สร้างบัญชี",
- "star-board-title": "คลิกติดดาวบอร์ดนี้ มันจะแสดงอยู่บนสุดของรายการบอร์ดของคุณ",
- "starred-boards": "ติดดาวบอร์ด",
- "starred-boards-description": "ติดดาวบอร์ดและแสดงไว้บนสุดของรายการบอร์ด",
- "subscribe": "บอกรับสมาชิก",
- "team": "ทีม",
- "this-board": "บอร์ดนี้",
- "this-card": "การ์ดนี้",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "เวลา",
- "title": "หัวข้อ",
- "tracking": "ติดตาม",
- "tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
- "type": "Type",
- "unassign-member": "ยกเลิกสมาชิก",
- "unsaved-description": "คุณมีคำอธิบายที่ไม่ได้บันทึก",
- "unwatch": "เลิกเฝ้าดู",
- "upload": "อัพโหลด",
- "upload-avatar": "อัพโหลดรูปภาพ",
- "uploaded-avatar": "ภาพอัพโหลดแล้ว",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "ชื่อผู้ใช้งาน",
- "view-it": "ดู",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "เฝ้าดู",
- "watching": "เฝ้าดู",
- "watching-info": "คุณจะได้รับแจ้งหากมีการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
- "welcome-board": "ยินดีต้อนรับสู่บอร์ด",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "พื้นฐาน",
- "welcome-list2": "ก้าวหน้า",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "ต้องการทำอะไร",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "ชื่อผู้ใช้งาน",
- "smtp-password": "รหัสผ่าน",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ ส่งคำเชิญให้คุณ",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "เพิ่ม",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "ยอมรับ",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "ปฎิบัติการ",
+ "activities": "กิจกรรม",
+ "activity": "กิจกรรม",
+ "activity-added": "เพิ่ม %s ไปยัง %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "แนบ %s ไปยัง %s",
+ "activity-created": "สร้าง %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "ยกเว้น %s จาก %s",
+ "activity-imported": "ถูกนำเข้า %s ไปยัง %s จาก %s",
+ "activity-imported-board": "นำเข้า %s จาก %s",
+ "activity-joined": "เข้าร่วม %s",
+ "activity-moved": "ย้าย %s จาก %s ถึง %s",
+ "activity-on": "บน %s",
+ "activity-removed": "ลบ %s จาด %s",
+ "activity-sent": "ส่ง %s ถึง %s",
+ "activity-unjoined": "ยกเลิกเข้าร่วม %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "รายการถูกเพิ่มไป %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "เพิ่ม",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "เพิ่มรายการตรวจสอบ",
+ "add-cover": "เพิ่มหน้าปก",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "เพิ่มสมาชิก",
+ "added": "เพิ่ม",
+ "addMemberPopup-title": "สมาชิก",
+ "admin": "ผู้ดูแลระบบ",
+ "admin-desc": "สามารถดูและแก้ไขการ์ด ลบสมาชิก และเปลี่ยนการตั้งค่าบอร์ดได้",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "บอร์ดทั้งหมด",
+ "and-n-other-card": "และการ์ดอื่น __count__",
+ "and-n-other-card_plural": "และการ์ดอื่น ๆ __count__",
+ "apply": "นำมาใช้",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "เอกสารที่เก็บไว้",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "เอกสารที่เก็บไว้",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "กำหนดสมาชิก",
+ "attached": "แนบมาด้วย",
+ "attachment": "สิ่งที่แนบมา",
+ "attachment-delete-pop": "ลบสิ่งที่แนบมาถาวร ไม่สามารถเลิกทำได้",
+ "attachmentDeletePopup-title": "ลบสิ่งที่แนบมาหรือไม่",
+ "attachments": "สิ่งที่แนบมา",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "ย้อนกลับ",
+ "board-change-color": "เปลี่ยนสี",
+ "board-nb-stars": "ติดดาว %s",
+ "board-not-found": "ไม่มีบอร์ด",
+ "board-private-info": "บอร์ดนี้จะเป็น ส่วนตัว.",
+ "board-public-info": "บอร์ดนี้จะเป็น สาธารณะ.",
+ "boardChangeColorPopup-title": "เปลี่ยนสีพื้นหลังบอร์ด",
+ "boardChangeTitlePopup-title": "เปลี่ยนชื่อบอร์ด",
+ "boardChangeVisibilityPopup-title": "เปลี่ยนการเข้าถึง",
+ "boardChangeWatchPopup-title": "เปลี่ยนการเฝ้าดู",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "บอร์ด",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "รายการ",
+ "bucket-example": "ตัวอย่างเช่น “ระบบที่ต้องทำ”",
+ "cancel": "ยกเลิก",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "การ์ดนี้มี %s ความเห็น.",
+ "card-delete-notice": "เป็นการลบถาวร คุณจะสูญเสียข้อมูลที่เกี่ยวข้องกับการ์ดนี้ทั้งหมด",
+ "card-delete-pop": "การดำเนินการทั้งหมดจะถูกลบจาก feed กิจกรรมและคุณไม่สามารถเปิดได้อีกครั้งหรือยกเลิกการทำ",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "ครบกำหนด",
+ "card-due-on": "ครบกำหนดเมื่อ",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "แก้ไขสิ่งที่แนบมา",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "แก้ไขป้ายกำกับ",
+ "card-edit-members": "แก้ไขสมาชิก",
+ "card-labels-title": "เปลี่ยนป้ายกำกับของการ์ด",
+ "card-members-title": "เพิ่มหรือลบสมาชิกของบอร์ดจากการ์ด",
+ "card-start": "เริ่ม",
+ "card-start-on": "เริ่มเมื่อ",
+ "cardAttachmentsPopup-title": "แนบจาก",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "ลบการ์ดนี้หรือไม่",
+ "cardDetailsActionsPopup-title": "การดำเนินการการ์ด",
+ "cardLabelsPopup-title": "ป้ายกำกับ",
+ "cardMembersPopup-title": "สมาชิก",
+ "cardMorePopup-title": "เพิ่มเติม",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "การ์ด",
+ "cards-count": "การ์ด",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "เปลี่ยน",
+ "change-avatar": "เปลี่ยนภาพ",
+ "change-password": "เปลี่ยนรหัสผ่าน",
+ "change-permissions": "เปลี่ยนสิทธิ์",
+ "change-settings": "เปลี่ยนการตั้งค่า",
+ "changeAvatarPopup-title": "เปลี่ยนภาพ",
+ "changeLanguagePopup-title": "เปลี่ยนภาษา",
+ "changePasswordPopup-title": "เปลี่ยนรหัสผ่าน",
+ "changePermissionsPopup-title": "เปลี่ยนสิทธิ์",
+ "changeSettingsPopup-title": "เปลี่ยนการตั้งค่า",
+ "subtasks": "Subtasks",
+ "checklists": "รายการตรวจสอบ",
+ "click-to-star": "คลิกดาวบอร์ดนี้",
+ "click-to-unstar": "คลิกยกเลิกดาวบอร์ดนี้",
+ "clipboard": "Clipboard หรือลากและวาง",
+ "close": "ปิด",
+ "close-board": "ปิดบอร์ด",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "ดำ",
+ "color-blue": "น้ำเงิน",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "เขียว",
+ "color-indigo": "indigo",
+ "color-lime": "เหลืองมะนาว",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ส้ม",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ชมพู",
+ "color-plum": "plum",
+ "color-purple": "ม่วง",
+ "color-red": "แดง",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "ฟ้า",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "เหลือง",
+ "unset-color": "Unset",
+ "comment": "คอมเม็นต์",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "คอมพิวเตอร์",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "ค้นหา",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "สร้าง",
+ "createBoardPopup-title": "สร้างบอร์ด",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "สร้างป้ายกำกับ",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "ปัจจุบัน",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "วันที่",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "วันที่",
+ "decline": "ปฎิเสธ",
+ "default-avatar": "ภาพเริ่มต้น",
+ "delete": "ลบ",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "ลบป้ายกำกับนี้หรือไม่",
+ "description": "คำอธิบาย",
+ "disambiguateMultiLabelPopup-title": "การดำเนินการกำกับป้ายชัดเจน",
+ "disambiguateMultiMemberPopup-title": "การดำเนินการสมาชิกชัดเจน",
+ "discard": "ทิ้ง",
+ "done": "เสร็จสิ้น",
+ "download": "ดาวน์โหลด",
+ "edit": "แก้ไข",
+ "edit-avatar": "เปลี่ยนภาพ",
+ "edit-profile": "แก้ไขโปรไฟล์",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "เปลี่ยนวันเริ่มต้น",
+ "editCardDueDatePopup-title": "เปลี่ยนวันครบกำหนด",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "เปลี่ยนป้ายกำกับ",
+ "editNotificationPopup-title": "แก้ไขการแจ้งเตือน",
+ "editProfilePopup-title": "แก้ไขโปรไฟล์",
+ "email": "อีเมล์",
+ "email-enrollAccount-subject": "บัญชีคุณถูกสร้างใน __siteName__",
+ "email-enrollAccount-text": "สวัสดี __user__,\n\nเริ่มใช้บริการง่าย ๆ , ด้วยการคลิกลิงค์ด้านล่าง.\n\n__url__\n\n ขอบคุณค่ะ",
+ "email-fail": "การส่งอีเมล์ล้มเหลว",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "อีเมล์ไม่ถูกต้อง",
+ "email-invite": "เชิญผ่านทางอีเมล์",
+ "email-invite-subject": "__inviter__ ส่งคำเชิญให้คุณ",
+ "email-invite-text": "สวัสดี __user__,\n\n__inviter__ ขอเชิญคุณเข้าร่วม \"__board__\" เพื่อขอความร่วมมือ \n\n โปรดคลิกตามลิงค์ข้างล่างนี้ \n\n__url__\n\n ขอบคุณ",
+ "email-resetPassword-subject": "ตั้งรหัสผ่่านใหม่ของคุณบน __siteName__",
+ "email-resetPassword-text": "สวัสดี __user__,\n\nในการรีเซ็ตรหัสผ่านของคุณ, คลิกตามลิงค์ด้านล่าง \n\n__url__\n\nขอบคุณค่ะ",
+ "email-sent": "ส่งอีเมล์",
+ "email-verifyEmail-subject": "ยืนยันที่อยู่อีเม์ของคุณบน __siteName__",
+ "email-verifyEmail-text": "สวัสดี __user__,\n\nตรวจสอบบัญชีอีเมล์ของคุณ ง่าย ๆ ตามลิงค์ด้านล่าง \n\n__url__\n\n ขอบคุณค่ะ",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "บอร์ดนี้ไม่มีอยู่แล้ว",
+ "error-board-notAdmin": "คุณจะต้องเป็นผู้ดูแลระบบถึงจะทำสิ่งเหล่านี้ได้",
+ "error-board-notAMember": "คุณต้องเป็นสมาชิกของบอร์ดนี้ถึงจะทำได้",
+ "error-json-malformed": "ข้อความของคุณไม่ใช่ JSON",
+ "error-json-schema": "รูปแบบข้้้อมูล JSON ของคุณไม่ถูกต้อง",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "รายการนี้ไม่มีอยู่",
+ "error-user-doesNotExist": "ผู้ใช้นี้ไม่มีอยู่",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "ผู้ใช้รายนี้ไม่ได้สร้าง",
+ "error-username-taken": "ชื่อนี้ถูกใช้งานแล้ว",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "ส่งออกกระดาน",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "ส่งออกกระดาน",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "กรอง",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "ล้างตัวกรอง",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "ไม่มีฉลาก",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "ไม่มีสมาชิก",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "กรองบน",
+ "filter-on-desc": "คุณกำลังกรองการ์ดในบอร์ดนี้ คลิกที่นี่เพื่อแก้ไขตัวกรอง",
+ "filter-to-selection": "กรองตัวเลือก",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "ชื่อ นามสกุล",
+ "header-logo-title": "ย้อนกลับไปที่หน้าบอร์ดของคุณ",
+ "hide-system-messages": "ซ่อนข้อความของระบบ",
+ "headerBarCreateBoardPopup-title": "สร้างบอร์ด",
+ "home": "หน้าหลัก",
+ "import": "นำเข้า",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "นำเข้าบอร์ดจาก Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "ใน Trello ของคุณให้ไปที่ 'Menu' และไปที่ More -> Print and Export -> Export JSON และคัดลอกข้อความจากนั้น",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "วางข้อมูล JSON ที่ถูกต้องของคุณที่นี่",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "แผนที่สมาชิก",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review การทำแผนที่สมาชิก",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "ชื่อย่อ",
+ "invalid-date": "วันที่ไม่ถูกต้อง",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "เข้าร่วม",
+ "just-invited": "คุณพึ่งได้รับเชิญบอร์ดนี้",
+ "keyboard-shortcuts": "แป้นพิมพ์ลัด",
+ "label-create": "สร้างป้ายกำกับ",
+ "label-default": "ป้าย %s (ค่าเริ่มต้น)",
+ "label-delete-pop": "ไม่มีการยกเลิกการทำนี้ ลบป้ายกำกับนี้จากทุกการ์ดและล้างประวัติทิ้ง",
+ "labels": "ป้ายกำกับ",
+ "language": "ภาษา",
+ "last-admin-desc": "คุณไม่สามารถเปลี่ยนบทบาทเพราะต้องมีผู้ดูแลระบบหนึ่งคนเป็นอย่างน้อย",
+ "leave-board": "ทิ้งบอร์ด",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "เชื่อมโยงไปยังการ์ดใบนี้",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "ย้ายการ์ดทั้งหมดในรายการนี้",
+ "list-select-cards": "เลือกการ์ดทั้งหมดในรายการนี้",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "รายการการดำเนิน",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "นำเข้าการ์ด Trello",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "เพิ่มเติม",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "รายการ",
+ "swimlanes": "Swimlanes",
+ "log-out": "ออกจากระบบ",
+ "log-in": "เข้าสู่ระบบ",
+ "loginPopup-title": "เข้าสู่ระบบ",
+ "memberMenuPopup-title": "การตั้งค่า",
+ "members": "สมาชิก",
+ "menu": "เมนู",
+ "move-selection": "ย้ายตัวเลือก",
+ "moveCardPopup-title": "ย้ายการ์ด",
+ "moveCardToBottom-title": "ย้ายไปล่าง",
+ "moveCardToTop-title": "ย้ายไปบน",
+ "moveSelectionPopup-title": "เลือกย้าย",
+ "multi-selection": "เลือกหลายรายการ",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "เลือกหลายรายการเมื่อ",
+ "muted": "ไม่ออกเสียง",
+ "muted-info": "คุณจะไม่ได้รับแจ้งการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
+ "my-boards": "บอร์ดของฉัน",
+ "name": "ชื่อ",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "ไม่มีข้อมูล",
+ "normal": "ธรรมดา",
+ "normal-desc": "สามารถดูและแก้ไขการ์ดได้ แต่ไม่สามารถเปลี่ยนการตั้งค่าได้",
+ "not-accepted-yet": "ยังไม่ยอมรับคำเชิญ",
+ "notify-participate": "ได้รับการแจ้งปรับปรุงการ์ดอื่น ๆ ที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
+ "notify-watch": "ได้รับการแจ้งปรับปรุงบอร์ด รายการหรือการ์ดที่คุณเฝ้าติดตาม",
+ "optional": "ไม่จำเป็น",
+ "or": "หรือ",
+ "page-maybe-private": "หน้านี้อาจจะเป็นส่วนตัว. คุณอาจจะสามารถดูจาก logging in.",
+ "page-not-found": "ไม่พบหน้า",
+ "password": "รหัสผ่าน",
+ "paste-or-dragdrop": "วาง หรือลากและวาง ไฟล์ภาพ(ภาพเท่านั้น)",
+ "participating": "Participating",
+ "preview": "ภาพตัวอย่าง",
+ "previewAttachedImagePopup-title": "ตัวอย่าง",
+ "previewClipboardImagePopup-title": "ตัวอย่าง",
+ "private": "ส่วนตัว",
+ "private-desc": "บอร์ดนี้เป็นส่วนตัว. คนที่ถูกเพิ่มเข้าในบอร์ดเท่านั้นที่สามารถดูและแก้ไขได้",
+ "profile": "โปรไฟล์",
+ "public": "สาธารณะ",
+ "public-desc": "บอร์ดนี้เป็นสาธารณะ. ทุกคนสามารถเข้าถึงได้ผ่าน url นี้ แต่สามารถแก้ไขได้เฉพาะผู้ที่ถูกเพิ่มเข้าไปในการ์ดเท่านั้น",
+ "quick-access-description": "เพิ่มไว้ในนี้เพื่อเป็นทางลัด",
+ "remove-cover": "ลบหน้าปก",
+ "remove-from-board": "ลบจากบอร์ด",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "ลบสมาชิก",
+ "remove-member-from-card": "ลบจากการ์ด",
+ "remove-member-pop": "ลบ __name__ (__username__) จาก __boardTitle__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
+ "removeMemberPopup-title": "ลบสมาชิกหรือไม่",
+ "rename": "ตั้งชื่อใหม่",
+ "rename-board": "ตั้งชื่อบอร์ดใหม่",
+ "restore": "กู้คืน",
+ "save": "บันทึก",
+ "search": "ค้นหา",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "กำหนดตัวเองให้การ์ดนี้",
+ "shortcut-autocomplete-emoji": "เติม emoji อัตโนมัติ",
+ "shortcut-autocomplete-members": "เติมสมาชิกอัตโนมัติ",
+ "shortcut-clear-filters": "ล้างตัวกรองทั้งหมด",
+ "shortcut-close-dialog": "ปิดหน้าต่าง",
+ "shortcut-filter-my-cards": "กรองการ์ดฉัน",
+ "shortcut-show-shortcuts": "นำรายการทางลัดนี้ขึ้น",
+ "shortcut-toggle-filterbar": "สลับแถบกรองสไลด์ด้้านข้าง",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "สลับโชว์แถบด้านข้าง",
+ "show-cards-minimum-count": "แสดงจำนวนของการ์ดถ้ารายการมีมากกว่า(เลื่อนกำหนดตัวเลข)",
+ "sidebar-open": "เปิดแถบเลื่อน",
+ "sidebar-close": "ปิดแถบเลื่อน",
+ "signupPopup-title": "สร้างบัญชี",
+ "star-board-title": "คลิกติดดาวบอร์ดนี้ มันจะแสดงอยู่บนสุดของรายการบอร์ดของคุณ",
+ "starred-boards": "ติดดาวบอร์ด",
+ "starred-boards-description": "ติดดาวบอร์ดและแสดงไว้บนสุดของรายการบอร์ด",
+ "subscribe": "บอกรับสมาชิก",
+ "team": "ทีม",
+ "this-board": "บอร์ดนี้",
+ "this-card": "การ์ดนี้",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "เวลา",
+ "title": "หัวข้อ",
+ "tracking": "ติดตาม",
+ "tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
+ "type": "Type",
+ "unassign-member": "ยกเลิกสมาชิก",
+ "unsaved-description": "คุณมีคำอธิบายที่ไม่ได้บันทึก",
+ "unwatch": "เลิกเฝ้าดู",
+ "upload": "อัพโหลด",
+ "upload-avatar": "อัพโหลดรูปภาพ",
+ "uploaded-avatar": "ภาพอัพโหลดแล้ว",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "ชื่อผู้ใช้งาน",
+ "view-it": "ดู",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "เฝ้าดู",
+ "watching": "เฝ้าดู",
+ "watching-info": "คุณจะได้รับแจ้งหากมีการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
+ "welcome-board": "ยินดีต้อนรับสู่บอร์ด",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "พื้นฐาน",
+ "welcome-list2": "ก้าวหน้า",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "ต้องการทำอะไร",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "ชื่อผู้ใช้งาน",
+ "smtp-password": "รหัสผ่าน",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ ส่งคำเชิญให้คุณ",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "เพิ่ม",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json
index 904b1fa46..df55319d4 100644
--- a/i18n/tr.i18n.json
+++ b/i18n/tr.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Kabul Et",
- "act-activity-notify": "Etkinlik Bildirimi",
- "act-addAttachment": "__attachment__ eklentisi, __swimlane__ kulvarındaki __list__ listesindeki __board__ panosundaki __card__ kartına eklendi.",
- "act-deleteAttachment": "__attachment__ eklentisi, __swimlane__ kulvarındaki __list__ listesindeki __board__ panosundaki __card__ kartından silindi.",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "__board__ panosu oluşturuldu",
- "act-createSwimlane": "__board__ panosuna __swimlane__ kulvarı oluşturuldu",
- "act-createCard": "__board__ panosunun __swimlane__ kulvarının __list__ listesinin __card__ kartı oluşturuldu",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "__board__ panosuna __member__ kullanıcısı eklendi",
- "act-archivedBoard": "__board__ panosu Arşiv'e taşındı",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "__board__ panosu içeriye aktarıldı",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "İşlemler",
- "activities": "Etkinlikler",
- "activity": "Etkinlik",
- "activity-added": "%s içine %s ekledi",
- "activity-archived": "%s arşive taşındı",
- "activity-attached": "%s içine %s ekledi",
- "activity-created": "%s öğesini oluşturdu",
- "activity-customfield-created": "%s adlı özel alan yaratıldı",
- "activity-excluded": "%s içinden %s çıkarttı",
- "activity-imported": "%s kaynağından %s öğesini %s öğesinin içine taşıdı ",
- "activity-imported-board": "%s i %s içinden aktardı",
- "activity-joined": "şuna katıldı: %s",
- "activity-moved": "%s i %s içinden %s içine taşıdı",
- "activity-on": "%s",
- "activity-removed": "%s i %s ten kaldırdı",
- "activity-sent": "%s i %s e gönderdi",
- "activity-unjoined": "%s içinden ayrıldı",
- "activity-subtask-added": "Alt-görev %s'e eklendi",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "%s içine yapılacak listesi ekledi",
- "activity-checklist-removed": "%s Tarafından yapılacaklar listesi silinmiştir",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "%s içinde %s yapılacak listesine öğe ekledi",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Ekle",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "%s yorum düzenlendi",
- "activity-deleteComment": "%s yorum silindi",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Ek Ekle",
- "add-board": "Pano Ekle",
- "add-card": "Kart Ekle",
- "add-swimlane": "Kulvar Ekle",
- "add-subtask": "Alt Görev Ekle",
- "add-checklist": "Yapılacak Listesi Ekle",
- "add-checklist-item": "Yapılacak listesine yeni bir öğe ekle",
- "add-cover": "Kapak resmi ekle",
- "add-label": "Etiket Ekle",
- "add-list": "Liste Ekle",
- "add-members": "Üye ekle",
- "added": "Eklendi",
- "addMemberPopup-title": "Üyeler",
- "admin": "Yönetici",
- "admin-desc": "Kartları görüntüleyebilir ve düzenleyebilir, üyeleri çıkarabilir ve pano ayarlarını değiştirebilir.",
- "admin-announcement": "Duyuru",
- "admin-announcement-active": "Tüm Sistemde Etkin Duyuru",
- "admin-announcement-title": "Yöneticiden Duyuru",
- "all-boards": "Tüm panolar",
- "and-n-other-card": "Ve __count__ diğer kart",
- "and-n-other-card_plural": "Ve __count__ diğer kart",
- "apply": "Uygula",
- "app-is-offline": "Yükleniyor lütfen bekleyin. Sayfayı yenilemek veri kaybına neden olur. Yükleme çalışmıyorsa, lütfen sunucunun durmadığını kontrol edin.",
- "archive": "Arşive Taşı",
- "archive-all": "Hepsini Arşive Taşı",
- "archive-board": "Panoyu Arşive Taşı",
- "archive-card": "Kartı Arşive Taşı",
- "archive-list": "Listeyi Arşive Taşı",
- "archive-swimlane": "Kulvarı Arşive Taşı",
- "archive-selection": "Seçimi arşive taşı",
- "archiveBoardPopup-title": "Panoyu arşive taşı?",
- "archived-items": "Arşivle",
- "archived-boards": "Panolar Arşivde",
- "restore-board": "Panoyu Geri Getir",
- "no-archived-boards": "Arşivde Pano Yok.",
- "archives": "Arşivle",
- "template": "Şablon",
- "templates": "Şablonlar",
- "assign-member": "Üye ata",
- "attached": "dosya(sı) eklendi",
- "attachment": "Ek Dosya",
- "attachment-delete-pop": "Ek silme işlemi kalıcıdır ve geri alınamaz.",
- "attachmentDeletePopup-title": "Ek Silinsin mi?",
- "attachments": "Ekler",
- "auto-watch": "Oluşan yeni panoları kendiliğinden izlemeye al",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Geri",
- "board-change-color": "Renk değiştir",
- "board-nb-stars": "%s yıldız",
- "board-not-found": "Pano bulunamadı",
- "board-private-info": "Bu pano gizli olacak.",
- "board-public-info": "Bu pano genele açılacaktır.",
- "boardChangeColorPopup-title": "Pano arkaplan rengini değiştir",
- "boardChangeTitlePopup-title": "Panonun Adını Değiştir",
- "boardChangeVisibilityPopup-title": "Görünebilirliği Değiştir",
- "boardChangeWatchPopup-title": "İzleme Durumunu Değiştir",
- "boardMenuPopup-title": "Pano Ayarları",
- "boardChangeViewPopup-title": "Pano Görünümü",
- "boards": "Panolar",
- "board-view": "Pano Görünümü",
- "board-view-cal": "Takvim",
- "board-view-swimlanes": "Kulvarlar",
- "board-view-collapse": "Katla",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Listeler",
- "bucket-example": "Örn: \"Marketten Alacaklarım\"",
- "cancel": "İptal",
- "card-archived": "Bu kart arşive taşındı.",
- "board-archived": "Bu pano arşive taşındı.",
- "card-comments-title": "Bu kartta %s yorum var.",
- "card-delete-notice": "Silme işlemi kalıcıdır. Bu kartla ilişkili tüm eylemleri kaybedersiniz.",
- "card-delete-pop": "Son hareketler alanındaki tüm veriler silinecek, ayrıca bu kartı yeniden açamayacaksın. Bu işlemin geri dönüşü yok.",
- "card-delete-suggest-archive": "Bir kartı tahtadan çıkarmak ve etkinliği korumak için Arşive taşıyabilirsiniz.",
- "card-due": "Bitiş",
- "card-due-on": "Bitiş tarihi:",
- "card-spent": "Harcanan Zaman",
- "card-edit-attachments": "Ek dosyasını düzenle",
- "card-edit-custom-fields": "Özel alanları düzenle",
- "card-edit-labels": "Etiketleri düzenle",
- "card-edit-members": "Üyeleri düzenle",
- "card-labels-title": "Bu kart için etiketleri düzenle",
- "card-members-title": "Karta pano içindeki üyeleri ekler veya çıkartır.",
- "card-start": "Başlama",
- "card-start-on": "Başlama tarihi:",
- "cardAttachmentsPopup-title": "Eklenme",
- "cardCustomField-datePopup-title": "Tarihi değiştir",
- "cardCustomFieldsPopup-title": "Özel alanları düzenle",
- "cardStartVotingPopup-title": "Seçim başlat",
- "positiveVoteMembersPopup-title": "Kabul oyu verenler",
- "negativeVoteMembersPopup-title": "Red oyu verenler",
- "card-edit-voting": "Seçimi düzenle",
- "editVoteEndDatePopup-title": "Seçimin bitiş tarihini değiştir",
- "allowNonBoardMembers": "Tüm giriş yapanlara aç",
- "vote-question": "Seçim sorusu",
- "vote-public": "Kimin nasıl oy verdiğini göster",
- "vote-for-it": "kabul",
- "vote-against": "red",
- "deleteVotePopup-title": "Seçim silinsin mi?",
- "vote-delete-pop": "Silme kalıcı bir işlemdir. Bu seçimle ilgili tüm eylemleri yitireceksiniz.",
- "cardDeletePopup-title": "Kart Silinsin mi?",
- "cardDetailsActionsPopup-title": "Kart işlemleri",
- "cardLabelsPopup-title": "Etiketler",
- "cardMembersPopup-title": "Üyeler",
- "cardMorePopup-title": "Daha",
- "cardTemplatePopup-title": "Şablon oluştur",
- "cards": "Kartlar",
- "cards-count": "Kartlar",
- "casSignIn": "CAS ile giriş yapın",
- "cardType-card": "Kart",
- "cardType-linkedCard": "Bağlantılı kart",
- "cardType-linkedBoard": "Bağlantılı Pano",
- "change": "Değiştir",
- "change-avatar": "Avatar Değiştir",
- "change-password": "Parola Değiştir",
- "change-permissions": "İzinleri değiştir",
- "change-settings": "Ayarları değiştir",
- "changeAvatarPopup-title": "Avatar Değiştir",
- "changeLanguagePopup-title": "Dil Değiştir",
- "changePasswordPopup-title": "Parola Değiştir",
- "changePermissionsPopup-title": "Yetkileri Değiştirme",
- "changeSettingsPopup-title": "Ayarları değiştir",
- "subtasks": "Alt Görevler",
- "checklists": "Yapılacak Listeleri",
- "click-to-star": "Bu panoyu yıldızlamak için tıkla.",
- "click-to-unstar": "Bu panunun yıldızını kaldırmak için tıkla.",
- "clipboard": "Yapıştır veya sürükleyip bırak",
- "close": "Kapat",
- "close-board": "Panoyu kapat",
- "close-board-pop": "\n92/5000\nAna başlıktaki “Arşiv” düğmesine tıklayarak tahtayı geri yükleyebilirsiniz.",
- "color-black": "siyah",
- "color-blue": "mavi",
- "color-crimson": "kızıl",
- "color-darkgreen": "koyu yeşil",
- "color-gold": "altın rengi",
- "color-gray": "gri",
- "color-green": "yeşil",
- "color-indigo": "çivit",
- "color-lime": "misket limonu",
- "color-magenta": "magenta",
- "color-mistyrose": "sisli",
- "color-navy": "koyu lacivert",
- "color-orange": "turuncu",
- "color-paleturquoise": "soluk turkuvaz",
- "color-peachpuff": "şeftali",
- "color-pink": "pembe",
- "color-plum": "erik moru",
- "color-purple": "mor",
- "color-red": "kırmızı",
- "color-saddlebrown": "eyer kahverengi",
- "color-silver": "gümüş rengi",
- "color-sky": "açık mavi",
- "color-slateblue": "kurşun mavisi",
- "color-white": "beyaz",
- "color-yellow": "sarı",
- "unset-color": "Seçilmemiş",
- "comment": "Yorum",
- "comment-placeholder": "Yorum Yaz",
- "comment-only": "Sadece yorum",
- "comment-only-desc": "Sadece kartlara yorum yazabilir.",
- "no-comments": "Yorum Yok",
- "no-comments-desc": "Yorumlar ve aktiviteleri göremiyorum.",
- "worker": "Çalışan",
- "worker-desc": "Yalnızca kartları taşıyabilir, kendisini karta atayabilir ve yorum yapabilir.",
- "computer": "Bilgisayar",
- "confirm-subtask-delete-dialog": "Alt görevi silmek istediğinizden emin misiniz?",
- "confirm-checklist-delete-dialog": "Kontrol listesini silmek istediğinden emin misin?",
- "copy-card-link-to-clipboard": "Kartın linkini kopyala",
- "linkCardPopup-title": "Bağlantı kartı",
- "searchElementPopup-title": "Arama",
- "copyCardPopup-title": "Kartı Kopyala",
- "copyChecklistToManyCardsPopup-title": "Yapılacaklar Listesi şemasını birden çok karta kopyala",
- "copyChecklistToManyCardsPopup-instructions": "Hedef Kart Başlıkları ve Açıklamaları bu JSON formatında",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"İlk kart başlığı\", \"description\":\"İlk kart açıklaması\"}, {\"title\":\"İkinci kart başlığı\",\"description\":\"İkinci kart açıklaması\"},{\"title\":\"Son kart başlığı\",\"description\":\"Son kart açıklaması\"} ]",
- "create": "Oluştur",
- "createBoardPopup-title": "Pano Oluşturma",
- "chooseBoardSourcePopup-title": "Panoyu içe aktar",
- "createLabelPopup-title": "Etiket Oluşturma",
- "createCustomField": "Alanı yarat",
- "createCustomFieldPopup-title": "Alanı yarat",
- "current": "mevcut",
- "custom-field-delete-pop": "Bunun geri dönüşü yoktur. Bu özel alan tüm kartlardan kaldırılıp tarihçesi yokedilecektir.",
- "custom-field-checkbox": "İşaret kutusu",
- "custom-field-currency": "Para birimi",
- "custom-field-currency-option": "Para birimi kodu",
- "custom-field-date": "Tarih",
- "custom-field-dropdown": "Açılır liste",
- "custom-field-dropdown-none": "(hiçbiri)",
- "custom-field-dropdown-options": "Liste seçenekleri",
- "custom-field-dropdown-options-placeholder": "Başka seçenekler eklemek için giriş tuşuna basınız",
- "custom-field-dropdown-unknown": "(bilinmeyen)",
- "custom-field-number": "Sayı",
- "custom-field-text": "Metin",
- "custom-fields": "Özel alanlar",
- "date": "Tarih",
- "decline": "Reddet",
- "default-avatar": "Varsayılan avatar",
- "delete": "Sil",
- "deleteCustomFieldPopup-title": "Özel alan silinsin mi?",
- "deleteLabelPopup-title": "Etiket Silinsin mi?",
- "description": "Açıklama",
- "disambiguateMultiLabelPopup-title": "Etiket işlemini izah et",
- "disambiguateMultiMemberPopup-title": "Üye işlemini izah et",
- "discard": "At",
- "done": "Tamam",
- "download": "İndir",
- "edit": "Düzenle",
- "edit-avatar": "Avatar Değiştir",
- "edit-profile": "Profili Düzenle",
- "edit-wip-limit": "Devam Eden İş Sınırını Düzenle",
- "soft-wip-limit": "Zayıf Devam Eden İş Sınırı",
- "editCardStartDatePopup-title": "Başlangıç tarihini değiştir",
- "editCardDueDatePopup-title": "Bitiş tarihini değiştir",
- "editCustomFieldPopup-title": "Alanı düzenle",
- "editCardSpentTimePopup-title": "Harcanan zamanı değiştir",
- "editLabelPopup-title": "Etiket Değiştir",
- "editNotificationPopup-title": "Bildirimi değiştir",
- "editProfilePopup-title": "Profili Düzenle",
- "email": "E-posta",
- "email-enrollAccount-subject": "Hesabınız __siteName__ üzerinde oluşturuldu",
- "email-enrollAccount-text": "Merhaba __user__,\n\nBu servisi kullanmaya başlamak için aşağıdaki linke tıklamalısın:\n\n__url__\n\nTeşekkürler.",
- "email-fail": "E-posta gönderimi başarısız",
- "email-fail-text": "E-Posta gönderilme çalışırken hata oluştu",
- "email-invalid": "Geçersiz e-posta",
- "email-invite": "E-posta ile davet et",
- "email-invite-subject": "__inviter__ size bir davetiye gönderdi",
- "email-invite-text": "Sevgili __user__,\n\n__inviter__ seni birlikte çalışmak için \"__board__\" panosuna davet ediyor.\n\nLütfen aşağıdaki linke tıkla:\n\n__url__\n\nTeşekkürler.",
- "email-resetPassword-subject": "__siteName__ üzerinde parolanı sıfırla",
- "email-resetPassword-text": "Merhaba __user__,\n\nParolanı sıfırlaman için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
- "email-sent": "E-posta gönderildi",
- "email-verifyEmail-subject": "__siteName__ üzerindeki e-posta adresini doğrulama",
- "email-verifyEmail-text": "Merhaba __user__,\n\nHesap e-posta adresini doğrulamak için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
- "enable-wip-limit": "Devam Eden İş Sınırını Aç",
- "error-board-doesNotExist": "Pano bulunamadı",
- "error-board-notAdmin": "Bu işlemi yapmak için pano yöneticisi olmalısın.",
- "error-board-notAMember": "Bu işlemi yapmak için panoya üye olmalısın.",
- "error-json-malformed": "Girilen metin geçerli bir JSON formatında değil",
- "error-json-schema": "Girdiğin JSON metni tüm bilgileri doğru biçimde barındırmıyor",
- "error-csv-schema": "CSV'niz (Virgülle Ayrılmış Değerler) / TSV'niz (Sekmeyle Ayrılmış Değerler) doğru formatta uygun bilgileri içermiyor",
- "error-list-doesNotExist": "Liste bulunamadı",
- "error-user-doesNotExist": "Kullanıcı bulunamadı",
- "error-user-notAllowSelf": "Kendi kendini davet edemezsin",
- "error-user-notCreated": "Bu üye oluşturulmadı",
- "error-username-taken": "Kullanıcı adı zaten alınmış",
- "error-email-taken": "Bu e-posta adresi daha önceden alınmış",
- "export-board": "Panoyu dışarı aktar",
- "export-board-json": "Panoyu JSON olarak dışarı aktar",
- "export-board-csv": "Panoyu CSV olarak dışarı aktar",
- "export-board-tsv": "Panoyu TSV olarak dışarı aktar",
- "export-board-html": "Panoyu HTML olarak dışarı aktar",
- "exportBoardPopup-title": "Panoyu dışarı aktar",
- "sort": "Sırala",
- "sort-desc": "Listeyi Sıralamak için Tıklayın",
- "list-sort-by": "Listeyi Sırala:",
- "list-label-modifiedAt": "Son Erişim Zamanı...",
- "list-label-title": "Listenin Adı...",
- "list-label-sort": "Manuel Siparişiniz",
- "list-label-short-modifiedAt": "(S)",
- "list-label-short-title": "(A)",
- "list-label-short-sort": "(M)",
- "filter": "Filtre",
- "filter-cards": "Kartları veya Listeleri Filtrele",
- "list-filter-label": "Listeyi Başlığa Göre Filtrele",
- "filter-clear": "Filtreyi temizle",
- "filter-labels-label": "Etikete göre filtrele",
- "filter-no-label": "Etiket yok",
- "filter-member-label": "Üyeye göre filtrele",
- "filter-no-member": "Üyesi olmayan",
- "filter-assignee-label": "Atanana göre filtrele",
- "filter-no-assignee": "Atanmayan",
- "filter-custom-fields-label": "Özel alanlara göre filtrele",
- "filter-no-custom-fields": "Hiç özel alan yok",
- "filter-show-archive": "Arşivlenmiş listeleri göster",
- "filter-hide-empty": "Boş listeleri gizle",
- "filter-on": "Filtre aktif",
- "filter-on-desc": "Bu panodaki kartları filtreliyorsunuz. Fitreyi düzenlemek için tıklayın.",
- "filter-to-selection": "Seçime göre filtreleme yap",
- "other-filters-label": "Diğer Filtreler",
- "advanced-filter-label": "Gelişmiş Filtreleme",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Ad Soyad",
- "header-logo-title": "Panolar sayfanıza geri dön.",
- "hide-system-messages": "Sistem mesajlarını gizle",
- "headerBarCreateBoardPopup-title": "Pano Oluşturma",
- "home": "Ana Sayfa",
- "import": "İçeri aktar",
- "impersonate-user": "Kullanıcının kimliğine bürün",
- "link": "Bağlantı",
- "import-board": "panoyu içe aktar",
- "import-board-c": "Panoyu içe aktar",
- "import-board-title-trello": "Trello'dan panoyu içeri aktar",
- "import-board-title-wekan": "Önceki dışa aktarımdaki panoyu içe aktar",
- "import-board-title-csv": "CSV/TSV formatındaki panoyu içeri aktar",
- "from-trello": "Trello'dan",
- "from-wekan": "Önceki dışa aktarımdan",
- "from-csv": "CSV/TSV'den",
- "import-board-instruction-trello": "Trello panonuzda 'Menü'ye gidip 'Daha fazlası'na tıklayın, ardından 'Yazdır ve Çıktı Al'ı seçip 'JSON biçiminde çıktı al' diyerek çıkan metni buraya kopyalayın.",
- "import-board-instruction-csv": "Virgülle Ayrılmış Değerlerinizi (CSV) / Sekmeyle Ayrılmış Değerlerinizi (TSV) yapıştırın.",
- "import-board-instruction-wekan": "Panonuzda \"Menü\" ye, ardından \"Panoyu dışa aktar\" a gidin ve indirilen dosyadaki metni kopyalayın.",
- "import-board-instruction-about-errors": "Panoyu içe aktarırken hata alıyorsanız, içe alma hala devam ediyor olabilir ya da Tüm Panolar sayfasında yer alıyor olabilir.",
- "import-json-placeholder": "Geçerli JSON verisini buraya yapıştırın",
- "import-csv-placeholder": "Geçerli CSV / TSV verilerinizi buraya yapıştırın",
- "import-map-members": "Üyeleri eşleştirme",
- "import-members-map": "İçe aktarılan panonuzda bazı üyeler var. Lütfen kullanıcılarınıza aktarmak istediğiniz üyeleri eşleyin",
- "import-show-user-mapping": "Üye eşleştirmesini kontrol et",
- "import-user-select": "Bu üye olarak kullanmak istediğiniz mevcut kullanıcınızı seçin",
- "importMapMembersAddPopup-title": "Üye seç",
- "info": "Sürüm",
- "initials": "İlk Harfleri",
- "invalid-date": "Geçersiz tarih",
- "invalid-time": "Geçersiz zaman",
- "invalid-user": "Geçersiz kullanıcı",
- "joined": "katıldı",
- "just-invited": "Bu panoya şimdi davet edildin.",
- "keyboard-shortcuts": "Klavye kısayolları",
- "label-create": "Etiket Oluşturma",
- "label-default": "%s etiket (varsayılan)",
- "label-delete-pop": "Bu işlem geri alınamaz. Bu etiket tüm kartlardan kaldırılacaktır ve geçmişi yok edecektir.",
- "labels": "Etiketler",
- "language": "Dil",
- "last-admin-desc": "En az bir yönetici olması gerektiğinden rolleri değiştiremezsiniz.",
- "leave-board": "Panodan ayrıl",
- "leave-board-pop": "__boardTitle__ panosundan ayrılmak istediğinize emin misiniz? Panodaki tüm kartlardan kaldırılacaksınız.",
- "leaveBoardPopup-title": "Panodan ayrılmak istediğinize emin misiniz?",
- "link-card": "Bu kartın bağlantısı",
- "list-archive-cards": "Bu listedeki tüm kartları arşive taşı",
- "list-archive-cards-pop": "Bu eylem bu listedeki tüm kartları panodan kaldıracaktır. Arşivdeki kartları görüntülemek ve panoya geri getirmek için \"Menü\"> \"Arşiv\"i tıklayın.",
- "list-move-cards": "Listedeki tüm kartları taşı",
- "list-select-cards": "Listedeki tüm kartları seç",
- "set-color-list": "Rengi Ayarla",
- "listActionPopup-title": "Liste İşlemleri",
- "settingsUserPopup-title": "Kullanıcı Ayarları",
- "swimlaneActionPopup-title": "Kulvar İşlemleri",
- "swimlaneAddPopup-title": "Aşağı kulvar ekle",
- "listImportCardPopup-title": "Bir Trello kartını içeri aktar",
- "listImportCardsTsvPopup-title": "İçe aktar Excel CSV/TSV",
- "listMorePopup-title": "Daha fazla",
- "link-list": "Listeye doğrudan bağlantı",
- "list-delete-pop": "Etkinlik akışınızdaki tüm eylemler geri kurtarılamaz şekilde kaldırılacak. Bu işlem geri alınamaz.",
- "list-delete-suggest-archive": "Bir listeyi panodan kaldırmak için Arşive taşıyabilir ve kayıtları saklayabilirsiniz.",
- "lists": "Listeler",
- "swimlanes": "Kulvarlar",
- "log-out": "Oturum Kapat",
- "log-in": "Oturum Aç",
- "loginPopup-title": "Oturum Aç",
- "memberMenuPopup-title": "Üye Ayarları",
- "members": "Üyeler",
- "menu": "Menü",
- "move-selection": "Seçimi taşı",
- "moveCardPopup-title": "Kartı taşı",
- "moveCardToBottom-title": "Aşağı taşı",
- "moveCardToTop-title": "Yukarı taşı",
- "moveSelectionPopup-title": "Seçimi taşı",
- "multi-selection": "Çoklu seçim",
- "multi-selection-label": "Seçim için etiket belirle",
- "multi-selection-member": "Seçim için üye belirle",
- "multi-selection-on": "Çoklu seçim açık",
- "muted": "Sessiz",
- "muted-info": "Bu panodaki hiçbir değişiklik hakkında bildirim almayacaksınız",
- "my-boards": "Panolarım",
- "name": "Adı",
- "no-archived-cards": "Arşivde kart yok",
- "no-archived-lists": "Arşivde liste yok",
- "no-archived-swimlanes": "Arşivde kulvar yok",
- "no-results": "Sonuç yok",
- "normal": "Normal",
- "normal-desc": "Kartları görüntüleyebilir ve düzenleyebilir. Ayarları değiştiremez.",
- "not-accepted-yet": "Davet henüz kabul edilmemiş",
- "notify-participate": "Oluşturduğunuz veya üye olduğunuz tüm kartlar hakkında bildirim al",
- "notify-watch": "Takip ettiğiniz tüm pano, liste ve kartlar hakkında bildirim al",
- "optional": "isteğe bağlı",
- "or": "veya",
- "page-maybe-private": "Bu sayfa gizli olabilir. Oturum açarak görmeyi deneyin.",
- "page-not-found": "Sayfa bulunamadı.",
- "password": "Parola",
- "paste-or-dragdrop": "Dosya eklemek için yapıştırabilir, veya (eğer resimse) sürükle bırak yapabilirsiniz",
- "participating": "Katılımcılar",
- "preview": "Önizleme",
- "previewAttachedImagePopup-title": "Önizleme",
- "previewClipboardImagePopup-title": "Önizleme",
- "private": "Gizli",
- "private-desc": "Bu pano gizli. Sadece panoya ekli kişiler görüntüleyebilir ve düzenleyebilir.",
- "profile": "Kullanıcı Sayfası",
- "public": "Genel",
- "public-desc": "Bu pano genel bir panodur. Bağlantıya sahip olan herkes panoyu görüntüleyebilir, ayrıca panonuz Google gibi arama motorlarında görünür. Panoyu, sadece panoya eklenen kişiler düzenleyebilir.",
- "quick-access-description": "Yıldızladığınız panolar burada gözükür",
- "remove-cover": "Kapak Resmini Kaldır",
- "remove-from-board": "Panodan Kaldır",
- "remove-label": "Etiketi Kaldır",
- "listDeletePopup-title": "Liste silinsin mi?",
- "remove-member": "Üyeyi Çıkar",
- "remove-member-from-card": "Karttan Çıkar",
- "remove-member-pop": "__boardTitle__ panosundan __name__ (__username__) çıkarılsın mı? Üye, bu panodaki tüm kartlardan çıkarılacak. Panodan çıkarıldığı üyeye bildirilecektir.",
- "removeMemberPopup-title": "Üye çıkarılsın mı?",
- "rename": "Yeniden adlandır",
- "rename-board": "Panonun Adını Değiştir",
- "restore": "Geri Getir",
- "save": "Kaydet",
- "search": "Arama",
- "rules": "Kurallar",
- "search-cards": "Bu panodaki kart / liste başlıkları, açıklamalar ve özel alanlarda arama yapın",
- "search-example": "Aradığınız metni yazın ve Enter tuşuna basın",
- "select-color": "Renk Seç",
- "select-board": "Select Board",
- "set-wip-limit-value": "Bu listedeki en fazla öğe sayısı için bir sınır belirleyin",
- "setWipLimitPopup-title": "Devam Eden İş Sınırı Belirle",
- "shortcut-assign-self": "Kendini karta ata",
- "shortcut-autocomplete-emoji": "Emojileri otomatik tamamla",
- "shortcut-autocomplete-members": "Üye isimlerini otomatik tamamla",
- "shortcut-clear-filters": "Tüm filtreleri temizle",
- "shortcut-close-dialog": "Diyaloğu kapat",
- "shortcut-filter-my-cards": "Kartlarımı filtrele",
- "shortcut-show-shortcuts": "Kısayollar listesini getir",
- "shortcut-toggle-filterbar": "Filtre kenar çubuğunu aç/kapa",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Pano kenar çubuğunu aç/kapa",
- "show-cards-minimum-count": "Eğer listede şu sayıdan fazla öğe varsa kart sayısını göster: ",
- "sidebar-open": "Kenar Çubuğunu Aç",
- "sidebar-close": "Kenar Çubuğunu Kapat",
- "signupPopup-title": "Bir Hesap Oluştur",
- "star-board-title": "Bu panoyu yıldızlamak için tıkla. Yıldızlı panolar pano listesinin en üstünde gösterilir.",
- "starred-boards": "Yıldızlı Panolar",
- "starred-boards-description": "Yıldızlanmış panolar, pano listesinin en üstünde gösterilir.",
- "subscribe": "Abone ol",
- "team": "Takım",
- "this-board": "bu panoyu",
- "this-card": "bu kart",
- "spent-time-hours": "Harcanan zaman (saat)",
- "overtime-hours": "Aşılan süre (saat)",
- "overtime": "Aşılan süre",
- "has-overtime-cards": "Süresi aşılmış kartlar",
- "has-spenttime-cards": "Zaman geçirilmiş kartlar",
- "time": "Zaman",
- "title": "Başlık",
- "tracking": "Takip",
- "tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.",
- "type": "Tür",
- "unassign-member": "Üyeye atamayı kaldır",
- "unsaved-description": "Kaydedilmemiş bir açıklama metnin bulunmakta",
- "unwatch": "Takibi bırak",
- "upload": "Yükle",
- "upload-avatar": "Avatar yükle",
- "uploaded-avatar": "Avatar yüklendi",
- "custom-top-left-corner-logo-image-url": "Özel Sol Üst Köşe Logo Resmi URL'si",
- "custom-top-left-corner-logo-link-url": "Özel Sol Üst Köşe Logo Bağlantı URL'si",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Özel Oturum Açma Logosu Resmi URL'si",
- "custom-login-logo-link-url": "Özel Oturum Açma Logosu Bağlantı URL'si",
- "text-below-custom-login-logo": "Özel Oturum Açma Logosunun altındaki metin",
- "username": "Kullanıcı adı",
- "view-it": "Görüntüle",
- "warn-list-archived": "Uyarı: Bu kart arşivdeki bir listede",
- "watch": "Takip Et",
- "watching": "Takip Ediliyor",
- "watching-info": "Bu pano hakkındaki tüm değişiklikler hakkında bildirim alacaksınız",
- "welcome-board": "Hoş Geldiniz Panosu",
- "welcome-swimlane": "Kilometre taşı",
- "welcome-list1": "Temel",
- "welcome-list2": "Gelişmiş",
- "card-templates-swimlane": "Kart şablonları",
- "list-templates-swimlane": "Liste şablonları",
- "board-templates-swimlane": "Pano şablonları",
- "what-to-do": "Ne yapmak istiyorsunuz?",
- "wipLimitErrorPopup-title": "Geçersiz Devam Eden İş Sınırı",
- "wipLimitErrorPopup-dialog-pt1": "Bu listedeki iş sayısı belirlediğiniz sınırdan daha fazla.",
- "wipLimitErrorPopup-dialog-pt2": "Lütfen bazı işleri bu listeden başka listeye taşıyın ya da devam eden iş sınırını yükseltin.",
- "admin-panel": "Yönetici Paneli",
- "settings": "Ayarlar",
- "people": "Kullanıcılar",
- "registration": "Kayıt",
- "disable-self-registration": "Ziyaretçilere kaydı kapa",
- "invite": "Davet",
- "invite-people": "Kullanıcı davet et",
- "to-boards": "Şu pano(lar)a",
- "email-addresses": "E-posta adresleri",
- "smtp-host-description": "E-posta gönderimi yapan SMTP sunucu adresi",
- "smtp-port-description": "E-posta gönderimi yapan SMTP sunucu portu",
- "smtp-tls-description": "SMTP mail sunucusu için TLS kriptolama desteği açılsın",
- "smtp-host": "SMTP sunucu adresi",
- "smtp-port": "SMTP portu",
- "smtp-username": "Kullanıcı adı",
- "smtp-password": "Parola",
- "smtp-tls": "TLS desteği",
- "send-from": "Gönderen",
- "send-smtp-test": "Kendinize deneme E-Postası gönderin",
- "invitation-code": "Davetiye kodu",
- "email-invite-register-subject": "__inviter__ size bir davetiye gönderdi",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test E-postası",
- "email-smtp-test-text": "E-Posta başarıyla gönderildi",
- "error-invitation-code-not-exist": "Davetiye kodu bulunamadı",
- "error-notAuthorized": "Bu sayfayı görmek için yetkiniz yok.",
- "webhook-title": "Bağlantı Adı",
- "webhook-token": "Belirteç (Kimlik Doğrulama için İsteğe Bağlı)",
- "outgoing-webhooks": "Dışarı giden bağlantılar",
- "bidirectional-webhooks": "İki yönlü bağlantılar",
- "outgoingWebhooksPopup-title": "Dışarı giden bağlantılar",
- "boardCardTitlePopup-title": "Kart Başlığı Filtresi",
- "disable-webhook": "Bu bağlantıyı devre dışı bırak",
- "global-webhook": "Global Bağlantılar",
- "new-outgoing-webhook": "Yeni Dışarı Giden Web Bağlantısı",
- "no-name": "(Bilinmeyen)",
- "Node_version": "Node sürümü",
- "Meteor_version": "Meteor sürümü",
- "MongoDB_version": "MongoDB sürümü",
- "MongoDB_storage_engine": "MongoDB depolama motoru",
- "MongoDB_Oplog_enabled": "MongoDB Oplog etkin",
- "OS_Arch": "İşletim Sistemi Mimarisi",
- "OS_Cpus": "İşletim Sistemi İşlemci Sayısı",
- "OS_Freemem": "İşletim Sistemi Kullanılmayan Bellek",
- "OS_Loadavg": "İşletim Sistemi Ortalama Yük",
- "OS_Platform": "İşletim Sistemi Platformu",
- "OS_Release": "İşletim Sistemi Sürümü",
- "OS_Totalmem": "İşletim Sistemi Toplam Belleği",
- "OS_Type": "İşletim Sistemi Tipi",
- "OS_Uptime": "İşletim Sistemi Toplam Açık Kalınan Süre",
- "days": "günler",
- "hours": "saat",
- "minutes": "dakika",
- "seconds": "saniye",
- "show-field-on-card": "Bu alanı kartta göster",
- "automatically-field-on-card": "Tüm kartlara otomatik alan oluştur",
- "showLabel-field-on-card": "Minikard üzerindeki alan etiketini göster",
- "yes": "Evet",
- "no": "Hayır",
- "accounts": "Hesaplar",
- "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver",
- "accounts-allowUserNameChange": "Kullanıcı adı değiştirmeye izin ver",
- "createdAt": "Oluşturulma tarihi",
- "verified": "Doğrulanmış",
- "active": "Aktif",
- "card-received": "Giriş",
- "card-received-on": "Giriş zamanı",
- "card-end": "Bitiş",
- "card-end-on": "Bitiş zamanı",
- "editCardReceivedDatePopup-title": "Giriş tarihini değiştir",
- "editCardEndDatePopup-title": "Bitiş tarihini değiştir",
- "setCardColorPopup-title": "Renk ayarla",
- "setCardActionsColorPopup-title": "Renk seçimi yap",
- "setSwimlaneColorPopup-title": "Renk seçimi yap",
- "setListColorPopup-title": "Renk seçimi yap",
- "assigned-by": "Atamayı yapan",
- "requested-by": "Talep Eden",
- "board-delete-notice": "Silme kalıcıdır. Bu kartla ilişkili tüm listeleri, kartları ve işlemleri kaybedeceksiniz.",
- "delete-board-confirm-popup": "Tüm listeler, kartlar, etiketler ve etkinlikler silinecek ve pano içeriğini kurtaramayacaksınız. Geri dönüş yok.",
- "boardDeletePopup-title": "Panoyu Sil?",
- "delete-board": "Panoyu Sil",
- "default-subtasks-board": "__board__ panosu için alt görevler",
- "default": "Varsayılan",
- "queue": "Sıra",
- "subtask-settings": "Alt Görev ayarları",
- "card-settings": "Kart ayarları",
- "boardSubtaskSettingsPopup-title": "Pano alt görev ayarları",
- "boardCardSettingsPopup-title": "Kart ayarları",
- "deposit-subtasks-board": "Alt görevleri bu panoda sakla:",
- "deposit-subtasks-list": "Alt görevlerin açılacağı liste:",
- "show-parent-in-minicard": "Mini kart içinde üst kartı göster",
- "prefix-with-full-path": "Tam yolunu önüne ekle",
- "prefix-with-parent": "Ana görev ile ön adlandır",
- "subtext-with-full-path": "Tam yolu ile alt metin",
- "subtext-with-parent": "üst öge ile alt metin",
- "change-card-parent": "Kartın üst kartını değiştir",
- "parent-card": "Ana kart",
- "source-board": "Kaynak panosu",
- "no-parent": "Üst ögeyi gösterme",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "etiket eklendi '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "Ek silindi",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Kural",
- "r-add-trigger": "Tetikleyici ekle",
- "r-add-action": "Eylem ekle",
- "r-board-rules": "Pano Kuralları",
- "r-add-rule": "Kural ekle",
- "r-view-rule": "Kuralı göster",
- "r-delete-rule": "Kuralı sil",
- "r-new-rule-name": "Yeni kural başlığı",
- "r-no-rules": "Kural yok",
- "r-trigger": "Tetikleyici",
- "r-action": "Aksiyon",
- "r-when-a-card": "Kart eklendiğinde",
- "r-is": "is",
- "r-is-moved": "taşındı",
- "r-added-to": "Eklendi:",
- "r-removed-from": "Çıkarıldı:",
- "r-the-board": "pano",
- "r-list": "liste",
- "set-filter": "Filtrele",
- "r-moved-to": "Şuraya taşındı:",
- "r-moved-from": "Şuradan taşındı:",
- "r-archived": "Arşive taşındı",
- "r-unarchived": "Arşivden geri çıkarıldı",
- "r-a-card": "Kart",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "liste adı",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "isim",
- "r-when-a-attach": "Bir ek olduğunda",
- "r-when-a-checklist": "Bir kontrol listesi şu olduğunda:",
- "r-when-the-checklist": "Bir kontrol listesine şu olduğunda:",
- "r-completed": "Tamamlandı",
- "r-made-incomplete": "Tamamlanmamış",
- "r-when-a-item": "Bir kontrol listesi öğesi şu olduğunda:",
- "r-when-the-item": "Bir kontrol listesi öğesine şu olduğunda:",
- "r-checked": "İşaretlendi",
- "r-unchecked": "İşaret Kaldırıldı",
- "r-move-card-to": "Kartı taşı",
- "r-top-of": "En üst",
- "r-bottom-of": "En alt",
- "r-its-list": "its list",
- "r-archive": "Arşive Taşı",
- "r-unarchive": "Arşivden Geri Yükle",
- "r-card": "Kart",
- "r-add": "Ekle",
- "r-remove": "Kaldır",
- "r-label": "etiket",
- "r-member": "üye",
- "r-remove-all": "Tüm üyeleri karttan çıkarın",
- "r-set-color": "Rengi şu değere ayarla:",
- "r-checklist": "Kontrol Listesi",
- "r-check-all": "Tümünü işaretle",
- "r-uncheck-all": "Tüm işaretleri kaldır",
- "r-items-check": "Kontrol Listesi maddeleri",
- "r-check": "işaretle",
- "r-uncheck": "İşareti Kaldır",
- "r-item": "öge",
- "r-of-checklist": "of checklist",
- "r-send-email": "E-Posta Gönder",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "Konu",
- "r-rule-details": "Kural Detayları",
- "r-d-move-to-top-gen": "Kartı listesinin en üstüne taşı",
- "r-d-move-to-top-spec": "Kartı listenin en üstüne taşı",
- "r-d-move-to-bottom-gen": "Kartı listesinin en altına taşı",
- "r-d-move-to-bottom-spec": "Kartı listenin en altına taşı",
- "r-d-send-email": "E-Posta gönder",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "Konu",
- "r-d-send-email-message": "mesaj",
- "r-d-archive": "Kartı Arşive Taşı",
- "r-d-unarchive": "Kartı arşivden geri yükle",
- "r-d-add-label": "Etiket ekle",
- "r-d-remove-label": "Etiketi kaldır",
- "r-create-card": "Yeni kart oluştur",
- "r-in-list": ", listesinde",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Üye Ekle",
- "r-d-remove-member": "Üye Sil",
- "r-d-remove-all-member": "Tüm Üyeleri Sil",
- "r-d-check-all": "Listenin tüm öğelerini kontrol et",
- "r-d-uncheck-all": "Listedeki tüm öğelerin işaretini kaldır",
- "r-d-check-one": "Ögeyi kontrol et",
- "r-d-uncheck-one": "Öğenin işaretini kaldır",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Kontrol listesine ekle",
- "r-d-remove-checklist": "Kontrol listesini kaldır",
- "r-by": "tarafından",
- "r-add-checklist": "Kontrol listesine ekle",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Kulvar ekle",
- "r-swimlane-name": "kulvar adı",
- "r-board-note": "Not: Her olası değere uyması için bir alanı boş bırakın.",
- "r-checklist-note": "Not: kontrol listesindeki öğelerin virgülle ayrılmış değerler olarak yazılması gerekir.",
- "r-when-a-card-is-moved": "Bir kart başka bir listeye taşındığında",
- "r-set": "Ayarla",
- "r-update": "Güncelle",
- "r-datefield": "tarih alanı",
- "r-df-start-at": "başlangıç",
- "r-df-due-at": "vade",
- "r-df-end-at": "bitiş",
- "r-df-received-at": "alındı",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Değeri şuradan kaldır:",
- "ldap": "LDAP",
- "oauth2": "Oauth2",
- "cas": "CAS",
- "authentication-method": "Kimlik doğrulama yöntemi",
- "authentication-type": "Kimlik doğrulama türü",
- "custom-product-name": "Özel Ürün Adı",
- "layout": "Düzen",
- "hide-logo": "Logoyu Gizle",
- "add-custom-html-after-body-start": "'den sonra Özel HTML Ekle",
- "add-custom-html-before-body-end": "'den önce Özel HTML Ekle",
- "error-undefined": "Bir şeyler yanlış gitti",
- "error-ldap-login": "Giriş yapmaya çalışırken bir hata oluştu",
- "display-authentication-method": "Kimlik Doğrulama Yöntemini Görüntüle",
- "default-authentication-method": "Varsayılan Kimlik Doğrulama Yöntemi",
- "duplicate-board": "Panoyu Çoğalt",
- "people-number": "Kişi sayısı:",
- "swimlaneDeletePopup-title": "Kulvar silinsin mi?",
- "swimlane-delete-pop": "Tüm eylemler etkinlik akışından kaldırılacak ve kulvarınızı kurtaramayacaksınız. Geri alınamaz.",
- "restore-all": "Her şeyi eski haline getir",
- "delete-all": "Hepsini sil",
- "loading": "Yükleniyor, lütfen bekleyiniz",
- "previous_as": "son kez",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "son tarih değiştirildi",
- "a-endAt": "bitiş zamanı değiştirildi",
- "a-startAt": "başlangıç zamanı değiştirildi",
- "a-receivedAt": "alınma zamanı değiştirildi",
- "almostdue": "%s'in vadesi yaklaşıyor",
- "pastdue": "%s'in vadesi geçti",
- "duenow": "%s'in vadesi bugün",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "[__board__] __list__/__card__ içinde bahsedildiniz",
- "delete-user-confirm-popup": "Bu kullanıcı hesabını silmek istediğinize emin misiniz? Bu işlemi geri alamazsınız.",
- "accounts-allowUserDelete": "Kullanıcılara hesaplarını silmek için izin ver.",
- "hide-minicard-label-text": "Mini kart etiklerini gizle",
- "show-desktop-drag-handles": "Masaüstü sürükleme tutamaçlarını göster",
- "assignee": "Atanan",
- "cardAssigneesPopup-title": "Atanan",
- "addmore-detail": "Daha ayrıntılı bir açıklama ekle",
- "show-on-card": "Kartta Göster",
- "new": "Yeni",
- "editUserPopup-title": "Kullanıcıyı Düzenle",
- "newUserPopup-title": "Yeni Kullanıcı",
- "notifications": "Bildirim",
- "view-all": "Tümünü gör",
- "filter-by-unread": "Okunmamışlara göre filtrele",
- "mark-all-as-read": "Tümünü okundu olarak işaretle",
- "remove-all-read": "Okunanların tümünü kaldır",
- "allow-rename": "Yeniden Adlandırmaya İzin Ver",
- "allowRenamePopup-title": "Yeniden Adlandırmaya İzin Ver",
- "start-day-of-week": "Haftanın başlangıç gününü ayarla",
- "monday": "Pazartesi",
- "tuesday": "Salı",
- "wednesday": "Çarşamba",
- "thursday": "Perşembe",
- "friday": "Cuma",
- "saturday": "Cumartesi",
- "sunday": "Pazar",
- "status": "Durum",
- "swimlane": "Kulvar",
- "owner": "Sahibi",
- "last-modified-at": "Son değiştirilme",
- "last-activity": "Son aktivite",
- "voting": "Oylama",
- "archived": "Arşivlendi",
- "delete-linked-card-before-this-card": "Bu kartı, sahip olan bağlantılı kartı silmeden önce silemezsiniz.",
- "delete-linked-cards-before-this-list": "Bu listedeki kartlara işaret eden bağlantılı kartları silmeden önce bu listeyi silemezsiniz.",
- "hide-checked-items": "İşaretli öğeleri gizle",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Kabul Et",
+ "act-activity-notify": "Etkinlik Bildirimi",
+ "act-addAttachment": "__attachment__ eklentisi, __swimlane__ kulvarındaki __list__ listesindeki __board__ panosundaki __card__ kartına eklendi.",
+ "act-deleteAttachment": "__attachment__ eklentisi, __swimlane__ kulvarındaki __list__ listesindeki __board__ panosundaki __card__ kartından silindi.",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "__board__ panosu oluşturuldu",
+ "act-createSwimlane": "__board__ panosuna __swimlane__ kulvarı oluşturuldu",
+ "act-createCard": "__board__ panosunun __swimlane__ kulvarının __list__ listesinin __card__ kartı oluşturuldu",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "__board__ panosuna __member__ kullanıcısı eklendi",
+ "act-archivedBoard": "__board__ panosu Arşiv'e taşındı",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "__board__ panosu içeriye aktarıldı",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "İşlemler",
+ "activities": "Etkinlikler",
+ "activity": "Etkinlik",
+ "activity-added": "%s içine %s ekledi",
+ "activity-archived": "%s arşive taşındı",
+ "activity-attached": "%s içine %s ekledi",
+ "activity-created": "%s öğesini oluşturdu",
+ "activity-customfield-created": "%s adlı özel alan yaratıldı",
+ "activity-excluded": "%s içinden %s çıkarttı",
+ "activity-imported": "%s kaynağından %s öğesini %s öğesinin içine taşıdı ",
+ "activity-imported-board": "%s i %s içinden aktardı",
+ "activity-joined": "şuna katıldı: %s",
+ "activity-moved": "%s i %s içinden %s içine taşıdı",
+ "activity-on": "%s",
+ "activity-removed": "%s i %s ten kaldırdı",
+ "activity-sent": "%s i %s e gönderdi",
+ "activity-unjoined": "%s içinden ayrıldı",
+ "activity-subtask-added": "Alt-görev %s'e eklendi",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "%s içine yapılacak listesi ekledi",
+ "activity-checklist-removed": "%s Tarafından yapılacaklar listesi silinmiştir",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "%s içinde %s yapılacak listesine öğe ekledi",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Ekle",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "%s yorum düzenlendi",
+ "activity-deleteComment": "%s yorum silindi",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Ek Ekle",
+ "add-board": "Pano Ekle",
+ "add-card": "Kart Ekle",
+ "add-swimlane": "Kulvar Ekle",
+ "add-subtask": "Alt Görev Ekle",
+ "add-checklist": "Yapılacak Listesi Ekle",
+ "add-checklist-item": "Yapılacak listesine yeni bir öğe ekle",
+ "add-cover": "Kapak resmi ekle",
+ "add-label": "Etiket Ekle",
+ "add-list": "Liste Ekle",
+ "add-members": "Üye ekle",
+ "added": "Eklendi",
+ "addMemberPopup-title": "Üyeler",
+ "admin": "Yönetici",
+ "admin-desc": "Kartları görüntüleyebilir ve düzenleyebilir, üyeleri çıkarabilir ve pano ayarlarını değiştirebilir.",
+ "admin-announcement": "Duyuru",
+ "admin-announcement-active": "Tüm Sistemde Etkin Duyuru",
+ "admin-announcement-title": "Yöneticiden Duyuru",
+ "all-boards": "Tüm panolar",
+ "and-n-other-card": "Ve __count__ diğer kart",
+ "and-n-other-card_plural": "Ve __count__ diğer kart",
+ "apply": "Uygula",
+ "app-is-offline": "Yükleniyor lütfen bekleyin. Sayfayı yenilemek veri kaybına neden olur. Yükleme çalışmıyorsa, lütfen sunucunun durmadığını kontrol edin.",
+ "archive": "Arşive Taşı",
+ "archive-all": "Hepsini Arşive Taşı",
+ "archive-board": "Panoyu Arşive Taşı",
+ "archive-card": "Kartı Arşive Taşı",
+ "archive-list": "Listeyi Arşive Taşı",
+ "archive-swimlane": "Kulvarı Arşive Taşı",
+ "archive-selection": "Seçimi arşive taşı",
+ "archiveBoardPopup-title": "Panoyu arşive taşı?",
+ "archived-items": "Arşivle",
+ "archived-boards": "Panolar Arşivde",
+ "restore-board": "Panoyu Geri Getir",
+ "no-archived-boards": "Arşivde Pano Yok.",
+ "archives": "Arşivle",
+ "template": "Şablon",
+ "templates": "Şablonlar",
+ "assign-member": "Üye ata",
+ "attached": "dosya(sı) eklendi",
+ "attachment": "Ek Dosya",
+ "attachment-delete-pop": "Ek silme işlemi kalıcıdır ve geri alınamaz.",
+ "attachmentDeletePopup-title": "Ek Silinsin mi?",
+ "attachments": "Ekler",
+ "auto-watch": "Oluşan yeni panoları kendiliğinden izlemeye al",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Geri",
+ "board-change-color": "Renk değiştir",
+ "board-nb-stars": "%s yıldız",
+ "board-not-found": "Pano bulunamadı",
+ "board-private-info": "Bu pano gizli olacak.",
+ "board-public-info": "Bu pano genele açılacaktır.",
+ "boardChangeColorPopup-title": "Pano arkaplan rengini değiştir",
+ "boardChangeTitlePopup-title": "Panonun Adını Değiştir",
+ "boardChangeVisibilityPopup-title": "Görünebilirliği Değiştir",
+ "boardChangeWatchPopup-title": "İzleme Durumunu Değiştir",
+ "boardMenuPopup-title": "Pano Ayarları",
+ "boardChangeViewPopup-title": "Pano Görünümü",
+ "boards": "Panolar",
+ "board-view": "Pano Görünümü",
+ "board-view-cal": "Takvim",
+ "board-view-swimlanes": "Kulvarlar",
+ "board-view-collapse": "Katla",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Listeler",
+ "bucket-example": "Örn: \"Marketten Alacaklarım\"",
+ "cancel": "İptal",
+ "card-archived": "Bu kart arşive taşındı.",
+ "board-archived": "Bu pano arşive taşındı.",
+ "card-comments-title": "Bu kartta %s yorum var.",
+ "card-delete-notice": "Silme işlemi kalıcıdır. Bu kartla ilişkili tüm eylemleri kaybedersiniz.",
+ "card-delete-pop": "Son hareketler alanındaki tüm veriler silinecek, ayrıca bu kartı yeniden açamayacaksın. Bu işlemin geri dönüşü yok.",
+ "card-delete-suggest-archive": "Bir kartı tahtadan çıkarmak ve etkinliği korumak için Arşive taşıyabilirsiniz.",
+ "card-due": "Bitiş",
+ "card-due-on": "Bitiş tarihi:",
+ "card-spent": "Harcanan Zaman",
+ "card-edit-attachments": "Ek dosyasını düzenle",
+ "card-edit-custom-fields": "Özel alanları düzenle",
+ "card-edit-labels": "Etiketleri düzenle",
+ "card-edit-members": "Üyeleri düzenle",
+ "card-labels-title": "Bu kart için etiketleri düzenle",
+ "card-members-title": "Karta pano içindeki üyeleri ekler veya çıkartır.",
+ "card-start": "Başlama",
+ "card-start-on": "Başlama tarihi:",
+ "cardAttachmentsPopup-title": "Eklenme",
+ "cardCustomField-datePopup-title": "Tarihi değiştir",
+ "cardCustomFieldsPopup-title": "Özel alanları düzenle",
+ "cardStartVotingPopup-title": "Seçim başlat",
+ "positiveVoteMembersPopup-title": "Kabul oyu verenler",
+ "negativeVoteMembersPopup-title": "Red oyu verenler",
+ "card-edit-voting": "Seçimi düzenle",
+ "editVoteEndDatePopup-title": "Seçimin bitiş tarihini değiştir",
+ "allowNonBoardMembers": "Tüm giriş yapanlara aç",
+ "vote-question": "Seçim sorusu",
+ "vote-public": "Kimin nasıl oy verdiğini göster",
+ "vote-for-it": "kabul",
+ "vote-against": "red",
+ "deleteVotePopup-title": "Seçim silinsin mi?",
+ "vote-delete-pop": "Silme kalıcı bir işlemdir. Bu seçimle ilgili tüm eylemleri yitireceksiniz.",
+ "cardDeletePopup-title": "Kart Silinsin mi?",
+ "cardDetailsActionsPopup-title": "Kart işlemleri",
+ "cardLabelsPopup-title": "Etiketler",
+ "cardMembersPopup-title": "Üyeler",
+ "cardMorePopup-title": "Daha",
+ "cardTemplatePopup-title": "Şablon oluştur",
+ "cards": "Kartlar",
+ "cards-count": "Kartlar",
+ "casSignIn": "CAS ile giriş yapın",
+ "cardType-card": "Kart",
+ "cardType-linkedCard": "Bağlantılı kart",
+ "cardType-linkedBoard": "Bağlantılı Pano",
+ "change": "Değiştir",
+ "change-avatar": "Avatar Değiştir",
+ "change-password": "Parola Değiştir",
+ "change-permissions": "İzinleri değiştir",
+ "change-settings": "Ayarları değiştir",
+ "changeAvatarPopup-title": "Avatar Değiştir",
+ "changeLanguagePopup-title": "Dil Değiştir",
+ "changePasswordPopup-title": "Parola Değiştir",
+ "changePermissionsPopup-title": "Yetkileri Değiştirme",
+ "changeSettingsPopup-title": "Ayarları değiştir",
+ "subtasks": "Alt Görevler",
+ "checklists": "Yapılacak Listeleri",
+ "click-to-star": "Bu panoyu yıldızlamak için tıkla.",
+ "click-to-unstar": "Bu panunun yıldızını kaldırmak için tıkla.",
+ "clipboard": "Yapıştır veya sürükleyip bırak",
+ "close": "Kapat",
+ "close-board": "Panoyu kapat",
+ "close-board-pop": "\n92/5000\nAna başlıktaki “Arşiv” düğmesine tıklayarak tahtayı geri yükleyebilirsiniz.",
+ "color-black": "siyah",
+ "color-blue": "mavi",
+ "color-crimson": "kızıl",
+ "color-darkgreen": "koyu yeşil",
+ "color-gold": "altın rengi",
+ "color-gray": "gri",
+ "color-green": "yeşil",
+ "color-indigo": "çivit",
+ "color-lime": "misket limonu",
+ "color-magenta": "magenta",
+ "color-mistyrose": "sisli",
+ "color-navy": "koyu lacivert",
+ "color-orange": "turuncu",
+ "color-paleturquoise": "soluk turkuvaz",
+ "color-peachpuff": "şeftali",
+ "color-pink": "pembe",
+ "color-plum": "erik moru",
+ "color-purple": "mor",
+ "color-red": "kırmızı",
+ "color-saddlebrown": "eyer kahverengi",
+ "color-silver": "gümüş rengi",
+ "color-sky": "açık mavi",
+ "color-slateblue": "kurşun mavisi",
+ "color-white": "beyaz",
+ "color-yellow": "sarı",
+ "unset-color": "Seçilmemiş",
+ "comment": "Yorum",
+ "comment-placeholder": "Yorum Yaz",
+ "comment-only": "Sadece yorum",
+ "comment-only-desc": "Sadece kartlara yorum yazabilir.",
+ "no-comments": "Yorum Yok",
+ "no-comments-desc": "Yorumlar ve aktiviteleri göremiyorum.",
+ "worker": "Çalışan",
+ "worker-desc": "Yalnızca kartları taşıyabilir, kendisini karta atayabilir ve yorum yapabilir.",
+ "computer": "Bilgisayar",
+ "confirm-subtask-delete-dialog": "Alt görevi silmek istediğinizden emin misiniz?",
+ "confirm-checklist-delete-dialog": "Kontrol listesini silmek istediğinden emin misin?",
+ "copy-card-link-to-clipboard": "Kartın linkini kopyala",
+ "linkCardPopup-title": "Bağlantı kartı",
+ "searchElementPopup-title": "Arama",
+ "copyCardPopup-title": "Kartı Kopyala",
+ "copyChecklistToManyCardsPopup-title": "Yapılacaklar Listesi şemasını birden çok karta kopyala",
+ "copyChecklistToManyCardsPopup-instructions": "Hedef Kart Başlıkları ve Açıklamaları bu JSON formatında",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"İlk kart başlığı\", \"description\":\"İlk kart açıklaması\"}, {\"title\":\"İkinci kart başlığı\",\"description\":\"İkinci kart açıklaması\"},{\"title\":\"Son kart başlığı\",\"description\":\"Son kart açıklaması\"} ]",
+ "create": "Oluştur",
+ "createBoardPopup-title": "Pano Oluşturma",
+ "chooseBoardSourcePopup-title": "Panoyu içe aktar",
+ "createLabelPopup-title": "Etiket Oluşturma",
+ "createCustomField": "Alanı yarat",
+ "createCustomFieldPopup-title": "Alanı yarat",
+ "current": "mevcut",
+ "custom-field-delete-pop": "Bunun geri dönüşü yoktur. Bu özel alan tüm kartlardan kaldırılıp tarihçesi yokedilecektir.",
+ "custom-field-checkbox": "İşaret kutusu",
+ "custom-field-currency": "Para birimi",
+ "custom-field-currency-option": "Para birimi kodu",
+ "custom-field-date": "Tarih",
+ "custom-field-dropdown": "Açılır liste",
+ "custom-field-dropdown-none": "(hiçbiri)",
+ "custom-field-dropdown-options": "Liste seçenekleri",
+ "custom-field-dropdown-options-placeholder": "Başka seçenekler eklemek için giriş tuşuna basınız",
+ "custom-field-dropdown-unknown": "(bilinmeyen)",
+ "custom-field-number": "Sayı",
+ "custom-field-text": "Metin",
+ "custom-fields": "Özel alanlar",
+ "date": "Tarih",
+ "decline": "Reddet",
+ "default-avatar": "Varsayılan avatar",
+ "delete": "Sil",
+ "deleteCustomFieldPopup-title": "Özel alan silinsin mi?",
+ "deleteLabelPopup-title": "Etiket Silinsin mi?",
+ "description": "Açıklama",
+ "disambiguateMultiLabelPopup-title": "Etiket işlemini izah et",
+ "disambiguateMultiMemberPopup-title": "Üye işlemini izah et",
+ "discard": "At",
+ "done": "Tamam",
+ "download": "İndir",
+ "edit": "Düzenle",
+ "edit-avatar": "Avatar Değiştir",
+ "edit-profile": "Profili Düzenle",
+ "edit-wip-limit": "Devam Eden İş Sınırını Düzenle",
+ "soft-wip-limit": "Zayıf Devam Eden İş Sınırı",
+ "editCardStartDatePopup-title": "Başlangıç tarihini değiştir",
+ "editCardDueDatePopup-title": "Bitiş tarihini değiştir",
+ "editCustomFieldPopup-title": "Alanı düzenle",
+ "editCardSpentTimePopup-title": "Harcanan zamanı değiştir",
+ "editLabelPopup-title": "Etiket Değiştir",
+ "editNotificationPopup-title": "Bildirimi değiştir",
+ "editProfilePopup-title": "Profili Düzenle",
+ "email": "E-posta",
+ "email-enrollAccount-subject": "Hesabınız __siteName__ üzerinde oluşturuldu",
+ "email-enrollAccount-text": "Merhaba __user__,\n\nBu servisi kullanmaya başlamak için aşağıdaki linke tıklamalısın:\n\n__url__\n\nTeşekkürler.",
+ "email-fail": "E-posta gönderimi başarısız",
+ "email-fail-text": "E-Posta gönderilme çalışırken hata oluştu",
+ "email-invalid": "Geçersiz e-posta",
+ "email-invite": "E-posta ile davet et",
+ "email-invite-subject": "__inviter__ size bir davetiye gönderdi",
+ "email-invite-text": "Sevgili __user__,\n\n__inviter__ seni birlikte çalışmak için \"__board__\" panosuna davet ediyor.\n\nLütfen aşağıdaki linke tıkla:\n\n__url__\n\nTeşekkürler.",
+ "email-resetPassword-subject": "__siteName__ üzerinde parolanı sıfırla",
+ "email-resetPassword-text": "Merhaba __user__,\n\nParolanı sıfırlaman için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
+ "email-sent": "E-posta gönderildi",
+ "email-verifyEmail-subject": "__siteName__ üzerindeki e-posta adresini doğrulama",
+ "email-verifyEmail-text": "Merhaba __user__,\n\nHesap e-posta adresini doğrulamak için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
+ "enable-wip-limit": "Devam Eden İş Sınırını Aç",
+ "error-board-doesNotExist": "Pano bulunamadı",
+ "error-board-notAdmin": "Bu işlemi yapmak için pano yöneticisi olmalısın.",
+ "error-board-notAMember": "Bu işlemi yapmak için panoya üye olmalısın.",
+ "error-json-malformed": "Girilen metin geçerli bir JSON formatında değil",
+ "error-json-schema": "Girdiğin JSON metni tüm bilgileri doğru biçimde barındırmıyor",
+ "error-csv-schema": "CSV'niz (Virgülle Ayrılmış Değerler) / TSV'niz (Sekmeyle Ayrılmış Değerler) doğru formatta uygun bilgileri içermiyor",
+ "error-list-doesNotExist": "Liste bulunamadı",
+ "error-user-doesNotExist": "Kullanıcı bulunamadı",
+ "error-user-notAllowSelf": "Kendi kendini davet edemezsin",
+ "error-user-notCreated": "Bu üye oluşturulmadı",
+ "error-username-taken": "Kullanıcı adı zaten alınmış",
+ "error-email-taken": "Bu e-posta adresi daha önceden alınmış",
+ "export-board": "Panoyu dışarı aktar",
+ "export-board-json": "Panoyu JSON olarak dışarı aktar",
+ "export-board-csv": "Panoyu CSV olarak dışarı aktar",
+ "export-board-tsv": "Panoyu TSV olarak dışarı aktar",
+ "export-board-html": "Panoyu HTML olarak dışarı aktar",
+ "exportBoardPopup-title": "Panoyu dışarı aktar",
+ "sort": "Sırala",
+ "sort-desc": "Listeyi Sıralamak için Tıklayın",
+ "list-sort-by": "Listeyi Sırala:",
+ "list-label-modifiedAt": "Son Erişim Zamanı...",
+ "list-label-title": "Listenin Adı...",
+ "list-label-sort": "Manuel Siparişiniz",
+ "list-label-short-modifiedAt": "(S)",
+ "list-label-short-title": "(A)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filtre",
+ "filter-cards": "Kartları veya Listeleri Filtrele",
+ "list-filter-label": "Listeyi Başlığa Göre Filtrele",
+ "filter-clear": "Filtreyi temizle",
+ "filter-labels-label": "Etikete göre filtrele",
+ "filter-no-label": "Etiket yok",
+ "filter-member-label": "Üyeye göre filtrele",
+ "filter-no-member": "Üyesi olmayan",
+ "filter-assignee-label": "Atanana göre filtrele",
+ "filter-no-assignee": "Atanmayan",
+ "filter-custom-fields-label": "Özel alanlara göre filtrele",
+ "filter-no-custom-fields": "Hiç özel alan yok",
+ "filter-show-archive": "Arşivlenmiş listeleri göster",
+ "filter-hide-empty": "Boş listeleri gizle",
+ "filter-on": "Filtre aktif",
+ "filter-on-desc": "Bu panodaki kartları filtreliyorsunuz. Fitreyi düzenlemek için tıklayın.",
+ "filter-to-selection": "Seçime göre filtreleme yap",
+ "other-filters-label": "Diğer Filtreler",
+ "advanced-filter-label": "Gelişmiş Filtreleme",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Ad Soyad",
+ "header-logo-title": "Panolar sayfanıza geri dön.",
+ "hide-system-messages": "Sistem mesajlarını gizle",
+ "headerBarCreateBoardPopup-title": "Pano Oluşturma",
+ "home": "Ana Sayfa",
+ "import": "İçeri aktar",
+ "impersonate-user": "Kullanıcının kimliğine bürün",
+ "link": "Bağlantı",
+ "import-board": "panoyu içe aktar",
+ "import-board-c": "Panoyu içe aktar",
+ "import-board-title-trello": "Trello'dan panoyu içeri aktar",
+ "import-board-title-wekan": "Önceki dışa aktarımdaki panoyu içe aktar",
+ "import-board-title-csv": "CSV/TSV formatındaki panoyu içeri aktar",
+ "from-trello": "Trello'dan",
+ "from-wekan": "Önceki dışa aktarımdan",
+ "from-csv": "CSV/TSV'den",
+ "import-board-instruction-trello": "Trello panonuzda 'Menü'ye gidip 'Daha fazlası'na tıklayın, ardından 'Yazdır ve Çıktı Al'ı seçip 'JSON biçiminde çıktı al' diyerek çıkan metni buraya kopyalayın.",
+ "import-board-instruction-csv": "Virgülle Ayrılmış Değerlerinizi (CSV) / Sekmeyle Ayrılmış Değerlerinizi (TSV) yapıştırın.",
+ "import-board-instruction-wekan": "Panonuzda \"Menü\" ye, ardından \"Panoyu dışa aktar\" a gidin ve indirilen dosyadaki metni kopyalayın.",
+ "import-board-instruction-about-errors": "Panoyu içe aktarırken hata alıyorsanız, içe alma hala devam ediyor olabilir ya da Tüm Panolar sayfasında yer alıyor olabilir.",
+ "import-json-placeholder": "Geçerli JSON verisini buraya yapıştırın",
+ "import-csv-placeholder": "Geçerli CSV / TSV verilerinizi buraya yapıştırın",
+ "import-map-members": "Üyeleri eşleştirme",
+ "import-members-map": "İçe aktarılan panonuzda bazı üyeler var. Lütfen kullanıcılarınıza aktarmak istediğiniz üyeleri eşleyin",
+ "import-show-user-mapping": "Üye eşleştirmesini kontrol et",
+ "import-user-select": "Bu üye olarak kullanmak istediğiniz mevcut kullanıcınızı seçin",
+ "importMapMembersAddPopup-title": "Üye seç",
+ "info": "Sürüm",
+ "initials": "İlk Harfleri",
+ "invalid-date": "Geçersiz tarih",
+ "invalid-time": "Geçersiz zaman",
+ "invalid-user": "Geçersiz kullanıcı",
+ "joined": "katıldı",
+ "just-invited": "Bu panoya şimdi davet edildin.",
+ "keyboard-shortcuts": "Klavye kısayolları",
+ "label-create": "Etiket Oluşturma",
+ "label-default": "%s etiket (varsayılan)",
+ "label-delete-pop": "Bu işlem geri alınamaz. Bu etiket tüm kartlardan kaldırılacaktır ve geçmişi yok edecektir.",
+ "labels": "Etiketler",
+ "language": "Dil",
+ "last-admin-desc": "En az bir yönetici olması gerektiğinden rolleri değiştiremezsiniz.",
+ "leave-board": "Panodan ayrıl",
+ "leave-board-pop": "__boardTitle__ panosundan ayrılmak istediğinize emin misiniz? Panodaki tüm kartlardan kaldırılacaksınız.",
+ "leaveBoardPopup-title": "Panodan ayrılmak istediğinize emin misiniz?",
+ "link-card": "Bu kartın bağlantısı",
+ "list-archive-cards": "Bu listedeki tüm kartları arşive taşı",
+ "list-archive-cards-pop": "Bu eylem bu listedeki tüm kartları panodan kaldıracaktır. Arşivdeki kartları görüntülemek ve panoya geri getirmek için \"Menü\"> \"Arşiv\"i tıklayın.",
+ "list-move-cards": "Listedeki tüm kartları taşı",
+ "list-select-cards": "Listedeki tüm kartları seç",
+ "set-color-list": "Rengi Ayarla",
+ "listActionPopup-title": "Liste İşlemleri",
+ "settingsUserPopup-title": "Kullanıcı Ayarları",
+ "swimlaneActionPopup-title": "Kulvar İşlemleri",
+ "swimlaneAddPopup-title": "Aşağı kulvar ekle",
+ "listImportCardPopup-title": "Bir Trello kartını içeri aktar",
+ "listImportCardsTsvPopup-title": "İçe aktar Excel CSV/TSV",
+ "listMorePopup-title": "Daha fazla",
+ "link-list": "Listeye doğrudan bağlantı",
+ "list-delete-pop": "Etkinlik akışınızdaki tüm eylemler geri kurtarılamaz şekilde kaldırılacak. Bu işlem geri alınamaz.",
+ "list-delete-suggest-archive": "Bir listeyi panodan kaldırmak için Arşive taşıyabilir ve kayıtları saklayabilirsiniz.",
+ "lists": "Listeler",
+ "swimlanes": "Kulvarlar",
+ "log-out": "Oturum Kapat",
+ "log-in": "Oturum Aç",
+ "loginPopup-title": "Oturum Aç",
+ "memberMenuPopup-title": "Üye Ayarları",
+ "members": "Üyeler",
+ "menu": "Menü",
+ "move-selection": "Seçimi taşı",
+ "moveCardPopup-title": "Kartı taşı",
+ "moveCardToBottom-title": "Aşağı taşı",
+ "moveCardToTop-title": "Yukarı taşı",
+ "moveSelectionPopup-title": "Seçimi taşı",
+ "multi-selection": "Çoklu seçim",
+ "multi-selection-label": "Seçim için etiket belirle",
+ "multi-selection-member": "Seçim için üye belirle",
+ "multi-selection-on": "Çoklu seçim açık",
+ "muted": "Sessiz",
+ "muted-info": "Bu panodaki hiçbir değişiklik hakkında bildirim almayacaksınız",
+ "my-boards": "Panolarım",
+ "name": "Adı",
+ "no-archived-cards": "Arşivde kart yok",
+ "no-archived-lists": "Arşivde liste yok",
+ "no-archived-swimlanes": "Arşivde kulvar yok",
+ "no-results": "Sonuç yok",
+ "normal": "Normal",
+ "normal-desc": "Kartları görüntüleyebilir ve düzenleyebilir. Ayarları değiştiremez.",
+ "not-accepted-yet": "Davet henüz kabul edilmemiş",
+ "notify-participate": "Oluşturduğunuz veya üye olduğunuz tüm kartlar hakkında bildirim al",
+ "notify-watch": "Takip ettiğiniz tüm pano, liste ve kartlar hakkında bildirim al",
+ "optional": "isteğe bağlı",
+ "or": "veya",
+ "page-maybe-private": "Bu sayfa gizli olabilir. Oturum açarak görmeyi deneyin.",
+ "page-not-found": "Sayfa bulunamadı.",
+ "password": "Parola",
+ "paste-or-dragdrop": "Dosya eklemek için yapıştırabilir, veya (eğer resimse) sürükle bırak yapabilirsiniz",
+ "participating": "Katılımcılar",
+ "preview": "Önizleme",
+ "previewAttachedImagePopup-title": "Önizleme",
+ "previewClipboardImagePopup-title": "Önizleme",
+ "private": "Gizli",
+ "private-desc": "Bu pano gizli. Sadece panoya ekli kişiler görüntüleyebilir ve düzenleyebilir.",
+ "profile": "Kullanıcı Sayfası",
+ "public": "Genel",
+ "public-desc": "Bu pano genel bir panodur. Bağlantıya sahip olan herkes panoyu görüntüleyebilir, ayrıca panonuz Google gibi arama motorlarında görünür. Panoyu, sadece panoya eklenen kişiler düzenleyebilir.",
+ "quick-access-description": "Yıldızladığınız panolar burada gözükür",
+ "remove-cover": "Kapak Resmini Kaldır",
+ "remove-from-board": "Panodan Kaldır",
+ "remove-label": "Etiketi Kaldır",
+ "listDeletePopup-title": "Liste silinsin mi?",
+ "remove-member": "Üyeyi Çıkar",
+ "remove-member-from-card": "Karttan Çıkar",
+ "remove-member-pop": "__boardTitle__ panosundan __name__ (__username__) çıkarılsın mı? Üye, bu panodaki tüm kartlardan çıkarılacak. Panodan çıkarıldığı üyeye bildirilecektir.",
+ "removeMemberPopup-title": "Üye çıkarılsın mı?",
+ "rename": "Yeniden adlandır",
+ "rename-board": "Panonun Adını Değiştir",
+ "restore": "Geri Getir",
+ "save": "Kaydet",
+ "search": "Arama",
+ "rules": "Kurallar",
+ "search-cards": "Bu panodaki kart / liste başlıkları, açıklamalar ve özel alanlarda arama yapın",
+ "search-example": "Aradığınız metni yazın ve Enter tuşuna basın",
+ "select-color": "Renk Seç",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Bu listedeki en fazla öğe sayısı için bir sınır belirleyin",
+ "setWipLimitPopup-title": "Devam Eden İş Sınırı Belirle",
+ "shortcut-assign-self": "Kendini karta ata",
+ "shortcut-autocomplete-emoji": "Emojileri otomatik tamamla",
+ "shortcut-autocomplete-members": "Üye isimlerini otomatik tamamla",
+ "shortcut-clear-filters": "Tüm filtreleri temizle",
+ "shortcut-close-dialog": "Diyaloğu kapat",
+ "shortcut-filter-my-cards": "Kartlarımı filtrele",
+ "shortcut-show-shortcuts": "Kısayollar listesini getir",
+ "shortcut-toggle-filterbar": "Filtre kenar çubuğunu aç/kapa",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Pano kenar çubuğunu aç/kapa",
+ "show-cards-minimum-count": "Eğer listede şu sayıdan fazla öğe varsa kart sayısını göster: ",
+ "sidebar-open": "Kenar Çubuğunu Aç",
+ "sidebar-close": "Kenar Çubuğunu Kapat",
+ "signupPopup-title": "Bir Hesap Oluştur",
+ "star-board-title": "Bu panoyu yıldızlamak için tıkla. Yıldızlı panolar pano listesinin en üstünde gösterilir.",
+ "starred-boards": "Yıldızlı Panolar",
+ "starred-boards-description": "Yıldızlanmış panolar, pano listesinin en üstünde gösterilir.",
+ "subscribe": "Abone ol",
+ "team": "Takım",
+ "this-board": "bu panoyu",
+ "this-card": "bu kart",
+ "spent-time-hours": "Harcanan zaman (saat)",
+ "overtime-hours": "Aşılan süre (saat)",
+ "overtime": "Aşılan süre",
+ "has-overtime-cards": "Süresi aşılmış kartlar",
+ "has-spenttime-cards": "Zaman geçirilmiş kartlar",
+ "time": "Zaman",
+ "title": "Başlık",
+ "tracking": "Takip",
+ "tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.",
+ "type": "Tür",
+ "unassign-member": "Üyeye atamayı kaldır",
+ "unsaved-description": "Kaydedilmemiş bir açıklama metnin bulunmakta",
+ "unwatch": "Takibi bırak",
+ "upload": "Yükle",
+ "upload-avatar": "Avatar yükle",
+ "uploaded-avatar": "Avatar yüklendi",
+ "custom-top-left-corner-logo-image-url": "Özel Sol Üst Köşe Logo Resmi URL'si",
+ "custom-top-left-corner-logo-link-url": "Özel Sol Üst Köşe Logo Bağlantı URL'si",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Özel Oturum Açma Logosu Resmi URL'si",
+ "custom-login-logo-link-url": "Özel Oturum Açma Logosu Bağlantı URL'si",
+ "text-below-custom-login-logo": "Özel Oturum Açma Logosunun altındaki metin",
+ "username": "Kullanıcı adı",
+ "view-it": "Görüntüle",
+ "warn-list-archived": "Uyarı: Bu kart arşivdeki bir listede",
+ "watch": "Takip Et",
+ "watching": "Takip Ediliyor",
+ "watching-info": "Bu pano hakkındaki tüm değişiklikler hakkında bildirim alacaksınız",
+ "welcome-board": "Hoş Geldiniz Panosu",
+ "welcome-swimlane": "Kilometre taşı",
+ "welcome-list1": "Temel",
+ "welcome-list2": "Gelişmiş",
+ "card-templates-swimlane": "Kart şablonları",
+ "list-templates-swimlane": "Liste şablonları",
+ "board-templates-swimlane": "Pano şablonları",
+ "what-to-do": "Ne yapmak istiyorsunuz?",
+ "wipLimitErrorPopup-title": "Geçersiz Devam Eden İş Sınırı",
+ "wipLimitErrorPopup-dialog-pt1": "Bu listedeki iş sayısı belirlediğiniz sınırdan daha fazla.",
+ "wipLimitErrorPopup-dialog-pt2": "Lütfen bazı işleri bu listeden başka listeye taşıyın ya da devam eden iş sınırını yükseltin.",
+ "admin-panel": "Yönetici Paneli",
+ "settings": "Ayarlar",
+ "people": "Kullanıcılar",
+ "registration": "Kayıt",
+ "disable-self-registration": "Ziyaretçilere kaydı kapa",
+ "invite": "Davet",
+ "invite-people": "Kullanıcı davet et",
+ "to-boards": "Şu pano(lar)a",
+ "email-addresses": "E-posta adresleri",
+ "smtp-host-description": "E-posta gönderimi yapan SMTP sunucu adresi",
+ "smtp-port-description": "E-posta gönderimi yapan SMTP sunucu portu",
+ "smtp-tls-description": "SMTP mail sunucusu için TLS kriptolama desteği açılsın",
+ "smtp-host": "SMTP sunucu adresi",
+ "smtp-port": "SMTP portu",
+ "smtp-username": "Kullanıcı adı",
+ "smtp-password": "Parola",
+ "smtp-tls": "TLS desteği",
+ "send-from": "Gönderen",
+ "send-smtp-test": "Kendinize deneme E-Postası gönderin",
+ "invitation-code": "Davetiye kodu",
+ "email-invite-register-subject": "__inviter__ size bir davetiye gönderdi",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test E-postası",
+ "email-smtp-test-text": "E-Posta başarıyla gönderildi",
+ "error-invitation-code-not-exist": "Davetiye kodu bulunamadı",
+ "error-notAuthorized": "Bu sayfayı görmek için yetkiniz yok.",
+ "webhook-title": "Bağlantı Adı",
+ "webhook-token": "Belirteç (Kimlik Doğrulama için İsteğe Bağlı)",
+ "outgoing-webhooks": "Dışarı giden bağlantılar",
+ "bidirectional-webhooks": "İki yönlü bağlantılar",
+ "outgoingWebhooksPopup-title": "Dışarı giden bağlantılar",
+ "boardCardTitlePopup-title": "Kart Başlığı Filtresi",
+ "disable-webhook": "Bu bağlantıyı devre dışı bırak",
+ "global-webhook": "Global Bağlantılar",
+ "new-outgoing-webhook": "Yeni Dışarı Giden Web Bağlantısı",
+ "no-name": "(Bilinmeyen)",
+ "Node_version": "Node sürümü",
+ "Meteor_version": "Meteor sürümü",
+ "MongoDB_version": "MongoDB sürümü",
+ "MongoDB_storage_engine": "MongoDB depolama motoru",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog etkin",
+ "OS_Arch": "İşletim Sistemi Mimarisi",
+ "OS_Cpus": "İşletim Sistemi İşlemci Sayısı",
+ "OS_Freemem": "İşletim Sistemi Kullanılmayan Bellek",
+ "OS_Loadavg": "İşletim Sistemi Ortalama Yük",
+ "OS_Platform": "İşletim Sistemi Platformu",
+ "OS_Release": "İşletim Sistemi Sürümü",
+ "OS_Totalmem": "İşletim Sistemi Toplam Belleği",
+ "OS_Type": "İşletim Sistemi Tipi",
+ "OS_Uptime": "İşletim Sistemi Toplam Açık Kalınan Süre",
+ "days": "günler",
+ "hours": "saat",
+ "minutes": "dakika",
+ "seconds": "saniye",
+ "show-field-on-card": "Bu alanı kartta göster",
+ "automatically-field-on-card": "Tüm kartlara otomatik alan oluştur",
+ "showLabel-field-on-card": "Minikard üzerindeki alan etiketini göster",
+ "yes": "Evet",
+ "no": "Hayır",
+ "accounts": "Hesaplar",
+ "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver",
+ "accounts-allowUserNameChange": "Kullanıcı adı değiştirmeye izin ver",
+ "createdAt": "Oluşturulma tarihi",
+ "verified": "Doğrulanmış",
+ "active": "Aktif",
+ "card-received": "Giriş",
+ "card-received-on": "Giriş zamanı",
+ "card-end": "Bitiş",
+ "card-end-on": "Bitiş zamanı",
+ "editCardReceivedDatePopup-title": "Giriş tarihini değiştir",
+ "editCardEndDatePopup-title": "Bitiş tarihini değiştir",
+ "setCardColorPopup-title": "Renk ayarla",
+ "setCardActionsColorPopup-title": "Renk seçimi yap",
+ "setSwimlaneColorPopup-title": "Renk seçimi yap",
+ "setListColorPopup-title": "Renk seçimi yap",
+ "assigned-by": "Atamayı yapan",
+ "requested-by": "Talep Eden",
+ "board-delete-notice": "Silme kalıcıdır. Bu kartla ilişkili tüm listeleri, kartları ve işlemleri kaybedeceksiniz.",
+ "delete-board-confirm-popup": "Tüm listeler, kartlar, etiketler ve etkinlikler silinecek ve pano içeriğini kurtaramayacaksınız. Geri dönüş yok.",
+ "boardDeletePopup-title": "Panoyu Sil?",
+ "delete-board": "Panoyu Sil",
+ "default-subtasks-board": "__board__ panosu için alt görevler",
+ "default": "Varsayılan",
+ "queue": "Sıra",
+ "subtask-settings": "Alt Görev ayarları",
+ "card-settings": "Kart ayarları",
+ "boardSubtaskSettingsPopup-title": "Pano alt görev ayarları",
+ "boardCardSettingsPopup-title": "Kart ayarları",
+ "deposit-subtasks-board": "Alt görevleri bu panoda sakla:",
+ "deposit-subtasks-list": "Alt görevlerin açılacağı liste:",
+ "show-parent-in-minicard": "Mini kart içinde üst kartı göster",
+ "prefix-with-full-path": "Tam yolunu önüne ekle",
+ "prefix-with-parent": "Ana görev ile ön adlandır",
+ "subtext-with-full-path": "Tam yolu ile alt metin",
+ "subtext-with-parent": "üst öge ile alt metin",
+ "change-card-parent": "Kartın üst kartını değiştir",
+ "parent-card": "Ana kart",
+ "source-board": "Kaynak panosu",
+ "no-parent": "Üst ögeyi gösterme",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "etiket eklendi '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "Ek silindi",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Kural",
+ "r-add-trigger": "Tetikleyici ekle",
+ "r-add-action": "Eylem ekle",
+ "r-board-rules": "Pano Kuralları",
+ "r-add-rule": "Kural ekle",
+ "r-view-rule": "Kuralı göster",
+ "r-delete-rule": "Kuralı sil",
+ "r-new-rule-name": "Yeni kural başlığı",
+ "r-no-rules": "Kural yok",
+ "r-trigger": "Tetikleyici",
+ "r-action": "Aksiyon",
+ "r-when-a-card": "Kart eklendiğinde",
+ "r-is": "is",
+ "r-is-moved": "taşındı",
+ "r-added-to": "Eklendi:",
+ "r-removed-from": "Çıkarıldı:",
+ "r-the-board": "pano",
+ "r-list": "liste",
+ "set-filter": "Filtrele",
+ "r-moved-to": "Şuraya taşındı:",
+ "r-moved-from": "Şuradan taşındı:",
+ "r-archived": "Arşive taşındı",
+ "r-unarchived": "Arşivden geri çıkarıldı",
+ "r-a-card": "Kart",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "liste adı",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "isim",
+ "r-when-a-attach": "Bir ek olduğunda",
+ "r-when-a-checklist": "Bir kontrol listesi şu olduğunda:",
+ "r-when-the-checklist": "Bir kontrol listesine şu olduğunda:",
+ "r-completed": "Tamamlandı",
+ "r-made-incomplete": "Tamamlanmamış",
+ "r-when-a-item": "Bir kontrol listesi öğesi şu olduğunda:",
+ "r-when-the-item": "Bir kontrol listesi öğesine şu olduğunda:",
+ "r-checked": "İşaretlendi",
+ "r-unchecked": "İşaret Kaldırıldı",
+ "r-move-card-to": "Kartı taşı",
+ "r-top-of": "En üst",
+ "r-bottom-of": "En alt",
+ "r-its-list": "its list",
+ "r-archive": "Arşive Taşı",
+ "r-unarchive": "Arşivden Geri Yükle",
+ "r-card": "Kart",
+ "r-add": "Ekle",
+ "r-remove": "Kaldır",
+ "r-label": "etiket",
+ "r-member": "üye",
+ "r-remove-all": "Tüm üyeleri karttan çıkarın",
+ "r-set-color": "Rengi şu değere ayarla:",
+ "r-checklist": "Kontrol Listesi",
+ "r-check-all": "Tümünü işaretle",
+ "r-uncheck-all": "Tüm işaretleri kaldır",
+ "r-items-check": "Kontrol Listesi maddeleri",
+ "r-check": "işaretle",
+ "r-uncheck": "İşareti Kaldır",
+ "r-item": "öge",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "E-Posta Gönder",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "Konu",
+ "r-rule-details": "Kural Detayları",
+ "r-d-move-to-top-gen": "Kartı listesinin en üstüne taşı",
+ "r-d-move-to-top-spec": "Kartı listenin en üstüne taşı",
+ "r-d-move-to-bottom-gen": "Kartı listesinin en altına taşı",
+ "r-d-move-to-bottom-spec": "Kartı listenin en altına taşı",
+ "r-d-send-email": "E-Posta gönder",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "Konu",
+ "r-d-send-email-message": "mesaj",
+ "r-d-archive": "Kartı Arşive Taşı",
+ "r-d-unarchive": "Kartı arşivden geri yükle",
+ "r-d-add-label": "Etiket ekle",
+ "r-d-remove-label": "Etiketi kaldır",
+ "r-create-card": "Yeni kart oluştur",
+ "r-in-list": ", listesinde",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Üye Ekle",
+ "r-d-remove-member": "Üye Sil",
+ "r-d-remove-all-member": "Tüm Üyeleri Sil",
+ "r-d-check-all": "Listenin tüm öğelerini kontrol et",
+ "r-d-uncheck-all": "Listedeki tüm öğelerin işaretini kaldır",
+ "r-d-check-one": "Ögeyi kontrol et",
+ "r-d-uncheck-one": "Öğenin işaretini kaldır",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Kontrol listesine ekle",
+ "r-d-remove-checklist": "Kontrol listesini kaldır",
+ "r-by": "tarafından",
+ "r-add-checklist": "Kontrol listesine ekle",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Kulvar ekle",
+ "r-swimlane-name": "kulvar adı",
+ "r-board-note": "Not: Her olası değere uyması için bir alanı boş bırakın.",
+ "r-checklist-note": "Not: kontrol listesindeki öğelerin virgülle ayrılmış değerler olarak yazılması gerekir.",
+ "r-when-a-card-is-moved": "Bir kart başka bir listeye taşındığında",
+ "r-set": "Ayarla",
+ "r-update": "Güncelle",
+ "r-datefield": "tarih alanı",
+ "r-df-start-at": "başlangıç",
+ "r-df-due-at": "vade",
+ "r-df-end-at": "bitiş",
+ "r-df-received-at": "alındı",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Değeri şuradan kaldır:",
+ "ldap": "LDAP",
+ "oauth2": "Oauth2",
+ "cas": "CAS",
+ "authentication-method": "Kimlik doğrulama yöntemi",
+ "authentication-type": "Kimlik doğrulama türü",
+ "custom-product-name": "Özel Ürün Adı",
+ "layout": "Düzen",
+ "hide-logo": "Logoyu Gizle",
+ "add-custom-html-after-body-start": "'den sonra Özel HTML Ekle",
+ "add-custom-html-before-body-end": "'den önce Özel HTML Ekle",
+ "error-undefined": "Bir şeyler yanlış gitti",
+ "error-ldap-login": "Giriş yapmaya çalışırken bir hata oluştu",
+ "display-authentication-method": "Kimlik Doğrulama Yöntemini Görüntüle",
+ "default-authentication-method": "Varsayılan Kimlik Doğrulama Yöntemi",
+ "duplicate-board": "Panoyu Çoğalt",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "Kişi sayısı:",
+ "swimlaneDeletePopup-title": "Kulvar silinsin mi?",
+ "swimlane-delete-pop": "Tüm eylemler etkinlik akışından kaldırılacak ve kulvarınızı kurtaramayacaksınız. Geri alınamaz.",
+ "restore-all": "Her şeyi eski haline getir",
+ "delete-all": "Hepsini sil",
+ "loading": "Yükleniyor, lütfen bekleyiniz",
+ "previous_as": "son kez",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "son tarih değiştirildi",
+ "a-endAt": "bitiş zamanı değiştirildi",
+ "a-startAt": "başlangıç zamanı değiştirildi",
+ "a-receivedAt": "alınma zamanı değiştirildi",
+ "almostdue": "%s'in vadesi yaklaşıyor",
+ "pastdue": "%s'in vadesi geçti",
+ "duenow": "%s'in vadesi bugün",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "[__board__] __list__/__card__ içinde bahsedildiniz",
+ "delete-user-confirm-popup": "Bu kullanıcı hesabını silmek istediğinize emin misiniz? Bu işlemi geri alamazsınız.",
+ "accounts-allowUserDelete": "Kullanıcılara hesaplarını silmek için izin ver.",
+ "hide-minicard-label-text": "Mini kart etiklerini gizle",
+ "show-desktop-drag-handles": "Masaüstü sürükleme tutamaçlarını göster",
+ "assignee": "Atanan",
+ "cardAssigneesPopup-title": "Atanan",
+ "addmore-detail": "Daha ayrıntılı bir açıklama ekle",
+ "show-on-card": "Kartta Göster",
+ "new": "Yeni",
+ "editUserPopup-title": "Kullanıcıyı Düzenle",
+ "newUserPopup-title": "Yeni Kullanıcı",
+ "notifications": "Bildirim",
+ "view-all": "Tümünü gör",
+ "filter-by-unread": "Okunmamışlara göre filtrele",
+ "mark-all-as-read": "Tümünü okundu olarak işaretle",
+ "remove-all-read": "Okunanların tümünü kaldır",
+ "allow-rename": "Yeniden Adlandırmaya İzin Ver",
+ "allowRenamePopup-title": "Yeniden Adlandırmaya İzin Ver",
+ "start-day-of-week": "Haftanın başlangıç gününü ayarla",
+ "monday": "Pazartesi",
+ "tuesday": "Salı",
+ "wednesday": "Çarşamba",
+ "thursday": "Perşembe",
+ "friday": "Cuma",
+ "saturday": "Cumartesi",
+ "sunday": "Pazar",
+ "status": "Durum",
+ "swimlane": "Kulvar",
+ "owner": "Sahibi",
+ "last-modified-at": "Son değiştirilme",
+ "last-activity": "Son aktivite",
+ "voting": "Oylama",
+ "archived": "Arşivlendi",
+ "delete-linked-card-before-this-card": "Bu kartı, sahip olan bağlantılı kartı silmeden önce silemezsiniz.",
+ "delete-linked-cards-before-this-list": "Bu listedeki kartlara işaret eden bağlantılı kartları silmeden önce bu listeyi silemezsiniz.",
+ "hide-checked-items": "İşaretli öğeleri gizle",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json
index 7508ae551..2ee754820 100644
--- a/i18n/uk.i18n.json
+++ b/i18n/uk.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "Display Authentication Method",
"default-authentication-method": "Default Authentication Method",
"duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "The number of people is:",
"swimlaneDeletePopup-title": "Delete Swimlane ?",
"swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
@@ -836,5 +838,11 @@
"hide-checked-items": "Сховати обрані елементи",
"task": "Task",
"create-task": "Create Task",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json
index 9039dc36b..9c38ca452 100644
--- a/i18n/vi.i18n.json
+++ b/i18n/vi.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Chấp nhận",
- "act-activity-notify": "Thông báo hoạt động",
- "act-addAttachment": "thêm tập tin đính kèm __attachment__ vào thẻ __list__ tại danh sách __list__ tại đường bơi __swimlane__ tại bảng __board__",
- "act-deleteAttachment": "xóa tập tin đính kèm __attachment__ tại thẻ __card__ tại danh sách __list__ tại đường bơi __swimlane__ tại bảng __board__ ",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Hành Động",
- "activities": "Hoạt Động",
- "activity": "Hoạt Động",
- "activity-added": "đã thêm %s vào %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "đã đính kèm %s vào %s",
- "activity-created": "đã tạo %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "đã loại bỏ %s khỏi %s",
- "activity-imported": "đã nạp %s vào %s từ %s",
- "activity-imported-board": "đã nạp %s từ %s",
- "activity-joined": "đã tham gia %s",
- "activity-moved": "đã di chuyển %s từ %s đến %s",
- "activity-on": "trên %s",
- "activity-removed": "đã xóa %s từ %s",
- "activity-sent": "gửi %s đến %s",
- "activity-unjoined": "đã rời khỏi %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "đã thêm checklist vào %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Thêm",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "chưa hoàn thành checklist",
- "activity-editComment": "lời bình đã sửa",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Thêm Bản Đính Kèm",
- "add-board": "Thêm Bảng",
- "add-card": "Thêm Thẻ",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Thêm Danh Sách Kiểm Tra",
- "add-checklist-item": "Thêm Một Mục Vào Danh Sách Kiểm Tra",
- "add-cover": "Thêm Bìa",
- "add-label": "Thêm Nhãn",
- "add-list": "Thêm Danh Sách",
- "add-members": "Thêm Thành Viên",
- "added": "Đã Thêm",
- "addMemberPopup-title": "Thành Viên",
- "admin": "Quản Trị Viên",
- "admin-desc": "Có thể xem và chỉnh sửa những thẻ, xóa thành viên và thay đổi cài đặt cho bảng.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Tất cả các bảng",
- "and-n-other-card": "Và __count__ thẻ khác",
- "and-n-other-card_plural": "Và __count__ thẻ khác",
- "apply": "Ứng Dụng",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Lưu Trữ",
- "archived-boards": "Boards in Archive",
- "restore-board": "Khôi Phục Bảng",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Lưu Trữ",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Chỉ định thành viên",
- "attached": "đã đính kèm",
- "attachment": "Phần đính kèm",
- "attachment-delete-pop": "Xóa tệp đính kèm là vĩnh viễn. Không có khôi phục.",
- "attachmentDeletePopup-title": "Xóa tệp đính kèm không?",
- "attachments": "Tệp Đính Kèm",
- "auto-watch": "Tự động xem bảng lúc được tạo ra",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Trở Lại",
- "board-change-color": "Đổi màu",
- "board-nb-stars": "%s sao",
- "board-not-found": "Không tìm được bảng",
- "board-private-info": "Bảng này sẽ chuyển sang chế độ private.",
- "board-public-info": "Bảng này sẽ chuyển sang chế độ public.",
- "boardChangeColorPopup-title": "Thay hình nền của bảng",
- "boardChangeTitlePopup-title": "Đổi tên bảng",
- "boardChangeVisibilityPopup-title": "Đổi cách hiển thị",
- "boardChangeWatchPopup-title": "Đổi cách xem",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Bảng",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Hủy",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Thẻ này có %s bình luận.",
- "card-delete-notice": "Hành động xóa là không thể khôi phục. Bạn sẽ mất hết các hoạt động liên quan đến thẻ này.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Thành Viên",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Thành Viên",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Đổi tên bảng",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Thêm",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Chấp nhận",
+ "act-activity-notify": "Thông báo hoạt động",
+ "act-addAttachment": "thêm tập tin đính kèm __attachment__ vào thẻ __list__ tại danh sách __list__ tại đường bơi __swimlane__ tại bảng __board__",
+ "act-deleteAttachment": "xóa tập tin đính kèm __attachment__ tại thẻ __card__ tại danh sách __list__ tại đường bơi __swimlane__ tại bảng __board__ ",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Hành Động",
+ "activities": "Hoạt Động",
+ "activity": "Hoạt Động",
+ "activity-added": "đã thêm %s vào %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "đã đính kèm %s vào %s",
+ "activity-created": "đã tạo %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "đã loại bỏ %s khỏi %s",
+ "activity-imported": "đã nạp %s vào %s từ %s",
+ "activity-imported-board": "đã nạp %s từ %s",
+ "activity-joined": "đã tham gia %s",
+ "activity-moved": "đã di chuyển %s từ %s đến %s",
+ "activity-on": "trên %s",
+ "activity-removed": "đã xóa %s từ %s",
+ "activity-sent": "gửi %s đến %s",
+ "activity-unjoined": "đã rời khỏi %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "đã thêm checklist vào %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Thêm",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "chưa hoàn thành checklist",
+ "activity-editComment": "lời bình đã sửa",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Thêm Bản Đính Kèm",
+ "add-board": "Thêm Bảng",
+ "add-card": "Thêm Thẻ",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Thêm Danh Sách Kiểm Tra",
+ "add-checklist-item": "Thêm Một Mục Vào Danh Sách Kiểm Tra",
+ "add-cover": "Thêm Bìa",
+ "add-label": "Thêm Nhãn",
+ "add-list": "Thêm Danh Sách",
+ "add-members": "Thêm Thành Viên",
+ "added": "Đã Thêm",
+ "addMemberPopup-title": "Thành Viên",
+ "admin": "Quản Trị Viên",
+ "admin-desc": "Có thể xem và chỉnh sửa những thẻ, xóa thành viên và thay đổi cài đặt cho bảng.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Tất cả các bảng",
+ "and-n-other-card": "Và __count__ thẻ khác",
+ "and-n-other-card_plural": "Và __count__ thẻ khác",
+ "apply": "Ứng Dụng",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Lưu Trữ",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Khôi Phục Bảng",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Lưu Trữ",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Chỉ định thành viên",
+ "attached": "đã đính kèm",
+ "attachment": "Phần đính kèm",
+ "attachment-delete-pop": "Xóa tệp đính kèm là vĩnh viễn. Không có khôi phục.",
+ "attachmentDeletePopup-title": "Xóa tệp đính kèm không?",
+ "attachments": "Tệp Đính Kèm",
+ "auto-watch": "Tự động xem bảng lúc được tạo ra",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Trở Lại",
+ "board-change-color": "Đổi màu",
+ "board-nb-stars": "%s sao",
+ "board-not-found": "Không tìm được bảng",
+ "board-private-info": "Bảng này sẽ chuyển sang chế độ private.",
+ "board-public-info": "Bảng này sẽ chuyển sang chế độ public.",
+ "boardChangeColorPopup-title": "Thay hình nền của bảng",
+ "boardChangeTitlePopup-title": "Đổi tên bảng",
+ "boardChangeVisibilityPopup-title": "Đổi cách hiển thị",
+ "boardChangeWatchPopup-title": "Đổi cách xem",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Bảng",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Hủy",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Thẻ này có %s bình luận.",
+ "card-delete-notice": "Hành động xóa là không thể khôi phục. Bạn sẽ mất hết các hoạt động liên quan đến thẻ này.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Thành Viên",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Thành Viên",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Đổi tên bảng",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Thêm",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json
index b63aec8f0..74ccab2e1 100644
--- a/i18n/zh-CN.i18n.json
+++ b/i18n/zh-CN.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "接受",
- "act-activity-notify": "活动通知",
- "act-addAttachment": "添加附件 __attachment__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-deleteAttachment": "删除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的附件 __attachment__",
- "act-addSubtask": "添加子任务 __subtask__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addedLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-removeLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
- "act-removedLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
- "act-addChecklist": "添加清单 __checklist__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addChecklistItem": "添加清单项 __checklistItem__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
- "act-removeChecklist": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
- "act-removeChecklistItem": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 清单项 __checklistItem__",
- "act-checkedItem": "选中看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
- "act-uncheckedItem": "反选看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
- "act-completeChecklist": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-uncompleteChecklist": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 未完成",
- "act-addComment": "对看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 发表了评论: __comment__",
- "act-editComment": "编辑卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
- "act-deleteComment": "删除卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
- "act-createBoard": "创建看板 __board__",
- "act-createSwimlane": "创建泳道 __swimlane__ 到看板 __board__",
- "act-createCard": "在看板 __board__ 的泳道 __swimlane__ 的列表 __list__ 中添加卡片 __card__",
- "act-createCustomField": "已创建看板__board__中的自定义字段__customField__",
- "act-deleteCustomField": "已删除看板__board__中的自定义字段__customField__",
- "act-setCustomField": "编辑定制字段__customField__:看板__board__中的泳道__swimlane__中的列表__list__中的卡片__card__中的__customFieldValue__",
- "act-createList": "添加列表 __list__ 至看板 __board__",
- "act-addBoardMember": "添加成员 __member__ 到看板 __board__",
- "act-archivedBoard": "看板 __board__ 已被移入归档",
- "act-archivedCard": "将看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 移动到归档中",
- "act-archivedList": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 已被移入归档",
- "act-archivedSwimlane": "看板 __board__ 中的泳道 __swimlane__ 已被移入归档",
- "act-importBoard": "导入看板 __board__",
- "act-importCard": "已将卡片 __card__ 导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
- "act-importList": "已将列表导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
- "act-joinMember": "已将成员 __member__ 添加到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中的 __card__ 卡片中",
- "act-moveCard": "移动卡片 __card__ 到看板 __board__ 从列表 __oldList__ 泳道 __oldSwimlane__ 至列表 __list__ 泳道 __swimlane__",
- "act-moveCardToOtherBoard": "移动卡片 __card__ 从列表 __oldList__ 泳道 __oldSwimlane__ 看板 __oldBoard__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-removeBoardMember": "从看板 __board__ 移除成员 __member__",
- "act-restoredCard": "恢复卡片 __card__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-unjoinMember": "移除成员 __member__ 从卡片 __card__ 列表 __list__ a泳道 __swimlane__ 看板 __board__",
- "act-withBoardTitle": "看板__board__",
- "act-withCardTitle": "[看板 __board__] 卡片 __card__",
- "actions": "操作",
- "activities": "活动",
- "activity": "活动",
- "activity-added": "添加 %s 至 %s",
- "activity-archived": "%s 已被移入归档",
- "activity-attached": "添加附件 %s 至 %s",
- "activity-created": "创建 %s",
- "activity-customfield-created": "创建了自定义字段 %s",
- "activity-excluded": "排除 %s 从 %s",
- "activity-imported": "导入 %s 至 %s 从 %s 中",
- "activity-imported-board": "已导入 %s 从 %s 中",
- "activity-joined": "已关联 %s",
- "activity-moved": "将 %s 从 %s 移动到 %s",
- "activity-on": "在 %s",
- "activity-removed": "从 %s 中移除 %s",
- "activity-sent": "发送 %s 至 %s",
- "activity-unjoined": "已解除 %s 关联",
- "activity-subtask-added": "添加子任务到%s",
- "activity-checked-item": "勾选%s于清单%s 共 %s",
- "activity-unchecked-item": "未勾选 %s 于清单 %s 共 %s",
- "activity-checklist-added": "已经将清单添加到 %s",
- "activity-checklist-removed": "已从%s移除待办清单",
- "activity-checklist-completed": "完成清单%s共%s",
- "activity-checklist-uncompleted": "未完成清单 %s 共 %s",
- "activity-checklist-item-added": "添加清单项至'%s' 于 %s",
- "activity-checklist-item-removed": "已从 '%s' 于 %s中 移除一个清单项",
- "add": "添加",
- "activity-checked-item-card": "勾选 %s 与清单 %s 中",
- "activity-unchecked-item-card": "取消勾选 %s 于清单 %s中",
- "activity-checklist-completed-card": "完成检查列表 __checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "activity-checklist-uncompleted-card": "未完成清单 %s",
- "activity-editComment": "评论已编辑",
- "activity-deleteComment": "评论已删除",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "添加附件",
- "add-board": "添加看板",
- "add-card": "添加卡片",
- "add-swimlane": "添加泳道图",
- "add-subtask": "添加子任务",
- "add-checklist": "添加待办清单",
- "add-checklist-item": "扩充清单",
- "add-cover": "添加封面",
- "add-label": "添加标签",
- "add-list": "添加列表",
- "add-members": "添加成员",
- "added": "添加",
- "addMemberPopup-title": "成员",
- "admin": "管理员",
- "admin-desc": "可以浏览并编辑卡片,移除成员,并且更改该看板的设置",
- "admin-announcement": "通知",
- "admin-announcement-active": "激活系统通知",
- "admin-announcement-title": "管理员的通知",
- "all-boards": "全部看板",
- "and-n-other-card": "和其他 __count__ 个卡片",
- "and-n-other-card_plural": "和其他 __count__ 个卡片",
- "apply": "应用",
- "app-is-offline": "加载中,请稍后。刷新页面将导致数据丢失,如果加载长时间不起作用,请检查服务器是否已经停止工作。",
- "archive": "归档",
- "archive-all": "全部归档",
- "archive-board": "将看板归档",
- "archive-card": "将卡片归档",
- "archive-list": "将列表归档",
- "archive-swimlane": "将泳道归档",
- "archive-selection": "将选择归档",
- "archiveBoardPopup-title": "是否归档看板?",
- "archived-items": "归档",
- "archived-boards": "归档的看板",
- "restore-board": "还原看板",
- "no-archived-boards": "没有归档的看板。",
- "archives": "归档",
- "template": "模板",
- "templates": "模板",
- "assign-member": "指派成员",
- "attached": "附加",
- "attachment": "附件",
- "attachment-delete-pop": "删除附件的操作不可逆。",
- "attachmentDeletePopup-title": "删除附件?",
- "attachments": "附件",
- "auto-watch": "自动关注新建的看板",
- "avatar-too-big": "头像过大 (上限 520 KB)",
- "back": "返回",
- "board-change-color": "更改颜色",
- "board-nb-stars": "%s 星标",
- "board-not-found": "看板不存在",
- "board-private-info": "该看板将被设为 私有.",
- "board-public-info": "该看板将被设为 公开.",
- "boardChangeColorPopup-title": "修改看板背景",
- "boardChangeTitlePopup-title": "重命名看板",
- "boardChangeVisibilityPopup-title": "更改可视级别",
- "boardChangeWatchPopup-title": "更改关注状态",
- "boardMenuPopup-title": "看板设置",
- "boardChangeViewPopup-title": "看板视图",
- "boards": "看板",
- "board-view": "看板视图",
- "board-view-cal": "日历",
- "board-view-swimlanes": "泳道图",
- "board-view-collapse": "崩溃",
- "board-view-gantt": "甘特",
- "board-view-lists": "列表",
- "bucket-example": "例如 “目标清单”",
- "cancel": "取消",
- "card-archived": "归档这个卡片。",
- "board-archived": "归档这个看板。",
- "card-comments-title": "该卡片有 %s 条评论",
- "card-delete-notice": "彻底删除的操作不可恢复,你将会丢失该卡片相关的所有操作记录。",
- "card-delete-pop": "所有的活动将从活动摘要中被移除且您将无法重新打开该卡片。此操作无法撤销。",
- "card-delete-suggest-archive": "您可以移动卡片到活动以便从看板中删除并保持活动。",
- "card-due": "到期",
- "card-due-on": "期限",
- "card-spent": "耗时",
- "card-edit-attachments": "编辑附件",
- "card-edit-custom-fields": "编辑自定义字段",
- "card-edit-labels": "编辑标签",
- "card-edit-members": "编辑成员",
- "card-labels-title": "更改该卡片上的标签",
- "card-members-title": "在该卡片中添加或移除看板成员",
- "card-start": "开始",
- "card-start-on": "始于",
- "cardAttachmentsPopup-title": "附件来源",
- "cardCustomField-datePopup-title": "修改日期",
- "cardCustomFieldsPopup-title": "编辑自定义字段",
- "cardStartVotingPopup-title": "建立投票",
- "positiveVoteMembersPopup-title": "支持",
- "negativeVoteMembersPopup-title": "反对",
- "card-edit-voting": "编辑投票",
- "editVoteEndDatePopup-title": "修改投票截止日期",
- "allowNonBoardMembers": "允许所有已登入账户",
- "vote-question": "投票题目",
- "vote-public": "查看投票结果",
- "vote-for-it": "同意",
- "vote-against": "反对",
- "deleteVotePopup-title": "删除投票?",
- "vote-delete-pop": "永久删除。此操作会将所有数据删除掉。",
- "cardDeletePopup-title": "彻底删除卡片?",
- "cardDetailsActionsPopup-title": "卡片操作",
- "cardLabelsPopup-title": "标签",
- "cardMembersPopup-title": "成员",
- "cardMorePopup-title": "更多",
- "cardTemplatePopup-title": "新建模板",
- "cards": "卡片",
- "cards-count": "卡片",
- "casSignIn": "用CAS登录",
- "cardType-card": "卡片",
- "cardType-linkedCard": "已链接卡片",
- "cardType-linkedBoard": "已链接看板",
- "change": "变更",
- "change-avatar": "更改头像",
- "change-password": "更改密码",
- "change-permissions": "更改权限",
- "change-settings": "更改设置",
- "changeAvatarPopup-title": "更改头像",
- "changeLanguagePopup-title": "更改语言",
- "changePasswordPopup-title": "更改密码",
- "changePermissionsPopup-title": "更改权限",
- "changeSettingsPopup-title": "更改设置",
- "subtasks": "子任务",
- "checklists": "清单",
- "click-to-star": "点此来标记该看板",
- "click-to-unstar": "点此来去除该看板的标记",
- "clipboard": "剪贴板或者拖放文件",
- "close": "关闭",
- "close-board": "关闭看板",
- "close-board-pop": "您可以通过主页头部的“归档”按钮,来恢复看板。",
- "color-black": "黑色",
- "color-blue": "蓝色",
- "color-crimson": "深红",
- "color-darkgreen": "墨绿",
- "color-gold": "金",
- "color-gray": "灰",
- "color-green": "绿色",
- "color-indigo": "靛蓝",
- "color-lime": "绿黄",
- "color-magenta": "洋红",
- "color-mistyrose": "玫瑰红",
- "color-navy": "藏青",
- "color-orange": "橙色",
- "color-paleturquoise": "宝石绿",
- "color-peachpuff": "桃红",
- "color-pink": "粉红",
- "color-plum": "紫红",
- "color-purple": "紫色",
- "color-red": "红色",
- "color-saddlebrown": "棕褐",
- "color-silver": "银",
- "color-sky": "天蓝",
- "color-slateblue": "石板蓝",
- "color-white": "白",
- "color-yellow": "黄色",
- "unset-color": "复原",
- "comment": "评论",
- "comment-placeholder": "添加评论",
- "comment-only": "仅能评论",
- "comment-only-desc": "只能在卡片上评论。",
- "no-comments": "暂无评论",
- "no-comments-desc": "无法查看评论和活动。",
- "worker": "人员",
- "worker-desc": "只能移动卡片,分配给卡片和评论",
- "computer": "从本机上传",
- "confirm-subtask-delete-dialog": "确定要删除子任务吗?",
- "confirm-checklist-delete-dialog": "确定要删除清单吗?",
- "copy-card-link-to-clipboard": "复制卡片链接到剪贴板",
- "linkCardPopup-title": "链接卡片",
- "searchElementPopup-title": "搜索",
- "copyCardPopup-title": "复制卡片",
- "copyChecklistToManyCardsPopup-title": "复制清单模板至多个卡片",
- "copyChecklistToManyCardsPopup-instructions": "以JSON格式表示目标卡片的标题和描述",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"第一个卡片的标题\", \"description\":\"第一个卡片的描述\"}, {\"title\":\"第二个卡片的标题\",\"description\":\"第二个卡片的描述\"},{\"title\":\"最后一个卡片的标题\",\"description\":\"最后一个卡片的描述\"} ]",
- "create": "创建",
- "createBoardPopup-title": "创建看板",
- "chooseBoardSourcePopup-title": "导入看板",
- "createLabelPopup-title": "创建标签",
- "createCustomField": "创建字段",
- "createCustomFieldPopup-title": "创建字段",
- "current": "当前",
- "custom-field-delete-pop": "没有撤销,此动作将从所有卡片中移除自定义字段并销毁历史。",
- "custom-field-checkbox": "选择框",
- "custom-field-currency": "货币",
- "custom-field-currency-option": "货币代码",
- "custom-field-date": "日期",
- "custom-field-dropdown": "下拉列表",
- "custom-field-dropdown-none": "(无)",
- "custom-field-dropdown-options": "列表选项",
- "custom-field-dropdown-options-placeholder": "回车可以加入更多选项",
- "custom-field-dropdown-unknown": "(未知)",
- "custom-field-number": "数字",
- "custom-field-text": "文本",
- "custom-fields": "自定义字段",
- "date": "日期",
- "decline": "拒绝",
- "default-avatar": "默认头像",
- "delete": "删除",
- "deleteCustomFieldPopup-title": "删除自定义字段?",
- "deleteLabelPopup-title": "删除标签?",
- "description": "描述",
- "disambiguateMultiLabelPopup-title": "消除标签歧义",
- "disambiguateMultiMemberPopup-title": "消除成员歧义",
- "discard": "放弃",
- "done": "完成",
- "download": "下载",
- "edit": "编辑",
- "edit-avatar": "更改头像",
- "edit-profile": "编辑资料",
- "edit-wip-limit": "编辑最大任务数",
- "soft-wip-limit": "最大任务数软限制",
- "editCardStartDatePopup-title": "修改起始日期",
- "editCardDueDatePopup-title": "修改截止日期",
- "editCustomFieldPopup-title": "编辑字段",
- "editCardSpentTimePopup-title": "修改耗时",
- "editLabelPopup-title": "更改标签",
- "editNotificationPopup-title": "编辑通知",
- "editProfilePopup-title": "编辑资料",
- "email": "邮箱",
- "email-enrollAccount-subject": "已为您在 __siteName__ 创建帐号",
- "email-enrollAccount-text": "尊敬的 __user__,\n\n点击下面的链接,即刻开始使用这项服务。\n\n__url__\n\n谢谢。",
- "email-fail": "邮件发送失败",
- "email-fail-text": "尝试发送邮件时出错",
- "email-invalid": "邮件地址错误",
- "email-invite": "发送邮件邀请",
- "email-invite-subject": "__inviter__ 向您发出邀请",
- "email-invite-text": "尊敬的 __user__,\n\n__inviter__ 邀请您加入看板 \"__board__\" 参与协作。\n\n请点击下面的链接访问看板:\n\n__url__\n\n谢谢。",
- "email-resetPassword-subject": "重置您的 __siteName__ 密码",
- "email-resetPassword-text": "尊敬的 __user__,\n\n点击下面的链接,重置您的密码:\n\n__url__\n\n谢谢。",
- "email-sent": "邮件已发送",
- "email-verifyEmail-subject": "在 __siteName__ 验证您的邮件地址",
- "email-verifyEmail-text": "尊敬的 __user__,\n\n点击下面的链接,验证您的邮件地址:\n\n__url__\n\n谢谢。",
- "enable-wip-limit": "启用最大任务数限制",
- "error-board-doesNotExist": "该看板不存在",
- "error-board-notAdmin": "需要成为管理员才能执行此操作",
- "error-board-notAMember": "需要成为看板成员才能执行此操作",
- "error-json-malformed": "文本不是合法的 JSON",
- "error-json-schema": "JSON 数据没有用正确的格式包含合适的信息",
- "error-csv-schema": "CSV(逗号分隔值)/TSV(制表符分隔值)数据格式的不正确",
- "error-list-doesNotExist": "不存在此列表",
- "error-user-doesNotExist": "该用户不存在",
- "error-user-notAllowSelf": "无法邀请自己",
- "error-user-notCreated": "该用户未能成功创建",
- "error-username-taken": "此用户名已存在",
- "error-email-taken": "此EMail已存在",
- "export-board": "导出看板",
- "export-board-json": "看板导出为JSON",
- "export-board-csv": "看板导出为CSV",
- "export-board-tsv": "看板导出为TSV",
- "export-board-html": "看板导出为HTML",
- "exportBoardPopup-title": "导出看板",
- "sort": "排序",
- "sort-desc": "点此来将列表排序",
- "list-sort-by": "按此来将列表排序:",
- "list-label-modifiedAt": "上次访问时间",
- "list-label-title": "列表名称",
- "list-label-sort": "您手动指定的顺序",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "过滤",
- "filter-cards": "过滤卡片或列表",
- "list-filter-label": "以标题过滤列表",
- "filter-clear": "清空过滤器",
- "filter-labels-label": "根据标签过滤",
- "filter-no-label": "无标签",
- "filter-member-label": "按成员过滤",
- "filter-no-member": "无成员",
- "filter-assignee-label": "按指定人过滤",
- "filter-no-assignee": "没有代理人",
- "filter-custom-fields-label": "按自定义字段过滤",
- "filter-no-custom-fields": "无自定义字段",
- "filter-show-archive": "显示归档的列表",
- "filter-hide-empty": "隐藏空列表",
- "filter-on": "过滤器启用",
- "filter-on-desc": "你正在过滤该看板上的卡片,点此编辑过滤。",
- "filter-to-selection": "要选择的过滤器",
- "other-filters-label": "其他过滤",
- "advanced-filter-label": "高级过滤器",
- "advanced-filter-description": "高级过滤器可以使用包含如下操作符的字符串进行过滤:== != <= >= && || ( ) 。操作符之间用空格隔开。输入字段名和数值就可以过滤所有自定义字段。例如:Field1 == Value1。注意如果字段名或数值包含空格,需要用单引号。例如: 'Field 1' == 'Value 1'。要跳过单个控制字符(' \\/),请使用 \\ 转义字符。例如: Field1 = I\\'m。支持组合使用多个条件,例如: F1 == V1 || F1 == V2。通常以从左到右的顺序进行判断。可以通过括号修改顺序,例如:F1 == V1 && ( F2 == V2 || F2 == V3 )。也支持使用正则表达式搜索文本字段。",
- "fullname": "全称",
- "header-logo-title": "返回您的看板页",
- "hide-system-messages": "隐藏系统消息",
- "headerBarCreateBoardPopup-title": "创建看板",
- "home": "首页",
- "import": "导入",
- "impersonate-user": "模拟用户",
- "link": "链接",
- "import-board": "导入看板",
- "import-board-c": "导入看板",
- "import-board-title-trello": "从Trello导入看板",
- "import-board-title-wekan": "从以前的导出数据导入看板",
- "import-board-title-csv": "导入CSV/TSV看板",
- "from-trello": "自 Trello",
- "from-wekan": "自以前的导出",
- "from-csv": "从CSV/TSV",
- "import-board-instruction-trello": "在你的Trello看板中,点击“菜单”,然后选择“更多”,“打印与导出”,“导出为 JSON” 并拷贝结果文本",
- "import-board-instruction-csv": "粘贴逗号分隔值(CSV)/制表符分隔值(TSV)。",
- "import-board-instruction-wekan": "在您的看板,点击“菜单”,然后“导出看板”,复制下载文件中的文本。",
- "import-board-instruction-about-errors": "如果在导入看板时出现错误,导入工作可能仍然在进行中,并且看板已经出现在全部看板页。",
- "import-json-placeholder": "粘贴您有效的 JSON 数据至此",
- "import-csv-placeholder": "在此处粘贴有效的CSV/TSV数据",
- "import-map-members": "映射成员",
- "import-members-map": "您导入的看板有一些成员,请映射这些成员到您导入的用户。",
- "import-show-user-mapping": "核对成员映射",
- "import-user-select": "为这个成员选择您已经存在的用户",
- "importMapMembersAddPopup-title": "选择成员",
- "info": "版本",
- "initials": "缩写",
- "invalid-date": "无效日期",
- "invalid-time": "非法时间",
- "invalid-user": "非法用户",
- "joined": "关联",
- "just-invited": "您刚刚被邀请加入此看板",
- "keyboard-shortcuts": "键盘快捷键",
- "label-create": "创建标签",
- "label-default": "%s 标签 (默认)",
- "label-delete-pop": "此操作不可逆,这将会删除该标签并清除它的历史记录。",
- "labels": "标签",
- "language": "语言",
- "last-admin-desc": "你不能更改角色,因为至少需要一名管理员。",
- "leave-board": "离开看板",
- "leave-board-pop": "确认要离开 __boardTitle__ 吗?此看板的所有卡片都会将您移除。",
- "leaveBoardPopup-title": "离开看板?",
- "link-card": "关联至该卡片",
- "list-archive-cards": "将此列表中的所有卡片归档",
- "list-archive-cards-pop": "将移动看板中列表的所有卡片,查看或回复归档中的卡片,点击“菜单”->“归档”",
- "list-move-cards": "移动列表中的所有卡片",
- "list-select-cards": "选择列表中的所有卡片",
- "set-color-list": "设置颜色",
- "listActionPopup-title": "列表操作",
- "settingsUserPopup-title": "用户设置",
- "swimlaneActionPopup-title": "泳道图操作",
- "swimlaneAddPopup-title": "在下面添加一个泳道",
- "listImportCardPopup-title": "导入 Trello 卡片",
- "listImportCardsTsvPopup-title": "导入Excel CSV/TSV",
- "listMorePopup-title": "更多",
- "link-list": "关联到这个列表",
- "list-delete-pop": "所有活动将被从活动动态中删除并且你无法恢复他们,此操作无法撤销。",
- "list-delete-suggest-archive": "您可以移动列表到归档以将其从看板中移除并保留活动。",
- "lists": "列表",
- "swimlanes": "泳道图",
- "log-out": "登出",
- "log-in": "登录",
- "loginPopup-title": "登录",
- "memberMenuPopup-title": "成员设置",
- "members": "成员",
- "menu": "菜单",
- "move-selection": "移动选择",
- "moveCardPopup-title": "移动卡片",
- "moveCardToBottom-title": "移动至底端",
- "moveCardToTop-title": "移动至顶端",
- "moveSelectionPopup-title": "移动选择",
- "multi-selection": "多选",
- "multi-selection-label": "设置标签",
- "multi-selection-member": "选择成员",
- "multi-selection-on": "多选启用",
- "muted": "静默",
- "muted-info": "你将不会收到此看板的任何变更通知",
- "my-boards": "我的看板",
- "name": "名称",
- "no-archived-cards": "存档中没有卡片。",
- "no-archived-lists": "存档中没有清单。",
- "no-archived-swimlanes": "存档中没有泳道。",
- "no-results": "无结果",
- "normal": "普通",
- "normal-desc": "可以创建以及编辑卡片,无法更改设置。",
- "not-accepted-yet": "邀请尚未接受",
- "notify-participate": "接收以创建者或成员身份参与的卡片的更新",
- "notify-watch": "接收所有关注的面板、列表、及卡片的更新",
- "optional": "可选",
- "or": "或",
- "page-maybe-private": "本页面被设为私有. 您必须 登录以浏览其中内容。",
- "page-not-found": "页面不存在。",
- "password": "密码",
- "paste-or-dragdrop": "从剪贴板粘贴,或者拖放文件到它上面 (仅限于图片)",
- "participating": "参与",
- "preview": "预览",
- "previewAttachedImagePopup-title": "预览",
- "previewClipboardImagePopup-title": "预览",
- "private": "私有",
- "private-desc": "该看板将被设为私有。只有该看板成员才可以进行查看和编辑。",
- "profile": "资料",
- "public": "公开",
- "public-desc": "该看板将被公开。任何人均可通过链接查看,并且将对Google和其他搜索引擎开放。只有添加至该看板的成员才可进行编辑。",
- "quick-access-description": "星标看板在导航条中添加快捷方式",
- "remove-cover": "移除封面",
- "remove-from-board": "从看板中删除",
- "remove-label": "移除标签",
- "listDeletePopup-title": "删除列表",
- "remove-member": "移除成员",
- "remove-member-from-card": "从该卡片中移除",
- "remove-member-pop": "确定从 __boardTitle__ 中移除 __name__ (__username__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
- "removeMemberPopup-title": "删除成员?",
- "rename": "重命名",
- "rename-board": "重命名看板",
- "restore": "还原",
- "save": "保存",
- "search": "搜索",
- "rules": "规则",
- "search-cards": "搜寻看板內的卡片/列表标题、描述、自定义字段",
- "search-example": "输入查询信息后按回车",
- "select-color": "选择颜色",
- "select-board": "选择看板",
- "set-wip-limit-value": "设置此列表中的最大任务数",
- "setWipLimitPopup-title": "设置最大任务数",
- "shortcut-assign-self": "指派当前卡片给自己",
- "shortcut-autocomplete-emoji": "表情符号自动补全",
- "shortcut-autocomplete-members": "自动补全成员",
- "shortcut-clear-filters": "清空全部过滤器",
- "shortcut-close-dialog": "关闭对话框",
- "shortcut-filter-my-cards": "过滤我的卡片",
- "shortcut-show-shortcuts": "显示此快捷键列表",
- "shortcut-toggle-filterbar": "切换过滤器边栏",
- "shortcut-toggle-searchbar": "切换查询边栏",
- "shortcut-toggle-sidebar": "切换面板边栏",
- "show-cards-minimum-count": "当列表中的卡片多于此阈值时将显示数量",
- "sidebar-open": "打开侧栏",
- "sidebar-close": "打开侧栏",
- "signupPopup-title": "创建账户",
- "star-board-title": "点此来标记该看板,它将会出现在您的看板列表顶部。",
- "starred-boards": "已标记看板",
- "starred-boards-description": "已标记看板将会出现在您的看板列表顶部。",
- "subscribe": "订阅",
- "team": "团队",
- "this-board": "该看板",
- "this-card": "该卡片",
- "spent-time-hours": "耗时 (小时)",
- "overtime-hours": "超时 (小时)",
- "overtime": "超时",
- "has-overtime-cards": "有超时卡片",
- "has-spenttime-cards": "耗时卡",
- "time": "时间",
- "title": "标题",
- "tracking": "跟踪",
- "tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。",
- "type": "类型",
- "unassign-member": "取消指派成员",
- "unsaved-description": "存在未保存的描述",
- "unwatch": "取消关注",
- "upload": "上传",
- "upload-avatar": "上传头像",
- "uploaded-avatar": "头像已经上传",
- "custom-top-left-corner-logo-image-url": "通过图片链接设置左上角图标",
- "custom-top-left-corner-logo-link-url": "设置左上角图标链接地址",
- "custom-top-left-corner-logo-height": "设置左上角图标高度. 默认值: 27",
- "custom-login-logo-image-url": "设置登陆图标链接地址",
- "custom-login-logo-link-url": "通过连接上传logo",
- "text-below-custom-login-logo": "自定义登陆图标下方文字",
- "username": "用户名",
- "view-it": "查看",
- "warn-list-archived": "警告:此卡片在列表归档中",
- "watch": "关注",
- "watching": "关注",
- "watching-info": "当此看板发生变更时会通知你",
- "welcome-board": "“欢迎”看板",
- "welcome-swimlane": "里程碑 1",
- "welcome-list1": "基本",
- "welcome-list2": "高阶",
- "card-templates-swimlane": "卡片模板",
- "list-templates-swimlane": "列表模板",
- "board-templates-swimlane": "看板模板",
- "what-to-do": "要做什么?",
- "wipLimitErrorPopup-title": "无效的最大任务数",
- "wipLimitErrorPopup-dialog-pt1": "此列表中的任务数量已经超过了设置的最大任务数。",
- "wipLimitErrorPopup-dialog-pt2": "请将一些任务移出此列表,或者设置一个更大的最大任务数。",
- "admin-panel": "管理面板",
- "settings": "设置",
- "people": "人员",
- "registration": "注册",
- "disable-self-registration": "禁止自助注册",
- "invite": "邀请",
- "invite-people": "邀请人员",
- "to-boards": "邀请到看板 (可多选)",
- "email-addresses": "电子邮箱地址",
- "smtp-host-description": "用于发送邮件的SMTP服务器地址。",
- "smtp-port-description": "SMTP服务器端口。",
- "smtp-tls-description": "对SMTP服务器启用TLS支持",
- "smtp-host": "SMTP服务器",
- "smtp-port": "SMTP端口",
- "smtp-username": "用户名",
- "smtp-password": "密码",
- "smtp-tls": "TLS支持",
- "send-from": "发件人",
- "send-smtp-test": "给自己发送一封测试邮件",
- "invitation-code": "邀请码",
- "email-invite-register-subject": "__inviter__ 向您发出邀请",
- "email-invite-register-text": "亲爱的__user__:\n__inviter__ 邀请您加入到看板\n\n请点击下面的链接:\n__url__\n\n您的邀请码是:__icode__\n\n谢谢。",
- "email-smtp-test-subject": "通过SMTP发送测试邮件",
- "email-smtp-test-text": "你已成功发送邮件",
- "error-invitation-code-not-exist": "邀请码不存在",
- "error-notAuthorized": "您无权查看此页面。",
- "webhook-title": "Webhook名称",
- "webhook-token": "Token(认证选项)",
- "outgoing-webhooks": "外部Web挂钩",
- "bidirectional-webhooks": "双向Webhook",
- "outgoingWebhooksPopup-title": "外部Web挂钩",
- "boardCardTitlePopup-title": "卡片标题过滤",
- "disable-webhook": "禁用Webhook",
- "global-webhook": "全局Webhook",
- "new-outgoing-webhook": "新建外部Web挂钩",
- "no-name": "(未知)",
- "Node_version": "Node.js版本",
- "Meteor_version": "Meteor版本",
- "MongoDB_version": "MongoDB版本",
- "MongoDB_storage_engine": "MongoDB存储引擎",
- "MongoDB_Oplog_enabled": "MongoDB Oplog已启用",
- "OS_Arch": "系统架构",
- "OS_Cpus": "系统 CPU数量",
- "OS_Freemem": "系统可用内存",
- "OS_Loadavg": "系统负载均衡",
- "OS_Platform": "系统平台",
- "OS_Release": "系统发布版本",
- "OS_Totalmem": "系统全部内存",
- "OS_Type": "系统类型",
- "OS_Uptime": "系统运行时间",
- "days": "天",
- "hours": "小时",
- "minutes": "分钟",
- "seconds": "秒",
- "show-field-on-card": "在卡片上显示此字段",
- "automatically-field-on-card": "自动创建所有卡片的字段",
- "showLabel-field-on-card": "在迷你卡片上显示字段标签",
- "yes": "是",
- "no": "否",
- "accounts": "账号",
- "accounts-allowEmailChange": "允许邮箱变更",
- "accounts-allowUserNameChange": "允许变更用户名",
- "createdAt": "创建于",
- "verified": "已验证",
- "active": "活跃",
- "card-received": "已接收",
- "card-received-on": "接收于",
- "card-end": "终止",
- "card-end-on": "终止于",
- "editCardReceivedDatePopup-title": "修改接收日期",
- "editCardEndDatePopup-title": "修改终止日期",
- "setCardColorPopup-title": "设置颜色",
- "setCardActionsColorPopup-title": "选择一种颜色",
- "setSwimlaneColorPopup-title": "选择一种颜色",
- "setListColorPopup-title": "选择一种颜色",
- "assigned-by": "指派人",
- "requested-by": "需求人",
- "board-delete-notice": "删除时永久操作,将会丢失此看板上的所有列表、卡片和动作。",
- "delete-board-confirm-popup": "所有列表、卡片、标签和活动都回被删除,将无法恢复看板内容。不支持撤销。",
- "boardDeletePopup-title": "删除看板?",
- "delete-board": "删除看板",
- "default-subtasks-board": "__board__ 看板的子任务",
- "default": "缺省",
- "queue": "队列",
- "subtask-settings": "子任务设置",
- "card-settings": "卡片设置",
- "boardSubtaskSettingsPopup-title": "看板子任务设置",
- "boardCardSettingsPopup-title": "卡片设置",
- "deposit-subtasks-board": "将子任务放入以下看板:",
- "deposit-subtasks-list": "将子任务放入以下列表:",
- "show-parent-in-minicard": "显示上一级卡片:",
- "prefix-with-full-path": "完整路径前缀",
- "prefix-with-parent": "上级前缀",
- "subtext-with-full-path": "子标题显示完整路径",
- "subtext-with-parent": "子标题显示上级",
- "change-card-parent": "修改卡片的上级",
- "parent-card": "上级卡片",
- "source-board": "源看板",
- "no-parent": "不显示上级",
- "activity-added-label": "已添加标签 '%s' 到 %s",
- "activity-removed-label": "已将标签 '%s' 从 %s 移除",
- "activity-delete-attach": "已从 %s 删除附件",
- "activity-added-label-card": "已添加标签 '%s'",
- "activity-removed-label-card": "已移除标签 '%s'",
- "activity-delete-attach-card": "已删除附件",
- "activity-set-customfield": "设置自定义字段 '%s' 至 '%s' 于 %s",
- "activity-unset-customfield": "未设置自定义字段 '%s' 于 %s",
- "r-rule": "规则",
- "r-add-trigger": "添加触发器",
- "r-add-action": "添加行动",
- "r-board-rules": "看板规则",
- "r-add-rule": "添加规则",
- "r-view-rule": "查看规则",
- "r-delete-rule": "删除规则",
- "r-new-rule-name": "新建规则标题",
- "r-no-rules": "暂无规则",
- "r-trigger": "触发器",
- "r-action": "操作",
- "r-when-a-card": "当一张卡片",
- "r-is": "是",
- "r-is-moved": "已经移动",
- "r-added-to": "添加到",
- "r-removed-from": "已移除",
- "r-the-board": "该看板",
- "r-list": "列表",
- "set-filter": "设置过滤器",
- "r-moved-to": "移至",
- "r-moved-from": "已移动",
- "r-archived": "已移动到归档",
- "r-unarchived": "已从归档中恢复",
- "r-a-card": "一个卡片",
- "r-when-a-label-is": "当一个标签是",
- "r-when-the-label": "当该标签是",
- "r-list-name": "列表名称",
- "r-when-a-member": "当一个成员是",
- "r-when-the-member": "当该成员",
- "r-name": "名称",
- "r-when-a-attach": "当一个附件",
- "r-when-a-checklist": "当一个清单是",
- "r-when-the-checklist": "当该清单",
- "r-completed": "已完成",
- "r-made-incomplete": "置为未完成",
- "r-when-a-item": "当一个清单项是",
- "r-when-the-item": "当该清单项",
- "r-checked": "勾选",
- "r-unchecked": "未勾选",
- "r-move-card-to": "移动卡片到",
- "r-top-of": "的顶部",
- "r-bottom-of": "的尾部",
- "r-its-list": "其列表",
- "r-archive": "归档",
- "r-unarchive": "从归档中恢复",
- "r-card": "卡片",
- "r-add": "添加",
- "r-remove": "移除",
- "r-label": "标签",
- "r-member": "成员",
- "r-remove-all": "从卡片移除所有成员",
- "r-set-color": "设置颜色",
- "r-checklist": "清单",
- "r-check-all": "勾选所有",
- "r-uncheck-all": "取消勾选所有",
- "r-items-check": "清单条目",
- "r-check": "勾选",
- "r-uncheck": "取消勾选",
- "r-item": "条目",
- "r-of-checklist": "清单的",
- "r-send-email": "发送邮件",
- "r-to": "收件人",
- "r-of": "分之",
- "r-subject": "标题",
- "r-rule-details": "规则详情",
- "r-d-move-to-top-gen": "移动卡片到其列表顶部",
- "r-d-move-to-top-spec": "移动卡片到列表顶部",
- "r-d-move-to-bottom-gen": "移动卡片到其列表尾部",
- "r-d-move-to-bottom-spec": "移动卡片到列表尾部",
- "r-d-send-email": "发送邮件",
- "r-d-send-email-to": "收件人",
- "r-d-send-email-subject": "标题",
- "r-d-send-email-message": "消息",
- "r-d-archive": "将卡片归档",
- "r-d-unarchive": "从归档中恢复卡片",
- "r-d-add-label": "添加标签",
- "r-d-remove-label": "移除标签",
- "r-create-card": "创建新卡片",
- "r-in-list": "在列表中",
- "r-in-swimlane": "在泳道中",
- "r-d-add-member": "添加成员",
- "r-d-remove-member": "移除成员",
- "r-d-remove-all-member": "移除所有成员",
- "r-d-check-all": "勾选所有列表项",
- "r-d-uncheck-all": "取消勾选所有列表项",
- "r-d-check-one": "勾选该项",
- "r-d-uncheck-one": "取消勾选",
- "r-d-check-of-list": "清单的",
- "r-d-add-checklist": "添加待办清单",
- "r-d-remove-checklist": "移动待办清单",
- "r-by": "在",
- "r-add-checklist": "添加待办清单",
- "r-with-items": "与项目",
- "r-items-list": "项目1,项目2,项目3",
- "r-add-swimlane": "添加泳道",
- "r-swimlane-name": "泳道名",
- "r-board-note": "注意:保留一个空字段去匹配所有可能的值。",
- "r-checklist-note": "注意:清单中的项目必须用都好分割。",
- "r-when-a-card-is-moved": "当移动卡片到另一个列表时",
- "r-set": "设置",
- "r-update": "更新",
- "r-datefield": "日期字段",
- "r-df-start-at": "开始",
- "r-df-due-at": "至",
- "r-df-end-at": "结束",
- "r-df-received-at": "已接收",
- "r-to-current-datetime": "到当前日期/时间",
- "r-remove-value-from": "从变量中移动",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "认证方式",
- "authentication-type": "认证类型",
- "custom-product-name": "自定义产品名称",
- "layout": "布局",
- "hide-logo": "隐藏LOGO",
- "add-custom-html-after-body-start": "添加定制的HTML在开始之前",
- "add-custom-html-before-body-end": "添加定制的HTML在结束之后",
- "error-undefined": "出了点问题",
- "error-ldap-login": "尝试登陆时出错",
- "display-authentication-method": "显示认证方式",
- "default-authentication-method": "缺省认证方式",
- "duplicate-board": "复制看板",
- "people-number": "人数是:",
- "swimlaneDeletePopup-title": "是否删除泳道?",
- "swimlane-delete-pop": "所有活动将从活动源中删除,您将无法恢复泳道。此操作无法撤销。",
- "restore-all": "全部恢复",
- "delete-all": "全部删除",
- "loading": "加载中,请稍等。",
- "previous_as": "上次是",
- "act-a-dueAt": "修改到期时间:\n时间:__timeValue__\n位置:__card__\n上一个到期日是 __timeOldValue__",
- "act-a-endAt": "修改结束时间从 (__timeOldValue__) 至 __timeValue__",
- "act-a-startAt": "修改开始时间从 (__timeOldValue__) 至 __timeValue__",
- "act-a-receivedAt": "修改接收时间从 (__timeOldValue__) 至 __timeValue__",
- "a-dueAt": "修改到期时间",
- "a-endAt": "修改结束时间",
- "a-startAt": "修改开始时间",
- "a-receivedAt": "修改接收时间",
- "almostdue": "当前到期时间%s即将到来",
- "pastdue": "当前到期时间%s已过",
- "duenow": "当前到期时间%s为今天",
- "act-newDue": "__list__/__card__ 有 1st 到期提醒 [__board__]",
- "act-withDue": "__list__/__card__ 到期提醒 [__board__]",
- "act-almostdue": "__card__ 的当前到期提醒(__timeValue__) 正在接近",
- "act-pastdue": "__card__ 的当前到期提醒(__timeValue__) 已经过去了",
- "act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
- "act-atUserComment": "[__board__] __list__/__card__ 提到了您",
- "delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
- "accounts-allowUserDelete": "允许用户自行删除其帐户",
- "hide-minicard-label-text": "隐藏迷你卡片标签文本",
- "show-desktop-drag-handles": "显示桌面拖放手柄",
- "assignee": "被指派人",
- "cardAssigneesPopup-title": "被指派人",
- "addmore-detail": "添加更详细的说明",
- "show-on-card": "显示卡片",
- "new": "新",
- "editUserPopup-title": "修改用户",
- "newUserPopup-title": "新增用户",
- "notifications": "提示",
- "view-all": "查看全部",
- "filter-by-unread": "过滤未读",
- "mark-all-as-read": "标记全部已读",
- "remove-all-read": "移除所有已读",
- "allow-rename": "允许重命名",
- "allowRenamePopup-title": "允许重命名",
- "start-day-of-week": "设定一周的开始",
- "monday": "周一",
- "tuesday": "周二",
- "wednesday": "周三",
- "thursday": "周四",
- "friday": "周五",
- "saturday": "周六",
- "sunday": "周日",
- "status": "状态",
- "swimlane": "泳道",
- "owner": "所有者",
- "last-modified-at": "上次修改时间",
- "last-activity": "上次活动",
- "voting": "投票",
- "archived": "存档",
- "delete-linked-card-before-this-card": "在你首次删除卡片前你无法删除此选项卡片",
- "delete-linked-cards-before-this-list": "在首先删除指向此列表中的卡的链接卡之前,不能删除此列表",
- "hide-checked-items": "隐藏选中项",
- "task": "任务",
- "create-task": "创建任务",
- "ok": "确认"
-}
\ No newline at end of file
+ "accept": "接受",
+ "act-activity-notify": "活动通知",
+ "act-addAttachment": "添加附件 __attachment__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-deleteAttachment": "删除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的附件 __attachment__",
+ "act-addSubtask": "添加子任务 __subtask__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addedLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-removeLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
+ "act-removedLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
+ "act-addChecklist": "添加清单 __checklist__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addChecklistItem": "添加清单项 __checklistItem__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
+ "act-removeChecklist": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
+ "act-removeChecklistItem": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 清单项 __checklistItem__",
+ "act-checkedItem": "选中看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
+ "act-uncheckedItem": "反选看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
+ "act-completeChecklist": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-uncompleteChecklist": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 未完成",
+ "act-addComment": "对看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 发表了评论: __comment__",
+ "act-editComment": "编辑卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
+ "act-deleteComment": "删除卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
+ "act-createBoard": "创建看板 __board__",
+ "act-createSwimlane": "创建泳道 __swimlane__ 到看板 __board__",
+ "act-createCard": "在看板 __board__ 的泳道 __swimlane__ 的列表 __list__ 中添加卡片 __card__",
+ "act-createCustomField": "已创建看板__board__中的自定义字段__customField__",
+ "act-deleteCustomField": "已删除看板__board__中的自定义字段__customField__",
+ "act-setCustomField": "编辑定制字段__customField__:看板__board__中的泳道__swimlane__中的列表__list__中的卡片__card__中的__customFieldValue__",
+ "act-createList": "添加列表 __list__ 至看板 __board__",
+ "act-addBoardMember": "添加成员 __member__ 到看板 __board__",
+ "act-archivedBoard": "看板 __board__ 已被移入归档",
+ "act-archivedCard": "将看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 移动到归档中",
+ "act-archivedList": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 已被移入归档",
+ "act-archivedSwimlane": "看板 __board__ 中的泳道 __swimlane__ 已被移入归档",
+ "act-importBoard": "导入看板 __board__",
+ "act-importCard": "已将卡片 __card__ 导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
+ "act-importList": "已将列表导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
+ "act-joinMember": "已将成员 __member__ 添加到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中的 __card__ 卡片中",
+ "act-moveCard": "移动卡片 __card__ 到看板 __board__ 从列表 __oldList__ 泳道 __oldSwimlane__ 至列表 __list__ 泳道 __swimlane__",
+ "act-moveCardToOtherBoard": "移动卡片 __card__ 从列表 __oldList__ 泳道 __oldSwimlane__ 看板 __oldBoard__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-removeBoardMember": "从看板 __board__ 移除成员 __member__",
+ "act-restoredCard": "恢复卡片 __card__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-unjoinMember": "移除成员 __member__ 从卡片 __card__ 列表 __list__ a泳道 __swimlane__ 看板 __board__",
+ "act-withBoardTitle": "看板__board__",
+ "act-withCardTitle": "[看板 __board__] 卡片 __card__",
+ "actions": "操作",
+ "activities": "活动",
+ "activity": "活动",
+ "activity-added": "添加 %s 至 %s",
+ "activity-archived": "%s 已被移入归档",
+ "activity-attached": "添加附件 %s 至 %s",
+ "activity-created": "创建 %s",
+ "activity-customfield-created": "创建了自定义字段 %s",
+ "activity-excluded": "排除 %s 从 %s",
+ "activity-imported": "导入 %s 至 %s 从 %s 中",
+ "activity-imported-board": "已导入 %s 从 %s 中",
+ "activity-joined": "已关联 %s",
+ "activity-moved": "将 %s 从 %s 移动到 %s",
+ "activity-on": "在 %s",
+ "activity-removed": "从 %s 中移除 %s",
+ "activity-sent": "发送 %s 至 %s",
+ "activity-unjoined": "已解除 %s 关联",
+ "activity-subtask-added": "添加子任务到%s",
+ "activity-checked-item": "勾选%s于清单%s 共 %s",
+ "activity-unchecked-item": "未勾选 %s 于清单 %s 共 %s",
+ "activity-checklist-added": "已经将清单添加到 %s",
+ "activity-checklist-removed": "已从%s移除待办清单",
+ "activity-checklist-completed": "完成清单%s共%s",
+ "activity-checklist-uncompleted": "未完成清单 %s 共 %s",
+ "activity-checklist-item-added": "添加清单项至'%s' 于 %s",
+ "activity-checklist-item-removed": "已从 '%s' 于 %s中 移除一个清单项",
+ "add": "添加",
+ "activity-checked-item-card": "勾选 %s 与清单 %s 中",
+ "activity-unchecked-item-card": "取消勾选 %s 于清单 %s中",
+ "activity-checklist-completed-card": "完成检查列表 __checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "activity-checklist-uncompleted-card": "未完成清单 %s",
+ "activity-editComment": "评论已编辑",
+ "activity-deleteComment": "评论已删除",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "添加附件",
+ "add-board": "添加看板",
+ "add-card": "添加卡片",
+ "add-swimlane": "添加泳道图",
+ "add-subtask": "添加子任务",
+ "add-checklist": "添加待办清单",
+ "add-checklist-item": "扩充清单",
+ "add-cover": "添加封面",
+ "add-label": "添加标签",
+ "add-list": "添加列表",
+ "add-members": "添加成员",
+ "added": "添加",
+ "addMemberPopup-title": "成员",
+ "admin": "管理员",
+ "admin-desc": "可以浏览并编辑卡片,移除成员,并且更改该看板的设置",
+ "admin-announcement": "通知",
+ "admin-announcement-active": "激活系统通知",
+ "admin-announcement-title": "管理员的通知",
+ "all-boards": "全部看板",
+ "and-n-other-card": "和其他 __count__ 个卡片",
+ "and-n-other-card_plural": "和其他 __count__ 个卡片",
+ "apply": "应用",
+ "app-is-offline": "加载中,请稍后。刷新页面将导致数据丢失,如果加载长时间不起作用,请检查服务器是否已经停止工作。",
+ "archive": "归档",
+ "archive-all": "全部归档",
+ "archive-board": "将看板归档",
+ "archive-card": "将卡片归档",
+ "archive-list": "将列表归档",
+ "archive-swimlane": "将泳道归档",
+ "archive-selection": "将选择归档",
+ "archiveBoardPopup-title": "是否归档看板?",
+ "archived-items": "归档",
+ "archived-boards": "归档的看板",
+ "restore-board": "还原看板",
+ "no-archived-boards": "没有归档的看板。",
+ "archives": "归档",
+ "template": "模板",
+ "templates": "模板",
+ "assign-member": "指派成员",
+ "attached": "附加",
+ "attachment": "附件",
+ "attachment-delete-pop": "删除附件的操作不可逆。",
+ "attachmentDeletePopup-title": "删除附件?",
+ "attachments": "附件",
+ "auto-watch": "自动关注新建的看板",
+ "avatar-too-big": "头像过大 (上限 520 KB)",
+ "back": "返回",
+ "board-change-color": "更改颜色",
+ "board-nb-stars": "%s 星标",
+ "board-not-found": "看板不存在",
+ "board-private-info": "该看板将被设为 私有.",
+ "board-public-info": "该看板将被设为 公开.",
+ "boardChangeColorPopup-title": "修改看板背景",
+ "boardChangeTitlePopup-title": "重命名看板",
+ "boardChangeVisibilityPopup-title": "更改可视级别",
+ "boardChangeWatchPopup-title": "更改关注状态",
+ "boardMenuPopup-title": "看板设置",
+ "boardChangeViewPopup-title": "看板视图",
+ "boards": "看板",
+ "board-view": "看板视图",
+ "board-view-cal": "日历",
+ "board-view-swimlanes": "泳道图",
+ "board-view-collapse": "崩溃",
+ "board-view-gantt": "甘特",
+ "board-view-lists": "列表",
+ "bucket-example": "例如 “目标清单”",
+ "cancel": "取消",
+ "card-archived": "归档这个卡片。",
+ "board-archived": "归档这个看板。",
+ "card-comments-title": "该卡片有 %s 条评论",
+ "card-delete-notice": "彻底删除的操作不可恢复,你将会丢失该卡片相关的所有操作记录。",
+ "card-delete-pop": "所有的活动将从活动摘要中被移除且您将无法重新打开该卡片。此操作无法撤销。",
+ "card-delete-suggest-archive": "您可以移动卡片到活动以便从看板中删除并保持活动。",
+ "card-due": "到期",
+ "card-due-on": "期限",
+ "card-spent": "耗时",
+ "card-edit-attachments": "编辑附件",
+ "card-edit-custom-fields": "编辑自定义字段",
+ "card-edit-labels": "编辑标签",
+ "card-edit-members": "编辑成员",
+ "card-labels-title": "更改该卡片上的标签",
+ "card-members-title": "在该卡片中添加或移除看板成员",
+ "card-start": "开始",
+ "card-start-on": "始于",
+ "cardAttachmentsPopup-title": "附件来源",
+ "cardCustomField-datePopup-title": "修改日期",
+ "cardCustomFieldsPopup-title": "编辑自定义字段",
+ "cardStartVotingPopup-title": "建立投票",
+ "positiveVoteMembersPopup-title": "支持",
+ "negativeVoteMembersPopup-title": "反对",
+ "card-edit-voting": "编辑投票",
+ "editVoteEndDatePopup-title": "修改投票截止日期",
+ "allowNonBoardMembers": "允许所有已登入账户",
+ "vote-question": "投票题目",
+ "vote-public": "查看投票结果",
+ "vote-for-it": "同意",
+ "vote-against": "反对",
+ "deleteVotePopup-title": "删除投票?",
+ "vote-delete-pop": "永久删除。此操作会将所有数据删除掉。",
+ "cardDeletePopup-title": "彻底删除卡片?",
+ "cardDetailsActionsPopup-title": "卡片操作",
+ "cardLabelsPopup-title": "标签",
+ "cardMembersPopup-title": "成员",
+ "cardMorePopup-title": "更多",
+ "cardTemplatePopup-title": "新建模板",
+ "cards": "卡片",
+ "cards-count": "卡片",
+ "casSignIn": "用CAS登录",
+ "cardType-card": "卡片",
+ "cardType-linkedCard": "已链接卡片",
+ "cardType-linkedBoard": "已链接看板",
+ "change": "变更",
+ "change-avatar": "更改头像",
+ "change-password": "更改密码",
+ "change-permissions": "更改权限",
+ "change-settings": "更改设置",
+ "changeAvatarPopup-title": "更改头像",
+ "changeLanguagePopup-title": "更改语言",
+ "changePasswordPopup-title": "更改密码",
+ "changePermissionsPopup-title": "更改权限",
+ "changeSettingsPopup-title": "更改设置",
+ "subtasks": "子任务",
+ "checklists": "清单",
+ "click-to-star": "点此来标记该看板",
+ "click-to-unstar": "点此来去除该看板的标记",
+ "clipboard": "剪贴板或者拖放文件",
+ "close": "关闭",
+ "close-board": "关闭看板",
+ "close-board-pop": "您可以通过主页头部的“归档”按钮,来恢复看板。",
+ "color-black": "黑色",
+ "color-blue": "蓝色",
+ "color-crimson": "深红",
+ "color-darkgreen": "墨绿",
+ "color-gold": "金",
+ "color-gray": "灰",
+ "color-green": "绿色",
+ "color-indigo": "靛蓝",
+ "color-lime": "绿黄",
+ "color-magenta": "洋红",
+ "color-mistyrose": "玫瑰红",
+ "color-navy": "藏青",
+ "color-orange": "橙色",
+ "color-paleturquoise": "宝石绿",
+ "color-peachpuff": "桃红",
+ "color-pink": "粉红",
+ "color-plum": "紫红",
+ "color-purple": "紫色",
+ "color-red": "红色",
+ "color-saddlebrown": "棕褐",
+ "color-silver": "银",
+ "color-sky": "天蓝",
+ "color-slateblue": "石板蓝",
+ "color-white": "白",
+ "color-yellow": "黄色",
+ "unset-color": "复原",
+ "comment": "评论",
+ "comment-placeholder": "添加评论",
+ "comment-only": "仅能评论",
+ "comment-only-desc": "只能在卡片上评论。",
+ "no-comments": "暂无评论",
+ "no-comments-desc": "无法查看评论和活动。",
+ "worker": "人员",
+ "worker-desc": "只能移动卡片,分配给卡片和评论",
+ "computer": "从本机上传",
+ "confirm-subtask-delete-dialog": "确定要删除子任务吗?",
+ "confirm-checklist-delete-dialog": "确定要删除清单吗?",
+ "copy-card-link-to-clipboard": "复制卡片链接到剪贴板",
+ "linkCardPopup-title": "链接卡片",
+ "searchElementPopup-title": "搜索",
+ "copyCardPopup-title": "复制卡片",
+ "copyChecklistToManyCardsPopup-title": "复制清单模板至多个卡片",
+ "copyChecklistToManyCardsPopup-instructions": "以JSON格式表示目标卡片的标题和描述",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"第一个卡片的标题\", \"description\":\"第一个卡片的描述\"}, {\"title\":\"第二个卡片的标题\",\"description\":\"第二个卡片的描述\"},{\"title\":\"最后一个卡片的标题\",\"description\":\"最后一个卡片的描述\"} ]",
+ "create": "创建",
+ "createBoardPopup-title": "创建看板",
+ "chooseBoardSourcePopup-title": "导入看板",
+ "createLabelPopup-title": "创建标签",
+ "createCustomField": "创建字段",
+ "createCustomFieldPopup-title": "创建字段",
+ "current": "当前",
+ "custom-field-delete-pop": "没有撤销,此动作将从所有卡片中移除自定义字段并销毁历史。",
+ "custom-field-checkbox": "选择框",
+ "custom-field-currency": "货币",
+ "custom-field-currency-option": "货币代码",
+ "custom-field-date": "日期",
+ "custom-field-dropdown": "下拉列表",
+ "custom-field-dropdown-none": "(无)",
+ "custom-field-dropdown-options": "列表选项",
+ "custom-field-dropdown-options-placeholder": "回车可以加入更多选项",
+ "custom-field-dropdown-unknown": "(未知)",
+ "custom-field-number": "数字",
+ "custom-field-text": "文本",
+ "custom-fields": "自定义字段",
+ "date": "日期",
+ "decline": "拒绝",
+ "default-avatar": "默认头像",
+ "delete": "删除",
+ "deleteCustomFieldPopup-title": "删除自定义字段?",
+ "deleteLabelPopup-title": "删除标签?",
+ "description": "描述",
+ "disambiguateMultiLabelPopup-title": "消除标签歧义",
+ "disambiguateMultiMemberPopup-title": "消除成员歧义",
+ "discard": "放弃",
+ "done": "完成",
+ "download": "下载",
+ "edit": "编辑",
+ "edit-avatar": "更改头像",
+ "edit-profile": "编辑资料",
+ "edit-wip-limit": "编辑最大任务数",
+ "soft-wip-limit": "最大任务数软限制",
+ "editCardStartDatePopup-title": "修改起始日期",
+ "editCardDueDatePopup-title": "修改截止日期",
+ "editCustomFieldPopup-title": "编辑字段",
+ "editCardSpentTimePopup-title": "修改耗时",
+ "editLabelPopup-title": "更改标签",
+ "editNotificationPopup-title": "编辑通知",
+ "editProfilePopup-title": "编辑资料",
+ "email": "邮箱",
+ "email-enrollAccount-subject": "已为您在 __siteName__ 创建帐号",
+ "email-enrollAccount-text": "尊敬的 __user__,\n\n点击下面的链接,即刻开始使用这项服务。\n\n__url__\n\n谢谢。",
+ "email-fail": "邮件发送失败",
+ "email-fail-text": "尝试发送邮件时出错",
+ "email-invalid": "邮件地址错误",
+ "email-invite": "发送邮件邀请",
+ "email-invite-subject": "__inviter__ 向您发出邀请",
+ "email-invite-text": "尊敬的 __user__,\n\n__inviter__ 邀请您加入看板 \"__board__\" 参与协作。\n\n请点击下面的链接访问看板:\n\n__url__\n\n谢谢。",
+ "email-resetPassword-subject": "重置您的 __siteName__ 密码",
+ "email-resetPassword-text": "尊敬的 __user__,\n\n点击下面的链接,重置您的密码:\n\n__url__\n\n谢谢。",
+ "email-sent": "邮件已发送",
+ "email-verifyEmail-subject": "在 __siteName__ 验证您的邮件地址",
+ "email-verifyEmail-text": "尊敬的 __user__,\n\n点击下面的链接,验证您的邮件地址:\n\n__url__\n\n谢谢。",
+ "enable-wip-limit": "启用最大任务数限制",
+ "error-board-doesNotExist": "该看板不存在",
+ "error-board-notAdmin": "需要成为管理员才能执行此操作",
+ "error-board-notAMember": "需要成为看板成员才能执行此操作",
+ "error-json-malformed": "文本不是合法的 JSON",
+ "error-json-schema": "JSON 数据没有用正确的格式包含合适的信息",
+ "error-csv-schema": "CSV(逗号分隔值)/TSV(制表符分隔值)数据格式的不正确",
+ "error-list-doesNotExist": "不存在此列表",
+ "error-user-doesNotExist": "该用户不存在",
+ "error-user-notAllowSelf": "无法邀请自己",
+ "error-user-notCreated": "该用户未能成功创建",
+ "error-username-taken": "此用户名已存在",
+ "error-email-taken": "此EMail已存在",
+ "export-board": "导出看板",
+ "export-board-json": "看板导出为JSON",
+ "export-board-csv": "看板导出为CSV",
+ "export-board-tsv": "看板导出为TSV",
+ "export-board-html": "看板导出为HTML",
+ "exportBoardPopup-title": "导出看板",
+ "sort": "排序",
+ "sort-desc": "点此来将列表排序",
+ "list-sort-by": "按此来将列表排序:",
+ "list-label-modifiedAt": "上次访问时间",
+ "list-label-title": "列表名称",
+ "list-label-sort": "您手动指定的顺序",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "过滤",
+ "filter-cards": "过滤卡片或列表",
+ "list-filter-label": "以标题过滤列表",
+ "filter-clear": "清空过滤器",
+ "filter-labels-label": "根据标签过滤",
+ "filter-no-label": "无标签",
+ "filter-member-label": "按成员过滤",
+ "filter-no-member": "无成员",
+ "filter-assignee-label": "按指定人过滤",
+ "filter-no-assignee": "没有代理人",
+ "filter-custom-fields-label": "按自定义字段过滤",
+ "filter-no-custom-fields": "无自定义字段",
+ "filter-show-archive": "显示归档的列表",
+ "filter-hide-empty": "隐藏空列表",
+ "filter-on": "过滤器启用",
+ "filter-on-desc": "你正在过滤该看板上的卡片,点此编辑过滤。",
+ "filter-to-selection": "要选择的过滤器",
+ "other-filters-label": "其他过滤",
+ "advanced-filter-label": "高级过滤器",
+ "advanced-filter-description": "高级过滤器可以使用包含如下操作符的字符串进行过滤:== != <= >= && || ( ) 。操作符之间用空格隔开。输入字段名和数值就可以过滤所有自定义字段。例如:Field1 == Value1。注意如果字段名或数值包含空格,需要用单引号。例如: 'Field 1' == 'Value 1'。要跳过单个控制字符(' \\/),请使用 \\ 转义字符。例如: Field1 = I\\'m。支持组合使用多个条件,例如: F1 == V1 || F1 == V2。通常以从左到右的顺序进行判断。可以通过括号修改顺序,例如:F1 == V1 && ( F2 == V2 || F2 == V3 )。也支持使用正则表达式搜索文本字段。",
+ "fullname": "全称",
+ "header-logo-title": "返回您的看板页",
+ "hide-system-messages": "隐藏系统消息",
+ "headerBarCreateBoardPopup-title": "创建看板",
+ "home": "首页",
+ "import": "导入",
+ "impersonate-user": "模拟用户",
+ "link": "链接",
+ "import-board": "导入看板",
+ "import-board-c": "导入看板",
+ "import-board-title-trello": "从Trello导入看板",
+ "import-board-title-wekan": "从以前的导出数据导入看板",
+ "import-board-title-csv": "导入CSV/TSV看板",
+ "from-trello": "自 Trello",
+ "from-wekan": "自以前的导出",
+ "from-csv": "从CSV/TSV",
+ "import-board-instruction-trello": "在你的Trello看板中,点击“菜单”,然后选择“更多”,“打印与导出”,“导出为 JSON” 并拷贝结果文本",
+ "import-board-instruction-csv": "粘贴逗号分隔值(CSV)/制表符分隔值(TSV)。",
+ "import-board-instruction-wekan": "在您的看板,点击“菜单”,然后“导出看板”,复制下载文件中的文本。",
+ "import-board-instruction-about-errors": "如果在导入看板时出现错误,导入工作可能仍然在进行中,并且看板已经出现在全部看板页。",
+ "import-json-placeholder": "粘贴您有效的 JSON 数据至此",
+ "import-csv-placeholder": "在此处粘贴有效的CSV/TSV数据",
+ "import-map-members": "映射成员",
+ "import-members-map": "您导入的看板有一些成员,请映射这些成员到您导入的用户。",
+ "import-show-user-mapping": "核对成员映射",
+ "import-user-select": "为这个成员选择您已经存在的用户",
+ "importMapMembersAddPopup-title": "选择成员",
+ "info": "版本",
+ "initials": "缩写",
+ "invalid-date": "无效日期",
+ "invalid-time": "非法时间",
+ "invalid-user": "非法用户",
+ "joined": "关联",
+ "just-invited": "您刚刚被邀请加入此看板",
+ "keyboard-shortcuts": "键盘快捷键",
+ "label-create": "创建标签",
+ "label-default": "%s 标签 (默认)",
+ "label-delete-pop": "此操作不可逆,这将会删除该标签并清除它的历史记录。",
+ "labels": "标签",
+ "language": "语言",
+ "last-admin-desc": "你不能更改角色,因为至少需要一名管理员。",
+ "leave-board": "离开看板",
+ "leave-board-pop": "确认要离开 __boardTitle__ 吗?此看板的所有卡片都会将您移除。",
+ "leaveBoardPopup-title": "离开看板?",
+ "link-card": "关联至该卡片",
+ "list-archive-cards": "将此列表中的所有卡片归档",
+ "list-archive-cards-pop": "将移动看板中列表的所有卡片,查看或回复归档中的卡片,点击“菜单”->“归档”",
+ "list-move-cards": "移动列表中的所有卡片",
+ "list-select-cards": "选择列表中的所有卡片",
+ "set-color-list": "设置颜色",
+ "listActionPopup-title": "列表操作",
+ "settingsUserPopup-title": "用户设置",
+ "swimlaneActionPopup-title": "泳道图操作",
+ "swimlaneAddPopup-title": "在下面添加一个泳道",
+ "listImportCardPopup-title": "导入 Trello 卡片",
+ "listImportCardsTsvPopup-title": "导入Excel CSV/TSV",
+ "listMorePopup-title": "更多",
+ "link-list": "关联到这个列表",
+ "list-delete-pop": "所有活动将被从活动动态中删除并且你无法恢复他们,此操作无法撤销。",
+ "list-delete-suggest-archive": "您可以移动列表到归档以将其从看板中移除并保留活动。",
+ "lists": "列表",
+ "swimlanes": "泳道图",
+ "log-out": "登出",
+ "log-in": "登录",
+ "loginPopup-title": "登录",
+ "memberMenuPopup-title": "成员设置",
+ "members": "成员",
+ "menu": "菜单",
+ "move-selection": "移动选择",
+ "moveCardPopup-title": "移动卡片",
+ "moveCardToBottom-title": "移动至底端",
+ "moveCardToTop-title": "移动至顶端",
+ "moveSelectionPopup-title": "移动选择",
+ "multi-selection": "多选",
+ "multi-selection-label": "设置标签",
+ "multi-selection-member": "选择成员",
+ "multi-selection-on": "多选启用",
+ "muted": "静默",
+ "muted-info": "你将不会收到此看板的任何变更通知",
+ "my-boards": "我的看板",
+ "name": "名称",
+ "no-archived-cards": "存档中没有卡片。",
+ "no-archived-lists": "存档中没有清单。",
+ "no-archived-swimlanes": "存档中没有泳道。",
+ "no-results": "无结果",
+ "normal": "普通",
+ "normal-desc": "可以创建以及编辑卡片,无法更改设置。",
+ "not-accepted-yet": "邀请尚未接受",
+ "notify-participate": "接收以创建者或成员身份参与的卡片的更新",
+ "notify-watch": "接收所有关注的面板、列表、及卡片的更新",
+ "optional": "可选",
+ "or": "或",
+ "page-maybe-private": "本页面被设为私有. 您必须 登录以浏览其中内容。",
+ "page-not-found": "页面不存在。",
+ "password": "密码",
+ "paste-or-dragdrop": "从剪贴板粘贴,或者拖放文件到它上面 (仅限于图片)",
+ "participating": "参与",
+ "preview": "预览",
+ "previewAttachedImagePopup-title": "预览",
+ "previewClipboardImagePopup-title": "预览",
+ "private": "私有",
+ "private-desc": "该看板将被设为私有。只有该看板成员才可以进行查看和编辑。",
+ "profile": "资料",
+ "public": "公开",
+ "public-desc": "该看板将被公开。任何人均可通过链接查看,并且将对Google和其他搜索引擎开放。只有添加至该看板的成员才可进行编辑。",
+ "quick-access-description": "星标看板在导航条中添加快捷方式",
+ "remove-cover": "移除封面",
+ "remove-from-board": "从看板中删除",
+ "remove-label": "移除标签",
+ "listDeletePopup-title": "删除列表",
+ "remove-member": "移除成员",
+ "remove-member-from-card": "从该卡片中移除",
+ "remove-member-pop": "确定从 __boardTitle__ 中移除 __name__ (__username__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
+ "removeMemberPopup-title": "删除成员?",
+ "rename": "重命名",
+ "rename-board": "重命名看板",
+ "restore": "还原",
+ "save": "保存",
+ "search": "搜索",
+ "rules": "规则",
+ "search-cards": "搜寻看板內的卡片/列表标题、描述、自定义字段",
+ "search-example": "输入查询信息后按回车",
+ "select-color": "选择颜色",
+ "select-board": "选择看板",
+ "set-wip-limit-value": "设置此列表中的最大任务数",
+ "setWipLimitPopup-title": "设置最大任务数",
+ "shortcut-assign-self": "指派当前卡片给自己",
+ "shortcut-autocomplete-emoji": "表情符号自动补全",
+ "shortcut-autocomplete-members": "自动补全成员",
+ "shortcut-clear-filters": "清空全部过滤器",
+ "shortcut-close-dialog": "关闭对话框",
+ "shortcut-filter-my-cards": "过滤我的卡片",
+ "shortcut-show-shortcuts": "显示此快捷键列表",
+ "shortcut-toggle-filterbar": "切换过滤器边栏",
+ "shortcut-toggle-searchbar": "切换查询边栏",
+ "shortcut-toggle-sidebar": "切换面板边栏",
+ "show-cards-minimum-count": "当列表中的卡片多于此阈值时将显示数量",
+ "sidebar-open": "打开侧栏",
+ "sidebar-close": "打开侧栏",
+ "signupPopup-title": "创建账户",
+ "star-board-title": "点此来标记该看板,它将会出现在您的看板列表顶部。",
+ "starred-boards": "已标记看板",
+ "starred-boards-description": "已标记看板将会出现在您的看板列表顶部。",
+ "subscribe": "订阅",
+ "team": "团队",
+ "this-board": "该看板",
+ "this-card": "该卡片",
+ "spent-time-hours": "耗时 (小时)",
+ "overtime-hours": "超时 (小时)",
+ "overtime": "超时",
+ "has-overtime-cards": "有超时卡片",
+ "has-spenttime-cards": "耗时卡",
+ "time": "时间",
+ "title": "标题",
+ "tracking": "跟踪",
+ "tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。",
+ "type": "类型",
+ "unassign-member": "取消指派成员",
+ "unsaved-description": "存在未保存的描述",
+ "unwatch": "取消关注",
+ "upload": "上传",
+ "upload-avatar": "上传头像",
+ "uploaded-avatar": "头像已经上传",
+ "custom-top-left-corner-logo-image-url": "通过图片链接设置左上角图标",
+ "custom-top-left-corner-logo-link-url": "设置左上角图标链接地址",
+ "custom-top-left-corner-logo-height": "设置左上角图标高度. 默认值: 27",
+ "custom-login-logo-image-url": "设置登陆图标链接地址",
+ "custom-login-logo-link-url": "通过连接上传logo",
+ "text-below-custom-login-logo": "自定义登陆图标下方文字",
+ "username": "用户名",
+ "view-it": "查看",
+ "warn-list-archived": "警告:此卡片在列表归档中",
+ "watch": "关注",
+ "watching": "关注",
+ "watching-info": "当此看板发生变更时会通知你",
+ "welcome-board": "“欢迎”看板",
+ "welcome-swimlane": "里程碑 1",
+ "welcome-list1": "基本",
+ "welcome-list2": "高阶",
+ "card-templates-swimlane": "卡片模板",
+ "list-templates-swimlane": "列表模板",
+ "board-templates-swimlane": "看板模板",
+ "what-to-do": "要做什么?",
+ "wipLimitErrorPopup-title": "无效的最大任务数",
+ "wipLimitErrorPopup-dialog-pt1": "此列表中的任务数量已经超过了设置的最大任务数。",
+ "wipLimitErrorPopup-dialog-pt2": "请将一些任务移出此列表,或者设置一个更大的最大任务数。",
+ "admin-panel": "管理面板",
+ "settings": "设置",
+ "people": "人员",
+ "registration": "注册",
+ "disable-self-registration": "禁止自助注册",
+ "invite": "邀请",
+ "invite-people": "邀请人员",
+ "to-boards": "邀请到看板 (可多选)",
+ "email-addresses": "电子邮箱地址",
+ "smtp-host-description": "用于发送邮件的SMTP服务器地址。",
+ "smtp-port-description": "SMTP服务器端口。",
+ "smtp-tls-description": "对SMTP服务器启用TLS支持",
+ "smtp-host": "SMTP服务器",
+ "smtp-port": "SMTP端口",
+ "smtp-username": "用户名",
+ "smtp-password": "密码",
+ "smtp-tls": "TLS支持",
+ "send-from": "发件人",
+ "send-smtp-test": "给自己发送一封测试邮件",
+ "invitation-code": "邀请码",
+ "email-invite-register-subject": "__inviter__ 向您发出邀请",
+ "email-invite-register-text": "亲爱的__user__:\n__inviter__ 邀请您加入到看板\n\n请点击下面的链接:\n__url__\n\n您的邀请码是:__icode__\n\n谢谢。",
+ "email-smtp-test-subject": "通过SMTP发送测试邮件",
+ "email-smtp-test-text": "你已成功发送邮件",
+ "error-invitation-code-not-exist": "邀请码不存在",
+ "error-notAuthorized": "您无权查看此页面。",
+ "webhook-title": "Webhook名称",
+ "webhook-token": "Token(认证选项)",
+ "outgoing-webhooks": "外部Web挂钩",
+ "bidirectional-webhooks": "双向Webhook",
+ "outgoingWebhooksPopup-title": "外部Web挂钩",
+ "boardCardTitlePopup-title": "卡片标题过滤",
+ "disable-webhook": "禁用Webhook",
+ "global-webhook": "全局Webhook",
+ "new-outgoing-webhook": "新建外部Web挂钩",
+ "no-name": "(未知)",
+ "Node_version": "Node.js版本",
+ "Meteor_version": "Meteor版本",
+ "MongoDB_version": "MongoDB版本",
+ "MongoDB_storage_engine": "MongoDB存储引擎",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog已启用",
+ "OS_Arch": "系统架构",
+ "OS_Cpus": "系统 CPU数量",
+ "OS_Freemem": "系统可用内存",
+ "OS_Loadavg": "系统负载均衡",
+ "OS_Platform": "系统平台",
+ "OS_Release": "系统发布版本",
+ "OS_Totalmem": "系统全部内存",
+ "OS_Type": "系统类型",
+ "OS_Uptime": "系统运行时间",
+ "days": "天",
+ "hours": "小时",
+ "minutes": "分钟",
+ "seconds": "秒",
+ "show-field-on-card": "在卡片上显示此字段",
+ "automatically-field-on-card": "自动创建所有卡片的字段",
+ "showLabel-field-on-card": "在迷你卡片上显示字段标签",
+ "yes": "是",
+ "no": "否",
+ "accounts": "账号",
+ "accounts-allowEmailChange": "允许邮箱变更",
+ "accounts-allowUserNameChange": "允许变更用户名",
+ "createdAt": "创建于",
+ "verified": "已验证",
+ "active": "活跃",
+ "card-received": "已接收",
+ "card-received-on": "接收于",
+ "card-end": "终止",
+ "card-end-on": "终止于",
+ "editCardReceivedDatePopup-title": "修改接收日期",
+ "editCardEndDatePopup-title": "修改终止日期",
+ "setCardColorPopup-title": "设置颜色",
+ "setCardActionsColorPopup-title": "选择一种颜色",
+ "setSwimlaneColorPopup-title": "选择一种颜色",
+ "setListColorPopup-title": "选择一种颜色",
+ "assigned-by": "指派人",
+ "requested-by": "需求人",
+ "board-delete-notice": "删除时永久操作,将会丢失此看板上的所有列表、卡片和动作。",
+ "delete-board-confirm-popup": "所有列表、卡片、标签和活动都回被删除,将无法恢复看板内容。不支持撤销。",
+ "boardDeletePopup-title": "删除看板?",
+ "delete-board": "删除看板",
+ "default-subtasks-board": "__board__ 看板的子任务",
+ "default": "缺省",
+ "queue": "队列",
+ "subtask-settings": "子任务设置",
+ "card-settings": "卡片设置",
+ "boardSubtaskSettingsPopup-title": "看板子任务设置",
+ "boardCardSettingsPopup-title": "卡片设置",
+ "deposit-subtasks-board": "将子任务放入以下看板:",
+ "deposit-subtasks-list": "将子任务放入以下列表:",
+ "show-parent-in-minicard": "显示上一级卡片:",
+ "prefix-with-full-path": "完整路径前缀",
+ "prefix-with-parent": "上级前缀",
+ "subtext-with-full-path": "子标题显示完整路径",
+ "subtext-with-parent": "子标题显示上级",
+ "change-card-parent": "修改卡片的上级",
+ "parent-card": "上级卡片",
+ "source-board": "源看板",
+ "no-parent": "不显示上级",
+ "activity-added-label": "已添加标签 '%s' 到 %s",
+ "activity-removed-label": "已将标签 '%s' 从 %s 移除",
+ "activity-delete-attach": "已从 %s 删除附件",
+ "activity-added-label-card": "已添加标签 '%s'",
+ "activity-removed-label-card": "已移除标签 '%s'",
+ "activity-delete-attach-card": "已删除附件",
+ "activity-set-customfield": "设置自定义字段 '%s' 至 '%s' 于 %s",
+ "activity-unset-customfield": "未设置自定义字段 '%s' 于 %s",
+ "r-rule": "规则",
+ "r-add-trigger": "添加触发器",
+ "r-add-action": "添加行动",
+ "r-board-rules": "看板规则",
+ "r-add-rule": "添加规则",
+ "r-view-rule": "查看规则",
+ "r-delete-rule": "删除规则",
+ "r-new-rule-name": "新建规则标题",
+ "r-no-rules": "暂无规则",
+ "r-trigger": "触发器",
+ "r-action": "操作",
+ "r-when-a-card": "当一张卡片",
+ "r-is": "是",
+ "r-is-moved": "已经移动",
+ "r-added-to": "添加到",
+ "r-removed-from": "已移除",
+ "r-the-board": "该看板",
+ "r-list": "列表",
+ "set-filter": "设置过滤器",
+ "r-moved-to": "移至",
+ "r-moved-from": "已移动",
+ "r-archived": "已移动到归档",
+ "r-unarchived": "已从归档中恢复",
+ "r-a-card": "一个卡片",
+ "r-when-a-label-is": "当一个标签是",
+ "r-when-the-label": "当该标签是",
+ "r-list-name": "列表名称",
+ "r-when-a-member": "当一个成员是",
+ "r-when-the-member": "当该成员",
+ "r-name": "名称",
+ "r-when-a-attach": "当一个附件",
+ "r-when-a-checklist": "当一个清单是",
+ "r-when-the-checklist": "当该清单",
+ "r-completed": "已完成",
+ "r-made-incomplete": "置为未完成",
+ "r-when-a-item": "当一个清单项是",
+ "r-when-the-item": "当该清单项",
+ "r-checked": "勾选",
+ "r-unchecked": "未勾选",
+ "r-move-card-to": "移动卡片到",
+ "r-top-of": "的顶部",
+ "r-bottom-of": "的尾部",
+ "r-its-list": "其列表",
+ "r-archive": "归档",
+ "r-unarchive": "从归档中恢复",
+ "r-card": "卡片",
+ "r-add": "添加",
+ "r-remove": "移除",
+ "r-label": "标签",
+ "r-member": "成员",
+ "r-remove-all": "从卡片移除所有成员",
+ "r-set-color": "设置颜色",
+ "r-checklist": "清单",
+ "r-check-all": "勾选所有",
+ "r-uncheck-all": "取消勾选所有",
+ "r-items-check": "清单条目",
+ "r-check": "勾选",
+ "r-uncheck": "取消勾选",
+ "r-item": "条目",
+ "r-of-checklist": "清单的",
+ "r-send-email": "发送邮件",
+ "r-to": "收件人",
+ "r-of": "分之",
+ "r-subject": "标题",
+ "r-rule-details": "规则详情",
+ "r-d-move-to-top-gen": "移动卡片到其列表顶部",
+ "r-d-move-to-top-spec": "移动卡片到列表顶部",
+ "r-d-move-to-bottom-gen": "移动卡片到其列表尾部",
+ "r-d-move-to-bottom-spec": "移动卡片到列表尾部",
+ "r-d-send-email": "发送邮件",
+ "r-d-send-email-to": "收件人",
+ "r-d-send-email-subject": "标题",
+ "r-d-send-email-message": "消息",
+ "r-d-archive": "将卡片归档",
+ "r-d-unarchive": "从归档中恢复卡片",
+ "r-d-add-label": "添加标签",
+ "r-d-remove-label": "移除标签",
+ "r-create-card": "创建新卡片",
+ "r-in-list": "在列表中",
+ "r-in-swimlane": "在泳道中",
+ "r-d-add-member": "添加成员",
+ "r-d-remove-member": "移除成员",
+ "r-d-remove-all-member": "移除所有成员",
+ "r-d-check-all": "勾选所有列表项",
+ "r-d-uncheck-all": "取消勾选所有列表项",
+ "r-d-check-one": "勾选该项",
+ "r-d-uncheck-one": "取消勾选",
+ "r-d-check-of-list": "清单的",
+ "r-d-add-checklist": "添加待办清单",
+ "r-d-remove-checklist": "移动待办清单",
+ "r-by": "在",
+ "r-add-checklist": "添加待办清单",
+ "r-with-items": "与项目",
+ "r-items-list": "项目1,项目2,项目3",
+ "r-add-swimlane": "添加泳道",
+ "r-swimlane-name": "泳道名",
+ "r-board-note": "注意:保留一个空字段去匹配所有可能的值。",
+ "r-checklist-note": "注意:清单中的项目必须用都好分割。",
+ "r-when-a-card-is-moved": "当移动卡片到另一个列表时",
+ "r-set": "设置",
+ "r-update": "更新",
+ "r-datefield": "日期字段",
+ "r-df-start-at": "开始",
+ "r-df-due-at": "至",
+ "r-df-end-at": "结束",
+ "r-df-received-at": "已接收",
+ "r-to-current-datetime": "到当前日期/时间",
+ "r-remove-value-from": "从变量中移动",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "认证方式",
+ "authentication-type": "认证类型",
+ "custom-product-name": "自定义产品名称",
+ "layout": "布局",
+ "hide-logo": "隐藏LOGO",
+ "add-custom-html-after-body-start": "添加定制的HTML在开始之前",
+ "add-custom-html-before-body-end": "添加定制的HTML在结束之后",
+ "error-undefined": "出了点问题",
+ "error-ldap-login": "尝试登陆时出错",
+ "display-authentication-method": "显示认证方式",
+ "default-authentication-method": "缺省认证方式",
+ "duplicate-board": "复制看板",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "人数是:",
+ "swimlaneDeletePopup-title": "是否删除泳道?",
+ "swimlane-delete-pop": "所有活动将从活动源中删除,您将无法恢复泳道。此操作无法撤销。",
+ "restore-all": "全部恢复",
+ "delete-all": "全部删除",
+ "loading": "加载中,请稍等。",
+ "previous_as": "上次是",
+ "act-a-dueAt": "修改到期时间:\n时间:__timeValue__\n位置:__card__\n上一个到期日是 __timeOldValue__",
+ "act-a-endAt": "修改结束时间从 (__timeOldValue__) 至 __timeValue__",
+ "act-a-startAt": "修改开始时间从 (__timeOldValue__) 至 __timeValue__",
+ "act-a-receivedAt": "修改接收时间从 (__timeOldValue__) 至 __timeValue__",
+ "a-dueAt": "修改到期时间",
+ "a-endAt": "修改结束时间",
+ "a-startAt": "修改开始时间",
+ "a-receivedAt": "修改接收时间",
+ "almostdue": "当前到期时间%s即将到来",
+ "pastdue": "当前到期时间%s已过",
+ "duenow": "当前到期时间%s为今天",
+ "act-newDue": "__list__/__card__ 有 1st 到期提醒 [__board__]",
+ "act-withDue": "__list__/__card__ 到期提醒 [__board__]",
+ "act-almostdue": "__card__ 的当前到期提醒(__timeValue__) 正在接近",
+ "act-pastdue": "__card__ 的当前到期提醒(__timeValue__) 已经过去了",
+ "act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
+ "act-atUserComment": "[__board__] __list__/__card__ 提到了您",
+ "delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
+ "accounts-allowUserDelete": "允许用户自行删除其帐户",
+ "hide-minicard-label-text": "隐藏迷你卡片标签文本",
+ "show-desktop-drag-handles": "显示桌面拖放手柄",
+ "assignee": "被指派人",
+ "cardAssigneesPopup-title": "被指派人",
+ "addmore-detail": "添加更详细的说明",
+ "show-on-card": "显示卡片",
+ "new": "新",
+ "editUserPopup-title": "修改用户",
+ "newUserPopup-title": "新增用户",
+ "notifications": "提示",
+ "view-all": "查看全部",
+ "filter-by-unread": "过滤未读",
+ "mark-all-as-read": "标记全部已读",
+ "remove-all-read": "移除所有已读",
+ "allow-rename": "允许重命名",
+ "allowRenamePopup-title": "允许重命名",
+ "start-day-of-week": "设定一周的开始",
+ "monday": "周一",
+ "tuesday": "周二",
+ "wednesday": "周三",
+ "thursday": "周四",
+ "friday": "周五",
+ "saturday": "周六",
+ "sunday": "周日",
+ "status": "状态",
+ "swimlane": "泳道",
+ "owner": "所有者",
+ "last-modified-at": "上次修改时间",
+ "last-activity": "上次活动",
+ "voting": "投票",
+ "archived": "存档",
+ "delete-linked-card-before-this-card": "在你首次删除卡片前你无法删除此选项卡片",
+ "delete-linked-cards-before-this-list": "在首先删除指向此列表中的卡的链接卡之前,不能删除此列表",
+ "hide-checked-items": "隐藏选中项",
+ "task": "任务",
+ "create-task": "创建任务",
+ "ok": "确认",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/zh-HK.i18n.json b/i18n/zh-HK.i18n.json
index 02eff747d..7e8ff633a 100644
--- a/i18n/zh-HK.i18n.json
+++ b/i18n/zh-HK.i18n.json
@@ -1,840 +1,848 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist %s of %s",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "activity-editComment": "edited comment %s",
- "activity-deleteComment": "deleted comment %s",
- "activity-receivedDate": "edited received date to %s of %s",
- "activity-startDate": "edited start date to %s of %s",
- "activity-dueDate": "edited due date to %s of %s",
- "activity-endDate": "edited end date to %s of %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (520KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be private.",
- "board-public-info": "This board will be public.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boardChangeViewPopup-title": "Board View",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-collapse": "Collapse",
- "board-view-gantt": "Gantt",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardStartVotingPopup-title": "Start a vote",
- "positiveVoteMembersPopup-title": "Proponents",
- "negativeVoteMembersPopup-title": "Opponents",
- "card-edit-voting": "Edit voting",
- "editVoteEndDatePopup-title": "Change vote end date",
- "allowNonBoardMembers": "Allow all logged in users",
- "vote-question": "Voting question",
- "vote-public": "Show who voted what",
- "vote-for-it": "for it",
- "vote-against": "against",
- "deleteVotePopup-title": "Delete vote?",
- "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "worker": "Worker",
- "worker-desc": "Can only move cards, assign itself to card and comment.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-currency": "Currency",
- "custom-field-currency-option": "Currency Code",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "export-board-json": "Export board to JSON",
- "export-board-csv": "Export board to CSV",
- "export-board-tsv": "Export board to TSV",
- "export-board-html": "Export board to HTML",
- "exportBoardPopup-title": "Export board",
- "sort": "Sort",
- "sort-desc": "Click to Sort List",
- "list-sort-by": "Sort the List By:",
- "list-label-modifiedAt": "Last Access Time",
- "list-label-title": "Name of the List",
- "list-label-sort": "Your Manual Order",
- "list-label-short-modifiedAt": "(L)",
- "list-label-short-title": "(N)",
- "list-label-short-sort": "(M)",
- "filter": "Filter",
- "filter-cards": "Filter Cards or Lists",
- "list-filter-label": "Filter List by Title",
- "filter-clear": "Clear filter",
- "filter-labels-label": "Filter by label",
- "filter-no-label": "No label",
- "filter-member-label": "Filter by member",
- "filter-no-member": "No member",
- "filter-assignee-label": "Filter by assignee",
- "filter-no-assignee": "No assignee",
- "filter-custom-fields-label": "Filter by Custom Fields",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-show-archive": "Show archived lists",
- "filter-hide-empty": "Hide empty lists",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "other-filters-label": "Other Filters",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "impersonate-user": "Impersonate user",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-board-title-csv": "Import board from CSV/TSV",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "from-csv": "From CSV/TSV",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-csv-placeholder": "Paste your valid CSV/TSV data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "settingsUserPopup-title": "User Settings",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "登入",
- "loginPopup-title": "登入",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-label": "Set label for selection",
- "multi-selection-member": "Set member for selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "儲存",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
- "search-example": "Write text you search and press Enter",
- "select-color": "Select Color",
- "select-board": "Select Board",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-searchbar": "Toggle Search Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
- "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
- "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
- "custom-login-logo-image-url": "Custom Login Logo Image URL",
- "custom-login-logo-link-url": "Custom Login Logo Link URL",
- "text-below-custom-login-logo": "Text below Custom Login Logo",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "webhook-title": "Webhook Name",
- "webhook-token": "Token (Optional for Authentication)",
- "outgoing-webhooks": "Outgoing Webhooks",
- "bidirectional-webhooks": "Two-Way Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "disable-webhook": "Disable This Webhook",
- "global-webhook": "Global Webhooks",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "Meteor_version": "Meteor version",
- "MongoDB_version": "MongoDB version",
- "MongoDB_storage_engine": "MongoDB storage engine",
- "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "card-settings": "Card Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "boardCardSettingsPopup-title": "Card Settings",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-trigger": "Trigger",
- "r-action": "Action",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "Added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-of": "of",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after start",
- "add-custom-html-before-body-end": "Add Custom HTML before end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
- "act-withDue": "__list__/__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account",
- "hide-minicard-label-text": "Hide minicard label text",
- "show-desktop-drag-handles": "Show desktop drag handles",
- "assignee": "Assignee",
- "cardAssigneesPopup-title": "Assignee",
- "addmore-detail": "Add a more detailed description",
- "show-on-card": "Show on Card",
- "new": "New",
- "editUserPopup-title": "Edit User",
- "newUserPopup-title": "New User",
- "notifications": "Notifications",
- "view-all": "View All",
- "filter-by-unread": "Filter by Unread",
- "mark-all-as-read": "Mark all as read",
- "remove-all-read": "Remove all read",
- "allow-rename": "Allow Rename",
- "allowRenamePopup-title": "Allow Rename",
- "start-day-of-week": "Set day of the week start",
- "monday": "Monday",
- "tuesday": "Tuesday",
- "wednesday": "Wednesday",
- "thursday": "Thursday",
- "friday": "Friday",
- "saturday": "Saturday",
- "sunday": "Sunday",
- "status": "Status",
- "swimlane": "Swimlane",
- "owner": "Owner",
- "last-modified-at": "Last modified at",
- "last-activity": "Last activity",
- "voting": "Voting",
- "archived": "Archived",
- "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
- "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
- "hide-checked-items": "Hide checked items",
- "task": "Task",
- "create-task": "Create Task",
- "ok": "OK"
-}
\ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist %s of %s",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "activity-editComment": "edited comment %s",
+ "activity-deleteComment": "deleted comment %s",
+ "activity-receivedDate": "edited received date to %s of %s",
+ "activity-startDate": "edited start date to %s of %s",
+ "activity-dueDate": "edited due date to %s of %s",
+ "activity-endDate": "edited end date to %s of %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (520KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be private.",
+ "board-public-info": "This board will be public.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boardChangeViewPopup-title": "Board View",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-collapse": "Collapse",
+ "board-view-gantt": "Gantt",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardStartVotingPopup-title": "Start a vote",
+ "positiveVoteMembersPopup-title": "Proponents",
+ "negativeVoteMembersPopup-title": "Opponents",
+ "card-edit-voting": "Edit voting",
+ "editVoteEndDatePopup-title": "Change vote end date",
+ "allowNonBoardMembers": "Allow all logged in users",
+ "vote-question": "Voting question",
+ "vote-public": "Show who voted what",
+ "vote-for-it": "for it",
+ "vote-against": "against",
+ "deleteVotePopup-title": "Delete vote?",
+ "vote-delete-pop": "Deleting is permanent. You will lose all actions associated with this vote.",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "worker": "Worker",
+ "worker-desc": "Can only move cards, assign itself to card and comment.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-currency": "Currency",
+ "custom-field-currency-option": "Currency Code",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-csv-schema": "Your CSV(Comma Separated Values)/TSV (Tab Separated Values) does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "export-board-json": "Export board to JSON",
+ "export-board-csv": "Export board to CSV",
+ "export-board-tsv": "Export board to TSV",
+ "export-board-html": "Export board to HTML",
+ "exportBoardPopup-title": "Export board",
+ "sort": "Sort",
+ "sort-desc": "Click to Sort List",
+ "list-sort-by": "Sort the List By:",
+ "list-label-modifiedAt": "Last Access Time",
+ "list-label-title": "Name of the List",
+ "list-label-sort": "Your Manual Order",
+ "list-label-short-modifiedAt": "(L)",
+ "list-label-short-title": "(N)",
+ "list-label-short-sort": "(M)",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards or Lists",
+ "list-filter-label": "Filter List by Title",
+ "filter-clear": "Clear filter",
+ "filter-labels-label": "Filter by label",
+ "filter-no-label": "No label",
+ "filter-member-label": "Filter by member",
+ "filter-no-member": "No member",
+ "filter-assignee-label": "Filter by assignee",
+ "filter-no-assignee": "No assignee",
+ "filter-custom-fields-label": "Filter by Custom Fields",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-show-archive": "Show archived lists",
+ "filter-hide-empty": "Hide empty lists",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "other-filters-label": "Other Filters",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "impersonate-user": "Impersonate user",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-board-title-csv": "Import board from CSV/TSV",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "from-csv": "From CSV/TSV",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-csv": "Paste in your Comma Separated Values(CSV)/ Tab Separated Values (TSV) .",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-csv-placeholder": "Paste your valid CSV/TSV data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "settingsUserPopup-title": "User Settings",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listImportCardsTsvPopup-title": "Import Excel CSV/TSV",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "登入",
+ "loginPopup-title": "登入",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-label": "Set label for selection",
+ "multi-selection-member": "Set member for selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by logging in.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "儲存",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card/list titles, descriptions and custom fields on this board",
+ "search-example": "Write text you search and press Enter",
+ "select-color": "Select Color",
+ "select-board": "Select Board",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-searchbar": "Toggle Search Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "custom-top-left-corner-logo-image-url": "Custom Top Left Corner Logo Image URL",
+ "custom-top-left-corner-logo-link-url": "Custom Top Left Corner Logo Link URL",
+ "custom-top-left-corner-logo-height": "Custom Top Left Corner Logo Height. Default: 27",
+ "custom-login-logo-image-url": "Custom Login Logo Image URL",
+ "custom-login-logo-link-url": "Custom Login Logo Link URL",
+ "text-below-custom-login-logo": "Text below Custom Login Logo",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "webhook-title": "Webhook Name",
+ "webhook-token": "Token (Optional for Authentication)",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "bidirectional-webhooks": "Two-Way Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "disable-webhook": "Disable This Webhook",
+ "global-webhook": "Global Webhooks",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "Meteor_version": "Meteor version",
+ "MongoDB_version": "MongoDB version",
+ "MongoDB_storage_engine": "MongoDB storage engine",
+ "MongoDB_Oplog_enabled": "MongoDB Oplog enabled",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "card-settings": "Card Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "boardCardSettingsPopup-title": "Card Settings",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-trigger": "Trigger",
+ "r-action": "Action",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "Added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-of": "of",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after start",
+ "add-custom-html-before-body-end": "Add Custom HTML before end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-newDue": "__list__/__card__ has 1st due reminder [__board__]",
+ "act-withDue": "__list__/__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __list__/__card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text",
+ "show-desktop-drag-handles": "Show desktop drag handles",
+ "assignee": "Assignee",
+ "cardAssigneesPopup-title": "Assignee",
+ "addmore-detail": "Add a more detailed description",
+ "show-on-card": "Show on Card",
+ "new": "New",
+ "editUserPopup-title": "Edit User",
+ "newUserPopup-title": "New User",
+ "notifications": "Notifications",
+ "view-all": "View All",
+ "filter-by-unread": "Filter by Unread",
+ "mark-all-as-read": "Mark all as read",
+ "remove-all-read": "Remove all read",
+ "allow-rename": "Allow Rename",
+ "allowRenamePopup-title": "Allow Rename",
+ "start-day-of-week": "Set day of the week start",
+ "monday": "Monday",
+ "tuesday": "Tuesday",
+ "wednesday": "Wednesday",
+ "thursday": "Thursday",
+ "friday": "Friday",
+ "saturday": "Saturday",
+ "sunday": "Sunday",
+ "status": "Status",
+ "swimlane": "Swimlane",
+ "owner": "Owner",
+ "last-modified-at": "Last modified at",
+ "last-activity": "Last activity",
+ "voting": "Voting",
+ "archived": "Archived",
+ "delete-linked-card-before-this-card": "You can not delete this card before first deleting linked card that has",
+ "delete-linked-cards-before-this-list": "You can not delete this list before first deleting linked cards that are pointing to cards in this list",
+ "hide-checked-items": "Hide checked items",
+ "task": "Task",
+ "create-task": "Create Task",
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
+}
diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json
index c5a1e89ed..b88525a3b 100644
--- a/i18n/zh-TW.i18n.json
+++ b/i18n/zh-TW.i18n.json
@@ -774,6 +774,8 @@
"display-authentication-method": "顯示認證方式",
"default-authentication-method": "預設認證方式",
"duplicate-board": "複製看板",
+ "org-number": "The number of organizations is:",
+ "team-number": "The number of teams is:",
"people-number": "人數是:",
"swimlaneDeletePopup-title": "是否刪除泳道?",
"swimlane-delete-pop": "所有動作將從活動來源中刪除,您將無法恢復泳道。此操作無法還原。",
@@ -836,5 +838,11 @@
"hide-checked-items": "隱藏已勾選項目",
"task": "任務",
"create-task": "建立任務",
- "ok": "OK"
+ "ok": "OK",
+ "organizations": "Organizations",
+ "teams": "Teams",
+ "displayName": "Display Name",
+ "shortName": "Short Name",
+ "website": "Website",
+ "person": "Person"
}
diff --git a/models/org.js b/models/org.js
index a24d829db..adbf7a729 100644
--- a/models/org.js
+++ b/models/org.js
@@ -1,7 +1,7 @@
Org = new Mongo.Collection('org');
/**
- * A Organization in wekan
+ * A Organization in Wekan. A Enterprise in Trello.
*/
Org.attachSchema(
new SimpleSchema({
@@ -18,76 +18,96 @@ Org.attachSchema(
}
},
},
- version: {
+ displayName: {
/**
- * the version of the organization
+ * the name to display for the organization
*/
- type: Number,
+ type: String,
optional: true,
},
- name: {
+ desc: {
/**
- * name of the organization
+ * the description the organization
*/
type: String,
optional: true,
max: 190,
},
- address1: {
+ name: {
/**
- * address1 of the organization
+ * short name of the organization
*/
type: String,
optional: true,
max: 255,
},
- address2: {
+ website: {
/**
- * address2 of the organization
+ * website of the organization
*/
type: String,
optional: true,
max: 255,
},
- city: {
+ teams: {
/**
- * city of the organization
+ * List of teams of a organization
*/
- type: String,
- optional: true,
- max: 255,
+ type: [Object],
+ // eslint-disable-next-line consistent-return
+ autoValue() {
+ if (this.isInsert && !this.isSet) {
+ return [
+ {
+ teamId: this.teamId,
+ isAdmin: true,
+ isActive: true,
+ isNoComments: false,
+ isCommentOnly: false,
+ isWorker: false,
+ },
+ ];
+ }
+ },
},
- state: {
+ 'teams.$.teamId': {
/**
- * state of the organization
+ * The uniq ID of the team
*/
type: String,
- optional: true,
- max: 255,
},
- zipCode: {
+ 'teams.$.isAdmin': {
/**
- * zipCode of the organization
+ * Is the team an admin of the board?
*/
- type: String,
- optional: true,
- max: 50,
+ type: Boolean,
},
- country: {
+ 'teams.$.isActive': {
/**
- * country of the organization
+ * Is the team active?
*/
- type: String,
- optional: true,
- max: 255,
+ type: Boolean,
},
- billingEmail: {
+ 'teams.$.isNoComments': {
/**
- * billingEmail of the organization
+ * Is the team not allowed to make comments
*/
- type: String,
+ type: Boolean,
+ optional: true,
+ },
+ 'teams.$.isCommentOnly': {
+ /**
+ * Is the team only allowed to comment on the board
+ */
+ type: Boolean,
+ optional: true,
+ },
+ 'teams.$.isWorker': {
+ /**
+ * Is the team only allowed to move card, assign himself to card and comment
+ */
+ type: Boolean,
optional: true,
- max: 255,
},
createdAt: {
/**
diff --git a/models/team.js b/models/team.js
new file mode 100644
index 000000000..dfcbedfcb
--- /dev/null
+++ b/models/team.js
@@ -0,0 +1,90 @@
+Team = new Mongo.Collection('team');
+
+/**
+ * A Team in Wekan. Organization in Trello.
+ */
+Team.attachSchema(
+ new SimpleSchema({
+ _id: {
+ /**
+ * the organization id
+ */
+ type: Number,
+ optional: true,
+ // eslint-disable-next-line consistent-return
+ autoValue() {
+ if (this.isInsert && !this.isSet) {
+ return incrementCounter('counters', 'orgId', 1);
+ }
+ },
+ },
+ displayName: {
+ /**
+ * the name to display for the team
+ */
+ type: String,
+ optional: true,
+ },
+ desc: {
+ /**
+ * the description the team
+ */
+ type: String,
+ optional: true,
+ max: 190,
+ },
+ name: {
+ /**
+ * short name of the team
+ */
+ type: String,
+ optional: true,
+ max: 255,
+ },
+ website: {
+ /**
+ * website of the team
+ */
+ type: String,
+ optional: true,
+ max: 255,
+ },
+ createdAt: {
+ /**
+ * creation date of the team
+ */
+ type: Date,
+ // eslint-disable-next-line consistent-return
+ autoValue() {
+ if (this.isInsert) {
+ return new Date();
+ } else if (this.isUpsert) {
+ return { $setOnInsert: new Date() };
+ } else {
+ this.unset();
+ }
+ },
+ },
+ modifiedAt: {
+ type: Date,
+ denyUpdate: false,
+ // eslint-disable-next-line consistent-return
+ autoValue() {
+ if (this.isInsert || this.isUpsert || this.isUpdate) {
+ return new Date();
+ } else {
+ this.unset();
+ }
+ },
+ },
+ }),
+);
+
+if (Meteor.isServer) {
+ // Index for Team name.
+ Meteor.startup(() => {
+ Team._collection._ensureIndex({ name: -1 });
+ });
+}
+
+export default Team;
diff --git a/models/users.js b/models/users.js
index 4539f978f..7dd011e04 100644
--- a/models/users.js
+++ b/models/users.js
@@ -836,6 +836,34 @@ if (Meteor.isServer) {
}
}
},
+ setEmailVerified(email, verified, userId) {
+ if (Meteor.user() && Meteor.user().isAdmin) {
+ check(email, String);
+ check(verified, Boolean);
+ check(userId, String);
+ Users.update(userId, {
+ $set: {
+ emails: [
+ {
+ address: email,
+ verified,
+ },
+ ],
+ },
+ });
+ }
+ },
+ setInitials(initials, userId) {
+ if (Meteor.user() && Meteor.user().isAdmin) {
+ check(initials, String);
+ check(userId, String);
+ Users.update(userId, {
+ $set: {
+ 'profile.initials': initials,
+ },
+ });
+ }
+ },
// we accept userId, username, email
inviteUserToBoard(username, boardId) {
check(username, String);
diff --git a/package-lock.json b/package-lock.json
index c2a8366aa..13b3bac19 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "v4.64.0",
+ "version": "v4.68.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 6a8f71fde..76f557bfa 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "v4.64.0",
+ "version": "v4.68.0",
"description": "Open-Source kanban",
"private": true,
"scripts": {
diff --git a/public/api/wekan.html b/public/api/wekan.html
index ddd8b8a33..150aa4395 100644
--- a/public/api/wekan.html
+++ b/public/api/wekan.html
@@ -1524,7 +1524,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
-
- Wekan REST API v4.64
+ Wekan REST API v4.68
@@ -2032,7 +2032,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
-
Wekan REST API v4.64
+
Wekan REST API v4.68
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 7cf6ce64e..a1143c6f0 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v4.64
+ version: v4.68
description: |
The REST API allows you to control and extend Wekan with ease.
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 9f8d65138..2cca03eba 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 464,
+ appVersion = 468,
# Increment this for every release.
- appMarketingVersion = (defaultText = "4.64.0~2020-12-24"),
+ appMarketingVersion = (defaultText = "4.68.0~2020-12-29"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/server/publications/org.js b/server/publications/org.js
new file mode 100644
index 000000000..e7dcfdd63
--- /dev/null
+++ b/server/publications/org.js
@@ -0,0 +1,27 @@
+Meteor.publish('org', function(query, limit) {
+ check(query, Match.OneOf(Object, null));
+ check(limit, Number);
+
+ if (!Match.test(this.userId, String)) {
+ return [];
+ }
+
+ const user = Users.findOne(this.userId);
+ if (user && user.isAdmin) {
+ return Org.find(query, {
+ limit,
+ sort: { createdAt: -1 },
+ fields: {
+ displayName: 1,
+ desc: 1,
+ name: 1,
+ website: 1,
+ teams: 1,
+ createdAt: 1,
+ loginDisabled: 1,
+ },
+ });
+ }
+
+ return [];
+});
diff --git a/server/publications/people.js b/server/publications/people.js
index 0a7ef6ee6..6ca454c26 100644
--- a/server/publications/people.js
+++ b/server/publications/people.js
@@ -14,6 +14,7 @@ Meteor.publish('people', function(query, limit) {
fields: {
username: 1,
'profile.fullname': 1,
+ 'profile.initials': 1,
isAdmin: 1,
emails: 1,
createdAt: 1,
diff --git a/server/publications/team.js b/server/publications/team.js
new file mode 100644
index 000000000..aa18a5da6
--- /dev/null
+++ b/server/publications/team.js
@@ -0,0 +1,27 @@
+Meteor.publish('team', function(query, limit) {
+ check(query, Match.OneOf(Object, null));
+ check(limit, Number);
+
+ if (!Match.test(this.userId, String)) {
+ return [];
+ }
+
+ const user = Users.findOne(this.userId);
+ if (user && user.isAdmin) {
+ return Team.find(query, {
+ limit,
+ sort: { createdAt: -1 },
+ fields: {
+ displayName: 1,
+ desc: 1,
+ name: 1,
+ website: 1,
+ teams: 1,
+ createdAt: 1,
+ loginDisabled: 1,
+ },
+ });
+ }
+
+ return [];
+});