Snoop Logger: fix descriptions
Test: refactoring CL. Existing unit tests still pass Merged-In: Ie6a6b27247896e2a9a410197135e44a22ab1428c Change-Id: Ie6a6b27247896e2a9a410197135e44a22ab1428c
This commit is contained in:
@@ -5399,18 +5399,20 @@
|
|||||||
<string name="experimental_category_title">Experimental</string>
|
<string name="experimental_category_title">Experimental</string>
|
||||||
<!-- Title for feature flags dashboard where developers can turn on experimental features [CHAR LIMIT=50] -->
|
<!-- Title for feature flags dashboard where developers can turn on experimental features [CHAR LIMIT=50] -->
|
||||||
<string name="feature_flags_dashboard_title">Feature flags</string>
|
<string name="feature_flags_dashboard_title">Feature flags</string>
|
||||||
<!-- Title for snoop logger filters dashboard where developers can turn on filters [CHAR LIMIT=50] -->
|
<!-- Title for snoop logger filters dashboard where developers can turn on filters [CHAR LIMIT=100] -->
|
||||||
<string name="snoop_logger_filters_dashboard_title">Snoop Logger Filters</string>
|
<string name="bt_hci_snoop_log_filters_dashboard_title">Bluetooth HCI snoop log filtering</string>
|
||||||
<!-- Summary for the snoop logger filters [CHAR LIMIT=50] -->
|
<!-- Summary for the snoop logger filters [CHAR LIMIT=100] -->
|
||||||
<string name="bt_hci_snoop_log_filters_dashboard_summary">Set filters (Toggle Bluetooth after changing this setting)</string>
|
<string name="bt_hci_snoop_log_filters_dashboard_summary">Set filters</string>
|
||||||
<!-- Title for the snoop logger pbap filter [CHAR LIMIT=50] -->
|
<!-- Summary for the snoop logger filters [CHAR LIMIT=100] -->
|
||||||
<string name="bt_hci_snoop_log_filter_pbap_title">Snoop Logger Filter PBAP</string>
|
<string name="bt_hci_snoop_log_filters_dashboard_footer">Disable and enable Bluetooth for the changes to take effect</string>
|
||||||
<!-- Title for the snoop logger map filter [CHAR LIMIT=50] -->
|
<!-- Title for the snoop logger pbap filter [CHAR LIMIT=100] -->
|
||||||
<string name="bt_hci_snoop_log_filter_map_title">Snoop Logger Filter MAP</string>
|
<string name="bt_hci_snoop_log_filter_pbap_title">Bluetooth HCI snoop log filtering PBAP</string>
|
||||||
<!-- Summary for the snoop logger filters [CHAR LIMIT=50] -->
|
<!-- Title for the snoop logger map filter [CHAR LIMIT=100] -->
|
||||||
<string name="bt_hci_snoop_log_filter_summary">Set filtering mode. (Toggle Bluetooth after changing this setting)</string>
|
<string name="bt_hci_snoop_log_filter_map_title">Bluetooth HCI snoop log filtering MAP</string>
|
||||||
<!-- Summary for the snoop logger profile filters while disabled [CHAR LIMIT=50] -->
|
<!-- Summary for the snoop logger filters [CHAR LIMIT=100] -->
|
||||||
<string name="bt_hci_snoop_log_filtered_mode_disabled_summary">Enable Snoop Log Mode Filtered to change this option.</string>
|
<string name="bt_hci_snoop_log_filter_summary">Set filtering mode. (Disable and enable Bluetooth for the changes to take effect)</string>
|
||||||
|
<!-- Summary for the snoop logger profile filters while disabled [CHAR LIMIT=100] -->
|
||||||
|
<string name="bt_hci_snoop_log_filtered_mode_disabled_summary">Set Bluetooth HCI snoop log mode to Enabled Filtered to change this option</string>
|
||||||
<!-- Title for the Talkback Accessibility Service. Displayed on the Accessibility Settings screen in Setup Wizard. [CHAR_LIMIT=25] -->
|
<!-- Title for the Talkback Accessibility Service. Displayed on the Accessibility Settings screen in Setup Wizard. [CHAR_LIMIT=25] -->
|
||||||
<string name="talkback_title">Talkback</string>
|
<string name="talkback_title">Talkback</string>
|
||||||
<!-- Summary for the Talkback Accessibility Service. Lets the user know that Talkback is a screenreader and that it is usually most helpful to blind and low vision users and whether the service is on. [CHAR_LIMIT=none] -->
|
<!-- Summary for the Talkback Accessibility Service. Lets the user know that Talkback is a screenreader and that it is usually most helpful to blind and low vision users and whether the service is on. [CHAR_LIMIT=none] -->
|
||||||
|
@@ -82,7 +82,7 @@
|
|||||||
|
|
||||||
<Preference
|
<Preference
|
||||||
android:key="snoop_logger_filters_dashboard"
|
android:key="snoop_logger_filters_dashboard"
|
||||||
android:title="@string/snoop_logger_filters_dashboard_title"
|
android:title="@string/bt_hci_snoop_log_filters_dashboard_title"
|
||||||
android:fragment=
|
android:fragment=
|
||||||
"com.android.settings.development.snooplogger.SnoopLoggerFiltersDashboard" />
|
"com.android.settings.development.snooplogger.SnoopLoggerFiltersDashboard" />
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
<PreferenceScreen
|
<PreferenceScreen
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
||||||
android:title="@string/snoop_logger_filters_dashboard_title" >
|
android:title="@string/bt_hci_snoop_log_filters_dashboard_title" >
|
||||||
|
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:key="snoop_logger_filters_category"
|
android:key="snoop_logger_filters_category"
|
||||||
@@ -26,4 +26,10 @@
|
|||||||
android:title="@string/bt_hci_snoop_log_filters_dashboard_summary"
|
android:title="@string/bt_hci_snoop_log_filters_dashboard_summary"
|
||||||
settings:controller=
|
settings:controller=
|
||||||
"com.android.settings.development.snooplogger.SnoopLoggerFiltersPreferenceController" />
|
"com.android.settings.development.snooplogger.SnoopLoggerFiltersPreferenceController" />
|
||||||
|
|
||||||
|
<com.android.settingslib.widget.FooterPreference
|
||||||
|
android:key="snoop_logger_filters_footer"
|
||||||
|
android:title="@string/bt_hci_snoop_log_filters_dashboard_footer"
|
||||||
|
android:selectable="false"
|
||||||
|
settings:searchable="false"/>
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
Reference in New Issue
Block a user