Skip to content

Commit 9fc8882

Browse files
josiahcbloomerclaude
authored andcommitted
fw/quick_launch: rename toggle actions for clarity
Added "Toggle" to the beginning of some of the Quick Launch toggle actions, making their purpose more clear. "Airplane Mode" > "Toggle Airplane Mode" "Backlight" > "Toggle Backlight" "Motion Backlight" > "Toggle Motion Backlight" "Quiet Time" > "Toggle Quiet Time" Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Signed-off-by: Josiah Bloomer <josiah@bloomer.cc>
1 parent 58f47cc commit 9fc8882

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

src/fw/apps/system/toggle/airplane_mode.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ const PebbleProcessMd *airplane_mode_toggle_get_app_info(void) {
4848
.uuid = AIRPLANE_MODE_TOGGLE_UUID,
4949
.visibility = ProcessVisibilityQuickLaunch,
5050
},
51-
.name = i18n_noop("Airplane Mode"),
51+
/// The Quick Launch action that toggles Airplane Mode.
52+
.name = i18n_noop("Toggle Airplane Mode"),
5253
};
5354
return &s_app_info.common;
5455
}

src/fw/apps/system/toggle/backlight_state.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ const PebbleProcessMd *backlight_state_toggle_get_app_info(void) {
4949
.uuid = BACKLIGHT_STATE_TOGGLE_UUID,
5050
.visibility = ProcessVisibilityQuickLaunch,
5151
},
52-
.name = i18n_noop("Backlight"),
52+
/// The Quick Launch action that toggles the backlight.
53+
.name = i18n_noop("Toggle Backlight"),
5354
};
5455
return &s_app_info.common;
5556
}

src/fw/apps/system/toggle/motion_backlight.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ const PebbleProcessMd *motion_backlight_toggle_get_app_info(void) {
4646
.uuid = MOTION_BACKLIGHT_TOGGLE_UUID,
4747
.visibility = ProcessVisibilityQuickLaunch,
4848
},
49-
.name = i18n_noop("Motion Backlight"),
49+
/// The Quick Launch action that toggles the motion backlight.
50+
.name = i18n_noop("Toggle Motion Backlight"),
5051
};
5152
return &s_app_info.common;
5253
}

src/fw/apps/system/toggle/quiet_time.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ const PebbleProcessMd *quiet_time_toggle_get_app_info(void) {
2121
.uuid = QUIET_TIME_TOGGLE_UUID,
2222
.visibility = ProcessVisibilityQuickLaunch,
2323
},
24-
.name = i18n_noop("Quiet Time"),
24+
/// The Quick Launch action that toggles Quiet Time.
25+
.name = i18n_noop("Toggle Quiet Time"),
2526
};
2627
return &s_app_info.common;
2728
}

0 commit comments

Comments
 (0)