mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Make project selection ARIA attributes translatable.
This commit is contained in:
parent
ff576c5b9a
commit
c105048e8d
1 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@
|
||||||
input.select-all(
|
input.select-all(
|
||||||
select-all,
|
select-all,
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
aria-label="Select all"
|
aria-label=translate('select_all_projects')
|
||||||
)
|
)
|
||||||
span.header.clickable(ng-click="changePredicate('name')") #{translate("title")}
|
span.header.clickable(ng-click="changePredicate('name')") #{translate("title")}
|
||||||
i.tablesort.fa(ng-class="getSortIconClass('name')")
|
i.tablesort.fa(ng-class="getSortIconClass('name')")
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
type="checkbox",
|
type="checkbox",
|
||||||
ng-model="project.selected"
|
ng-model="project.selected"
|
||||||
stop-propagation="click"
|
stop-propagation="click"
|
||||||
aria-label="Select {{ project.name }}"
|
aria-label=translate('select_project') + " '{{ project.name }}'"
|
||||||
)
|
)
|
||||||
span
|
span
|
||||||
a.projectName(
|
a.projectName(
|
||||||
|
|
Loading…
Reference in a new issue