sm6250-common: Mark only strings as untranslatable

Change-Id: I0dc0fa82312f335c3b06c7dd8a1819775460950c
This commit is contained in:
Alexander Winkowski
2022-08-26 18:41:06 +00:00
parent 4125f06a61
commit ed9375b52e
3 changed files with 12 additions and 12 deletions

View File

@ -22,7 +22,7 @@
<!-- Boolean indicating if restoring network selection should be skipped --> <!-- Boolean indicating if restoring network selection should be skipped -->
<!-- The restoring is handled by modem if it is true--> <!-- The restoring is handled by modem if it is true-->
<bool translatable="false" name="skip_restoring_network_selection">true</bool> <bool name="skip_restoring_network_selection">true</bool>
<!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. --> <!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. -->
<bool name="config_cellBroadcastAppLinks">true</bool> <bool name="config_cellBroadcastAppLinks">true</bool>
@ -103,7 +103,7 @@
Note that doze dreams are not subject to the same start conditions as ordinary dreams. Note that doze dreams are not subject to the same start conditions as ordinary dreams.
Doze dreams will run whenever the power manager is in a dozing state. --> Doze dreams will run whenever the power manager is in a dozing state. -->
<string name="config_dozeComponent">com.android.systemui/com.android.systemui.doze.DozeService</string> <string name="config_dozeComponent" translatable="false">com.android.systemui/com.android.systemui.doze.DozeService</string>
<!-- If true, the doze component is not started until after the screen has been <!-- If true, the doze component is not started until after the screen has been
turned off and the screen off animation has been performed. --> turned off and the screen off animation has been performed. -->
@ -178,10 +178,10 @@
<!-- IWLAN network service package name to bind to by default. If none is specified in an overlay, an <!-- IWLAN network service package name to bind to by default. If none is specified in an overlay, an
empty string is passed in --> empty string is passed in -->
<string name="config_wlan_network_service_package">vendor.qti.iwlan</string> <string name="config_wlan_network_service_package" translatable="false">vendor.qti.iwlan</string>
<!-- Telephony qualified networks service package name to bind to by default. --> <!-- Telephony qualified networks service package name to bind to by default. -->
<string name="config_qualified_networks_service_package">vendor.qti.iwlan</string> <string name="config_qualified_networks_service_package" translatable="false">vendor.qti.iwlan</string>
<!-- Flag specifying whether or not IMS will use the ImsResolver dynamically --> <!-- Flag specifying whether or not IMS will use the ImsResolver dynamically -->
<bool name="config_dynamic_bind_ims">true</bool> <bool name="config_dynamic_bind_ims">true</bool>

View File

@ -26,7 +26,7 @@
<bool name="hac_enabled">true</bool> <bool name="hac_enabled">true</bool>
<!-- Show enabled lte option for lte device --> <!-- Show enabled lte option for lte device -->
<bool name="config_enabled_lte" translatable="false">true</bool> <bool name="config_enabled_lte">true</bool>
<!-- String indicating the package name of the device ImsService implementation for MMTEL. --> <!-- String indicating the package name of the device ImsService implementation for MMTEL. -->
<string name="config_ims_mmtel_package" translatable="false">org.codeaurora.ims</string> <string name="config_ims_mmtel_package" translatable="false">org.codeaurora.ims</string>

View File

@ -19,7 +19,7 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Boolean indicating whether the wifi chipset has 5GHz frequency band support --> <!-- Boolean indicating whether the wifi chipset has 5GHz frequency band support -->
<bool translatable="false" name="config_wifi5ghzSupport">true</bool> <bool name="config_wifi5ghzSupport">true</bool>
<!-- Boolean indicating whether the wifi chipset has dual frequency band support --> <!-- Boolean indicating whether the wifi chipset has dual frequency band support -->
<bool name="config_wifi_dual_band_support">true</bool> <bool name="config_wifi_dual_band_support">true</bool>
@ -52,26 +52,26 @@
<bool name="config_wifi_softap_ieee80211ac_supported">true</bool> <bool name="config_wifi_softap_ieee80211ac_supported">true</bool>
<!-- Boolean indicating whether 802.11r Fast BSS Transition is enabled on this platform --> <!-- Boolean indicating whether 802.11r Fast BSS Transition is enabled on this platform -->
<bool translatable="false" name="config_wifi_fast_bss_transition_enabled">true</bool> <bool name="config_wifi_fast_bss_transition_enabled">true</bool>
<!-- Enable adding minimum confirmation duration when sending network score to connectivity service. --> <!-- Enable adding minimum confirmation duration when sending network score to connectivity service. -->
<bool translatable="false" name="config_wifiMinConfirmationDurationSendNetworkScoreEnabled">true</bool> <bool name="config_wifiMinConfirmationDurationSendNetworkScoreEnabled">true</bool>
<!-- Integer delay in milliseconds before set wlan interface up during watchdog recovery --> <!-- Integer delay in milliseconds before set wlan interface up during watchdog recovery -->
<integer name="config_wifi_framework_recovery_timeout_delay">3000</integer> <integer name="config_wifi_framework_recovery_timeout_delay">3000</integer>
<!-- Disable WPA2 to WPA3 auto-upgrade --> <!-- Disable WPA2 to WPA3 auto-upgrade -->
<bool translatable="false" name="config_wifiSaeUpgradeEnabled">false</bool> <bool name="config_wifiSaeUpgradeEnabled">false</bool>
<!-- Wifi driver supports WPA3 Simultaneous Authentication of Equals (WPA3-SAE) for softap --> <!-- Wifi driver supports WPA3 Simultaneous Authentication of Equals (WPA3-SAE) for softap -->
<bool name="config_wifi_softap_sae_supported">true</bool> <bool name="config_wifi_softap_sae_supported">true</bool>
<!-- Wifi driver Automatic channel selection (ACS) for softap to include DFS channels --> <!-- Wifi driver Automatic channel selection (ACS) for softap to include DFS channels -->
<bool translatable="false" name="config_wifiSoftapAcsIncludeDfs">true</bool> <bool name="config_wifiSoftapAcsIncludeDfs">true</bool>
<!-- Integer indicating maximum hardware supported client number of soft ap --> <!-- Integer indicating maximum hardware supported client number of soft ap -->
<integer translatable="false" name="config_wifiHardwareSoftapMaxClientCount">32</integer> <integer name="config_wifiHardwareSoftapMaxClientCount">32</integer>
<!-- Boolean indicating that wifi only link configuratios that have exact same credentials (i.e PSK) --> <!-- Boolean indicating that wifi only link configuratios that have exact same credentials (i.e PSK) -->
<bool translatable="false" name="config_wifi_only_link_same_credential_configurations">false</bool> <bool name="config_wifi_only_link_same_credential_configurations">false</bool>
</resources> </resources>