even more consistent labels in the mundle manager
[ardour.git] / gtk2_ardour / bundle_manager.cc
index 035046c10b6b4eb4313ce5395f50d7ed888b00a2..2c44a62a342bc4606e1eb11c21137b1c5b4a3280 100644 (file)
 #include "ardour/user_bundle.h"
 #include "bundle_manager.h"
 #include "gui_thread.h"
-#include "i18n.h"
+#include "pbd/i18n.h"
 #include "utils.h"
 
 using namespace std;
 using namespace ARDOUR;
+using namespace ARDOUR_UI_UTILS;
 
 BundleEditorMatrix::BundleEditorMatrix (Gtk::Window* parent, Session* session, boost::shared_ptr<Bundle> bundle)
        : PortMatrix (parent, session, DataType::NIL)
@@ -202,13 +203,13 @@ BundleEditor::BundleEditor (Session* session, boost::shared_ptr<UserBundle> bund
        a = new Gtk::Alignment (0, 0.5, 0, 1);
        a->add (_input_or_output);
        t->attach (*Gtk::manage (a), 1, 2, 1, 2);
-       _input_or_output.append_text (_("Input"));
-       _input_or_output.append_text (_("Output"));
+       _input_or_output.append_text (_("Destination"));
+       _input_or_output.append_text (_("Source"));
 
        if (bundle->ports_are_inputs()) {
-               _input_or_output.set_active_text (_("Input"));
+               _input_or_output.set_active_text (_("Source"));
        } else {
-               _input_or_output.set_active_text (_("Output"));
+               _input_or_output.set_active_text (_("Destination"));
        }
 
        _input_or_output.signal_changed().connect (sigc::mem_fun (*this, &BundleEditor::input_or_output_changed));
@@ -242,7 +243,7 @@ BundleEditor::input_or_output_changed ()
 {
        _bundle->remove_ports_from_channels ();
 
-       if (_input_or_output.get_active_text() == _("Output")) {
+       if (_input_or_output.get_active_text() == _("Source")) {
                _bundle->set_ports_are_outputs ();
        } else {
                _bundle->set_ports_are_inputs ();
@@ -423,7 +424,6 @@ NameChannelDialog::NameChannelDialog ()
 NameChannelDialog::NameChannelDialog (boost::shared_ptr<Bundle> b, uint32_t c)
        : ArdourDialog (_("Rename Channel")),
          _bundle (b),
-         _channel (c),
          _adding (false)
 {
        _name.set_text (b->channel_name (c));