Add translations for inbox moderation

This commit is contained in:
Karina Kwiatek 2022-06-23 21:57:41 +02:00 committed by Karina Kwiatek
parent be8ba63b95
commit 10ead35209
5 changed files with 15 additions and 12 deletions

View File

@ -0,0 +1,8 @@
.card.question--fixed{ class: hidden ? 'question--hidden' : '', tabindex: hidden ? -1 : '', aria: { hidden: hidden } }
.container
.card-body
.media
%a.pull-left{ href: show_user_profile_path(user.screen_name) }
%img.answerbox__question-user-avatar.avatar-md{ src: user.profile_picture.url(:medium) }
.media-body
= t(".title_html", screen_name: user.screen_name, user_id: user.id)

View File

@ -1,16 +1,8 @@
- provide(:title, generate_title(t(".title", user: @user.screen_name)))
.card.question--fixed
.container
.card-body
.media
%a.pull-left{ href: show_user_profile_path(@user.screen_name) }
%img.answerbox__question-user-avatar.avatar-md{ src: @user.profile_picture.url(:medium) }
.media-body
Viewing inbox for
%br
%strong= @user.screen_name
= " (##{@user.id})"
= render "header", user: @user, hidden: false
= render "header", user: @user, hidden: true
.container-lg.container--main
#entries
- @inboxes.each do |i|

View File

@ -39,7 +39,7 @@
- if current_user.mod? && user != current_user
%a.dropdown-item{ href: mod_inbox_index_path(user: user.screen_name) }
%i.fa.fa-inbox
View inbox
= t("views.actions.view_inbox")
- if current_user.has_role? :administrator
%a.dropdown-item{ href: rails_admin_path_for_resource(user), target: '_blank' }
%i.fa.fa-cogs

View File

@ -221,6 +221,7 @@ en:
subscribe: "Subscribe"
unsubscribe: "Unsubscribe"
view: "View comment smiles"
view_inbox: "View inbox"
load: "Load more"
follow: "Follow"
unfollow: "Unfollow"

View File

@ -328,5 +328,7 @@ en:
title: "Export"
moderation:
inbox:
header:
title_html: "Viewing inbox for <br><strong>%{screen_name}</strong> (#%{user_id})"
index:
title: "Inbox for %{user}"