strings.xml (3429B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this file, 4 - You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <resources> 6 <!-- Title of the crash reporter dialog. %1$s will be replaced with the name of the app (e.g. Firefox Focus). --> 7 <string name="mozac_lib_crash_dialog_title">Sorry. %1$s had a problem and crashed.</string> 8 9 <!-- Label of the checkbox for sending crash reports in the crash reporter dialog. %1$s is the name of the organization (for example "Mozilla"). --> 10 <string name="mozac_lib_crash_dialog_checkbox">Send crash report to %1$s</string> 11 12 <!-- Label of the button closing the crash reporter dialog. --> 13 <string name="mozac_lib_crash_dialog_button_close">Close</string> 14 15 <!-- Label of the button closing the crash reporter dialog and restarting the app. %1$s is the name of the app (for example "Firefox"). --> 16 <string name="mozac_lib_crash_dialog_button_restart">Restart %1$s</string> 17 18 <!-- Name of the "notification channel" used for displaying a notification when the app crashed and we can't show a prompt. See https://developer.android.com/training/notify-user/channels --> 19 <string name="mozac_lib_crash_channel">Crashes</string> 20 21 <!-- Title of the crash reporter notification for background process crashes. %1$s is the name of the app (for example "Firefox"). --> 22 <string name="mozac_lib_crash_background_process_notification_title">Sorry. A problem occurred in %1$s.</string> 23 24 <!-- Label of a notification action/button that will send the crash report to Mozilla. --> 25 <string name="mozac_lib_crash_notification_action_report">Report</string> 26 27 <!-- Label of notification showing that the crash report service is running. %1$s is the name of the organization (for example "Mozilla"). --> 28 <string name="mozac_lib_send_crash_report_in_progress">Sending crash report to %1$s</string> 29 30 <!-- Label of notification showing that the crash handling service is gathering the crash data. --> 31 <string name="mozac_lib_gathering_crash_data_in_progress">Gathering crash data</string> 32 33 <!-- Label of notification showing that the telemetry service is gathering the crash data. --> 34 <string name="mozac_lib_gathering_crash_telemetry_in_progress">Gathering crash telemetry data</string> 35 36 <!-- Title of the activity that shows the list of past crashes (similar to about:crashes)--> 37 <string name="mozac_lib_crash_activity_title">Crash Reports</string> 38 39 <!-- Text shown instead of crash list if no crashes have been submitted yet --> 40 <string name="mozac_lib_crash_no_crashes">No crash reports have been submitted.</string> 41 42 <!-- Text link that will show an app chooser to share a crash report with a third-party app (e.g. gmail) --> 43 <string name="mozac_lib_crash_share">Share</string> 44 <!-- String for Ask before sending crash reports radio button in Data Collection Screen --> 45 <string name="crash_reporting_ask">Ask before sending</string> 46 <!-- String for Send crash reports automatically radio button in Data Collection Screen --> 47 <string name="crash_reporting_auto">Send automatically</string> 48 <!-- String for Never sending crash reports radio button in Data Collection Screen --> 49 <string name="crash_reporting_never">Never send</string> 50 </resources>