summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChung-Sheng Wu <chungsheng@google.com>2021-03-22 14:55:12 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-21 03:58:29 +0000
commitfec90c5d8e6f8c2c3958691a35cfd772f1adf2e4 (patch)
tree9fced97f47d2692866de9167a3d924fceea148ad
parent57c0c5be50767c3f86c648bf33e15955cc349f25 (diff)
downloadvboot-fec90c5d8e6f8c2c3958691a35cfd772f1adf2e4.tar.gz
minidiag: Update strings for minidiag v1.1
Update strings to meet the UX review. BRANCH=none BUG=b:183351700 TEST=none Cq-Depend: chromium:2777880 Signed-off-by: Chung-Sheng Wu <chungsheng@google.com> Change-Id: Ic8d9653abffd80039347f81823930eaa7f35180e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/2777952 Reviewed-by: Meng-Huan Yu <menghuan@chromium.org> Reviewed-by: Yu-Ping Wu <yupingso@chromium.org> Tested-by: Chung-Sheng Wu <chungsheng@chromium.org> Commit-Queue: Chung-Sheng Wu <chungsheng@chromium.org>
-rw-r--r--firmware/2lib/2ui_screens.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/2lib/2ui_screens.c b/firmware/2lib/2ui_screens.c
index 5c9518fe..ed13b9cb 100644
--- a/firmware/2lib/2ui_screens.c
+++ b/firmware/2lib/2ui_screens.c
@@ -1033,11 +1033,11 @@ static const struct vb2_menu_item diagnostics_items[] = {
.target = VB2_SCREEN_DIAGNOSTICS_STORAGE_HEALTH,
},
{
- .text = "Quick memory check",
+ .text = "Memory check (quick)",
.target = VB2_SCREEN_DIAGNOSTICS_MEMORY_QUICK,
},
{
- .text = "Full memory check",
+ .text = "Memory check (full)",
.target = VB2_SCREEN_DIAGNOSTICS_MEMORY_FULL,
},
POWER_OFF_ITEM,
@@ -1180,7 +1180,7 @@ static const struct vb2_menu_item diagnostics_memory_items[] = {
static const struct vb2_screen_info diagnostics_memory_quick_screen = {
.id = VB2_SCREEN_DIAGNOSTICS_MEMORY_QUICK,
- .name = "Quick memory check",
+ .name = "Memory check (quick)",
.init = diagnostics_memory_init_quick,
.action = diagnostics_memory_update_quick,
.menu = MENU_ITEMS(diagnostics_memory_items),
@@ -1192,7 +1192,7 @@ static const struct vb2_screen_info diagnostics_memory_quick_screen = {
static const struct vb2_screen_info diagnostics_memory_full_screen = {
.id = VB2_SCREEN_DIAGNOSTICS_MEMORY_FULL,
- .name = "Full memory check",
+ .name = "Memory check (full)",
.init = diagnostics_memory_init_full,
.action = diagnostics_memory_update_full,
.menu = MENU_ITEMS(diagnostics_memory_items),