Uses placeholder and percentage formatter for seek bar state strings.
Placeholders and percentage formatter are best practice to help prevent
accidental translation errors, especially when mixing formatted strings
with literal percent signs.
Fix: 366201919
Flag: EXEMPT minor string format fix with no functionality change
Test: Use TalkBack to observe the state description of the seekbar;
observe description is unchanged (e.g. "60% left, 40% right")
Test: atest BalanceSeekBarTest
Change-Id: Ie9dcc9219d253795be31b39279ed9d01d8794f66
This commit is contained in:
@@ -13342,9 +13342,9 @@
|
||||
<!-- Summary of the Live Caption enabled state. -->
|
||||
<string name="live_caption_enabled">On</string>
|
||||
<!-- State description for the Audio Balance seek bar, with left reported before right. -->
|
||||
<string name="audio_seek_bar_state_left_first">Audio %1$d%% left, %2$d%% right</string>
|
||||
<string name="audio_seek_bar_state_left_first">Audio <xliff:g id="percent_left">%1$s</xliff:g> left, <xliff:g id="percent_right">%2$s</xliff:g> right</string>
|
||||
<!-- State description for the Audio Balance seek bar, with right reported before left. -->
|
||||
<string name="audio_seek_bar_state_right_first">Audio %1$d%% right, %2$d%% left</string>
|
||||
<string name="audio_seek_bar_state_right_first">Audio <xliff:g id="percent_right">%1$s</xliff:g> right, <xliff:g id="percent_left">%2$s</xliff:g> left</string>
|
||||
|
||||
<!-- Warning text about the visibility of device name. [CHAR LIMIT=NONE] -->
|
||||
<string name="about_phone_device_name_warning">Your device name is visible to apps you installed. It may also be seen by other people when you connect to Bluetooth devices, connect to a Wi-Fi network or set up a Wi-Fi hotspot.</string>
|
||||
|
||||
Reference in New Issue
Block a user