Skip to content

Commit 320d91f

Browse files
GUI - Tweak 'predefined language name not found' warning
Co-authored-by: ethancrawford <[email protected]>
1 parent 1cbb2ef commit 320d91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/gui/qt/utils/sonic_pi_i18n.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ QString SonicPii18n::getNativeLanguageName(QString lang) {
129129
// language found
130130
return native_language_names[lang];
131131
} else {
132-
std::cout << "Warning: Predefined language name not found'" << lang.toUtf8().constData() << "'" << std::endl;
132+
std::cout << "Warning: Predefined language name not found: '" << lang.toUtf8().constData() << "'" << std::endl;
133133
// Try using QLocale to find the native language name
134134
QLocale locale(lang);
135135
QString name = locale.nativeLanguageName();

0 commit comments

Comments
 (0)