-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
other: localize some strings for a custom build (WPB-11703) 🍒 (#3537)
Co-authored-by: Oussama Hassine <[email protected]>
- Loading branch information
1 parent
3558e72
commit 65a289c
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|