X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Faudioscope%2Faudioscope.C;h=c20c88bc3eca05adf3f14da02adacb1e237138c7;hb=310cfd249d955850c39757d80e07949ad4fef205;hp=f38fc7d75c9f17568325fc8b523353785b07a71d;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/audioscope/audioscope.C b/cinelerra-5.0/plugins/audioscope/audioscope.C index f38fc7d7..c20c88bc 100644 --- a/cinelerra-5.0/plugins/audioscope/audioscope.C +++ b/cinelerra-5.0/plugins/audioscope/audioscope.C @@ -309,14 +309,14 @@ const char* AudioScopeMode::mode_to_text(int mode) switch(mode) { case XY_MODE: - return "XY Mode"; + return _("XY Mode"); case WAVEFORM_NO_TRIGGER: - return "Waveform"; + return _("Waveform"); case WAVEFORM_RISING_TRIGGER: - return "Rising Trigger"; + return _("Rising Trigger"); case WAVEFORM_FALLING_TRIGGER: default: - return "Falling Trigger"; + return _("Falling Trigger"); } } @@ -574,13 +574,13 @@ void AudioScopeWindow::calculate_probe(int x, int y, int do_overlay) char string[BCTEXTLEN]; - sprintf(string, "Sample: %d", sample); + sprintf(string, _("Sample: %d"), sample); probe_sample->update(string); - sprintf(string, "Level 0: %.2f", channel0); + sprintf(string, _("Level 0: %.2f"), channel0); probe_level0->update(string); - sprintf(string, "Level 1: %.2f", channel1); + sprintf(string, _("Level 1: %.2f"), channel1); probe_level1->update(string); @@ -661,7 +661,7 @@ void AudioScope::reset() } -const char* AudioScope::plugin_title() { return N_("AudioScope"); } +const char* AudioScope::plugin_title() { return _("AudioScope"); } int AudioScope::is_realtime() { return 1; } int AudioScope::is_multichannel() { return 1; }