mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
Hide minicard label text: per user checkbox setting at sidebar.
Thanks to xet7 ! Closes #1466, closes #2561
This commit is contained in:
parent
9e60b41438
commit
f7e0b837d3
56 changed files with 36308 additions and 36205 deletions
|
|
@ -8,9 +8,12 @@ template(name="minicard")
|
||||||
if labels
|
if labels
|
||||||
.minicard-labels
|
.minicard-labels
|
||||||
each labels
|
each labels
|
||||||
|
unless hiddenMinicardLabelText
|
||||||
span.card-label(class="card-label-{{color}}" title=name)
|
span.card-label(class="card-label-{{color}}" title=name)
|
||||||
+viewer
|
+viewer
|
||||||
= name
|
= name
|
||||||
|
if hiddenMinicardLabelText
|
||||||
|
.minicard-label(class="card-label-{{color}}" title="{{name}}")
|
||||||
.minicard-title
|
.minicard-title
|
||||||
.handle
|
.handle
|
||||||
.fa.fa-arrows
|
.fa.fa-arrows
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,17 @@ BlazeComponent.extendComponent({
|
||||||
Utils.goBoardId(this.data().linkedId);
|
Utils.goBoardId(this.data().linkedId);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'click .js-toggle-minicard-label-text'() {
|
||||||
|
Meteor.call('toggleMinicardLabelText');
|
||||||
|
},
|
||||||
|
},
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
}).register('minicard');
|
}).register('minicard');
|
||||||
|
|
||||||
|
Template.minicard.helpers({
|
||||||
|
hiddenMinicardLabelText() {
|
||||||
|
return Meteor.user().hasHiddenMinicardLabelText();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,11 @@ template(name='homeSidebar')
|
||||||
+membersWidget
|
+membersWidget
|
||||||
hr
|
hr
|
||||||
+labelsWidget
|
+labelsWidget
|
||||||
|
ul#cards.label-text-hidden
|
||||||
|
a.flex.js-toggle-minicard-label-text
|
||||||
|
span {{_ 'hide-minicard-label-text'}}
|
||||||
|
b
|
||||||
|
.materialCheckBox(class="{{#if hiddenMinicardLabelText}}is-checked{{/if}}")
|
||||||
hr
|
hr
|
||||||
unless currentUser.isNoComments
|
unless currentUser.isNoComments
|
||||||
h3
|
h3
|
||||||
|
|
|
||||||
|
|
@ -101,6 +101,9 @@ BlazeComponent.extendComponent({
|
||||||
'click .js-hide-sidebar': this.hide,
|
'click .js-hide-sidebar': this.hide,
|
||||||
'click .js-toggle-sidebar': this.toggle,
|
'click .js-toggle-sidebar': this.toggle,
|
||||||
'click .js-back-home': this.setView,
|
'click .js-back-home': this.setView,
|
||||||
|
'click .js-toggle-minicard-label-text'() {
|
||||||
|
Meteor.call('toggleMinicardLabelText');
|
||||||
|
},
|
||||||
'click .js-shortcuts'() {
|
'click .js-shortcuts'() {
|
||||||
FlowRouter.go('shortcuts');
|
FlowRouter.go('shortcuts');
|
||||||
},
|
},
|
||||||
|
|
@ -111,6 +114,12 @@ BlazeComponent.extendComponent({
|
||||||
|
|
||||||
Blaze.registerHelper('Sidebar', () => Sidebar);
|
Blaze.registerHelper('Sidebar', () => Sidebar);
|
||||||
|
|
||||||
|
Template.homeSidebar.helpers({
|
||||||
|
hiddenMinicardLabelText() {
|
||||||
|
return Meteor.user().hasHiddenMinicardLabelText();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
EscapeActions.register(
|
EscapeActions.register(
|
||||||
'sidebarView',
|
'sidebarView',
|
||||||
() => {
|
() => {
|
||||||
|
|
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"accept": "Accepta",
|
"accept": "Accepta",
|
||||||
"act-activity-notify": "Notificació d'activitat",
|
"act-activity-notify": "Notificació d'activitat",
|
||||||
"act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
"act-addAttachment": "afegit l'adjunt __attachment__ a la targeta __card__ en la llista __list__ al canal __swimlane__ al tauler __tauler__",
|
||||||
"act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
"act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
||||||
"act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
"act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
||||||
"act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
"act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
"and-n-other-card": "And __count__ other card",
|
"and-n-other-card": "And __count__ other card",
|
||||||
"and-n-other-card_plural": "And __count__ other cards",
|
"and-n-other-card_plural": "And __count__ other cards",
|
||||||
"apply": "Aplica",
|
"apply": "Aplica",
|
||||||
"app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
|
"app-is-offline": "Carregant. Per favor, espereu. Actualitzar la pàgina pot comportar pèrdua de dades. Si la càrrega no funciona, comproveu que el servidor no s'ha aturat. ",
|
||||||
"archive": "Moure al arxiu",
|
"archive": "Moure al arxiu",
|
||||||
"archive-all": "Moure tot al arxiu",
|
"archive-all": "Moure tot al arxiu",
|
||||||
"archive-board": "Moure Tauler al Arxiu",
|
"archive-board": "Moure Tauler al Arxiu",
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
|
"act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
|
||||||
"act-atUserComment": "Du wurdest erwähnt in [__board__] __card__",
|
"act-atUserComment": "Du wurdest erwähnt in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
|
"delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
|
||||||
"accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen"
|
"accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -724,5 +724,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "به شما در [__board__] __card__ اشاره شده",
|
"act-atUserComment": "به شما در [__board__] __card__ اشاره شده",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
|
"act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
|
||||||
"act-atUserComment": "Sinut mainittiin [__board__] __card__",
|
"act-atUserComment": "Sinut mainittiin [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
|
"delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
|
||||||
"accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse"
|
"accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse",
|
||||||
|
"hide-minicard-label-text": "Piilota minikortin tunniste teksti"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Êtes-vous sûr de vouloir supprimer ce compte ? Cette opération ne peut pas être annulée. ",
|
"delete-user-confirm-popup": "Êtes-vous sûr de vouloir supprimer ce compte ? Cette opération ne peut pas être annulée. ",
|
||||||
"accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte"
|
"accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ הוא עכשיו",
|
"act-duenow": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ הוא עכשיו",
|
||||||
"act-atUserComment": "אוזכרת תחת [__board__] __card__",
|
"act-atUserComment": "אוזכרת תחת [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "למחוק את החשבון הזה? אי אפשר לבטל.",
|
"delete-user-confirm-popup": "למחוק את החשבון הזה? אי אפשר לבטל.",
|
||||||
"accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם"
|
"accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "przypomina o ubiegającej teraz dacie ukończenia (__timeValue__) karty __card__",
|
"act-duenow": "przypomina o ubiegającej teraz dacie ukończenia (__timeValue__) karty __card__",
|
||||||
"act-atUserComment": "Zostałeś wspomniany na __board__ (__card__)",
|
"act-atUserComment": "Zostałeś wspomniany na __board__ (__card__)",
|
||||||
"delete-user-confirm-popup": "Czy jesteś pewien, że chcesz usunąć te konto? Nie można tego wycofać.",
|
"delete-user-confirm-popup": "Czy jesteś pewien, że chcesz usunąć te konto? Nie można tego wycofać.",
|
||||||
"accounts-allowUserDelete": "Pozwól użytkownikom na usuwanie własnych kont"
|
"accounts-allowUserDelete": "Pozwól użytkownikom na usuwanie własnych kont",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "está lembrando que o prazo final (__timeValue__) do __card__ é agora",
|
"act-duenow": "está lembrando que o prazo final (__timeValue__) do __card__ é agora",
|
||||||
"act-atUserComment": "Você foi mencionado no [__board__] __card__",
|
"act-atUserComment": "Você foi mencionado no [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Você realmente quer apagar esta conta? Não há como desfazer.",
|
"delete-user-confirm-popup": "Você realmente quer apagar esta conta? Não há como desfazer.",
|
||||||
"accounts-allowUserDelete": "Permitir que usuários apaguem a própria conta"
|
"accounts-allowUserDelete": "Permitir que usuários apaguem a própria conta",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
|
"act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
|
||||||
"act-atUserComment": "Du nämndes i [__board__] __card__",
|
"act-atUserComment": "Du nämndes i [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
|
"act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
|
||||||
"act-atUserComment": "您在 [__board__] __card__中被提到",
|
"act-atUserComment": "您在 [__board__] __card__中被提到",
|
||||||
"delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
|
"delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
|
||||||
"accounts-allowUserDelete": "允许用户自行删除其帐户"
|
"accounts-allowUserDelete": "允许用户自行删除其帐户",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -721,5 +721,6 @@
|
||||||
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
|
||||||
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
"act-atUserComment": "You were mentioned in [__board__] __card__",
|
||||||
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
|
||||||
"accounts-allowUserDelete": "Allow users to self delete their account"
|
"accounts-allowUserDelete": "Allow users to self delete their account",
|
||||||
|
"hide-minicard-label-text": "Hide minicard label text"
|
||||||
}
|
}
|
||||||
|
|
@ -109,7 +109,14 @@ Users.attachSchema(
|
||||||
},
|
},
|
||||||
'profile.hiddenSystemMessages': {
|
'profile.hiddenSystemMessages': {
|
||||||
/**
|
/**
|
||||||
* does the user wants to hide system messages?
|
* does the user want to hide system messages?
|
||||||
|
*/
|
||||||
|
type: Boolean,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
'profile.hiddenMinicardLabelText': {
|
||||||
|
/**
|
||||||
|
* does the user want to hide minicard label texts?
|
||||||
*/
|
*/
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
optional: true,
|
optional: true,
|
||||||
|
|
@ -359,6 +366,11 @@ Users.helpers({
|
||||||
return profile.hiddenSystemMessages || false;
|
return profile.hiddenSystemMessages || false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
hasHiddenMinicardLabelText() {
|
||||||
|
const profile = this.profile || {};
|
||||||
|
return profile.hiddenMinicardLabelText || false;
|
||||||
|
},
|
||||||
|
|
||||||
getEmailBuffer() {
|
getEmailBuffer() {
|
||||||
const { emailBuffer = [] } = this.profile || {};
|
const { emailBuffer = [] } = this.profile || {};
|
||||||
return emailBuffer;
|
return emailBuffer;
|
||||||
|
|
@ -462,6 +474,14 @@ Users.mutations({
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
toggleLabelText(value = false) {
|
||||||
|
return {
|
||||||
|
$set: {
|
||||||
|
'profile.hiddenMinicardLabelText': !value,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
addNotification(activityId) {
|
addNotification(activityId) {
|
||||||
return {
|
return {
|
||||||
$addToSet: {
|
$addToSet: {
|
||||||
|
|
@ -525,6 +545,10 @@ Meteor.methods({
|
||||||
const user = Meteor.user();
|
const user = Meteor.user();
|
||||||
user.toggleSystem(user.hasHiddenSystemMessages());
|
user.toggleSystem(user.hasHiddenSystemMessages());
|
||||||
},
|
},
|
||||||
|
toggleMinicardLabelText() {
|
||||||
|
const user = Meteor.user();
|
||||||
|
user.toggleLabelText(user.hasHiddenMinicardLabelText());
|
||||||
|
},
|
||||||
changeLimitToShowCardsCount(limit) {
|
changeLimitToShowCardsCount(limit) {
|
||||||
check(limit, Number);
|
check(limit, Number);
|
||||||
Meteor.user().setShowCardsCountAt(limit);
|
Meteor.user().setShowCardsCountAt(limit);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue