[fenix] Added strings and keys to XML

pull/600/head
Marc Leclair 2 years ago committed by mergify[bot]
parent 6126e10dd5
commit 57b2f43a55

@ -286,6 +286,7 @@
<!-- Secret Info Setting Keys -->
<string name="pref_key_secret_debug_info" translatable="false">pref_key_secret_debug_info</string>
<string name="pref_key_start_profiler" translatable="false">pref_key_start_profiler</string>
<!-- Secret Settings -->
<string name="pref_key_show_address_feature" translatable="false">pref_key_show_address_feature</string>

@ -53,4 +53,44 @@
<!-- Secret debug info strings -->
<string name="debug_info_region_home" translatable="false">Home region</string>
<string name="debug_info_region_current" translatable="false">Current region</string>
<!-- Profiler settings -->
<string name="preferences_start_profiler">Start Profiler</string>
<string name="profiler_stop">Stop Profiler</string>
<string name="profiler_settings_title">Profiler Settings</string>
<string name="profiler_filter_firefox">Firefox</string>
<string name="profiler_running">Profiler is currently running</string>
<string name="profiler_filter_firefox_explain">Recommended preset for profiling Firefox</string>
<string name="profiler_filter_graphics">Graphics</string>
<string name="profiler_filter_graphics_explain">Preset for investigating graphics bugs in Firefox</string>
<string name="profiler_filter_media">Media</string>
<string name="profiler_filter_media_explain">Preset for investigating audio and video bugs in Firefox</string>
<string name="profiler_filter_networking">Networking</string>
<string name="profiler_filter_networking_explain">Preset for investigating networking bugs in Firefox</string>
<string name="profiler_start_dialog_started">Profiler started</string>
<string name="profiler_save_method">Would you like to save your profile as:</string>
<string name="profiler_save_method_url">URL</string>
<string name="profiler_save_method_url_explained">The profile will upload automatically with all the information gathered and provide you a link from profiler.firefox.com</string>
<string name="profiler_save_method_file">File</string>
<string name="profiler_save_method_file_explained">The file will be saved locally on your android device. To share it, go to profiler.firefox.com on your computer or mobile device</string>
<string name="profiler_start_cancel">Cancel</string>
<string name="profiler_gathering">Gathering the profile</string>
<string name="profiler_waiting_start">Waiting for Profiler to start</string>
<string name="profiler_url_warning">Saving to URL warning</string>
<string name="profiler_url_warning_explained">"Saving to URL could potentially show private information such as " +
"urls and screenshots. If you want to keep these" +
"privates, save your profile as a file instead and head on over to profiler.firefox.com" +
"where you can select what to share and not share."</string>
<string name="profiler_file_save">Save as File</string>
<string name="profiler_as_url">Get Profile URL</string>
<string name="profiler_no_info">No information was gathered</string>
<string name="profiler_error">Something went wrong with the profiler</string>
<string name="profiler_io_error">Something went wrong contacting the Profiler server.</string>
<string name="profiler_file_error">Something went wrong writing the profile data to the file</string>
<string name="profiler_error_saving">Something went wrong saving the profile</string>
<string name="profiler_stop_dialogue_file_saved">The profile was saved locally</string>
<string name="profiler_stop_dialogue_file_saved_failed">Saving profile to file failed, please try again</string>
<string name="profiler_uploaded_url_to_clipboard">URL copied to clipboard successfully</string>
<string name="profile_stop_dialogue_cancel_save">Profile save operation canceled</string>
</resources>

@ -211,5 +211,10 @@
app:iconSpaceReserved="false"
android:title="@string/preferences_nimbus_experiments"
app:isPreferenceVisible="false" />
<androidx.preference.Preference
android:key="@string/pref_key_start_profiler"
app:iconSpaceReserved="false"
android:title="@string/preferences_start_profiler"
app:isPreferenceVisible="false" />
</androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>

Loading…
Cancel
Save