diff options
author | Ales Kozumplik <akozumpl@redhat.com> | 2010-04-09 12:05:05 +0200 |
---|---|---|
committer | Ales Kozumplik <akozumpl@redhat.com> | 2010-04-12 09:47:49 +0200 |
commit | dfb4b19d52b545ea1334f414c7dc88162fc7625b (patch) | |
tree | 063741c4c14b2a90981f2d9b0e7cace15f9f9fc3 /po | |
parent | 88729013d2d3bc0979bef580a7bc8660e47d155d (diff) | |
download | anaconda-dfb4b19d52b545ea1334f414c7dc88162fc7625b.tar.gz anaconda-dfb4b19d52b545ea1334f414c7dc88162fc7625b.tar.xz anaconda-dfb4b19d52b545ea1334f414c7dc88162fc7625b.zip |
Startup notification in live installer (#530908).
Also depends on the fix for 580481 ('usermode' package). This patch mostly
deals with the need to have i18n support for the notification name.
Diffstat (limited to 'po')
-rw-r--r-- | po/POTFILES.in | 1 | ||||
-rw-r--r-- | po/Rules-liveinst | 10 |
2 files changed, 9 insertions, 2 deletions
diff --git a/po/POTFILES.in b/po/POTFILES.in index 0952592a4..382f87849 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -128,6 +128,7 @@ textw/zipl_text.py # liveinst source files liveinst/liveinst.desktop.in.h +liveinst/console.apps/liveinst.h # Glade definition files ui/GroupSelector.glade.h diff --git a/po/Rules-liveinst b/po/Rules-liveinst index f9a178a6f..2e359e3fa 100644 --- a/po/Rules-liveinst +++ b/po/Rules-liveinst @@ -1,5 +1,5 @@ -LIVEINST_SRCS = $(top_srcdir)/liveinst/liveinst.desktop.in -LIVEINST_HDRS = $(top_builddir)/liveinst/liveinst.desktop.in.h +LIVEINST_SRCS = $(top_srcdir)/liveinst/liveinst.desktop.in $(top_srcdir)/liveinst/console.apps/liveinst +LIVEINST_HDRS = $(top_builddir)/liveinst/liveinst.desktop.in.h $(top_srcdir)/liveinst/console.apps/liveinst.h %.desktop.in.h: %.desktop.in @cd $(top_builddir)/liveinst ; \ @@ -7,5 +7,11 @@ LIVEINST_HDRS = $(top_builddir)/liveinst/liveinst.desktop.in.h mv tmp/*h . ; \ rmdir tmp +%liveinst.h : %liveinst + @cd $(top_builddir)/liveinst/console.apps ; \ + intltool-extract -q --type=gettext/quoted -l $(notdir $<) ; \ + mv tmp/*h . ; \ + rmdir tmp + mostlyclean-liveinst: rm -f $(LIVEINST_HDRS) |