[Admin panel] Add a parameter to display or not the visibility of a board in private mode only

This commit is contained in:
Emile NDAGIJIMANA 2021-08-27 16:25:44 +02:00
parent 8e142dfdcf
commit 9bb1425a81
74 changed files with 355 additions and 74 deletions

View file

@ -157,6 +157,7 @@
"Integrations": true, "Integrations": true,
"HTTP": true, "HTTP": true,
"AccountSettings": true, "AccountSettings": true,
"TableVisibilityModeSettings": true,
"Announcements": true, "Announcements": true,
"Swimlanes": true, "Swimlanes": true,
"ChecklistItems": true, "ChecklistItems": true,

View file

@ -147,14 +147,15 @@ template(name="boardVisibilityList")
if visibilityCheck if visibilityCheck
i.fa.fa-check i.fa.fa-check
span.sub-name {{_ 'private-desc'}} span.sub-name {{_ 'private-desc'}}
li if notAllowPrivateVisibilityOnly
with "public" li
a.js-select-visibility with "public"
i.fa.fa-globe.colorful a.js-select-visibility
| {{_ 'public'}} i.fa.fa-globe.colorful
if visibilityCheck | {{_ 'public'}}
i.fa.fa-check if visibilityCheck
span.sub-name {{_ 'public-desc'}} i.fa.fa-check
span.sub-name {{_ 'public-desc'}}
template(name="boardChangeVisibilityPopup") template(name="boardChangeVisibilityPopup")
+boardVisibilityList +boardVisibilityList

View file

@ -194,6 +194,11 @@ const CreateBoard = BlazeComponent.extendComponent({
this.visibilityMenuIsOpen = new ReactiveVar(false); this.visibilityMenuIsOpen = new ReactiveVar(false);
this.visibility = new ReactiveVar('private'); this.visibility = new ReactiveVar('private');
this.boardId = new ReactiveVar(''); this.boardId = new ReactiveVar('');
Meteor.subscribe('tableVisibilityModeSettings');
},
notAllowPrivateVisibilityOnly(){
return !TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly').booleanValue;
}, },
visibilityCheck() { visibilityCheck() {
@ -310,6 +315,9 @@ const CreateBoard = BlazeComponent.extendComponent({
}.register('headerBarCreateBoardPopup')); }.register('headerBarCreateBoardPopup'));
BlazeComponent.extendComponent({ BlazeComponent.extendComponent({
notAllowPrivateVisibilityOnly(){
return !TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly').booleanValue;
},
visibilityCheck() { visibilityCheck() {
const currentBoard = Boards.findOne(Session.get('currentBoard')); const currentBoard = Boards.findOne(Session.get('currentBoard'));
return this.currentData() === currentBoard.permission; return this.currentData() === currentBoard.permission;

View file

@ -22,6 +22,10 @@ template(name="setting")
a.js-setting-menu(data-id="account-setting") a.js-setting-menu(data-id="account-setting")
i.fa.fa-users i.fa.fa-users
| {{_ 'accounts'}} | {{_ 'accounts'}}
li
a.js-setting-menu(data-id="tableVisibilityMode-setting")
i.fa.fa-eye
| {{_ 'tableVisibilityMode'}}
li li
a.js-setting-menu(data-id="announcement-setting") a.js-setting-menu(data-id="announcement-setting")
i.fa.fa-bullhorn i.fa.fa-bullhorn
@ -44,6 +48,8 @@ template(name="setting")
+email +email
else if accountSetting.get else if accountSetting.get
+accountSettings +accountSettings
else if tableVisibilityModeSetting.get
+tableVisibilityModeSettings
else if announcementSetting.get else if announcementSetting.get
+announcementSettings +announcementSettings
else if layoutSetting.get else if layoutSetting.get
@ -96,7 +102,7 @@ template(name='email')
// li.smtp-form // li.smtp-form
// .title {{_ 'smtp-username'}} // .title {{_ 'smtp-username'}}
// .form-group // .form-group
// input.wekan-form-control#mail-server-username(type="text", placeholder="{{_ 'username'}}" value="{{currentSetting.mailServer.username}}") // input.wekan-form-control#mail-server-u"accounts-allowUserNameChange": "Allow Username Change",sername(type="text", placeholder="{{_ 'username'}}" value="{{currentSetting.mailServer.username}}")
// li.smtp-form // li.smtp-form
// .title {{_ 'smtp-password'}} // .title {{_ 'smtp-password'}}
// .form-group // .form-group
@ -120,6 +126,17 @@ template(name='email')
li li
button.js-send-smtp-test-email.primary {{_ 'send-smtp-test'}} button.js-send-smtp-test-email.primary {{_ 'send-smtp-test'}}
template(name='tableVisibilityModeSettings')
ul#tableVisibilityMode-setting.setting-detail
li.tableVisibilityMode-form
.title {{_ 'tableVisibilityMode-allowPrivateOnly'}}
.form-group.flex
input.wekan-form-control#accounts-allowPrivateOnly(type="radio" name="allowPrivateOnly" value="true" checked="{{#if allowPrivateOnly}}checked{{/if}}")
span {{_ 'yes'}}
input.wekan-form-control#accounts-allowPrivateOnly(type="radio" name="allowPrivateOnly" value="false" checked="{{#unless allowPrivateOnly}}checked{{/unless}}")
span {{_ 'no'}}
button.js-tableVisibilityMode-save.primary {{_ 'save'}}
template(name='accountSettings') template(name='accountSettings')
ul#account-setting.setting-detail ul#account-setting.setting-detail
li li

View file

@ -7,6 +7,7 @@ BlazeComponent.extendComponent({
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);
this.tableVisibilityModeSetting = new ReactiveVar(false);
this.announcementSetting = new ReactiveVar(false); this.announcementSetting = new ReactiveVar(false);
this.layoutSetting = new ReactiveVar(false); this.layoutSetting = new ReactiveVar(false);
this.webhookSetting = new ReactiveVar(false); this.webhookSetting = new ReactiveVar(false);
@ -14,6 +15,7 @@ BlazeComponent.extendComponent({
Meteor.subscribe('setting'); Meteor.subscribe('setting');
Meteor.subscribe('mailServer'); Meteor.subscribe('mailServer');
Meteor.subscribe('accountSettings'); Meteor.subscribe('accountSettings');
Meteor.subscribe('tableVisibilityModeSettings');
Meteor.subscribe('announcements'); Meteor.subscribe('announcements');
Meteor.subscribe('globalwebhooks'); Meteor.subscribe('globalwebhooks');
}, },
@ -88,6 +90,7 @@ BlazeComponent.extendComponent({
this.announcementSetting.set('announcement-setting' === targetID); this.announcementSetting.set('announcement-setting' === targetID);
this.layoutSetting.set('layout-setting' === targetID); this.layoutSetting.set('layout-setting' === targetID);
this.webhookSetting.set('webhook-setting' === targetID); this.webhookSetting.set('webhook-setting' === targetID);
this.tableVisibilityModeSetting.set('tableVisibilityMode-setting' === targetID);
} }
}, },
@ -317,6 +320,46 @@ BlazeComponent.extendComponent({
}, },
}).register('accountSettings'); }).register('accountSettings');
BlazeComponent.extendComponent({
saveTableVisibilityChange() {
const allowPrivateOnly =
$('input[name=allowPrivateOnly]:checked').val() === 'true';
TableVisibilityModeSettings.update('tableVisibilityMode-allowPrivateOnly', {
$set: { booleanValue: allowPrivateOnly },
});
},
allowPrivateOnly() {
return TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly').booleanValue;
},
allHideSystemMessages() {
Meteor.call('setAllUsersHideSystemMessages', (err, ret) => {
if (!err && ret) {
if (ret === true) {
const message = `${TAPi18n.__(
'now-system-messages-of-all-users-are-hidden',
)}`;
alert(message);
}
} else {
const reason = err.reason || '';
const message = `${TAPi18n.__(err.error)}\n${reason}`;
alert(message);
}
});
},
events() {
return [
{
'click button.js-tableVisibilityMode-save': this.saveTableVisibilityChange,
},
{
'click button.js-all-hide-system-messages': this.allHideSystemMessages,
},
];
},
}).register('tableVisibilityModeSettings');
BlazeComponent.extendComponent({ BlazeComponent.extendComponent({
onCreated() { onCreated() {
this.loading = new ReactiveVar(false); this.loading = new ReactiveVar(false);

View file

@ -657,6 +657,8 @@
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Allow Email Change", "accounts-allowEmailChange": "Allow Email Change",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verified", "verified": "Verified",

View file

@ -657,6 +657,8 @@
"accounts": "الحسابات", "accounts": "الحسابات",
"accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني", "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verified", "verified": "Verified",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignat", "assignee": "Assignat",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Jste si jisti, že chcete smazat tento tým? Tuto akci nelze vrátit zpět.", "delete-team-confirm-popup": "Jste si jisti, že chcete smazat tento tým? Tuto akci nelze vrátit zpět.",
"delete-org-confirm-popup": "Jste si jisti, že chcete smazat tuto organizaci? Tuto akci nelze vrátit zpět.", "delete-org-confirm-popup": "Jste si jisti, že chcete smazat tuto organizaci? Tuto akci nelze vrátit zpět.",
"accounts-allowUserDelete": "Dovolit uživatelům smazat vlastní účet", "accounts-allowUserDelete": "Dovolit uživatelům smazat vlastní účet",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Skrýt text popisku minikarty", "hide-minicard-label-text": "Skrýt text popisku minikarty",
"show-desktop-drag-handles": "Zobrazit okraje pro přesun plochy", "show-desktop-drag-handles": "Zobrazit okraje pro přesun plochy",
"assignee": "Řešitel", "assignee": "Řešitel",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Tillad brugere at slette deres egen konto", "accounts-allowUserDelete": "Tillad brugere at slette deres egen konto",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Skjul etiketteteksten for minikort", "hide-minicard-label-text": "Skjul etiketteteksten for minikort",
"show-desktop-drag-handles": "Vis trække-håndtag for skrivebord", "show-desktop-drag-handles": "Vis trække-håndtag for skrivebord",
"assignee": "Tildelt til", "assignee": "Tildelt til",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Sind Sie sicher, dass Sie dieses Team löschen möchten? Es gibt kein Zurück!", "delete-team-confirm-popup": "Sind Sie sicher, dass Sie dieses Team löschen möchten? Es gibt kein Zurück!",
"delete-org-confirm-popup": "Sind Sie sicher, dass Sie diese Organisation löschen möchten? Es gibt kein Zurück!", "delete-org-confirm-popup": "Sind Sie sicher, dass Sie diese Organisation löschen möchten? Es gibt kein Zurück!",
"accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen", "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Labeltext auf Minikarte ausblenden", "hide-minicard-label-text": "Labeltext auf Minikarte ausblenden",
"show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen", "show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen",
"assignee": "Zugewiesen", "assignee": "Zugewiesen",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Sind Sie sicher, daß Sie dieses Team löschen wollen? Es gibt keine Möglichkeit, das rückgängig zu machen.", "delete-team-confirm-popup": "Sind Sie sicher, daß Sie dieses Team löschen wollen? Es gibt keine Möglichkeit, das rückgängig zu machen.",
"delete-org-confirm-popup": "Sind Sie sicher, daß Sie diese Organisation löschen wollen? Es gibt keine Möglichkeit, das rückgängig zu machen.", "delete-org-confirm-popup": "Sind Sie sicher, daß Sie diese Organisation löschen wollen? Es gibt keine Möglichkeit, das rückgängig zu machen.",
"accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen", "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Labeltext auf Minikarte ausblenden", "hide-minicard-label-text": "Labeltext auf Minikarte ausblenden",
"show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen", "show-desktop-drag-handles": "Desktop-Ziehpunkte anzeigen",
"assignee": "Zugewiesen", "assignee": "Zugewiesen",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -657,6 +657,8 @@
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Allow Email Change", "accounts-allowEmailChange": "Allow Email Change",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verified", "verified": "Verified",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta", "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta", "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
"show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio", "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
"assignee": "Asignado", "assignee": "Asignado",

View file

@ -657,6 +657,8 @@
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Allow Email Change", "accounts-allowEmailChange": "Allow Email Change",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verified", "verified": "Verified",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta", "accounts-allowUserDelete": "Permitir a los usuarios eliminar su cuenta",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta", "hide-minicard-label-text": "Ocultar el texto de la etiqueta de la minitarjeta",
"show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio", "show-desktop-drag-handles": "Mostrar los controles de arrastre del escritorio",
"assignee": "Asignado", "assignee": "Asignado",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -657,6 +657,8 @@
"accounts": "Cuentas", "accounts": "Cuentas",
"accounts-allowEmailChange": "Permitir cambiar el correo electrónico", "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
"accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario", "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Fecha de alta", "createdAt": "Fecha de alta",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verificado", "verified": "Verificado",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "به کاربران اجازه دهید خودشان اکانتشان را حذف کنند", "accounts-allowUserDelete": "به کاربران اجازه دهید خودشان اکانتشان را حذف کنند",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "مخفی کردن اسم لیبل مینی کارت", "hide-minicard-label-text": "مخفی کردن اسم لیبل مینی کارت",
"show-desktop-drag-handles": "نمایش دستگیره‌های درگ‌کردن دسکتاپ", "show-desktop-drag-handles": "نمایش دستگیره‌های درگ‌کردن دسکتاپ",
"assignee": "محول شده", "assignee": "محول شده",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Haluatko varmasti poistaa tämän tiimin? Tätä ei voi peruuttaa.", "delete-team-confirm-popup": "Haluatko varmasti poistaa tämän tiimin? Tätä ei voi peruuttaa.",
"delete-org-confirm-popup": "Haluatko varmasti poistaa tämän organisaation? Tätä ei voi peruuttaa.", "delete-org-confirm-popup": "Haluatko varmasti poistaa tämän organisaation? Tätä ei voi peruuttaa.",
"accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse", "accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Piilota minikortin nimilappu teksti", "hide-minicard-label-text": "Piilota minikortin nimilappu teksti",
"show-desktop-drag-handles": "Näytä työpöydän vedon kahvat", "show-desktop-drag-handles": "Näytä työpöydän vedon kahvat",
"assignee": "Käsittelijä", "assignee": "Käsittelijä",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte", "accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte",
"hide-minicard-label-text": "Cacher l'étiquette de la minicarte", "hide-minicard-label-text": "Cacher l'étiquette de la minicarte",
"show-desktop-drag-handles": "Voir les poignées de déplacement du bureau", "show-desktop-drag-handles": "Voir les poignées de déplacement du bureau",
"tableVisibilityMode-allowPrivateOnly": "[Mode de visibilité d'un tableau] Autoriser le mode privé uniquement",
"tableVisibilityMode" : "Mode de visibilité d'un tableau",
"assignee": "Personne assignée", "assignee": "Personne assignée",
"cardAssigneesPopup-title": "Personne assignée", "cardAssigneesPopup-title": "Personne assignée",
"addmore-detail": "Ajouter une description plus détaillée", "addmore-detail": "Ajouter une description plus détaillée",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "למחוק את הצוות הזה? אי אפשר לשחזר.", "delete-team-confirm-popup": "למחוק את הצוות הזה? אי אפשר לשחזר.",
"delete-org-confirm-popup": "למחוק את הארגון הזה? אי אפשר לשחזר.", "delete-org-confirm-popup": "למחוק את הארגון הזה? אי אפשר לשחזר.",
"accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם", "accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "הסתרת טקסט התווית של מיני כרטיס", "hide-minicard-label-text": "הסתרת טקסט התווית של מיני כרטיס",
"show-desktop-drag-handles": "הצגת ידיות גרירה של שולחן העבודה", "show-desktop-drag-handles": "הצגת ידיות גרירה של שולחן העבודה",
"assignee": "גורם אחראי", "assignee": "גורם אחראי",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Rejtse el a Címke szövegét a mini Kártyákon", "hide-minicard-label-text": "Rejtse el a Címke szövegét a mini Kártyákon",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Felelős", "assignee": "Felelős",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Sembunyikan teks label kartu mini", "hide-minicard-label-text": "Sembunyikan teks label kartu mini",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "Tampilkan gagang seret desktop", "show-desktop-drag-handles": "Tampilkan gagang seret desktop",
"assignee": "Penerima tugas", "assignee": "Penerima tugas",
"cardAssigneesPopup-title": "Penerima tugas", "cardAssigneesPopup-title": "Penerima tugas",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Permetti agli utenti di cancellare il loro profilo", "accounts-allowUserDelete": "Permetti agli utenti di cancellare il loro profilo",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Nascondi etichetta minicard", "hide-minicard-label-text": "Nascondi etichetta minicard",
"show-desktop-drag-handles": "Mostra maniglie di trascinamento del desktop", "show-desktop-drag-handles": "Mostra maniglie di trascinamento del desktop",
"assignee": "Assegnatario", "assignee": "Assegnatario",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "ユーザー自身のアカウント削除を許可", "accounts-allowUserDelete": "ユーザー自身のアカウント削除を許可",
"hide-minicard-label-text": "ミニカードのラベル名を隠す", "hide-minicard-label-text": "ミニカードのラベル名を隠す",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "デスクトップへのドラッグハンドルを表示", "show-desktop-drag-handles": "デスクトップへのドラッグハンドルを表示",
"assignee": "担当者", "assignee": "担当者",
"cardAssigneesPopup-title": "担当者", "cardAssigneesPopup-title": "担当者",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -656,6 +656,8 @@
"no": "No", "no": "No",
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Allow Email Change", "accounts-allowEmailChange": "Allow Email Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Ļaut lietotājiem dzēst savus kontus", "accounts-allowUserDelete": "Ļaut lietotājiem dzēst savus kontus",
"hide-minicard-label-text": "Slēpt birku tekstu mini kartiņā", "hide-minicard-label-text": "Slēpt birku tekstu mini kartiņā",
"show-desktop-drag-handles": "Rādīt darba virsmas vilkšanas simbolus", "show-desktop-drag-handles": "Rādīt darba virsmas vilkšanas simbolus",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Īpašnieks", "assignee": "Īpašnieks",
"cardAssigneesPopup-title": "Īpašnieks", "cardAssigneesPopup-title": "Īpašnieks",
"addmore-detail": "Pievienot detalizētāku aprakstu", "addmore-detail": "Pievienot detalizētāku aprakstu",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -657,6 +657,8 @@
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Allow Email Change", "accounts-allowEmailChange": "Allow Email Change",
"accounts-allowUserNameChange": "Allow Username Change", "accounts-allowUserNameChange": "Allow Username Change",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Created at", "createdAt": "Created at",
"modifiedAt": "Modified at", "modifiedAt": "Modified at",
"verified": "Verified", "verified": "Verified",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Er du sikker på at du vil slette Teamet? Du kan ikke angre.", "delete-team-confirm-popup": "Er du sikker på at du vil slette Teamet? Du kan ikke angre.",
"delete-org-confirm-popup": "Er du sikker på at du vil slette denne Organisasjonen? Du kan ikke angre.", "delete-org-confirm-popup": "Er du sikker på at du vil slette denne Organisasjonen? Du kan ikke angre.",
"accounts-allowUserDelete": "Tillat brukere å slette egen konto", "accounts-allowUserDelete": "Tillat brukere å slette egen konto",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Skjul tekst på etikett", "hide-minicard-label-text": "Skjul tekst på etikett",
"show-desktop-drag-handles": "Vis ikon for flytting av kort", "show-desktop-drag-handles": "Vis ikon for flytting av kort",
"assignee": "Tildelt", "assignee": "Tildelt",

View file

@ -657,6 +657,8 @@
"accounts": "Accounts", "accounts": "Accounts",
"accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe", "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe",
"accounts-allowUserNameChange": "Sta Gebruikersnaam wijzigingen toe", "accounts-allowUserNameChange": "Sta Gebruikersnaam wijzigingen toe",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Aangemaakt op", "createdAt": "Aangemaakt op",
"modifiedAt": "Gewijzigd op", "modifiedAt": "Gewijzigd op",
"verified": "Geverifieerd", "verified": "Geverifieerd",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",

View file

@ -861,6 +861,8 @@
"hide-minicard-label-text": "Ukryj opisy etykiet minikart", "hide-minicard-label-text": "Ukryj opisy etykiet minikart",
"show-desktop-drag-handles": "Pokaż przeciągnięcia na pulpit", "show-desktop-drag-handles": "Pokaż przeciągnięcia na pulpit",
"assignee": "Przypisani", "assignee": "Przypisani",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"cardAssigneesPopup-title": "Przypisani", "cardAssigneesPopup-title": "Przypisani",
"addmore-detail": "Dodaj bardziej szczegółowy opis", "addmore-detail": "Dodaj bardziej szczegółowy opis",
"show-on-card": "Pokaż na karcie", "show-on-card": "Pokaż na karcie",

View file

@ -863,6 +863,8 @@
"assignee": "Administrador", "assignee": "Administrador",
"cardAssigneesPopup-title": "Administrador", "cardAssigneesPopup-title": "Administrador",
"addmore-detail": "Adicionar descrição detalhada", "addmore-detail": "Adicionar descrição detalhada",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-on-card": "Mostrar no Cartão", "show-on-card": "Mostrar no Cartão",
"new": "Novo", "new": "Novo",
"editOrgPopup-title": "Editar Organização", "editOrgPopup-title": "Editar Organização",

View file

@ -657,6 +657,8 @@
"accounts": "Contas", "accounts": "Contas",
"accounts-allowEmailChange": "Permitir Alteração do E-mail", "accounts-allowEmailChange": "Permitir Alteração do E-mail",
"accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador", "accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"createdAt": "Criado em", "createdAt": "Criado em",
"modifiedAt": "Modificado em", "modifiedAt": "Modificado em",
"verified": "Verificado", "verified": "Verificado",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Вы уверены, что хотите удалить эту команду? Эту операцию нельзя отменить.", "delete-team-confirm-popup": "Вы уверены, что хотите удалить эту команду? Эту операцию нельзя отменить.",
"delete-org-confirm-popup": "Вы уверены, что хотите удалить эту организацию? Эту операцию нельзя отменить.", "delete-org-confirm-popup": "Вы уверены, что хотите удалить эту организацию? Эту операцию нельзя отменить.",
"accounts-allowUserDelete": "Разрешить пользователям удалять собственные аккаунты", "accounts-allowUserDelete": "Разрешить пользователям удалять собственные аккаунты",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Скрыть текст меток на карточках", "hide-minicard-label-text": "Скрыть текст меток на карточках",
"show-desktop-drag-handles": "Показать ярлыки для перетаскивания", "show-desktop-drag-handles": "Показать ярлыки для перетаскивания",
"assignee": "Исполнитель", "assignee": "Исполнитель",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Dovoli uporabnikom, da sami izbrišejo svoj račun", "accounts-allowUserDelete": "Dovoli uporabnikom, da sami izbrišejo svoj račun",
"hide-minicard-label-text": "Skrij besedilo oznak na karticah", "hide-minicard-label-text": "Skrij besedilo oznak na karticah",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "Pokaži ročke za povleko na namizju", "show-desktop-drag-handles": "Pokaži ročke za povleko na namizju",
"assignee": "Dodeljen član", "assignee": "Dodeljen član",
"cardAssigneesPopup-title": "Dodeljen član", "cardAssigneesPopup-title": "Dodeljen član",

View file

@ -859,6 +859,8 @@
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Dozvoli korisnicima da sami brišu svoj nalog", "accounts-allowUserDelete": "Dozvoli korisnicima da sami brišu svoj nalog",
"hide-minicard-label-text": "Sakrij tekst nalepnice minikartice", "hide-minicard-label-text": "Sakrij tekst nalepnice minikartice",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-desktop-drag-handles": "Prikaži kvake za povlačenje sa radne površine", "show-desktop-drag-handles": "Prikaži kvake za povlačenje sa radne površine",
"assignee": "Zastupnik", "assignee": "Zastupnik",
"cardAssigneesPopup-title": "Zastupnik", "cardAssigneesPopup-title": "Zastupnik",

View file

@ -858,6 +858,8 @@
"delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.", "delete-team-confirm-popup": "Are you sure you want to delete this team? There is no undo.",
"delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.", "delete-org-confirm-popup": "Are you sure you want to delete this organization? There is no undo.",
"accounts-allowUserDelete": "Tillåt användare att själv ta bort sina konton", "accounts-allowUserDelete": "Tillåt användare att själv ta bort sina konton",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"hide-minicard-label-text": "Dölj etikett för minikort", "hide-minicard-label-text": "Dölj etikett för minikort",
"show-desktop-drag-handles": "Visa greppytor i desktop", "show-desktop-drag-handles": "Visa greppytor i desktop",
"assignee": "Tilldelad till", "assignee": "Tilldelad till",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Allow users to self delete their account", "accounts-allowUserDelete": "Allow users to self delete their account",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Kullanıcılara hesaplarını silmek için izin ver.", "accounts-allowUserDelete": "Kullanıcılara hesaplarını silmek için izin ver.",
"hide-minicard-label-text": "Mini kart etiklerini gizle", "hide-minicard-label-text": "Mini kart etiklerini gizle",
"show-desktop-drag-handles": "Masaüstü sürükleme tutamaçlarını göster", "show-desktop-drag-handles": "Masaüstü sürükleme tutamaçlarını göster",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Atanan", "assignee": "Atanan",
"cardAssigneesPopup-title": "Atanan", "cardAssigneesPopup-title": "Atanan",
"addmore-detail": "Daha ayrıntılı bir açıklama ekle", "addmore-detail": "Daha ayrıntılı bir açıklama ekle",

View file

@ -860,6 +860,8 @@
"accounts-allowUserDelete": "Дозволити користувачам видаляти їх власні облікові записи", "accounts-allowUserDelete": "Дозволити користувачам видаляти їх власні облікові записи",
"hide-minicard-label-text": "Hide minicard label text", "hide-minicard-label-text": "Hide minicard label text",
"show-desktop-drag-handles": "Show desktop drag handles", "show-desktop-drag-handles": "Show desktop drag handles",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"assignee": "Assignee", "assignee": "Assignee",
"cardAssigneesPopup-title": "Assignee", "cardAssigneesPopup-title": "Assignee",
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",

View file

@ -862,6 +862,8 @@
"show-desktop-drag-handles": "Hiển thị nút kéo thả trên Desktop", "show-desktop-drag-handles": "Hiển thị nút kéo thả trên Desktop",
"assignee": "Người được giao", "assignee": "Người được giao",
"cardAssigneesPopup-title": "Người được giao", "cardAssigneesPopup-title": "Người được giao",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"addmore-detail": "Thêm mô tả chi tiết hơn", "addmore-detail": "Thêm mô tả chi tiết hơn",
"show-on-card": "Hiển thị trên thẻ", "show-on-card": "Hiển thị trên thẻ",
"new": "Mới", "new": "Mới",

View file

@ -863,6 +863,8 @@
"assignee": "被指派人", "assignee": "被指派人",
"cardAssigneesPopup-title": "被指派人", "cardAssigneesPopup-title": "被指派人",
"addmore-detail": "添加更详细的说明", "addmore-detail": "添加更详细的说明",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"show-on-card": "显示卡片", "show-on-card": "显示卡片",
"new": "新", "new": "新",
"editOrgPopup-title": "编辑组织", "editOrgPopup-title": "编辑组织",

View file

@ -865,6 +865,8 @@
"addmore-detail": "Add a more detailed description", "addmore-detail": "Add a more detailed description",
"show-on-card": "Show on Card", "show-on-card": "Show on Card",
"new": "New", "new": "New",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"editOrgPopup-title": "Edit Organization", "editOrgPopup-title": "Edit Organization",
"newOrgPopup-title": "New Organization", "newOrgPopup-title": "New Organization",
"editTeamPopup-title": "Edit Team", "editTeamPopup-title": "Edit Team",

View file

@ -869,6 +869,8 @@
"newOrgPopup-title": "新建組織", "newOrgPopup-title": "新建組織",
"editTeamPopup-title": "編輯團隊", "editTeamPopup-title": "編輯團隊",
"newTeamPopup-title": "新建團隊", "newTeamPopup-title": "新建團隊",
"tableVisibilityMode-allowPrivateOnly": "[Board visibility Mode] Allow private mode only",
"tableVisibilityMode" : "Board visibility mode",
"editUserPopup-title": "編輯使用者", "editUserPopup-title": "編輯使用者",
"newUserPopup-title": "新增使用者", "newUserPopup-title": "新增使用者",
"notifications": "通知", "notifications": "通知",

View file

@ -0,0 +1,73 @@
TableVisibilityModeSettings = new Mongo.Collection('tableVisibilityModeSettings');
TableVisibilityModeSettings.attachSchema(
new SimpleSchema({
_id: {
type: String,
},
booleanValue: {
type: Boolean,
optional: true,
},
sort: {
type: Number,
decimal: true,
},
createdAt: {
type: Date,
optional: true,
// eslint-disable-next-line consistent-return
autoValue() {
if (this.isInsert) {
return new Date();
} else if (this.isUpsert) {
return { $setOnInsert: new Date() };
} else {
this.unset();
}
},
},
modifiedAt: {
type: Date,
denyUpdate: false,
// eslint-disable-next-line consistent-return
autoValue() {
if (this.isInsert || this.isUpsert || this.isUpdate) {
return new Date();
} else {
this.unset();
}
},
},
}),
);
TableVisibilityModeSettings.allow({
update(userId) {
const user = Users.findOne(userId);
return user && user.isAdmin;
},
});
if (Meteor.isServer) {
Meteor.startup(() => {
TableVisibilityModeSettings._collection._ensureIndex({ modifiedAt: -1 });
TableVisibilityModeSettings.upsert(
{ _id: 'tableVisibilityMode-allowPrivateOnly' },
{
$setOnInsert: {
booleanValue: false,
sort: 0,
},
},
);
});
}
TableVisibilityModeSettings.helpers({
allowPrivateOnly() {
return TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly').booleanValue;
},
});
export default TableVisibilityModeSettings;

View file

@ -1,4 +1,5 @@
import AccountSettings from '../models/accountSettings'; import AccountSettings from '../models/accountSettings';
import TableVisibilityModeSettings from '../models/tableVisibilityModeSettings';
import Actions from '../models/actions'; import Actions from '../models/actions';
import Activities from '../models/activities'; import Activities from '../models/activities';
import Announcements from '../models/announcements'; import Announcements from '../models/announcements';
@ -645,6 +646,7 @@ Migrations.add('mutate-boardIds-in-customfields', () => {
const modifiedAtTables = [ const modifiedAtTables = [
AccountSettings, AccountSettings,
TableVisibilityModeSettings,
Actions, Actions,
Activities, Activities,
Announcements, Announcements,
@ -699,6 +701,7 @@ Migrations.add('add-missing-created-and-modified', () => {
Migrations.add('fix-incorrect-dates', () => { Migrations.add('fix-incorrect-dates', () => {
const tables = [ const tables = [
AccountSettings, AccountSettings,
TableVisibilityModeSettings,
Actions, Actions,
Activities, Activities,
Announcements, Announcements,

View file

@ -0,0 +1,3 @@
Meteor.publish('tableVisibilityModeSettings', function() {
return TableVisibilityModeSettings.find();
});