diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2023-05-22 13:07:09 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-23 05:59:49 +0200 |
commit | 02d94a303c8c8329061e990dbe2e9914fae19965 (patch) | |
tree | 3277fa8de6c3b63adcca228269a4f6bacbc963bb /Userland/Applets | |
parent | 024360e6049c7912cc4000833ba2876fef1b2b32 (diff) | |
download | serenity-02d94a303c8c8329061e990dbe2e9914fae19965.zip |
Base+Userland: Apply Human Interface Guidelines to Object text
Corrects a slew of titles, buttons, labels, menu items and status bars
for capitalization, ellipses and punctuation.
Rewords a few actions and dialogs to use uniform language and
punctuation.
Diffstat (limited to 'Userland/Applets')
-rw-r--r-- | Userland/Applets/ClipboardHistory/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applets/ClipboardHistory/main.cpp b/Userland/Applets/ClipboardHistory/main.cpp index e362da81cc..034f553513 100644 --- a/Userland/Applets/ClipboardHistory/main.cpp +++ b/Userland/Applets/ClipboardHistory/main.cpp @@ -73,13 +73,13 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) } }); - auto debug_dump_action = GUI::Action::create("Dump to debug console", [&](const GUI::Action&) { + auto debug_dump_action = GUI::Action::create("Dump to Debug Console", [&](const GUI::Action&) { table_view->selection().for_each_index([&](GUI::ModelIndex& index) { dbgln("{}", model->data(index, GUI::ModelRole::Display).as_string()); }); }); - auto clear_action = GUI::Action::create("Clear history", TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/trash-can.png"sv)), [&](const GUI::Action&) { + auto clear_action = GUI::Action::create("Clear History", TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/trash-can.png"sv)), [&](const GUI::Action&) { model->clear(); GUI::Clipboard::the().clear(); }); |