i18n: Migrate to upstream gettext over intltool
Newer gettext has feature parity, rendering intltool obsolete. Details at: https://wiki.gnome.org/MigratingFromIntltoolToGettext
This commit is contained in:
parent
8b3a5999a6
commit
327288055b
|
@ -4,9 +4,6 @@ ChangeLog
|
|||
config.guess
|
||||
config.rpath
|
||||
config.sub
|
||||
intltool-extract.in
|
||||
intltool-merge.in
|
||||
intltool-update.in
|
||||
aclocal.m4
|
||||
*.cache
|
||||
compile
|
||||
|
|
|
@ -18,9 +18,6 @@
|
|||
EXTRA_DIST = \
|
||||
bootstrap.sh \
|
||||
LICENSE \
|
||||
intltool-merge.in \
|
||||
intltool-update.in \
|
||||
intltool-extract.in \
|
||||
po/pavucontrol.pot
|
||||
|
||||
SUBDIRS=src doc po
|
||||
|
|
|
@ -23,7 +23,6 @@ if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
|
|||
echo "Activated pre-commit hook."
|
||||
fi
|
||||
|
||||
intltoolize --force --automake
|
||||
autoreconf --force --install --symlink
|
||||
|
||||
if test "x$NOCONFIGURE" = "x"; then
|
||||
|
|
|
@ -67,11 +67,11 @@ fi
|
|||
|
||||
ZP_LYNX_DOC
|
||||
|
||||
IT_PROG_INTLTOOL([0.35.0])
|
||||
GETTEXT_PACKAGE=pavucontrol
|
||||
AC_SUBST([GETTEXT_PACKAGE])
|
||||
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
|
||||
AM_GLIB_GNU_GETTEXT
|
||||
AM_GNU_GETTEXT([external])
|
||||
AM_GNU_GETTEXT_VERSION([0.19.8])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
po/Makefile.in
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
[encoding: UTF-8]
|
||||
src/pavucontrol.desktop.in
|
||||
src/pavucontrol.glade
|
||||
src/pavucontrol.cc
|
||||
|
|
|
@ -21,8 +21,11 @@ localedir = $(datadir)/locale
|
|||
|
||||
bin_PROGRAMS=pavucontrol
|
||||
glade_DATA=pavucontrol.glade
|
||||
|
||||
desktop_in_files=pavucontrol.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 $@
|
||||
|
||||
pavucontrol_SOURCES= \
|
||||
minimalstreamwidget.h minimalstreamwidget.cc \
|
||||
|
@ -48,5 +51,3 @@ pavucontrol_CXXFLAGS+=-DGLADE_FILE=\"$(gladedir)/pavucontrol.glade\"
|
|||
EXTRA_DIST = $(glade_DATA) $(desktop_in_files)
|
||||
|
||||
CLEANFILES = $(desktop_DATA)
|
||||
|
||||
@INTLTOOL_DESKTOP_RULE@
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
_Name=PulseAudio Volume Control
|
||||
_GenericName=Volume Control
|
||||
_Comment=Adjust the volume level
|
||||
Name=PulseAudio Volume Control
|
||||
GenericName=Volume Control
|
||||
Comment=Adjust the volume level
|
||||
Exec=pavucontrol
|
||||
Icon=multimedia-volume-control
|
||||
StartupNotify=true
|
||||
|
|
Loading…
Reference in New Issue