mirror of
https://github.com/wekan/wekan.git
synced 2026-01-30 21:25:17 +01:00
Merge branch 'master' of https://github.com/wekan/wekan into new-search
This commit is contained in:
commit
f56caa745a
72 changed files with 245 additions and 133 deletions
|
|
@ -166,16 +166,16 @@ Template.memberPopup.helpers({
|
|||
const noComments = currentBoard.hasNoComments(this.userId);
|
||||
const worker = currentBoard.hasWorker(this.userId);
|
||||
if (commentOnly) {
|
||||
return TAPi18n.__('comment-only').toLowerCase();
|
||||
return TAPi18n.__('comment-only');
|
||||
} else if (noComments) {
|
||||
return TAPi18n.__('no-comments').toLowerCase();
|
||||
return TAPi18n.__('no-comments');
|
||||
} else if (worker) {
|
||||
return TAPi18n.__('worker').toLowerCase();
|
||||
return TAPi18n.__('worker');
|
||||
} else {
|
||||
return TAPi18n.__(type).toLowerCase();
|
||||
return TAPi18n.__(type);
|
||||
}
|
||||
} else {
|
||||
return TAPi18n.__(type).toLowerCase();
|
||||
return TAPi18n.__(type);
|
||||
}
|
||||
},
|
||||
isInvited() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue