- Added translation: español de América Latina

- Some lint fixes

Thanks to translators!
This commit is contained in:
Lauri Ojansivu 2021-03-25 12:18:33 +02:00
parent 2ebc34e901
commit ccc9efb270
67 changed files with 60056 additions and 58996 deletions

View file

@ -54,9 +54,9 @@ Template.boardChangeTitlePopup.events({
});
BlazeComponent.extendComponent({
onCreated(){
onCreated() {
// set sort to default
Session.set('sortBy','')
Session.set('sortBy', '');
},
watchLevel() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
@ -134,7 +134,7 @@ BlazeComponent.extendComponent({
Filter.reset();
},
'click .js-sort-reset'() {
Session.set('sortBy','')
Session.set('sortBy', '');
},
'click .js-open-search-view'() {
Sidebar.setView('search');
@ -169,9 +169,9 @@ Template.boardHeaderBar.helpers({
boardView() {
return Utils.boardView();
},
isSortActive(){
isSortActive() {
return Session.get('sortBy') ? true : false;
}
},
});
Template.boardChangeViewPopup.events({
@ -416,7 +416,7 @@ BlazeComponent.extendComponent({
Session.set('sortBy', sortBy);
sortCardsBy.set(TAPi18n.__('date-created-oldest-first'));
Popup.close();
}
},
},
];
},