diff --git a/yobble/Resources/Localizable.xcstrings b/yobble/Resources/Localizable.xcstrings index b84a6fd..b640518 100644 --- a/yobble/Resources/Localizable.xcstrings +++ b/yobble/Resources/Localizable.xcstrings @@ -1823,6 +1823,7 @@ }, "Получить ответ от команды" : { "comment" : "feedback: contact toggle", + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -1832,6 +1833,9 @@ } } }, + "Получить ответ от команды дополнительно по email" : { + "comment" : "feedback: contact toggle" + }, "Пользователь \"%1$@\" будет удалён из списка заблокированных." : { "comment" : "Unblock confirmation message" }, diff --git a/yobble/Views/Tab/Settings/FeedbackView.swift b/yobble/Views/Tab/Settings/FeedbackView.swift index e2abc1e..083922b 100644 --- a/yobble/Views/Tab/Settings/FeedbackView.swift +++ b/yobble/Views/Tab/Settings/FeedbackView.swift @@ -56,7 +56,7 @@ struct FeedbackView: View { .padding(.horizontal, 20) } .background(Color(.systemGroupedBackground).ignoresSafeArea()) - .navigationTitle(NSLocalizedString("Обратная связь (не работает)", comment: "feedback: navigation title")) + .navigationTitle(NSLocalizedString("Обратная связь", comment: "feedback: navigation title")) .navigationBarTitleDisplayMode(.inline) .simultaneousGesture( TapGesture().onEnded { @@ -177,9 +177,9 @@ struct FeedbackView: View { private var contactSection: some View { VStack(alignment: .leading, spacing: 12) { - sectionTitle(NSLocalizedString("Нужно ли вам ответить?", comment: "feedback: contact title")) +// sectionTitle(NSLocalizedString("Нужно ли вам ответить?", comment: "feedback: contact title")) - Toggle(NSLocalizedString("Получить ответ от команды", comment: "feedback: contact toggle"), isOn: $wantsResponse) + Toggle(NSLocalizedString("Получить ответ от команды дополнительно по email", comment: "feedback: contact toggle"), isOn: $wantsResponse) .toggleStyle(SwitchToggleStyle(tint: .accentColor)) if wantsResponse {