Add a cancel string for ToggleSubscriptionDialog to handle Tamil
translation
Bug: 185553806
Test: Build
Change-Id: I90149c9e4459747d8cd1c35d00c29f81710eb6f4
Merged-In: I90149c9e4459747d8cd1c35d00c29f81710eb6f4
(cherry picked from commit 6879183335)
This commit is contained in:
committed by
SongFerng Wang
parent
9b9c5f2f93
commit
0ab2226dff
@@ -12793,6 +12793,8 @@
|
|||||||
<string name="sim_action_reboot">Restart</string>
|
<string name="sim_action_reboot">Restart</string>
|
||||||
<!-- Button on a dialog to reject SIM operations. [CHAR LIMIT=30] -->
|
<!-- Button on a dialog to reject SIM operations. [CHAR LIMIT=30] -->
|
||||||
<string name="sim_action_no_thanks">No thanks</string>
|
<string name="sim_action_no_thanks">No thanks</string>
|
||||||
|
<!-- Button text to cancel operations proposed by a sim operation dialog [CHAR LIMIT=20] -->
|
||||||
|
<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] -->
|
<!-- 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>
|
<string name="sim_switch_button">Switch</string>
|
||||||
<!-- Title of DSDS activation failure dialog [CHAR LIMIT=40] -->
|
<!-- Title of DSDS activation failure dialog [CHAR LIMIT=40] -->
|
||||||
|
|||||||
@@ -364,7 +364,7 @@ public class ToggleSubscriptionDialogActivity extends SubscriptionActionDialogAc
|
|||||||
getString(R.string.sim_action_restart_title),
|
getString(R.string.sim_action_restart_title),
|
||||||
getString(R.string.sim_action_enable_dsds_text),
|
getString(R.string.sim_action_enable_dsds_text),
|
||||||
getString(R.string.sim_action_reboot),
|
getString(R.string.sim_action_reboot),
|
||||||
getString(R.string.cancel));
|
getString(R.string.sim_action_cancel));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Displays the SIM toggling confirmation dialog. */
|
/* Displays the SIM toggling confirmation dialog. */
|
||||||
@@ -385,7 +385,7 @@ public class ToggleSubscriptionDialogActivity extends SubscriptionActionDialogAc
|
|||||||
title,
|
title,
|
||||||
null,
|
null,
|
||||||
getString(R.string.yes),
|
getString(R.string.yes),
|
||||||
getString(R.string.cancel));
|
getString(R.string.sim_action_cancel));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showEnableSimConfirmDialog() {
|
private void showEnableSimConfirmDialog() {
|
||||||
@@ -439,7 +439,7 @@ public class ToggleSubscriptionDialogActivity extends SubscriptionActionDialogAc
|
|||||||
getSwitchSubscriptionTitle(),
|
getSwitchSubscriptionTitle(),
|
||||||
getSwitchDialogBodyMsg(activeSub, isSwitchingBetweenEsims),
|
getSwitchDialogBodyMsg(activeSub, isSwitchingBetweenEsims),
|
||||||
getSwitchDialogPosBtnText(),
|
getSwitchDialogPosBtnText(),
|
||||||
getString(android.R.string.cancel));
|
getString(R.string.sim_action_cancel));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showNonSwitchSimConfirmDialog() {
|
private void showNonSwitchSimConfirmDialog() {
|
||||||
@@ -450,7 +450,7 @@ public class ToggleSubscriptionDialogActivity extends SubscriptionActionDialogAc
|
|||||||
getEnableSubscriptionTitle(),
|
getEnableSubscriptionTitle(),
|
||||||
null /* msg */,
|
null /* msg */,
|
||||||
getString(R.string.yes),
|
getString(R.string.yes),
|
||||||
getString(android.R.string.cancel));
|
getString(R.string.sim_action_cancel));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showMepSwitchSimConfirmDialog() {
|
private void showMepSwitchSimConfirmDialog() {
|
||||||
|
|||||||
Reference in New Issue
Block a user