Merge remote-tracking branch 'remotes/origin/master' into feature-meteor-files

This commit is contained in:
Lauri Ojansivu 2022-03-01 21:09:55 +02:00
commit b378bb55ac
96 changed files with 559 additions and 25 deletions

View file

@ -1,15 +1,51 @@
[Mac ChangeLog](https://github.com/wekan/wekan/wiki/Mac) [Mac ChangeLog](https://github.com/wekan/wekan/wiki/Mac)
# Upcoming WeKan ® release # v6.09 2022-02-28 WeKan ® release
This release tries to fix the following bugs:
- [Try to fix Admin Panel / Disable Registration and Disable Forgot Password](https://github.com/wekan/wekan/commit/0775e2a3e5c5d98e4d8c1954a15beb0688c73075).
Thanks to urmel1960, Ben0it-T and xet7.
Thanks to above GitHub users for their contributions and translators for their translations.
# v6.08 2022-02-27 WeKan ® release
This release tries to fix the following bugs:
- [Try to allow register and login](https://github.com/wekan/wekan/commit/3076547cee3a5fabe8df106ddbbd6ce1e6c91a8b).
Thanks to xet7.
Thanks to above GitHub users for their contributions and translators for their translations.
# v6.07 2022-02-26 WeKan ® release
This release fixes the following bugs: This release fixes the following bugs:
- [Fix Forgot Password to be optional](https://github.com/wekan/wekan/commit/9bd68794555009f5eabad269ed642efa4e3010f1).
Thanks to xet7.
Thanks to above GitHub users for their contributions and translators for their translations.
# v6.06 2022-02-26 WeKan ® release
This release adds the following new features:
- [Feature/shortcuts for label assignment](https://github.com/wekan/wekan/pull/4377).
Thanks to Viehlieb.
- [Feature/propagate OIDC data](https://github.com/wekan/wekan/pull/4379).
Thanks to Viehlieb.
and fixes the following bugs:
- [Global search: Card Details popup opens now in normal view even if maximized card is configured](https://github.com/wekan/wekan/pull/4352). - [Global search: Card Details popup opens now in normal view even if maximized card is configured](https://github.com/wekan/wekan/pull/4352).
Thanks to mfilser. Thanks to mfilser.
- [Card details, fix header while scrolling](https://github.com/wekan/wekan/pull/4358). - [Card details, fix header while scrolling](https://github.com/wekan/wekan/pull/4358).
Thanks to mfilser. Thanks to mfilser.
- [Add subscription to announcements, so that system wide announcements are shown to all](https://github.com/wekan/wekan/pull/4375). - [Add subscription to announcements, so that system wide announcements are shown to all](https://github.com/wekan/wekan/pull/4375).
Thanks to pablo-ng. Thanks to pablo-ng.
- [Fixed Disable Self-Registration. Added Disable Forgot Password to same Admin Panel page](https://github.com/wekan/wekan/commit/b85db43c4755cf54e550f664311cd95097d68ae1).
Thanks to xet7.
Thanks to above GitHub users for their contributions and translators for their translations. Thanks to above GitHub users for their contributions and translators for their translations.

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v6.05.0" appVersion: "v6.09.0"
files: files:
userUploads: userUploads:
- README.md - README.md

View file

@ -53,6 +53,19 @@ Template.userFormsLayout.onCreated(function() {
$('.at-pwd-form').hide(); $('.at-pwd-form').hide();
} }
}); });
Meteor.call('isDisableRegistration', (_, result) => {
if (result) {
$('.at-signup-link').hide();
}
});
Meteor.call('isDisableForgotPassword', (_, result) => {
if (result) {
$('.at-pwd-link').hide();
}
});
}); });
Template.userFormsLayout.onRendered(() => { Template.userFormsLayout.onRendered(() => {

View file

@ -63,6 +63,11 @@ template(name="webhookSettings")
template(name="general") template(name="general")
ul#registration-setting.setting-detail ul#registration-setting.setting-detail
li
a.flex.js-toggle-forgot-password
.materialCheckBox(class="{{#if currentSetting.disableForgotPassword}}is-checked{{/if}}")
span {{_ 'disable-forgot-password'}}
li li
a.flex.js-toggle-registration a.flex.js-toggle-registration
.materialCheckBox(class="{{#if currentSetting.disableRegistration}}is-checked{{/if}}") .materialCheckBox(class="{{#if currentSetting.disableRegistration}}is-checked{{/if}}")

View file

@ -4,6 +4,7 @@ BlazeComponent.extendComponent({
onCreated() { onCreated() {
this.error = new ReactiveVar(''); this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false); this.loading = new ReactiveVar(false);
this.forgotPasswordSetting = new ReactiveVar(true);
this.generalSetting = new ReactiveVar(true); this.generalSetting = new ReactiveVar(true);
this.emailSetting = new ReactiveVar(false); this.emailSetting = new ReactiveVar(false);
this.accountSetting = new ReactiveVar(false); this.accountSetting = new ReactiveVar(false);
@ -56,6 +57,14 @@ BlazeComponent.extendComponent({
}, },
); );
}, },
toggleForgotPassword() {
this.setLoading(true);
const forgotPasswordClosed = this.currentSetting().disableForgotPassword;
Settings.update(Settings.findOne()._id, {
$set: { disableForgotPassword: !forgotPasswordClosed },
});
this.setLoading(false);
},
toggleRegistration() { toggleRegistration() {
this.setLoading(true); this.setLoading(true);
const registrationClosed = this.currentSetting().disableRegistration; const registrationClosed = this.currentSetting().disableRegistration;
@ -84,6 +93,7 @@ BlazeComponent.extendComponent({
$('.side-menu li.active').removeClass('active'); $('.side-menu li.active').removeClass('active');
target.parent().addClass('active'); target.parent().addClass('active');
const targetID = target.data('id'); const targetID = target.data('id');
this.forgotPasswordSetting.set('forgot-password-setting' === targetID);
this.generalSetting.set('registration-setting' === targetID); this.generalSetting.set('registration-setting' === targetID);
this.emailSetting.set('email-setting' === targetID); this.emailSetting.set('email-setting' === targetID);
this.accountSetting.set('account-setting' === targetID); this.accountSetting.set('account-setting' === targetID);
@ -267,6 +277,7 @@ BlazeComponent.extendComponent({
events() { events() {
return [ return [
{ {
'click a.js-toggle-forgot-password': this.toggleForgotPassword,
'click a.js-toggle-registration': this.toggleRegistration, 'click a.js-toggle-registration': this.toggleRegistration,
'click a.js-toggle-tls': this.toggleTLS, 'click a.js-toggle-tls': this.toggleTLS,
'click a.js-setting-menu': this.switchMenu, 'click a.js-setting-menu': this.switchMenu,

View file

@ -8,7 +8,7 @@ function getHoveredCardId() {
} }
function getSelectedCardId() { function getSelectedCardId() {
return Session.get('selectedCard') || getHoveredCardId(); return Session.get('currentCard') || Session.get('selectedCard') || getHoveredCardId();
} }
Mousetrap.bind('?', () => { Mousetrap.bind('?', () => {
@ -68,6 +68,67 @@ Mousetrap.bind(['down', 'up'], (evt, key) => {
} }
}); });
numbArray = _.range(1,10).map(x => 'shift+'+String(x))
Mousetrap.bind(numbArray, (evt, key) => {
num = parseInt(key.substr(6, key.length));
const currentUserId = Meteor.userId();
if (currentUserId === null) {
return;
}
const currentBoardId = Session.get('currentBoard');
board = Boards.findOne(currentBoardId);
labels = board.labels;
if(MultiSelection.isActive())
{
const cardIds = MultiSelection.getSelectedCardIds();
for (const cardId of cardIds)
{
card = Cards.findOne(cardId);
if(num <= board.labels.length)
{
card.removeLabel(labels[num-1]["_id"]);
}
}
}
});
numArray = _.range(1,10).map(x => String(x))
Mousetrap.bind(numArray, (evt, key) => {
num = parseInt(key);
const currentUserId = Meteor.userId();
const currentBoardId = Session.get('currentBoard');
if (currentUserId === null) {
return;
}
board = Boards.findOne(currentBoardId);
labels = board.labels;
if(MultiSelection.isActive() && Meteor.user().isBoardMember())
{
const cardIds = MultiSelection.getSelectedCardIds();
for (const cardId of cardIds)
{
card = Cards.findOne(cardId);
if(num <= board.labels.length)
{
card.addLabel(labels[num-1]["_id"]);
}
}
return;
}
const cardId = getSelectedCardId();
if (!cardId) {
return;
}
if (Meteor.user().isBoardMember()) {
const card = Cards.findOne(cardId);
if(num <= board.labels.length)
{
card.toggleLabel(labels[num-1]["_id"]);
}
}
});
Mousetrap.bind('space', evt => { Mousetrap.bind('space', evt => {
const cardId = getSelectedCardId(); const cardId = getSelectedCardId();
if (!cardId) { if (!cardId) {
@ -154,5 +215,13 @@ Template.keyboardShortcuts.helpers({
keys: ['c'], keys: ['c'],
action: 'archive-card', action: 'archive-card',
}, },
{
keys: ['number keys 1-9'],
action: 'toggle-labels'
},
{
keys: ['shift + number keys 1-9'],
action: 'remove-labels-multiselect'
},
], ],
}); });

View file

@ -83,6 +83,9 @@ MultiSelection = {
isEmpty() { isEmpty() {
return this.count() === 0; return this.count() === 0;
}, },
getSelectedCardIds(){
return this._selectedCards.curValue;
},
activate() { activate() {
if (!this.isActive()) { if (!this.isActive()) {

View file

@ -1,5 +1,32 @@
const passwordField = AccountsTemplates.removeField('password'); const passwordField = AccountsTemplates.removeField('password');
const emailField = AccountsTemplates.removeField('email'); const emailField = AccountsTemplates.removeField('email');
let disableRegistration = false;
let disableForgotPassword = false;
let passwordLoginDisabled = false;
Meteor.call('isPasswordLoginDisabled', (_, result) => {
if (result) {
passwordLoginDisabled = true;
//console.log('passwordLoginDisabled');
//console.log(result);
}
});
Meteor.call('isDisableRegistration', (_, result) => {
if (result) {
disableRegistration = true;
//console.log('disableRegistration');
//console.log(result);
}
});
Meteor.call('isDisableForgotPassword', (_, result) => {
if (result) {
disableForgotPassword = true;
//console.log('disableForgotPassword');
//console.log(result);
}
});
AccountsTemplates.addFields([ AccountsTemplates.addFields([
{ {
@ -27,7 +54,8 @@ AccountsTemplates.configure({
confirmPassword: true, confirmPassword: true,
enablePasswordChange: true, enablePasswordChange: true,
sendVerificationEmail: true, sendVerificationEmail: true,
showForgotPasswordLink: true, showForgotPasswordLink: !disableForgotPassword,
forbidClientAccountCreation: disableRegistration,
onLogoutHook() { onLogoutHook() {
const homePage = 'home'; const homePage = 'home';
if (FlowRouter.getRouteName() === homePage) { if (FlowRouter.getRouteName() === homePage) {
@ -38,11 +66,21 @@ AccountsTemplates.configure({
}, },
}); });
if (!disableForgotPassword) {
[
'forgotPwd',
'resetPwd',
].forEach(routeName => AccountsTemplates.configureRoute(routeName));
}
if (!disableRegistration) {
[
'signUp',
].forEach(routeName => AccountsTemplates.configureRoute(routeName));
}
[ [
'signIn', 'signIn',
'signUp',
'resetPwd',
'forgotPwd',
'enrollAccount', 'enrollAccount',
].forEach(routeName => AccountsTemplates.configureRoute(routeName)); ].forEach(routeName => AccountsTemplates.configureRoute(routeName));

View file

@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
appVersion: "6.05" appVersion: "6.09"
dependencies: dependencies:
- condition: mongodb.enabled - condition: mongodb.enabled
name: mongodb name: mongodb

View file

@ -14,7 +14,7 @@ serviceAccounts:
## ##
image: image:
repository: quay.io/wekan/wekan repository: quay.io/wekan/wekan
tag: v6.05 tag: v6.09
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
## Configuration for wekan component ## Configuration for wekan component

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "الوقت", "time": "الوقت",
"title": "عنوان", "title": "عنوان",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "تتبع", "tracking": "تتبع",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "النوع", "type": "النوع",
@ -610,6 +612,7 @@
"people": "الناس", "people": "الناس",
"registration": "تسجيل", "registration": "تسجيل",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "دعوة", "invite": "دعوة",
"invite-people": "الناس المدعوين", "invite-people": "الناس المدعوين",
"to-boards": "إلى اللوحات", "to-boards": "إلى اللوحات",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Има карти с изработено време", "has-spenttime-cards": "Има карти с изработено време",
"time": "Време", "time": "Време",
"title": "Заглавие", "title": "Заглавие",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Следене", "tracking": "Следене",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Тип", "type": "Тип",
@ -610,6 +612,7 @@
"people": "Хора", "people": "Хора",
"registration": "Регистрация", "registration": "Регистрация",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Покани", "invite": "Покани",
"invite-people": "Покани хора", "invite-people": "Покани хора",
"to-boards": "в табло/а", "to-boards": "в табло/а",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Té fitxes amb temps dedicat", "has-spenttime-cards": "Té fitxes amb temps dedicat",
"time": "Hora", "time": "Hora",
"title": "Títol", "title": "Títol",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "En seguiment", "tracking": "En seguiment",
"tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre", "tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre",
"type": "Tipus", "type": "Tipus",
@ -610,6 +612,7 @@
"people": "Persones", "people": "Persones",
"registration": "Registre", "registration": "Registre",
"disable-self-registration": "Deshabilita Auto-Registre", "disable-self-registration": "Deshabilita Auto-Registre",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Convida", "invite": "Convida",
"invite-people": "Convida a persones", "invite-people": "Convida a persones",
"to-boards": "Al tauler(s)", "to-boards": "Al tauler(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Obsahuje karty se stráveným časem", "has-spenttime-cards": "Obsahuje karty se stráveným časem",
"time": "Čas", "time": "Čas",
"title": "Název", "title": "Název",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Pozorující", "tracking": "Pozorující",
"tracking-info": "Budete informováni o všech změnách v kartách, u kterých jste tvůrce nebo člen.", "tracking-info": "Budete informováni o všech změnách v kartách, u kterých jste tvůrce nebo člen.",
"type": "Typ", "type": "Typ",
@ -610,6 +612,7 @@
"people": "Lidé", "people": "Lidé",
"registration": "Registrace", "registration": "Registrace",
"disable-self-registration": "Vypnout svévolnou registraci", "disable-self-registration": "Vypnout svévolnou registraci",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Pozvánka", "invite": "Pozvánka",
"invite-people": "Pozvat lidi", "invite-people": "Pozvat lidi",
"to-boards": "Do tabel", "to-boards": "Do tabel",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Har kort med anvendt tid", "has-spenttime-cards": "Har kort med anvendt tid",
"time": "Tid", "time": "Tid",
"title": "Titel", "title": "Titel",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Sporing", "tracking": "Sporing",
"tracking-info": "Du vil få notifikation om alle ændringer i kort som du har oprettet eller er medlem af.", "tracking-info": "Du vil få notifikation om alle ændringer i kort som du har oprettet eller er medlem af.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Personer", "people": "Personer",
"registration": "Tilmelding", "registration": "Tilmelding",
"disable-self-registration": "Slå selv-tilmelding fra", "disable-self-registration": "Slå selv-tilmelding fra",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invitér", "invite": "Invitér",
"invite-people": "Invitér personer", "invite-people": "Invitér personer",
"to-boards": "Til tavle(r)", "to-boards": "Til tavle(r)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten", "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
"time": "Zeit", "time": "Zeit",
"title": "Titel", "title": "Titel",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Folgen", "tracking": "Folgen",
"tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.", "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
"type": "Typ", "type": "Typ",
@ -610,6 +612,7 @@
"people": "Nutzer", "people": "Nutzer",
"registration": "Registrierung", "registration": "Registrierung",
"disable-self-registration": "Selbstregistrierung deaktivieren", "disable-self-registration": "Selbstregistrierung deaktivieren",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Einladen", "invite": "Einladen",
"invite-people": "Nutzer einladen", "invite-people": "Nutzer einladen",
"to-boards": "In Board(s)", "to-boards": "In Board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten", "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
"time": "Zeit", "time": "Zeit",
"title": "Titel", "title": "Titel",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Folgen", "tracking": "Folgen",
"tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.", "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
"type": "Typ", "type": "Typ",
@ -610,6 +612,7 @@
"people": "Nutzer", "people": "Nutzer",
"registration": "Registrierung", "registration": "Registrierung",
"disable-self-registration": "Selbstregistrierung deaktivieren", "disable-self-registration": "Selbstregistrierung deaktivieren",
"disable-forgot-password": "\"Passwort vergessen\" deaktivieren",
"invite": "Einladen", "invite": "Einladen",
"invite-people": "Nutzer einladen", "invite-people": "Nutzer einladen",
"to-boards": "In Board(s)", "to-boards": "In Board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten", "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
"time": "Zeit", "time": "Zeit",
"title": "Titel", "title": "Titel",
"toggle-labels": "Label 1-9 zur Karte hinzufügen. Bei Mehrfachauswahl Label 1-9 hinzufügen",
"remove-labels-multiselect": "Labels 1-9 bei Karten-Mehrfachauswahl entfernen",
"tracking": "Folgen", "tracking": "Folgen",
"tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.", "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
"type": "Typ", "type": "Typ",
@ -609,7 +611,8 @@
"settings": "Einstellungen", "settings": "Einstellungen",
"people": "Nutzer", "people": "Nutzer",
"registration": "Registrierung", "registration": "Registrierung",
"disable-self-registration": "Selbstregistrierung deaktivieren", "disable-self-registration": "Selbstregistrierung deaktivierenSelbstregistrierung deaktivieren",
"disable-forgot-password": "\"Passwort vergessen\" deaktivieren",
"invite": "Einladen", "invite": "Einladen",
"invite-people": "Nutzer einladen", "invite-people": "Nutzer einladen",
"to-boards": "In Board(s)", "to-boards": "In Board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Έχει κάρτες με δαπανηθέντα χρόνο", "has-spenttime-cards": "Έχει κάρτες με δαπανηθέντα χρόνο",
"time": "Ώρα", "time": "Ώρα",
"title": "Τίτλος", "title": "Τίτλος",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Καταγραφή", "tracking": "Καταγραφή",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Τύπος", "type": "Τύπος",
@ -610,6 +612,7 @@
"people": "Άνθρωποι", "people": "Άνθρωποι",
"registration": "Εγγραφή", "registration": "Εγγραφή",
"disable-self-registration": "Απενεργοποίηση Αυτό-Εγγραφής", "disable-self-registration": "Απενεργοποίηση Αυτό-Εγγραφής",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Πρόσκληση", "invite": "Πρόσκληση",
"invite-people": "Πρόσκάλεσε Ανθρώπους", "invite-people": "Πρόσκάλεσε Ανθρώπους",
"to-boards": "Στον πίνακα(ες)", "to-boards": "Στον πίνακα(ες)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Tempo", "time": "Tempo",
"title": "Titolo", "title": "Titolo",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -179,7 +179,7 @@
"cardCustomFieldsPopup-title": "Editar campos personalizados", "cardCustomFieldsPopup-title": "Editar campos personalizados",
"cardStartVotingPopup-title": "Start a vote", "cardStartVotingPopup-title": "Start a vote",
"positiveVoteMembersPopup-title": "Proponents", "positiveVoteMembersPopup-title": "Proponents",
"negativeVoteMembersPopup-title": "Opponents", "negativeVoteMembersPopup-title": "Oponentes",
"card-edit-voting": "Edit voting", "card-edit-voting": "Edit voting",
"editVoteEndDatePopup-title": "Change vote end date", "editVoteEndDatePopup-title": "Change vote end date",
"allowNonBoardMembers": "Allow all logged in users", "allowNonBoardMembers": "Allow all logged in users",
@ -571,6 +571,8 @@
"has-spenttime-cards": "Ha gastado tarjetas de tiempo", "has-spenttime-cards": "Ha gastado tarjetas de tiempo",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Seguimiento", "tracking": "Seguimiento",
"tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.", "tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Gente", "people": "Gente",
"registration": "Registro", "registration": "Registro",
"disable-self-registration": "Desactivar auto-registro", "disable-self-registration": "Desactivar auto-registro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invitar", "invite": "Invitar",
"invite-people": "Invitar Gente", "invite-people": "Invitar Gente",
"to-boards": "A tarjeta(s)", "to-boards": "A tarjeta(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas", "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Siguiendo", "tracking": "Siguiendo",
"tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.", "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Personas", "people": "Personas",
"registration": "Registro", "registration": "Registro",
"disable-self-registration": "Deshabilitar autoregistro", "disable-self-registration": "Deshabilitar autoregistro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invitar", "invite": "Invitar",
"invite-people": "Invitar a personas", "invite-people": "Invitar a personas",
"to-boards": "A el(los) tablero(s)", "to-boards": "A el(los) tablero(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas", "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Siguiendo", "tracking": "Siguiendo",
"tracking-info": "Será notificado de cualquier cambio en las tarjetas en las que participa como creador o miembro.", "tracking-info": "Será notificado de cualquier cambio en las tarjetas en las que participa como creador o miembro.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Personas", "people": "Personas",
"registration": "Registro", "registration": "Registro",
"disable-self-registration": "Deshabilitar autoregistro", "disable-self-registration": "Deshabilitar autoregistro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invitar", "invite": "Invitar",
"invite-people": "Invitar a personas", "invite-people": "Invitar a personas",
"to-boards": "A el(los) tablero(s)", "to-boards": "A el(los) tablero(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas", "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Siguiendo", "tracking": "Siguiendo",
"tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.", "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Personas", "people": "Personas",
"registration": "Registro", "registration": "Registro",
"disable-self-registration": "Deshabilitar autoregistro", "disable-self-registration": "Deshabilitar autoregistro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invitar", "invite": "Invitar",
"invite-people": "Invitar a personas", "invite-people": "Invitar a personas",
"to-boards": "A el(los) tablero(s)", "to-boards": "A el(los) tablero(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "On veetnud aega kaardid", "has-spenttime-cards": "On veetnud aega kaardid",
"time": "Aeg", "time": "Aeg",
"title": "Pealkiri", "title": "Pealkiri",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Jälgimine", "tracking": "Jälgimine",
"tracking-info": "Teid teavitatakse kõigist muudatustest nende kaartide puhul, millega olete seotud loojana või liikmena.", "tracking-info": "Teid teavitatakse kõigist muudatustest nende kaartide puhul, millega olete seotud loojana või liikmena.",
"type": "Tüüp", "type": "Tüüp",
@ -610,6 +612,7 @@
"people": "Inimesed", "people": "Inimesed",
"registration": "Registreerimine", "registration": "Registreerimine",
"disable-self-registration": "Iseregistreerimise väljalülitamine", "disable-self-registration": "Iseregistreerimise väljalülitamine",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Kutsu", "invite": "Kutsu",
"invite-people": "Kutsuge inimesi", "invite-people": "Kutsuge inimesi",
"to-boards": "Tahvli(de)le", "to-boards": "Tahvli(de)le",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Erabilitako denbora txartelak ditu", "has-spenttime-cards": "Erabilitako denbora txartelak ditu",
"time": "Ordua", "time": "Ordua",
"title": "Izenburua", "title": "Izenburua",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Jarraitzen", "tracking": "Jarraitzen",
"tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.", "tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Jendea", "people": "Jendea",
"registration": "Izen-ematea", "registration": "Izen-ematea",
"disable-self-registration": "Desgaitu nork bere burua erregistratzea", "disable-self-registration": "Desgaitu nork bere burua erregistratzea",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Gonbidatu", "invite": "Gonbidatu",
"invite-people": "Gonbidatu jendea", "invite-people": "Gonbidatu jendea",
"to-boards": "Arbele(ta)ra", "to-boards": "Arbele(ta)ra",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "زمان", "time": "زمان",
"title": "عنوان", "title": "عنوان",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "پیگردی", "tracking": "پیگردی",
"tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد", "tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد",
"type": "نوع", "type": "نوع",
@ -610,6 +612,7 @@
"people": "افراد", "people": "افراد",
"registration": "ثبت نام", "registration": "ثبت نام",
"disable-self-registration": "‌غیرفعال‌سازی خودثبت‌نامی", "disable-self-registration": "‌غیرفعال‌سازی خودثبت‌نامی",
"disable-forgot-password": "Disable Forgot Password",
"invite": "دعوت", "invite": "دعوت",
"invite-people": "دعوت از افراد", "invite-people": "دعوت از افراد",
"to-boards": "به برد(ها)", "to-boards": "به برد(ها)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Sisältää käytetty aika -kortteja", "has-spenttime-cards": "Sisältää käytetty aika -kortteja",
"time": "Aika", "time": "Aika",
"title": "Otsikko", "title": "Otsikko",
"toggle-labels": "Muokkaa nimilappujen 1-9 näkyvyyttä kortilla. Monivalinta lisää nimilaput 1-9",
"remove-labels-multiselect": "Monivalinta poistaa nimilaput 1-9",
"tracking": "Ilmoitukset", "tracking": "Ilmoitukset",
"tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.", "tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.",
"type": "Tyyppi", "type": "Tyyppi",
@ -610,6 +612,7 @@
"people": "Ihmiset", "people": "Ihmiset",
"registration": "Rekisteröinti", "registration": "Rekisteröinti",
"disable-self-registration": "Poista käytöstä itserekisteröityminen", "disable-self-registration": "Poista käytöstä itserekisteröityminen",
"disable-forgot-password": "Poista käytöstä unohditko salasanasi",
"invite": "Kutsu", "invite": "Kutsu",
"invite-people": "Kutsu ihmisiä", "invite-people": "Kutsu ihmisiä",
"to-boards": "Taulu(i)lle", "to-boards": "Taulu(i)lle",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "A des cartes avec du temps passé", "has-spenttime-cards": "A des cartes avec du temps passé",
"time": "Temps", "time": "Temps",
"title": "Titre", "title": "Titre",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Suivi", "tracking": "Suivi",
"tracking-info": "Vous serez notifié de toute modification concernant les cartes pour lesquelles vous êtes impliqué en tant que créateur ou participant.", "tracking-info": "Vous serez notifié de toute modification concernant les cartes pour lesquelles vous êtes impliqué en tant que créateur ou participant.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Personne", "people": "Personne",
"registration": "Inscription", "registration": "Inscription",
"disable-self-registration": "Désactiver l'inscription", "disable-self-registration": "Désactiver l'inscription",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Inviter", "invite": "Inviter",
"invite-people": "Inviter une personne", "invite-people": "Inviter une personne",
"to-boards": "Au(x) tableau(x)", "to-boards": "Au(x) tableau(x)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Seguimento", "tracking": "Seguimento",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Persoas", "people": "Persoas",
"registration": "Rexistro", "registration": "Rexistro",
"disable-self-registration": "Desactivar o auto-rexistro", "disable-self-registration": "Desactivar o auto-rexistro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Convidar", "invite": "Convidar",
"invite-people": "Convidar persoas", "invite-people": "Convidar persoas",
"to-boards": "Ao(s) taboleiro(s)", "to-boards": "Ao(s) taboleiro(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Hora", "time": "Hora",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Seguimento", "tracking": "Seguimento",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Persoas", "people": "Persoas",
"registration": "Rexistro", "registration": "Rexistro",
"disable-self-registration": "Desactivar o auto-rexistro", "disable-self-registration": "Desactivar o auto-rexistro",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Convidar", "invite": "Convidar",
"invite-people": "Convidar persoas", "invite-people": "Convidar persoas",
"to-boards": "Ao(s) taboleiro(s)", "to-boards": "Ao(s) taboleiro(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "יש כרטיסי זמן שהושקע", "has-spenttime-cards": "יש כרטיסי זמן שהושקע",
"time": "זמן", "time": "זמן",
"title": "כותרת", "title": "כותרת",
"toggle-labels": "החלפת מצב תוויות 1-9 לכרטיס. בחירה מרוכזת מוסיפה תוויות 1-9",
"remove-labels-multiselect": "בחירה מרוכזת מסירה תוויות 1-9",
"tracking": "מעקב", "tracking": "מעקב",
"tracking-info": "על כל שינוי בכרטיסים בהם הייתה לך מעורבות ברמת היצירה או כחברות תגיע אליך הודעה.", "tracking-info": "על כל שינוי בכרטיסים בהם הייתה לך מעורבות ברמת היצירה או כחברות תגיע אליך הודעה.",
"type": "סוג", "type": "סוג",
@ -610,6 +612,7 @@
"people": "אנשים", "people": "אנשים",
"registration": "הרשמה", "registration": "הרשמה",
"disable-self-registration": "השבתת הרשמה עצמית", "disable-self-registration": "השבתת הרשמה עצמית",
"disable-forgot-password": "השבתת סיסמה שנשכחה",
"invite": "הזמנה", "invite": "הזמנה",
"invite-people": "הזמנת אנשים", "invite-people": "הזמנת אנשים",
"to-boards": "ללוח/ות", "to-boards": "ללוח/ות",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time कार्ड", "has-spenttime-cards": "Has spent time कार्ड",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.", "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To बोर्ड(s)", "to-boards": "To बोर्ड(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time कार्ड", "has-spenttime-cards": "Has spent time कार्ड",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.", "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To बोर्ड(s)", "to-boards": "To बोर्ड(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Vrijeme", "time": "Vrijeme",
"title": "Naziv", "title": "Naziv",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "Bit ćeš obaviješten o svim promjenama na onim karticama u koje si uključen kao autor ili član.", "tracking-info": "Bit ćeš obaviješten o svim promjenama na onim karticama u koje si uključen kao autor ili član.",
"type": "Tip", "type": "Tip",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registracija", "registration": "Registracija",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Pozovi", "invite": "Pozovi",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Van eltöltött-idő kártyája", "has-spenttime-cards": "Van eltöltött-idő kártyája",
"time": "Idő", "time": "Idő",
"title": "Cím", "title": "Cím",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Követés", "tracking": "Követés",
"tracking-info": "Értesítve leszel az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként veszel részt.", "tracking-info": "Értesítve leszel az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként veszel részt.",
"type": "Típus", "type": "Típus",
@ -610,6 +612,7 @@
"people": "Emberek", "people": "Emberek",
"registration": "Regisztráció", "registration": "Regisztráció",
"disable-self-registration": "Önregisztráció letiltása", "disable-self-registration": "Önregisztráció letiltása",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Meghívás", "invite": "Meghívás",
"invite-people": "Emberek meghívása", "invite-people": "Emberek meghívása",
"to-boards": "Táblákhoz", "to-boards": "Táblákhoz",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Waktu", "time": "Waktu",
"title": "Judul", "title": "Judul",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Pelacakan", "tracking": "Pelacakan",
"tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan", "tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan",
"type": "tipe", "type": "tipe",
@ -610,6 +612,7 @@
"people": "Orang-orang", "people": "Orang-orang",
"registration": "Registrasi", "registration": "Registrasi",
"disable-self-registration": "Nonaktifkan Swa Registrasi", "disable-self-registration": "Nonaktifkan Swa Registrasi",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Undang", "invite": "Undang",
"invite-people": "Undang Orang-orang", "invite-people": "Undang Orang-orang",
"to-boards": "ke panel", "to-boards": "ke panel",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Ndị mmadụ", "people": "Ndị mmadụ",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Ci sono schede con tempo impiegato", "has-spenttime-cards": "Ci sono schede con tempo impiegato",
"time": "Ora", "time": "Ora",
"title": "Titolo", "title": "Titolo",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Monitoraggio", "tracking": "Monitoraggio",
"tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.", "tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Persone", "people": "Persone",
"registration": "Registrazione", "registration": "Registrazione",
"disable-self-registration": "Disabilita Auto-registrazione", "disable-self-registration": "Disabilita Auto-registrazione",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invita", "invite": "Invita",
"invite-people": "Invita persone", "invite-people": "Invita persone",
"to-boards": "Alla(e) bacheca", "to-boards": "Alla(e) bacheca",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "作業時間ありのカード", "has-spenttime-cards": "作業時間ありのカード",
"time": "時間", "time": "時間",
"title": "タイトル", "title": "タイトル",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "トラッキング", "tracking": "トラッキング",
"tracking-info": "これらのカードへの変更が通知されるようになります。", "tracking-info": "これらのカードへの変更が通知されるようになります。",
"type": "タイプ", "type": "タイプ",
@ -610,6 +612,7 @@
"people": "メンバー", "people": "メンバー",
"registration": "登録", "registration": "登録",
"disable-self-registration": "自己登録を無効化", "disable-self-registration": "自己登録を無効化",
"disable-forgot-password": "Disable Forgot Password",
"invite": "招待", "invite": "招待",
"invite-people": "メンバーを招待", "invite-people": "メンバーを招待",
"to-boards": "ボードへ移動", "to-boards": "ボードへ移動",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "აქვს გახარჯული დროის ბარათები", "has-spenttime-cards": "აქვს გახარჯული დროის ბარათები",
"time": "დრო", "time": "დრო",
"title": "სათაური", "title": "სათაური",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "მონიტორინგი", "tracking": "მონიტორინგი",
"tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ", "tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ",
"type": "ტიპი", "type": "ტიპი",
@ -610,6 +612,7 @@
"people": "ხალხი", "people": "ხალხი",
"registration": "რეგისტრაცია", "registration": "რეგისტრაცია",
"disable-self-registration": "თვით რეგისტრაციის გამორთვა", "disable-self-registration": "თვით რეგისტრაციის გამორთვა",
"disable-forgot-password": "Disable Forgot Password",
"invite": "მოწვევა", "invite": "მოწვევა",
"invite-people": "ხალხის მოწვევა", "invite-people": "ხალხის მოწვევა",
"to-boards": "დაფა(ებ)ზე", "to-boards": "დაფა(ებ)ზე",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "មានកាតដែលបានចំណាយពេល", "has-spenttime-cards": "មានកាតដែលបានចំណាយពេល",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "시간", "time": "시간",
"title": "제목", "title": "제목",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "추적", "tracking": "추적",
"tracking-info": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음", "tracking-info": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음",
"type": "타입", "type": "타입",
@ -610,6 +612,7 @@
"people": "사람", "people": "사람",
"registration": "회원가입", "registration": "회원가입",
"disable-self-registration": "일반 유저의 회원 가입 막기", "disable-self-registration": "일반 유저의 회원 가입 막기",
"disable-forgot-password": "Disable Forgot Password",
"invite": "초대", "invite": "초대",
"invite-people": "사람 초대", "invite-people": "사람 초대",
"to-boards": "보드로 부터", "to-boards": "보드로 부터",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Kartiņas ar pavadīto laiku", "has-spenttime-cards": "Kartiņas ar pavadīto laiku",
"time": "Laiks", "time": "Laiks",
"title": "Nosaukums", "title": "Nosaukums",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Sekošana", "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.", "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", "type": "Veids",
@ -610,6 +612,7 @@
"people": "Dalībnieki", "people": "Dalībnieki",
"registration": "Reģistrācija", "registration": "Reģistrācija",
"disable-self-registration": "Atspējot dalībnieku patstāvīgu reģistrāciju", "disable-self-registration": "Atspējot dalībnieku patstāvīgu reģistrāciju",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Ielūgt", "invite": "Ielūgt",
"invite-people": "Ielūgt dalībniekus", "invite-people": "Ielūgt dalībniekus",
"to-boards": "Uz dēli (dēļiem)", "to-boards": "Uz dēli (dēļiem)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Има карти с изработено време", "has-spenttime-cards": "Има карти с изработено време",
"time": "Време", "time": "Време",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Следене", "tracking": "Следене",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Хора", "people": "Хора",
"registration": "Регистрация", "registration": "Регистрация",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Покани", "invite": "Покани",
"invite-people": "Покани хора", "invite-people": "Покани хора",
"to-boards": "в табло/а", "to-boards": "в табло/а",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Kort med forbrukt tid", "has-spenttime-cards": "Kort med forbrukt tid",
"time": "Tid", "time": "Tid",
"title": "Tittel", "title": "Tittel",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Sporing", "tracking": "Sporing",
"tracking-info": "Du vil bli varslet om alle endringer på kortene du er du er involvert i som Oppretter eller Medlem.", "tracking-info": "Du vil bli varslet om alle endringer på kortene du er du er involvert i som Oppretter eller Medlem.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Medlemmer", "people": "Medlemmer",
"registration": "Registrering", "registration": "Registrering",
"disable-self-registration": "Deaktiver selvregistrering", "disable-self-registration": "Deaktiver selvregistrering",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Inviter", "invite": "Inviter",
"invite-people": "Invitere medlemmer", "invite-people": "Invitere medlemmer",
"to-boards": "til Tavle(r)", "to-boards": "til Tavle(r)",

View file

@ -550,9 +550,9 @@
"shortcut-close-dialog": "Sluit dialoog", "shortcut-close-dialog": "Sluit dialoog",
"shortcut-filter-my-cards": "Filter mijn kaarten", "shortcut-filter-my-cards": "Filter mijn kaarten",
"shortcut-show-shortcuts": "Haal lijst met snelkoppelingen tevoorschijn", "shortcut-show-shortcuts": "Haal lijst met snelkoppelingen tevoorschijn",
"shortcut-toggle-filterbar": "Wissel Filter Zijbalk", "shortcut-toggle-filterbar": "Schakel Filter Zijbalk in/uit",
"shortcut-toggle-searchbar": "Wissel Zoek Zijbalk", "shortcut-toggle-searchbar": "Schakel Zoek Zijbalk in/uit",
"shortcut-toggle-sidebar": "Wissel Bord Zijbalk", "shortcut-toggle-sidebar": "Schakel Bord Zijbalk in/uit",
"show-cards-minimum-count": "Laat het aantal kaarten zien wanneer de lijst meer kaarten heeft dan", "show-cards-minimum-count": "Laat het aantal kaarten zien wanneer de lijst meer kaarten heeft dan",
"sidebar-open": "Open Zijbalk", "sidebar-open": "Open Zijbalk",
"sidebar-close": "Sluit Zijbalk", "sidebar-close": "Sluit Zijbalk",
@ -571,6 +571,8 @@
"has-spenttime-cards": "Heeft tijd besteed aan kaarten", "has-spenttime-cards": "Heeft tijd besteed aan kaarten",
"time": "Tijd", "time": "Tijd",
"title": "Titel", "title": "Titel",
"toggle-labels": "Schakel labels 1-9 in/uit voor kaart. Multi-selectie voegt labels 1-9 toe.",
"remove-labels-multiselect": "Multi-selectie verwijderd labels 1-9",
"tracking": "Volgen", "tracking": "Volgen",
"tracking-info": "Je wordt op de hoogte gesteld als er wijzigingen zijn aan de kaarten waar je lid of maker van bent.", "tracking-info": "Je wordt op de hoogte gesteld als er wijzigingen zijn aan de kaarten waar je lid of maker van bent.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "Gebruikers", "people": "Gebruikers",
"registration": "Registratie", "registration": "Registratie",
"disable-self-registration": "Schakel zelf-registratie uit", "disable-self-registration": "Schakel zelf-registratie uit",
"disable-forgot-password": "Uitschakelen Wachtwoord Vergeten",
"invite": "Uitnodigen", "invite": "Uitnodigen",
"invite-people": "Nodig mensen uit", "invite-people": "Nodig mensen uit",
"to-boards": "Voor bord(en)", "to-boards": "Voor bord(en)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Temps", "time": "Temps",
"title": "Títol", "title": "Títol",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Mena", "type": "Mena",
@ -610,6 +612,7 @@
"people": "Personas", "people": "Personas",
"registration": "Inscripcion", "registration": "Inscripcion",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Convidar", "invite": "Convidar",
"invite-people": "Convidat", "invite-people": "Convidat",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Ma karty z wykazanym czasem pracy", "has-spenttime-cards": "Ma karty z wykazanym czasem pracy",
"time": "Czas", "time": "Czas",
"title": "Tytuł", "title": "Tytuł",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Śledź", "tracking": "Śledź",
"tracking-info": "Będziesz powiadamiany(a) o wszelkich zmianach w kartach, które stworzyłeś(aś) lub jesteś ich użytkownikiem.", "tracking-info": "Będziesz powiadamiany(a) o wszelkich zmianach w kartach, które stworzyłeś(aś) lub jesteś ich użytkownikiem.",
"type": "Typ", "type": "Typ",
@ -610,6 +612,7 @@
"people": "Osoby", "people": "Osoby",
"registration": "Rejestracja", "registration": "Rejestracja",
"disable-self-registration": "Wyłącz samodzielną rejestrację", "disable-self-registration": "Wyłącz samodzielną rejestrację",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Zaproś", "invite": "Zaproś",
"invite-people": "Zaproś osoby", "invite-people": "Zaproś osoby",
"to-boards": "Do tablic(y)", "to-boards": "Do tablic(y)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Gastou cartões de tempo", "has-spenttime-cards": "Gastou cartões de tempo",
"time": "Tempo", "time": "Tempo",
"title": "Título", "title": "Título",
"toggle-labels": "Alternar etiquetas 1-9 para cartão. Multi-seleção adiciona etiquetas 1-9",
"remove-labels-multiselect": "Multi-seleção remove etiquetas 1-9",
"tracking": "Rastreamento", "tracking": "Rastreamento",
"tracking-info": "Você será notificado se houver qualquer alteração em cards em que você é o criador ou membro", "tracking-info": "Você será notificado se houver qualquer alteração em cards em que você é o criador ou membro",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Pessoas", "people": "Pessoas",
"registration": "Registro", "registration": "Registro",
"disable-self-registration": "Desabilitar Cadastrar-se", "disable-self-registration": "Desabilitar Cadastrar-se",
"disable-forgot-password": "Desabilitar Esqueceu sua senha",
"invite": "Convite", "invite": "Convite",
"invite-people": "Convide Pessoas", "invite-people": "Convide Pessoas",
"to-boards": "Para o/os quadro(s)", "to-boards": "Para o/os quadro(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Tem cartões com tempo gasto", "has-spenttime-cards": "Tem cartões com tempo gasto",
"time": "Tempo", "time": "Tempo",
"title": "Título", "title": "Título",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "A seguir", "tracking": "A seguir",
"tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.", "tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.",
"type": "Tipo", "type": "Tipo",
@ -610,6 +612,7 @@
"people": "Pessoas", "people": "Pessoas",
"registration": "Registo", "registration": "Registo",
"disable-self-registration": "Desabilitar Auto-Registo", "disable-self-registration": "Desabilitar Auto-Registo",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Convidar", "invite": "Convidar",
"invite-people": "Convidar Pessoas", "invite-people": "Convidar Pessoas",
"to-boards": "Para o(s) quadro(s)", "to-boards": "Para o(s) quadro(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Titlu", "title": "Titlu",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Имеются карточки с учетом затраченного времени", "has-spenttime-cards": "Имеются карточки с учетом затраченного времени",
"time": "Время", "time": "Время",
"title": "Название", "title": "Название",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Отслеживание", "tracking": "Отслеживание",
"tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.", "tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.",
"type": "Тип", "type": "Тип",
@ -610,6 +612,7 @@
"people": "Люди", "people": "Люди",
"registration": "Регистрация", "registration": "Регистрация",
"disable-self-registration": "Отключить самостоятельную регистрацию", "disable-self-registration": "Отключить самостоятельную регистрацию",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Пригласить", "invite": "Пригласить",
"invite-people": "Пригласить людей", "invite-people": "Пригласить людей",
"to-boards": "В Доску(и)", "to-boards": "В Доску(и)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Имеются карточки с учетом затраченного времени", "has-spenttime-cards": "Имеются карточки с учетом затраченного времени",
"time": "Время", "time": "Время",
"title": "Название", "title": "Название",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Отслеживание", "tracking": "Отслеживание",
"tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.", "tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.",
"type": "Тип", "type": "Тип",
@ -610,6 +612,7 @@
"people": "Люди", "people": "Люди",
"registration": "Регистрация", "registration": "Регистрация",
"disable-self-registration": "Отключить самостоятельную регистрацию", "disable-self-registration": "Отключить самостоятельную регистрацию",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Пригласить", "invite": "Пригласить",
"invite-people": "Пригласить людей", "invite-people": "Пригласить людей",
"to-boards": "В Доску(и)", "to-boards": "В Доску(и)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Čas", "time": "Čas",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Ima kartice s porabljenim časom", "has-spenttime-cards": "Ima kartice s porabljenim časom",
"time": "Čas", "time": "Čas",
"title": "Naslov", "title": "Naslov",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Sledenje", "tracking": "Sledenje",
"tracking-info": "Obveščeni boste o vseh spremembah nad karticami, kjer ste lastnik ali član.", "tracking-info": "Obveščeni boste o vseh spremembah nad karticami, kjer ste lastnik ali član.",
"type": "Tip", "type": "Tip",
@ -610,6 +612,7 @@
"people": "Ljudje", "people": "Ljudje",
"registration": "Registracija", "registration": "Registracija",
"disable-self-registration": "Onemogoči samo-registracijo", "disable-self-registration": "Onemogoči samo-registracijo",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Povabi", "invite": "Povabi",
"invite-people": "Povabi ljudi", "invite-people": "Povabi ljudi",
"to-boards": "K tabli(am)", "to-boards": "K tabli(am)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Vreme", "time": "Vreme",
"title": "Naslov", "title": "Naslov",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Praćenje", "tracking": "Praćenje",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Tip", "type": "Tip",
@ -610,6 +612,7 @@
"people": "Ljudi", "people": "Ljudi",
"registration": "Registracija", "registration": "Registracija",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Har spenderat tidkort", "has-spenttime-cards": "Har spenderat tidkort",
"time": "Tid", "time": "Tid",
"title": "Titel", "title": "Titel",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Spåra", "tracking": "Spåra",
"tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.", "tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.",
"type": "Skriv", "type": "Skriv",
@ -610,6 +612,7 @@
"people": "Personer", "people": "Personer",
"registration": "Registrering", "registration": "Registrering",
"disable-self-registration": "Avaktiverar självregistrering", "disable-self-registration": "Avaktiverar självregistrering",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Bjud in", "invite": "Bjud in",
"invite-people": "Bjud in personer", "invite-people": "Bjud in personer",
"to-boards": "Till anslagstavl(a/or)", "to-boards": "Till anslagstavl(a/or)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "அழைப்பு ", "invite": "அழைப்பு ",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "เวลา", "time": "เวลา",
"title": "หัวข้อ", "title": "หัวข้อ",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "ติดตาม", "tracking": "ติดตาม",
"tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก", "tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Zaman geçirilmiş kartlar", "has-spenttime-cards": "Zaman geçirilmiş kartlar",
"time": "Zaman", "time": "Zaman",
"title": "Başlık", "title": "Başlık",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Takip", "tracking": "Takip",
"tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.", "tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.",
"type": "Tür", "type": "Tür",
@ -610,6 +612,7 @@
"people": "Kullanıcılar", "people": "Kullanıcılar",
"registration": "Kayıt", "registration": "Kayıt",
"disable-self-registration": "Ziyaretçilere kaydı kapa", "disable-self-registration": "Ziyaretçilere kaydı kapa",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Davet", "invite": "Davet",
"invite-people": "Kullanıcı davet et", "invite-people": "Kullanıcı davet et",
"to-boards": "Şu pano(lar)a", "to-boards": "Şu pano(lar)a",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Час", "time": "Час",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.", "tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.",
"type": "Тип", "type": "Тип",
@ -610,6 +612,7 @@
"people": "Люди", "people": "Люди",
"registration": "Реєстрація", "registration": "Реєстрація",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Час", "time": "Час",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.", "tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.",
"type": "Тип", "type": "Тип",
@ -610,6 +612,7 @@
"people": "Люди", "people": "Люди",
"registration": "Реєстрація", "registration": "Реєстрація",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Đã sử dụng thẻ thời gian", "has-spenttime-cards": "Đã sử dụng thẻ thời gian",
"time": "Thời gian", "time": "Thời gian",
"title": "Tiêu đề", "title": "Tiêu đề",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Đang theo dõi", "tracking": "Đang theo dõi",
"tracking-info": "Bạn sẽ được thông báo về bất kỳ thay đổi nào đối với những thẻ mà bạn tham gia với tư cách là người sáng tạo hoặc thành viên.", "tracking-info": "Bạn sẽ được thông báo về bất kỳ thay đổi nào đối với những thẻ mà bạn tham gia với tư cách là người sáng tạo hoặc thành viên.",
"type": "Kiểu", "type": "Kiểu",
@ -610,6 +612,7 @@
"people": "Mọi người", "people": "Mọi người",
"registration": "Đăng ký", "registration": "Đăng ký",
"disable-self-registration": "Vô hiệu hoá tự đăng ký", "disable-self-registration": "Vô hiệu hoá tự đăng ký",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Mời", "invite": "Mời",
"invite-people": "Mời mọi người", "invite-people": "Mời mọi người",
"to-boards": "Đến bảng(s)", "to-boards": "Đến bảng(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "耗时卡", "has-spenttime-cards": "耗时卡",
"time": "时间", "time": "时间",
"title": "标题", "title": "标题",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "跟踪", "tracking": "跟踪",
"tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。", "tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。",
"type": "类型", "type": "类型",
@ -610,6 +612,7 @@
"people": "人员", "people": "人员",
"registration": "注册", "registration": "注册",
"disable-self-registration": "禁止自助注册", "disable-self-registration": "禁止自助注册",
"disable-forgot-password": "Disable Forgot Password",
"invite": "邀请", "invite": "邀请",
"invite-people": "邀请人员", "invite-people": "邀请人员",
"to-boards": "邀请到看板 (可多选)", "to-boards": "邀请到看板 (可多选)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "Has spent time cards", "has-spenttime-cards": "Has spent time cards",
"time": "Time", "time": "Time",
"title": "Title", "title": "Title",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "Tracking", "tracking": "Tracking",
"tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.", "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
"type": "Type", "type": "Type",
@ -610,6 +612,7 @@
"people": "People", "people": "People",
"registration": "Registration", "registration": "Registration",
"disable-self-registration": "Disable Self-Registration", "disable-self-registration": "Disable Self-Registration",
"disable-forgot-password": "Disable Forgot Password",
"invite": "Invite", "invite": "Invite",
"invite-people": "Invite People", "invite-people": "Invite People",
"to-boards": "To board(s)", "to-boards": "To board(s)",

View file

@ -571,6 +571,8 @@
"has-spenttime-cards": "耗時卡", "has-spenttime-cards": "耗時卡",
"time": "時間", "time": "時間",
"title": "標題", "title": "標題",
"toggle-labels": "Toggle labels 1-9 for card. Multi-Selection adds labels 1-9",
"remove-labels-multiselect": "Multi-Selection removes labels 1-9",
"tracking": "訂閱相關通知", "tracking": "訂閱相關通知",
"tracking-info": "你將會收到與你有關的卡片的所有變更通知", "tracking-info": "你將會收到與你有關的卡片的所有變更通知",
"type": "類型", "type": "類型",
@ -610,6 +612,7 @@
"people": "成員", "people": "成員",
"registration": "註冊", "registration": "註冊",
"disable-self-registration": "關閉自我註冊", "disable-self-registration": "關閉自我註冊",
"disable-forgot-password": "Disable Forgot Password",
"invite": "邀請", "invite": "邀請",
"invite-people": "邀請成員", "invite-people": "邀請成員",
"to-boards": "至看板()", "to-boards": "至看板()",

View file

@ -11,6 +11,13 @@ Settings.attachSchema(
new SimpleSchema({ new SimpleSchema({
disableRegistration: { disableRegistration: {
type: Boolean, type: Boolean,
optional: true,
defaultValue: false,
},
disableForgotPassword: {
type: Boolean,
optional: true,
defaultValue: false,
}, },
'mailServer.username': { 'mailServer.username': {
type: String, type: String,
@ -435,6 +442,24 @@ if (Meteor.isServer) {
} }
}, },
isDisableRegistration() {
const setting = Settings.findOne({});
if (setting.disableRegistration === true) {
return true;
} else {
return false;
}
},
isDisableForgotPassword() {
const setting = Settings.findOne({});
if (setting.disableForgotPassword === true) {
return true;
} else {
return false;
}
},
getMatomoConf() { getMatomoConf() {
return { return {
address: getEnvVar('MATOMO_ADDRESS'), address: getEnvVar('MATOMO_ADDRESS'),

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v6.05.0", "version": "v6.09.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v6.05.0", "version": "v6.09.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"repository": { "repository": {

View file

@ -0,0 +1,88 @@
module.exports = {
addGroups: function (user, groups){
teamArray=[]
teams = user.teams
if (!teams)
{
for (group of groups){
team = Team.findOne({"teamDisplayName": group});
if (team)
{
team_hash = {'teamId': team._id, 'teamDisplayName': group}
teamArray.push(team_hash);
}
}
teams = {'teams': teamArray}
users.update({ _id: user._id }, { $set: teams});
return;
}
else{
for (group of groups){
team = Team.findOne({"teamDisplayName": group})
team_contained= false;
if (team)
{
team_hash = {'teamId': team._id, 'teamDisplayName': group}
for (const [count,teams_hash] of Object.entries(teams))
{
if (teams_hash["teamId"] === team._id)
{
team_contained=true;
break;
}
}
if (team_contained)
{
continue;
}
else
{
console.log("TEAM to be added:", team);
teams.push({'teamId': Team.findOne({'teamDisplayName': group})._id, 'teamDisplayName': group});
}
}
}
console.log("XXXXXXXXXXX Team Array: ", teams);
teams = {'teams': teams}
users.update({ _id: user._id }, { $set: teams});
}
},
changeUsername: function(user, name)
{
username = {'username': name};
if (user.username != username) users.update({ _id: user._id }, { $set: username});
},
changeFullname: function(user, name)
{
username = {'profile.fullname': name};
if (user.username != username) users.update({ _id: user._id }, { $set: username});
},
addEmail: function(user, email)
{
user_email = user.emails || [];
var contained = false;
position = 0;
for (const [count, mail_hash] of Object.entries(user_email))
{
if (mail_hash['address'] === email)
{
contained = true;
position = count;
break;
}
}
if(contained && position != 0)
{
user_email.splice(position,1);
contained = false;
}
if(!contained)
{
user_email.unshift({'address': email, 'verified': true});
user_email = {'emails': user_email};
console.log(user_email);
users.update({ _id: user._id }, { $set: user_email});
}
}
}

View file

@ -1,3 +1,5 @@
import {addGroups, addEmail,changeFullname, changeUsername} from './loginHandler';
Oidc = {}; Oidc = {};
httpCa = false; httpCa = false;
@ -16,6 +18,9 @@ if (process.env.OAUTH2_CA_CERT !== undefined) {
OAuth.registerService('oidc', 2, null, function (query) { OAuth.registerService('oidc', 2, null, function (query) {
var debug = process.env.DEBUG || false; var debug = process.env.DEBUG || false;
console.log(process.env);
var propagateOidcData = process.env.PROPAGATE_OIDC_DATA || false;
var token = getToken(query); var token = getToken(query);
if (debug) console.log('XXX: register token:', token); if (debug) console.log('XXX: register token:', token);
@ -73,6 +78,20 @@ OAuth.registerService('oidc', 2, null, function (query) {
var profile = {}; var profile = {};
profile.name = userinfo[process.env.OAUTH2_FULLNAME_MAP]; // || userinfo["displayName"]; profile.name = userinfo[process.env.OAUTH2_FULLNAME_MAP]; // || userinfo["displayName"];
profile.email = userinfo[process.env.OAUTH2_EMAIL_MAP]; // || userinfo["email"]; profile.email = userinfo[process.env.OAUTH2_EMAIL_MAP]; // || userinfo["email"];
if (propagateOidcData)
{
users= Meteor.users;
user = users.findOne({'services.oidc.id': serviceData.id});
if(user)
{
serviceData.groups = profile.groups
profile.groups = userinfo["groups"];
if(userinfo["groups"]) addGroups(user, userinfo["groups"]);
if(profile.email) addEmail(user, profile.email)
if(profile.name) changeFullname(user, profile.name)
if(profile.username) changeUsername(user, profile.username)
}
}
if (debug) console.log('XXX: profile:', profile); if (debug) console.log('XXX: profile:', profile);
return { return {

View file

@ -10,6 +10,7 @@ Package.onUse(function(api) {
api.use('oauth@1.1.0', ['client', 'server']); api.use('oauth@1.1.0', ['client', 'server']);
api.use('http@1.1.0', ['server']); api.use('http@1.1.0', ['server']);
api.use('underscore@1.0.0', 'client'); api.use('underscore@1.0.0', 'client');
api.use('ecmascript@0.9.0');
api.use('templating@1.1.0', 'client'); api.use('templating@1.1.0', 'client');
api.use('random@1.0.0', 'client'); api.use('random@1.0.0', 'client');
api.use('service-configuration@1.0.0', ['client', 'server']); api.use('service-configuration@1.0.0', ['client', 'server']);

View file

@ -7,7 +7,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"> <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Wekan REST API v6.05</title> <title>Wekan REST API v6.09</title>
<style> <style>
</style> </style>
@ -1558,7 +1558,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<ul class="toc-list-h1"> <ul class="toc-list-h1">
<li> <li>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.05">Wekan REST API v6.05</a> <a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.09">Wekan REST API v6.09</a>
</li> </li>
@ -2146,7 +2146,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<div class="page-wrapper"> <div class="page-wrapper">
<div class="dark-box"></div> <div class="dark-box"></div>
<div class="content"> <div class="content">
<h1 id="wekan-rest-api">Wekan REST API v6.05</h1> <h1 id="wekan-rest-api">Wekan REST API v6.09</h1>
<blockquote> <blockquote>
<p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p> <p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p>
</blockquote> </blockquote>

View file

@ -1,7 +1,7 @@
swagger: '2.0' swagger: '2.0'
info: info:
title: Wekan REST API title: Wekan REST API
version: v6.05 version: v6.09
description: | description: |
The REST API allows you to control and extend Wekan with ease. The REST API allows you to control and extend Wekan with ease.

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"), appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user. # The name of the app as it is displayed to the user.
appVersion = 605, appVersion = 609,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "6.05.0~2022-02-07"), appMarketingVersion = (defaultText = "6.09.0~2022-02-28"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,

View file

@ -10,6 +10,7 @@ Meteor.publish('setting', () => {
{ {
fields: { fields: {
disableRegistration: 1, disableRegistration: 1,
disableForgotPassword: 1,
productName: 1, productName: 1,
hideLogo: 1, hideLogo: 1,
customLoginLogoImageUrl: 1, customLoginLogoImageUrl: 1,

View file

@ -1,5 +1,5 @@
name: wekan name: wekan
version: '6.05' version: '6.09'
summary: Open Source kanban summary: Open Source kanban
description: | description: |
WeKan ® is an Open Source and collaborative kanban board application. WeKan ® is an Open Source and collaborative kanban board application.