Button text to turn off the sim

Split the string Turn off before making the translate changes.
Create a new <string name="sim_action_turn_off">Turn off</string>.

Fix: 283736831
Test: Visual Test
Change-Id: I35ee1d57ac575f83d46be331c95e7435f1de6c5f
This commit is contained in:
Charlotte Lu
2023-07-19 17:06:35 +08:00
parent eb7692e052
commit 51bf318f0e
2 changed files with 3 additions and 1 deletions

View File

@@ -11029,6 +11029,8 @@
<string name="sim_action_cancel">Cancel</string>
<!-- Button which will disconnect the user from one mobile network and immediately connect to another. [CHAR LIMIT=30] -->
<string name="sim_switch_button">Switch</string>
<!-- Button text to turn off the sim. [CHAR LIMIT=30] -->
<string name="sim_action_turn_off">Turn off</string>
<!-- Title of DSDS activation failure dialog [CHAR LIMIT=40] -->
<string name="dsds_activation_failure_title">Can\u2019t activate SIM</string>
<!-- Body text of DSDS activation failure dialog. Users could toggle the selected SIM again or reboot to recover. [CHAR LIMIT=NONE] -->

View File

@@ -379,7 +379,7 @@ public class ToggleSubscriptionDialogActivity extends SubscriptionActionDialogAc
DIALOG_TAG_DISABLE_SIM_CONFIRMATION,
title,
null,
getString(R.string.condition_turn_off),
getString(R.string.sim_action_turn_off),
getString(R.string.sim_action_cancel));
}