View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005464 | ardour | bugs | public | 2013-04-30 11:17 | 2013-04-30 11:18 |
Reporter | ronnystandtke | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | new | Resolution | open | ||
Summary | 0005464: incomplete i18n for samplerate combobox in engine dialog (patch included) | ||||
Description | The 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" | ||||
Tags | No tags attached. | ||||
2013-04-30 11:17
|
|
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"); |
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 |