diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 673a03ddac4e9..5c001912e6551 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -690,11 +690,11 @@ Screen casting stopped. - Work mode off. + Work mode paused. Work mode on. - Work mode turned off. + Work mode turned paused. Work mode turned on. @@ -954,6 +954,8 @@ off. "Work profile" means a separate profile on a user's phone that's specifically for their work apps and managed by their company. "Work" is used as an adjective. [CHAR LIMIT=NONE] --> Work profile + + Paused Night Light diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/WorkModeTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/WorkModeTile.java index ef2c1c903a850..7bde64b3e7613 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tiles/WorkModeTile.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/WorkModeTile.java @@ -129,6 +129,8 @@ public class WorkModeTile extends QSTileImpl implements state.contentDescription = state.label; state.expandedAccessibilityClassName = Switch.class.getName(); state.state = state.value ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE; + state.secondaryLabel = state.value ? "" : + mContext.getString(R.string.quick_settings_work_mode_paused); } @Override