일본어 문구를 정리한다
일본어 로컬라이즈 문구를 최신화한다. 신고 화면에서 공용 신고 사유 문구를 제공한다.
This commit is contained in:
@@ -12,16 +12,7 @@ struct CreatorCommunityReportView: View {
|
||||
let confirmAction: (String) -> Void
|
||||
|
||||
@State private var selectedIndex: Int? = nil
|
||||
let reasons = [
|
||||
"원치 않는 상업성 콘텐츠 또는 스팸",
|
||||
"포르노 또는 음란물",
|
||||
"아동 학대",
|
||||
"증오심 표현 또는 노골적인 폭력",
|
||||
"테러 조장",
|
||||
"괴롭힘 또는 폭력",
|
||||
"자살 또는 자해",
|
||||
"잘못된 정보"
|
||||
]
|
||||
let reasons = I18n.Report.reasons
|
||||
|
||||
var body: some View {
|
||||
ZStack {
|
||||
@@ -31,7 +22,7 @@ struct CreatorCommunityReportView: View {
|
||||
.onTapGesture { isShowing = false }
|
||||
|
||||
VStack(spacing: 13.3) {
|
||||
Text("게시물 신고")
|
||||
Text(I18n.Report.postReportTitle)
|
||||
.font(.custom(Font.medium.rawValue, size: 16.7))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
|
||||
@@ -59,14 +50,14 @@ struct CreatorCommunityReportView: View {
|
||||
HStack(spacing: 26.7) {
|
||||
Spacer()
|
||||
|
||||
Text("취소")
|
||||
Text(I18n.Common.cancel)
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.onTapGesture {
|
||||
isShowing = false
|
||||
}
|
||||
|
||||
Text("신고")
|
||||
Text(I18n.Report.reportAction)
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.onTapGesture {
|
||||
|
||||
Reference in New Issue
Block a user