[gnome-keyring] Migrate from intltool to gettext.



commit 8818e9395ece8a49d465a54af6729b3f91fa93b8
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Thu Sep 7 00:31:38 2017 +0200

    Migrate from intltool to gettext.
    
    Removes `daemon/org.gnome.keyring.service.in` from POTFILES.in, as it
    doesn't contain any translatable strings.

 .gitignore                                 |    1 +
 Makefile.am                                |   10 +---
 configure.ac                               |    5 +-
 daemon/Makefile.am                         |    2 +
 daemon/gnome-keyring-pkcs11.desktop.in.in  |    4 +-
 daemon/gnome-keyring-secrets.desktop.in.in |    4 +-
 daemon/gnome-keyring-ssh.desktop.in.in     |    4 +-
 po/.gitignore                              |   16 ++++--
 po/Makevars                                |   78 ++++++++++++++++++++++++++++
 po/POTFILES.in                             |    1 -
 10 files changed, 102 insertions(+), 23 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c27c34c..f153d29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,6 +55,7 @@ config.guess
 config.h
 config.h.in
 config.log
+config.rpath
 config.status
 config.status.lineno
 config.sub
diff --git a/Makefile.am b/Makefile.am
index 7283d9e..edd30af 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,10 +17,7 @@ DISTCHECK_CONFIGURE_FLAGS = \
        --with-pkcs11-config=$(abs_srcdir)/$(top_distdir)/_inst/etc/pkcs11 \
        $(NULL)
 
-DISTCLEANFILES = \
-       intltool-extract \
-       intltool-merge \
-       intltool-update
+DISTCLEANFILES =
 
 CHANGELOG_START = \
        efb922c92fae5929ecc8c702770ebb6c390d38a4
@@ -144,8 +141,6 @@ SUFFIXES = .desktop.in .desktop.in.in .service .service.in
 .desktop.in.in.desktop.in:
        $(V_SED) ( $(SED_SUBST) $< > $@.tmp ) && mv $@.tmp $@
 
-@INTLTOOL_DESKTOP_RULE@
-
 all-local:
        $(MKDIR_P) $(builddir)/daemon
        $(MKDIR_P) $(builddir)/schema
@@ -182,9 +177,6 @@ CLEANFILES = \
        *.gcda
 
 EXTRA_DIST = \
-       intltool-extract.in \
-       intltool-merge.in \
-       intltool-update.in \
        ChangeLog.old \
        HACKING \
        $(ASN1_FILES) \
diff --git a/configure.ac b/configure.ac
index de7c2f6..bbc07d8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -45,7 +45,6 @@ AC_PROG_LN_S
 AC_PROG_MAKE_SET
 AM_DISABLE_STATIC
 AM_PROG_LIBTOOL
-IT_PROG_INTLTOOL([0.35.0])
 PKG_PROG_PKG_CONFIG
 
 AC_TYPE_PID_T
@@ -77,12 +76,12 @@ AC_SUBST(GIO_LIBS)
 DAEMON_CFLAGS="$DAEMON_CFLAGS $GLIB_CFLAGS $GTHREAD_CFLAGS $GOBJECT_CFLAGS $GIO_CFLAGS"
 DAEMON_LIBS="$DAEMON_LIBS $GLIB_LIBS $GTHREAD_LIBS $GOBJECT_LIBS $GIO_LIBS"
 
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION([0.19.8])
 GETTEXT_PACKAGE=gnome-keyring
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext domain name])
 AC_SUBST(GETTEXT_PACKAGE)
 
-AM_GLIB_GNU_GETTEXT
-
 AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
 
 GLIB_GSETTINGS
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index b63f3b9..aac2313 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -44,6 +44,8 @@ desktop_in_in_files = \
        $(NULL)
 desktop_in_files = $(desktop_in_in_files:.desktop.in.in=.desktop.in)
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+$(desktop_DATA): $(desktop_in_files)
+       $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
 
 EXTRA_DIST += \
        $(service_in_files) \
diff --git a/daemon/gnome-keyring-pkcs11.desktop.in.in b/daemon/gnome-keyring-pkcs11.desktop.in.in
index 96e1a69..9249b09 100644
--- a/daemon/gnome-keyring-pkcs11.desktop.in.in
+++ b/daemon/gnome-keyring-pkcs11.desktop.in.in
@@ -1,7 +1,7 @@
 [Desktop Entry]
 Type=Application
-_Name=Certificate and Key Storage
-_Comment=GNOME Keyring: PKCS#11 Component
+Name=Certificate and Key Storage
+Comment=GNOME Keyring: PKCS#11 Component
 Exec=@bindir@/gnome-keyring-daemon --start --components=pkcs11
 OnlyShowIn=GNOME;Unity;MATE;
 X-GNOME-Autostart-Phase=PreDisplayServer
diff --git a/daemon/gnome-keyring-secrets.desktop.in.in b/daemon/gnome-keyring-secrets.desktop.in.in
index 46ef7cd..0509358 100644
--- a/daemon/gnome-keyring-secrets.desktop.in.in
+++ b/daemon/gnome-keyring-secrets.desktop.in.in
@@ -1,7 +1,7 @@
 [Desktop Entry]
 Type=Application
-_Name=Secret Storage Service
-_Comment=GNOME Keyring: Secret Service
+Name=Secret Storage Service
+Comment=GNOME Keyring: Secret Service
 Exec=@bindir@/gnome-keyring-daemon --start --components=secrets
 OnlyShowIn=GNOME;Unity;MATE;
 X-GNOME-Autostart-Phase=PreDisplayServer
diff --git a/daemon/gnome-keyring-ssh.desktop.in.in b/daemon/gnome-keyring-ssh.desktop.in.in
index 412ae1d..38aa24c 100644
--- a/daemon/gnome-keyring-ssh.desktop.in.in
+++ b/daemon/gnome-keyring-ssh.desktop.in.in
@@ -1,7 +1,7 @@
 [Desktop Entry]
 Type=Application
-_Name=SSH Key Agent
-_Comment=GNOME Keyring: SSH Agent
+Name=SSH Key Agent
+Comment=GNOME Keyring: SSH Agent
 Exec=@bindir@/gnome-keyring-daemon --start --components=ssh
 OnlyShowIn=GNOME;Unity;MATE;
 X-GNOME-Autostart-Phase=PreDisplayServer
diff --git a/po/.gitignore b/po/.gitignore
index 86eac3e..9c42ad0 100644
--- a/po/.gitignore
+++ b/po/.gitignore
@@ -1,13 +1,21 @@
 /*.gmo
 /*.mo
 /*.pot
+/.intltool-merge-cache
 /Makefile.in.in
+/Makevars.template
 /POTFILES
+/Rules-quot
+/boldquot.sed
+/cat-id-tbl.c
+/en@boldquot.header
+/en@quot.header
+/insert-header.sin
+/messages
+/missing
 /po2tbl.sed
 /po2tbl.sed.in
-/cat-id-tbl.c
+/quot.sed
+/remove-potcdate.sin
 /stamp-cat-id
 /stamp-it
-/messages
-/missing
-/.intltool-merge-cache
diff --git a/po/Makevars b/po/Makevars
new file mode 100644
index 0000000..9f28541
--- /dev/null
+++ b/po/Makevars
@@ -0,0 +1,78 @@
+# Makefile variables for PO directory in any package using GNU gettext.
+
+# Usually the message domain is the same as the package name.
+DOMAIN = $(PACKAGE)
+
+# These two variables depend on the location of this directory.
+subdir = po
+top_builddir = ..
+
+# These options get passed to xgettext.
+XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 
--keyword=g_dngettext:2,3 --add-comments
+
+# This is the copyright holder that gets inserted into the header of the
+# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding
+# package.  (Note that the msgstr strings, extracted from the package's
+# sources, belong to the copyright holder of the package.)  Translators are
+# expected to transfer the copyright for their translations to this person
+# or entity, or to disclaim their copyright.  The empty string stands for
+# the public domain; in this case the translators are expected to disclaim
+# their copyright.
+COPYRIGHT_HOLDER = gnome-keyring contributors
+
+# This tells whether or not to prepend "GNU " prefix to the package
+# name that gets inserted into the header of the $(DOMAIN).pot file.
+# Possible values are "yes", "no", or empty.  If it is empty, try to
+# detect it automatically by scanning the files in $(top_srcdir) for
+# "GNU packagename" string.
+PACKAGE_GNU = no
+
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+#   in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+#   understood.
+# - Strings which make invalid assumptions about notation of date, time or
+#   money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS = 
https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-keyring&keywords=I18N+L10N&component=general
+
+# This is the list of locale categories, beyond LC_MESSAGES, for which the
+# message catalogs shall be used.  It is usually empty.
+EXTRA_LOCALE_CATEGORIES =
+
+# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
+# context.  Possible values are "yes" and "no".  Set this to yes if the
+# package uses functions taking also a message context, like pgettext(), or
+# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
+USE_MSGCTXT = yes
+
+# These options get passed to msgmerge.
+# Useful options are in particular:
+#   --previous            to keep previous msgids of translated messages,
+#   --quiet               to reduce the verbosity.
+MSGMERGE_OPTIONS =
+
+# These options get passed to msginit.
+# If you want to disable line wrapping when writing PO files, add
+# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
+# MSGINIT_OPTIONS.
+MSGINIT_OPTIONS =
+
+# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
+# has changed.  Possible values are "yes" and "no".  Set this to no if
+# the POT file is checked in the repository and the version control
+# program ignores timestamps.
+PO_DEPENDS_ON_POT = no
+
+# This tells whether or not to forcibly update $(DOMAIN).pot and
+# regenerate PO files on "make dist".  Possible values are "yes" and
+# "no".  Set this to no if the POT file and PO files are maintained
+# externally.
+DIST_DEPENDS_ON_UPDATE_PO = no
diff --git a/po/POTFILES.in b/po/POTFILES.in
index ed29332..3ed5e3d 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -7,7 +7,6 @@ daemon/gnome-keyring-pkcs11.desktop.in.in
 daemon/gnome-keyring-secrets.desktop.in.in
 daemon/gnome-keyring-ssh.desktop.in.in
 daemon/login/gkd-login.c
-daemon/org.gnome.keyring.service.in
 egg/dotlock.c
 egg/egg-oid.c
 pkcs11/gkm/gkm-certificate.c


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]