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/Applications/Piano | |
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/Applications/Piano')
-rw-r--r-- | Userland/Applications/Piano/ExportProgressWindow.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/Piano/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Piano/ExportProgressWindow.cpp b/Userland/Applications/Piano/ExportProgressWindow.cpp index ab4a801083..70945d1329 100644 --- a/Userland/Applications/Piano/ExportProgressWindow.cpp +++ b/Userland/Applications/Piano/ExportProgressWindow.cpp @@ -25,7 +25,7 @@ ErrorOr<void> ExportProgressWindow::initialize_fallibles() set_resizable(false); set_closeable(false); - set_title("Rendering audio"); + set_title("Rendering Audio"); set_icon(GUI::Icon::default_icon("app-piano"sv).bitmap_for_size(16)); m_progress_bar = *main_widget->find_descendant_of_type_named<GUI::HorizontalProgressbar>("progress_bar"); diff --git a/Userland/Applications/Piano/main.cpp b/Userland/Applications/Piano/main.cpp index 8aa79b0f4d..a29e64f9e3 100644 --- a/Userland/Applications/Piano/main.cpp +++ b/Userland/Applications/Piano/main.cpp @@ -59,7 +59,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) main_widget_updater->start(); auto file_menu = TRY(window->try_add_menu("&File"_short_string)); - TRY(file_menu->try_add_action(GUI::Action::create("Export", { Mod_Ctrl, Key_E }, TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/file-export.png"sv)), [&](const GUI::Action&) { + TRY(file_menu->try_add_action(GUI::Action::create("Export...", { Mod_Ctrl, Key_E }, TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/file-export.png"sv)), [&](const GUI::Action&) { save_path = GUI::FilePicker::get_save_filepath(window, "Untitled", "wav"); if (!save_path.has_value()) return; |