forked from AkkomaGang/akkoma-fe
Refactor visibleRole for better readability
Improve translation
This commit is contained in:
parent
648f635429
commit
d00b74b607
2 changed files with 5 additions and 14 deletions
|
@ -81,19 +81,10 @@ export default {
|
|||
}
|
||||
},
|
||||
visibleRole () {
|
||||
const user = this.user
|
||||
const validRole = (this.user.role === 'admin' || this.user.role === 'moderator')
|
||||
const showRole = this.isOtherUser || this.user.show_role
|
||||
|
||||
if (!(user.role === 'admin' || user.role === 'moderator')) {
|
||||
return undefined
|
||||
}
|
||||
|
||||
if (this.isOtherUser) {
|
||||
return user.role
|
||||
}
|
||||
|
||||
if (user.show_role) {
|
||||
return user.role
|
||||
}
|
||||
return validRole && showRole && this.user.role
|
||||
}
|
||||
},
|
||||
components: {
|
||||
|
|
|
@ -129,8 +129,8 @@
|
|||
"no_rich_text_description": "Убрать форматирование из всех постов",
|
||||
"hide_follows_description": "Не показывать кого я читаю",
|
||||
"hide_followers_description": "Не показывать кто читает меня",
|
||||
"show_admin_badge": "Показывать значок администратора на моей карточке пользователя",
|
||||
"show_moderator_badge": "Показывать значок модератора на моей карточке пользователя",
|
||||
"show_admin_badge": "Показывать значок администратора в моем профиле",
|
||||
"show_moderator_badge": "Показывать значок модератора в моем профиле",
|
||||
"nsfw_clickthrough": "Включить скрытие NSFW вложений",
|
||||
"panelRadius": "Панели",
|
||||
"pause_on_unfocused": "Приостановить загрузку когда вкладка не в фокусе",
|
||||
|
|
Loading…
Reference in a new issue