From cb10ad3a20536cdde01eb7c02b68da8a07321347 Mon Sep 17 00:00:00 2001 From: seve12 Date: Wed, 10 Sep 2025 13:04:37 +0300 Subject: [PATCH] Fixed 9.2.4.6, 9.1.3.5 and 11.7 --- client/components/boards/boardBody.js | 10 +++++++++- client/components/boards/boardHeader.jade | 2 +- config/accounts.js | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js index 29bf5e5bb..c900e795d 100644 --- a/client/components/boards/boardBody.js +++ b/client/components/boards/boardBody.js @@ -341,11 +341,19 @@ BlazeComponent.extendComponent({ timezone: 'local', weekNumbers: true, header: { - left: 'title today prev,next', + left: 'title today prev,next', center: 'agendaDay,listDay,timelineDay agendaWeek,listWeek,timelineWeek month,listMonth', right: '', }, + buttonText: { + prev: TAPi18n.__('calendar-previous-month'), + next: TAPi18n.__('calendar-next-month'), + }, + ariaLabel: { + prev: TAPi18n.__('calendar-previous-month'), + next: TAPi18n.__('calendar-next-month'), + }, // height: 'parent', nope, doesn't work as the parent might be small height: 'auto', /* TODO: lists as resources: https://fullcalendar.io/docs/vertical-resource-view */ diff --git a/client/components/boards/boardHeader.jade b/client/components/boards/boardHeader.jade index 06cb0d549..db7d3886a 100644 --- a/client/components/boards/boardHeader.jade +++ b/client/components/boards/boardHeader.jade @@ -17,7 +17,7 @@ template(name="boardHeaderBar") i.fa.fa-pencil-square-o a.board-header-btn.js-star-board(class="{{#if isStarred}}is-active{{/if}}" - title="{{#if isStarred}}{{_ 'click-to-unstar'}}{{else}}{{_ 'click-to-star'}}{{/if}} {{_ 'starred-boards-description'}}") + title="{{#if isStarred}}{{_ 'star-board-short-unstar'}}{{else}}{{_ 'star-board-short-star'}}{{/if}}" aria-label="{{#if isStarred}}{{_ 'star-board-short-unstar'}}{{else}}{{_ 'star-board-short-star'}}{{/if}}") i.fa(class="fa-star{{#unless isStarred}}-o{{/unless}}") if showStarCounter span diff --git a/config/accounts.js b/config/accounts.js index cbfb9d4dd..7a67a81b1 100644 --- a/config/accounts.js +++ b/config/accounts.js @@ -57,6 +57,7 @@ AccountsTemplates.addFields([ displayName: 'username', required: true, minLength: 2, + autocomplete: 'username', }, emailField, passwordField,