diff options
Diffstat (limited to 'src/emu/ui/slotopt.cpp')
-rw-r--r-- | src/emu/ui/slotopt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/slotopt.cpp b/src/emu/ui/slotopt.cpp index 959fef74adc..a67c217c7f1 100644 --- a/src/emu/ui/slotopt.cpp +++ b/src/emu/ui/slotopt.cpp @@ -163,13 +163,13 @@ void ui_menu_slot_devices::populate() { opt_name.assign(option->name()); if (slot->fixed() || slot_get_length(slot) == 0) - opt_name.append(" [internal]"); + opt_name.append(_(" [internal]")); } item_append(slot->device().tag() + 1, opt_name.c_str(), (slot->fixed() || slot_get_length(slot) == 0) ? 0 : (MENU_FLAG_LEFT_ARROW | MENU_FLAG_RIGHT_ARROW), (void *)slot); } item_append(MENU_SEPARATOR_ITEM, nullptr, 0, nullptr); - item_append("Reset", nullptr, 0, (void *)1); + item_append(_("Reset"), nullptr, 0, (void *)1); } ui_menu_slot_devices::~ui_menu_slot_devices() |