fix(theming): mark background button text as English

The description of the backgrounds are not translated,
so we must mark them as English.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/62242/head
Ferdinand Thiessen 1 month ago
parent e92c9192ea
commit 36e4ccd2f6
No known key found for this signature in database
GPG Key ID: 7E849AE05218500F
  1. 4
      apps/theming/src/components/UserSectionBackground.vue

@ -229,7 +229,6 @@ async function pickFile() {
v-for="shippedBackground in shippedBackgrounds"
:key="shippedBackground.name"
:title="shippedBackground.details.attribution"
:aria-label="shippedBackground.details.description"
:aria-pressed="currentBackgroundImage === shippedBackground.name"
class="button-vue"
:class="$style.backgroundSelect__entry"
@ -242,6 +241,9 @@ async function pickFile() {
v-if="currentBackgroundImage === shippedBackground.name"
:class="$style.backgroundSelect__entryIcon"
:path="mdiCheck" />
<span class="hidden-visually" lang="en">
{{ shippedBackground.details.description }}
</span>
</button>
</fieldset>
</fieldset>

Loading…
Cancel
Save