diff options
Diffstat (limited to 'src/frontend/mame/ui/ui.cpp')
-rw-r--r-- | src/frontend/mame/ui/ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp index 62d6003cb51..1e0fe5154e7 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -552,7 +552,7 @@ void mame_ui_manager::display_startup_screens(bool first_time) if (!mandatory_images.empty() && show_mandatory_fileman) { std::ostringstream warning; - warning << _("This driver requires images to be loaded in the following device(s): "); + warning << _("This system requires media images to be mounted for the following device(s): "); output_joined_collection(mandatory_images, [&warning](const std::reference_wrapper<const std::string> &img) { warning << "\"" << img.get() << "\""; }, @@ -2172,7 +2172,7 @@ void mame_ui_manager::save_main_option() return; } } - popup_time(3, "%s", _("\n Configuration saved \n\n")); + popup_time(3, "%s", _("\n Settings saved \n\n")); } void mame_ui_manager::menu_reset() |