Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

other: localize some strings for a custom build (WPB-11703) 🍒 #3537

Open
wants to merge 3 commits into
base: release/candidate
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ object ReportBugDestination : IntentDirection {
val dir = LogFileWriter.logsDirectory(context)
val logsUris = context.getUrisOfFilesInDirectory(dir)
val intent = context.multipleFileSharingIntent(logsUris)
intent.putExtra(Intent.EXTRA_EMAIL, arrayOf("[email protected]"))
intent.putExtra(Intent.EXTRA_SUBJECT, "Bug Report - Wire Beta")
intent.putExtra(Intent.EXTRA_EMAIL, arrayOf(context.getString(R.string.send_bug_report_email)))
intent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.send_bug_report_subject))
intent.putExtra(
Intent.EXTRA_TEXT,
EmailComposer.reportBugEmailTemplate(
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,12 @@ In group conversations, the group admin can overwrite this setting.</string>
<string name="backup_dialog_choose_backup_file_option">Choose Backup File</string>
<string name="backup_label_enter_password">Enter password</string>
<string name="backup_dialog_restore_backup_password_message">This backup is password protected.</string>

<!-- report bug-->
<string name="send_feedback_choose_email">\"Select email provider:\"</string>
<string name="send_bug_report_subject">Bug Report</string>
<string name="send_bug_report_email" translatable="false" >[email protected]</string>

<string name="backup_dialog_create_backup_save">Save File</string>
<string name="backup_dialog_create_backup_share">Share File</string>
<string name="backup_dialog_restore_incompatible_version_error_title">Incompatible backup</string>
Expand Down
Loading