diff options
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/arrays.xml | 23 | ||||
-rw-r--r-- | res/values/strings.xml | 5 |
2 files changed, 27 insertions, 1 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 6194719..482830c 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -533,11 +533,32 @@ <item>Long</item> </string-array> - <!-- Valeus for the list of long press timeout options. --> + <!-- Values for the list of long press timeout options. --> <string-array name="long_press_timeout_selector_values" translatable="false"> <item>500</item> <item>1000</item> <item>1500</item> </string-array> + <!-- Titles for HDCP checking preference. [CHAR LIMIT=35] --> + <string-array name="hdcp_checking_titles"> + <item>Never check</item> + <item>Check for DRM content only</item> + <item>Always check</item> + </string-array> + + <!-- Values for HDCP checking preference. --> + <string-array name="hdcp_checking_values" translatable="false" > + <item>never</item> + <item>drm-only</item> + <item>always</item> + </string-array> + + <!-- Summaries for HDCP checking preference. [CHAR LIMIT=100]--> + <string-array name="hdcp_checking_summaries" > + <item>Never use HDCP checking</item> + <item>Use HDCP checking for DRM content only</item> + <item>Always use HDCP checking</item> + </string-array> </resources> + diff --git a/res/values/strings.xml b/res/values/strings.xml index b3e439f..80f3d57 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -3319,4 +3319,9 @@ found in the list of installed applications.</string> <string name="misc_files_selected_count_bytes"><xliff:g id="number" example="3.25MB">%1$s</xliff:g> out of <xliff:g id="total" example="15.25MB">%2$s</xliff:g></string> <!-- action to select all [CHAR LIMIT=30] --> <string name="select_all">Select All</string> + + <!-- HDCP checking title, used for debug purposes only. [CHAR LIMIT=25] --> + <string name="hdcp_checking_title">HDCP checking</string> + <!-- HDCP checking dialog title, used for debug purposes only. [CHAR LIMIT=25] --> + <string name="hdcp_checking_dialog_title">Set HDCP checking behavior</string> </resources> |