forked from AkkomaGang/akkoma-fe
Make it possible to localize user highlight options
This commit is contained in:
parent
6d7b5b157b
commit
b4f5df9ce5
2 changed files with 10 additions and 4 deletions
|
@ -141,10 +141,10 @@
|
|||
v-model="userHighlightType"
|
||||
class="userHighlightSel"
|
||||
>
|
||||
<option value="disabled">No highlight</option>
|
||||
<option value="solid">Solid bg</option>
|
||||
<option value="striped">Striped bg</option>
|
||||
<option value="side">Side stripe</option>
|
||||
<option value="disabled">{{$t('user_card.highlight.disabled')}}</option>
|
||||
<option value="solid">{{$t('user_card.highlight.solid')}}</option>
|
||||
<option value="striped">{{$t('user_card.highlight.striped')}}</option>
|
||||
<option value="side">{{$t('user_card.highlight.side')}}</option>
|
||||
</select>
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
|
|
|
@ -746,6 +746,12 @@
|
|||
"quarantine": "Disallow user posts from federating",
|
||||
"delete_user": "Delete user",
|
||||
"delete_user_confirmation": "Are you absolutely sure? This action cannot be undone."
|
||||
},
|
||||
"highlight": {
|
||||
"disabled": "No highlight",
|
||||
"solid": "Solid bg",
|
||||
"striped": "Striped bg",
|
||||
"side": "Side stripe"
|
||||
}
|
||||
},
|
||||
"user_profile": {
|
||||
|
|
Loading…
Reference in a new issue