add plural forms for pt to gtk2_ardour/po/pt.po
[ardour.git] / gtk2_ardour / splash.cc
index 63ca20d0572f61235accc1a025d6d48ba23752bc..1784ac8164584d7a78b59c1ee43cb2718e178d3e 100644 (file)
@@ -25,6 +25,8 @@
 #include "ardour/ardour.h"
 #include "ardour/filesystem_paths.h"
 
+#include "gtkmm2ext/utils.h"
+
 #ifdef check
 #undef check
 #endif
@@ -32,7 +34,7 @@
 #include "gui_thread.h"
 #include "splash.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace Gtk;
 using namespace Glib;
@@ -48,7 +50,10 @@ Splash::Splash ()
 
        std::string splash_file;
 
-       if (!find_file (ardour_data_search_path(), "splash.png", splash_file)) {
+       Searchpath rc (ARDOUR::ardour_data_search_path());
+       rc.add_subdirectory_to_paths ("resources");
+
+       if (!find_file (rc, PROGRAM_NAME "-splash.png", splash_file)) {
                 cerr << "Cannot find splash screen image file\n";
                throw failed_constructor();
        }
@@ -109,9 +114,9 @@ Splash::pop_back_for (Gtk::Window& win)
 
            So for OS X, we just hide ourselves.
 
-                                        Oct 2014: The Windows situation is similar, although it should be possible
-                                        to play tricks with gdk's set_type_hint() or directly hack things using
-                                        SetWindowLong() and UpdateLayeredWindow()
+           Oct 2014: The Windows situation is similar, although it should be possible
+           to play tricks with gdk's set_type_hint() or directly hack things using
+           SetWindowLong() and UpdateLayeredWindow()
         */
         (void) win;
         hide();
@@ -223,7 +228,7 @@ void
 Splash::message (const string& msg)
 {
        string str ("<b>");
-       str += Glib::Markup::escape_text (msg).c_str();
+       str += Gtkmm2ext::markup_escape_text (msg);
        str += "</b>";
 
         show ();