summaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2019-04-14 21:11:43 +0200
committerChristian Persch <chpe@src.gnome.org>2019-04-14 21:11:43 +0200
commit7566ad673a12d26293b0a74dd3cb3e5f3d22ed49 (patch)
tree08c8d9f542f02e701b696fea74cbc7007022f9fa /po
parent9bdf87c1eb41855c323259c8b4854864bdb1064e (diff)
downloadvte-7566ad673a12d26293b0a74dd3cb3e5f3d22ed49.tar.gz
build: Port to meson build system
Based on a patch by Iñigo Martínez. Drop the glade catalogue, which was unmaintained. Remove the config.h define for the default terminfo name to use, and just hardcode it. https://gitlab.gnome.org/GNOME/vte/issues/78
Diffstat (limited to 'po')
-rw-r--r--po/POTFILES (renamed from po/POTFILES.in)0
-rw-r--r--po/POTFILES.skip7
-rw-r--r--po/meson.build21
3 files changed, 21 insertions, 7 deletions
diff --git a/po/POTFILES.in b/po/POTFILES
index 69e94a0a..69e94a0a 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES
diff --git a/po/POTFILES.skip b/po/POTFILES.skip
deleted file mode 100644
index be9e5e18..00000000
--- a/po/POTFILES.skip
+++ /dev/null
@@ -1,7 +0,0 @@
-bindings/vala/app.ui
-bindings/vala/search-popover.ui
-src/vtespawn.cc
-src/app/app.cc
-src/app/appmenu.ui
-src/app/search-popover.ui
-src/app/window.ui
diff --git a/po/meson.build b/po/meson.build
new file mode 100644
index 00000000..14ca4dde
--- /dev/null
+++ b/po/meson.build
@@ -0,0 +1,21 @@
+# Copyright © 2018, 2019 Iñigo Martínez
+#
+# This library is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or (at your
+# option) any later version.
+#
+# This library is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
+# General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this library. If not, see <https://www.gnu.org/licenses/>.
+
+i18n = import('i18n')
+
+i18n.gettext(
+ vte_gettext_domain,
+ preset: 'glib',
+)