Merge pull request #33163 from nextcloud/enh/a11y-account-property-labels

pull/33175/head
John Molakvoæ 2022-07-08 11:41:50 +07:00 committed by GitHub
commit 48ece9f345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

@ -102,7 +102,11 @@ export default {
computed: {
ariaLabel() {
return t('settings', 'Change scope level of {accountProperty}', { accountProperty: this.accountPropertyLowerCase })
return t('settings', 'Change scope level of {accountProperty}, current scope is {scope}', { accountProperty: this.accountPropertyLowerCase, scope: this.scopeDisplayNameLowerCase })
},
scopeDisplayNameLowerCase() {
return SCOPE_PROPERTY_ENUM[this.scope].displayName.toLocaleLowerCase()
},
scopeIcon() {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long