diff options
author | Wu Xiaotian <[email protected]> | 2019-12-25 17:58:28 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-01-09 11:40:14 +0100 |
commit | b91dbe12e8f334e7fbaf9a36814d36d63c94dfd4 (patch) | |
tree | 699e3fa9a88533a37cc364c28b8afbfc0f360973 /mateweather | |
parent | 42022afd3340fc97b8c0c8866f2cd6b1355dee34 (diff) | |
download | mate-applets-b91dbe12e8f334e7fbaf9a36814d36d63c94dfd4.tar.bz2 mate-applets-b91dbe12e8f334e7fbaf9a36814d36d63c94dfd4.tar.xz |
migrate from intltools to gettext
Diffstat (limited to 'mateweather')
-rw-r--r-- | mateweather/Makefile.am | 11 | ||||
-rw-r--r-- | mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.desktop.in.in (renamed from mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.in.in) | 9 |
2 files changed, 11 insertions, 9 deletions
diff --git a/mateweather/Makefile.am b/mateweather/Makefile.am index c8ec98e5..37ce65ce 100644 --- a/mateweather/Makefile.am +++ b/mateweather/Makefile.am @@ -34,8 +34,8 @@ uidir = $(datadir)/mate/ui ui_DATA = mateweather-applet-menu.xml appletdir = $(datadir)/mate-panel/applets -applet_in_files = org.mate.applets.MateWeatherApplet.mate-panel-applet.in -applet_DATA = $(applet_in_files:.mate-panel-applet.in=.mate-panel-applet) +applet_in_files = org.mate.applets.MateWeatherApplet.mate-panel-applet.desktop.in +applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) $(applet_in_files): $(applet_in_files).in Makefile $(AM_V_GEN)sed \ @@ -43,7 +43,8 @@ $(applet_in_files): $(applet_in_files).in Makefile -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ $< > $@ -%.mate-panel-applet: %.mate-panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache +$(applet_DATA): $(applet_in_files) Makefile + $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ servicedir = $(datadir)/dbus-1/services service_in_files = org.mate.panel.applet.MateWeatherAppletFactory.service.in @@ -54,10 +55,10 @@ org.mate.panel.applet.MateWeatherAppletFactory.service: $(service_in_files) -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ $< > $@ -CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) +CLEANFILES = $(applet_DATA) $(applet_in_files) $(service_DATA) EXTRA_DIST = \ - org.mate.applets.MateWeatherApplet.mate-panel-applet.in.in \ + $(applet_in_files).in \ $(service_in_files) \ $(ui_DATA) diff --git a/mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.in.in b/mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.desktop.in.in index c0a1a4f6..03d2b621 100644 --- a/mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.in.in +++ b/mateweather/org.mate.applets.MateWeatherApplet.mate-panel-applet.desktop.in.in @@ -1,12 +1,13 @@ [Applet Factory] Id=MateWeatherAppletFactory Location=@LIBEXECDIR@/mateweather-applet -_Name=Mateweather Applet Factory -_Description=Factory for creating the weather applet. +Name=Mateweather Applet Factory +Description=Factory for creating the weather applet. [MateWeatherApplet] -_Name=Weather Report -_Description=Monitor the current weather conditions, and forecasts +Name=Weather Report +Description=Monitor the current weather conditions, and forecasts +# Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=weather-storm MateComponentId=OAFIID:MATE_MateWeatherApplet X-MATE-Bugzilla-Bugzilla=MATE |