View Issue Details

IDProjectCategoryView StatusLast Update
0005464ardourbugspublic2013-04-30 11:18
Reporterronnystandtke Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Summary0005464: incomplete i18n for samplerate combobox in engine dialog (patch included)
DescriptionThe i18n for the samplerate combobox in the engine dialog is incomplete.
This leads to an empty combobox in the engine dialog, an empty value in the config file and the following error message (in German) at subsequent starts:
"[ERROR:] Es fehlen Daten zum AudioSetup-Wert von samplerate"
TagsNo tags attached.

Activities

2013-04-30 11:17

 

ardour.png (114,793 bytes)   
ardour.png (114,793 bytes)   

2013-04-30 11:18

 

ardour.diff (501 bytes)   
diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc
index a9e04d8..9e46929 100644
--- a/gtk2_ardour/engine_dialog.cc
+++ b/gtk2_ardour/engine_dialog.cc
@@ -108,7 +108,7 @@ EngineControl::EngineControl ()
 	strings.push_back (_("96000Hz"));
 	strings.push_back (_("192000Hz"));
 	set_popdown_strings (sample_rate_combo, strings);
-	sample_rate_combo.set_active_text ("48000Hz");
+	sample_rate_combo.set_active_text (_("48000Hz"));
 
 	strings.clear ();
 	strings.push_back ("32");
ardour.diff (501 bytes)   

Issue History

Date Modified Username Field Change
2013-04-30 11:17 ronnystandtke New Issue
2013-04-30 11:17 ronnystandtke File Added: ardour.png
2013-04-30 11:18 ronnystandtke File Added: ardour.diff