From 3ffaf5c26351492618e7ec3e8bb9ceb7ab629490 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Mon, 24 Aug 2015 10:23:28 +0200 Subject: [PATCH] MidiSettingsView: renamed box label Renamed box label from "SoundFont" to "Available SoundFonts", hopefully improves the user experience by making it clearer that this is a list of the available soundfonts. --- src/preferences/media/MidiSettingsView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/media/MidiSettingsView.cpp b/src/preferences/media/MidiSettingsView.cpp index 32e3c854d2..52a10d4c4b 100644 --- a/src/preferences/media/MidiSettingsView.cpp +++ b/src/preferences/media/MidiSettingsView.cpp @@ -37,7 +37,7 @@ MidiSettingsView::MidiSettingsView() SettingsView() { BBox* defaultsBox = new BBox("SoundFont"); - defaultsBox->SetLabel(B_TRANSLATE("SoundFont")); + defaultsBox->SetLabel(B_TRANSLATE("Available SoundFonts")); BGridView* defaultsGridView = new BGridView(); fListView = new BListView(B_SINGLE_SELECTION_LIST);