Skip to content

Commit

Permalink
feat: make email non translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
ohassine committed Oct 21, 2024
1 parent 581c4ad commit c869096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ object ReportBugDestination : IntentDirection {
val dir = LogFileWriter.logsDirectory(context)
val logsUris = context.getUrisOfFilesInDirectory(dir)
val intent = context.multipleFileSharingIntent(logsUris)
intent.putExtra(Intent.EXTRA_EMAIL, arrayOf(context.getString(R.string.send_bug__report_email)))
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,
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@
<!-- 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">[email protected]</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>
Expand Down

0 comments on commit c869096

Please sign in to comment.