diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts index 44df26e23..ea9839c6c 100644 --- a/frontend/src/app/app.component.ts +++ b/frontend/src/app/app.component.ts @@ -41,7 +41,6 @@ export class AppComponent implements OnInit, AfterViewInit { cssConfigLoaded = false; @ViewChild('sidenav') sidenav: MatSidenav; - @HostBinding('class.accessibility-theme') accessibilityTheme = computed(() => this.fontService.accessibleFontSignal())(); constructor( private router: Router, diff --git a/frontend/src/app/library/guided-tour/guided-tour.component.html b/frontend/src/app/library/guided-tour/guided-tour.component.html index c03115851..2dfbabd01 100644 --- a/frontend/src/app/library/guided-tour/guided-tour.component.html +++ b/frontend/src/app/library/guided-tour/guided-tour.component.html @@ -37,7 +37,7 @@
- cartoon tour pointing to text with raised arm + {{('ALT-TEXT.GUIDED-TOUR-IMG' | translate) ?? 'tour guide image'}}
diff --git a/frontend/src/app/library/guided-tour/guided-tour.module.ts b/frontend/src/app/library/guided-tour/guided-tour.module.ts index 1053ee324..0c6b02dff 100644 --- a/frontend/src/app/library/guided-tour/guided-tour.module.ts +++ b/frontend/src/app/library/guided-tour/guided-tour.module.ts @@ -3,10 +3,11 @@ import { GuidedTourComponent } from './guided-tour.component'; import { NgModule, ErrorHandler, ModuleWithProviders } from '@angular/core'; import { CommonModule } from '@angular/common'; import { WindowRefService } from './windowref.service'; +import { TranslateModule } from '@ngx-translate/core'; @NgModule({ declarations: [GuidedTourComponent], - imports: [CommonModule], + imports: [CommonModule, TranslateModule], providers: [WindowRefService], exports: [GuidedTourComponent] }) diff --git a/frontend/src/app/ui/admin/description-template/description-template-preview/description-template-preview-dialog.component.html b/frontend/src/app/ui/admin/description-template/description-template-preview/description-template-preview-dialog.component.html index 557ea49ae..5aa7525ce 100644 --- a/frontend/src/app/ui/admin/description-template/description-template-preview/description-template-preview-dialog.component.html +++ b/frontend/src/app/ui/admin/description-template/description-template-preview/description-template-preview-dialog.component.html @@ -6,7 +6,7 @@
- +
diff --git a/frontend/src/app/ui/admin/description-template/editor/components/field-set/description-template-editor-field-set.component.html b/frontend/src/app/ui/admin/description-template/editor/components/field-set/description-template-editor-field-set.component.html index 998b29fb9..84b8ee6b1 100644 --- a/frontend/src/app/ui/admin/description-template/editor/components/field-set/description-template-editor-field-set.component.html +++ b/frontend/src/app/ui/admin/description-template/editor/components/field-set/description-template-editor-field-set.component.html @@ -160,7 +160,7 @@
  • - {{'DESCRIPTION-TEMPLATE-EDITOR.ACTIONS.FIELDSET.ADD-INPUT' | translate}} + {{('DESCRIPTION-TEMPLATE-EDITOR.ACTIONS.FIELDSET.ADD-INPUT' | translate) ?? 'add input'}} {{'DESCRIPTION-TEMPLATE-EDITOR.ACTIONS.FIELDSET.ADD-INPUT' | translate}} diff --git a/frontend/src/app/ui/annotations/annotation-dialog-component/annotation-dialog.component.html b/frontend/src/app/ui/annotations/annotation-dialog-component/annotation-dialog.component.html index e26b7197b..27bdeb453 100644 --- a/frontend/src/app/ui/annotations/annotation-dialog-component/annotation-dialog.component.html +++ b/frontend/src/app/ui/annotations/annotation-dialog-component/annotation-dialog.component.html @@ -105,12 +105,12 @@
    diff --git a/frontend/src/app/ui/dashboard/dashboard.component.html b/frontend/src/app/ui/dashboard/dashboard.component.html index f2a632289..8c332c4b9 100644 --- a/frontend/src/app/ui/dashboard/dashboard.component.html +++ b/frontend/src/app/ui/dashboard/dashboard.component.html @@ -22,7 +22,7 @@
  • @@ -54,7 +54,7 @@ - {{'ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate }} + {{('ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate) ?? 'dashboard popup image' }} @@ -176,7 +176,7 @@

    {{'DASHBOARD.INFO-TEXT' | translate}}

    - {{'ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate }} + {{('ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate) ?? 'dashboard popup image' }}
    diff --git a/frontend/src/app/ui/description/editor/form-progress-indication/form-progress-indication.component.html b/frontend/src/app/ui/description/editor/form-progress-indication/form-progress-indication.component.html index 666a761a2..b5039cb6c 100644 --- a/frontend/src/app/ui/description/editor/form-progress-indication/form-progress-indication.component.html +++ b/frontend/src/app/ui/description/editor/form-progress-indication/form-progress-indication.component.html @@ -1,7 +1,7 @@ 
    {{progressSoFar}} {{'GENERAL.PREPOSITIONS.OF' | translate}} {{total}} 
    - - + +
    {{value}}% 0% diff --git a/frontend/src/app/ui/description/editor/new-description/new-description.component.html b/frontend/src/app/ui/description/editor/new-description/new-description.component.html index 55e535c59..a3c7c8e90 100644 --- a/frontend/src/app/ui/description/editor/new-description/new-description.component.html +++ b/frontend/src/app/ui/description/editor/new-description/new-description.component.html @@ -8,7 +8,7 @@
    - +
    diff --git a/frontend/src/app/ui/description/listing/description-listing.component.html b/frontend/src/app/ui/description/listing/description-listing.component.html index 6807451b8..49a9747e4 100644 --- a/frontend/src/app/ui/description/listing/description-listing.component.html +++ b/frontend/src/app/ui/description/listing/description-listing.component.html @@ -9,7 +9,7 @@ - {{'ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate }} + {{('ALT-TEXT.DASHBOARD-POPUP-IMAGE' | translate) ?? 'dashboard pop up image' }}
    diff --git a/frontend/src/app/ui/description/listing/listing-item/description-listing-item.component.html b/frontend/src/app/ui/description/listing/listing-item/description-listing-item.component.html index 5fe60d9ea..a778d0289 100644 --- a/frontend/src/app/ui/description/listing/listing-item/description-listing-item.component.html +++ b/frontend/src/app/ui/description/listing/listing-item/description-listing-item.component.html @@ -33,32 +33,32 @@
    - open_in_new {{'DESCRIPTION-LISTING.ACTIONS.EXPORT' | translate}} - - +
    - group_add{{'DESCRIPTION-LISTING.ACTIONS.INVITE-SHORT' | translate}} - group_add{{'DESCRIPTION-LISTING.ACTIONS.INVITE-SHORT' | translate}}
    +
    - file_copy{{'DESCRIPTION-LISTING.ACTIONS.COPY-DESCRIPTION' | translate}} - file_copy{{'DESCRIPTION-LISTING.ACTIONS.COPY-DESCRIPTION' | translate}}
    +
    - delete{{ 'DESCRIPTION-LISTING.ACTIONS.DELETE' | translate }} + delete{{ 'DESCRIPTION-LISTING.ACTIONS.DELETE' | translate }}

    - {{'ALT-TEXT.GO-TO-MAIN' | translate}} + {{('ALT-TEXT.GO-TO-MAIN' | translate) ?? 'go to main page'}}

    @if(extraImageURL){ } @@ -70,7 +70,7 @@
  • @if(this.isAuthenticated()) { }@else { diff --git a/frontend/src/app/ui/navbar/navbar.component.scss b/frontend/src/app/ui/navbar/navbar.component.scss index 07c5ea8da..c1fcc53df 100644 --- a/frontend/src/app/ui/navbar/navbar.component.scss +++ b/frontend/src/app/ui/navbar/navbar.component.scss @@ -41,7 +41,7 @@ $mat-card-header-size: 40px !default; display: flex; background: #ffffff 0% 0% no-repeat padding-box; #navigation { - color: var(--dark-gray); + color: #555; } box-shadow: 0px 0px 6px #00000029; diff --git a/frontend/src/app/ui/plan/listing/listing-item/plan-listing-item.component.html b/frontend/src/app/ui/plan/listing/listing-item/plan-listing-item.component.html index 228039228..784b0f6ee 100644 --- a/frontend/src/app/ui/plan/listing/listing-item/plan-listing-item.component.html +++ b/frontend/src/app/ui/plan/listing/listing-item/plan-listing-item.component.html @@ -41,28 +41,28 @@ {{'GENERAL.ACTIONS.SHOW-MORE' | translate}} @@ -219,7 +219,7 @@
    -

    {{ 'PLAN-OVERVIEW.ACTIONS.EXPORT' | translate }}

    +

    {{ 'PLAN-OVERVIEW.ACTIONS.EXPORT' | translate }}

    diff --git a/frontend/src/app/ui/plan/plan-editor-blueprint/form-progress-indication/plan-form-progress-indication.component.html b/frontend/src/app/ui/plan/plan-editor-blueprint/form-progress-indication/plan-form-progress-indication.component.html index 68f919097..0852c4ad4 100644 --- a/frontend/src/app/ui/plan/plan-editor-blueprint/form-progress-indication/plan-form-progress-indication.component.html +++ b/frontend/src/app/ui/plan/plan-editor-blueprint/form-progress-indication/plan-form-progress-indication.component.html @@ -1,5 +1,5 @@ 
    {{progressSoFar}} {{'GENERAL.PREPOSITIONS.OF' | translate}} {{total}}
    - +
    {{value}}%
    diff --git a/frontend/src/app/ui/user-profile/user-profile.component.html b/frontend/src/app/ui/user-profile/user-profile.component.html index 3a6e3a19e..43f56fddd 100644 --- a/frontend/src/app/ui/user-profile/user-profile.component.html +++ b/frontend/src/app/ui/user-profile/user-profile.component.html @@ -30,7 +30,7 @@
    - {{''ALT-TEXT.USER-AVATAR' | translate}} + {{('ALT-TEXT.USER-AVATAR' | translate) ?? 'user avatar'}}
    {{formGroup.get('name').value}}
    diff --git a/frontend/src/assets/i18n/baq.json b/frontend/src/assets/i18n/baq.json index 65c2444fa..7bd04f618 100644 --- a/frontend/src/assets/i18n/baq.json +++ b/frontend/src/assets/i18n/baq.json @@ -2603,6 +2603,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/de.json b/frontend/src/assets/i18n/de.json index a574e9dd0..b3cc05df3 100644 --- a/frontend/src/assets/i18n/de.json +++ b/frontend/src/assets/i18n/de.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/en.json b/frontend/src/assets/i18n/en.json index 9525da827..a94e21982 100644 --- a/frontend/src/assets/i18n/en.json +++ b/frontend/src/assets/i18n/en.json @@ -2607,6 +2607,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/es.json b/frontend/src/assets/i18n/es.json index 91c206ab0..3d1ce0b95 100644 --- a/frontend/src/assets/i18n/es.json +++ b/frontend/src/assets/i18n/es.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/gr.json b/frontend/src/assets/i18n/gr.json index bcac119d7..6ed82cc1d 100644 --- a/frontend/src/assets/i18n/gr.json +++ b/frontend/src/assets/i18n/gr.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/hr.json b/frontend/src/assets/i18n/hr.json index 8b31e4ff9..c549a6f02 100644 --- a/frontend/src/assets/i18n/hr.json +++ b/frontend/src/assets/i18n/hr.json @@ -2605,6 +2605,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/pl.json b/frontend/src/assets/i18n/pl.json index d59084a08..41de065ad 100644 --- a/frontend/src/assets/i18n/pl.json +++ b/frontend/src/assets/i18n/pl.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/pt.json b/frontend/src/assets/i18n/pt.json index a38506d35..a233a388c 100644 --- a/frontend/src/assets/i18n/pt.json +++ b/frontend/src/assets/i18n/pt.json @@ -2605,6 +2605,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/sk.json b/frontend/src/assets/i18n/sk.json index 515249632..aef82702d 100644 --- a/frontend/src/assets/i18n/sk.json +++ b/frontend/src/assets/i18n/sk.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/sr.json b/frontend/src/assets/i18n/sr.json index cfb479c41..7003d8e6d 100644 --- a/frontend/src/assets/i18n/sr.json +++ b/frontend/src/assets/i18n/sr.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/assets/i18n/tr.json b/frontend/src/assets/i18n/tr.json index 9e39c914c..b562c4c65 100644 --- a/frontend/src/assets/i18n/tr.json +++ b/frontend/src/assets/i18n/tr.json @@ -2606,6 +2606,8 @@ "MORE-ACTIONS": "More actions", "OPEN-MENU-FOR": "Open menu", "CLOSE-RELEASE": "Close release notifications", - "CLOSE-INTRO-CARD": "Close intro card" + "CLOSE-INTRO-CARD": "Close intro card", + "GUIDED-TOUR-IMG": "cartoon tour pointing to text with raised arm", + "PROGRESS-BAR": "Percentage of the form that is completed" } } diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 5d17cf960..80fb338de 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -157,7 +157,6 @@ $mat-accessibility-theme: mat.m2-define-light-theme((color: (primary: $mat-theme body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 { font-family: Roboto, sans-serif; font-weight: 300; - line-height: 1.5em; } @@ -172,6 +171,7 @@ a { } } + .required-text { font-size: 13px; } @@ -480,7 +480,7 @@ button, .mdc-button, .mat-mdc-button, .mdc-button:has(.material-icons,mat-icon,[ &.rounded-btn{ padding: 0.62rem 1.87rem; - height: 40px; + min-height: 40px; border-radius: 30px; opacity: 1;