qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] More translation improvements
@ 2013-04-02  9:28 Kevin Wolf
  2013-04-02  9:28 ` [Qemu-devel] [PATCH 1/2] po/Makefile: Fix dependency for %.mo Kevin Wolf
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Kevin Wolf @ 2013-04-02  9:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, aurelien

This series is meant to be applied on top of Aurélien's series.

Kevin Wolf (2):
  po/Makefile: Fix dependency for %.mo
  po: Update German translation

 po/Makefile |  2 +-
 po/de_DE.po | 12 ++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)

-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PATCH 1/2] po/Makefile: Fix dependency for %.mo
  2013-04-02  9:28 [Qemu-devel] [PATCH 0/2] More translation improvements Kevin Wolf
@ 2013-04-02  9:28 ` Kevin Wolf
  2013-04-02  9:28 ` [Qemu-devel] [PATCH 2/2] po: Update German translation Kevin Wolf
  2013-04-03 21:46 ` [Qemu-devel] [PATCH 0/2] More translation improvements Aurelien Jarno
  2 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2013-04-02  9:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, aurelien

Otherwise make will refuse to build updated .po files.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 po/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/Makefile b/po/Makefile
index 8297ab5..60ccd7d 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -30,7 +30,7 @@ install: $(OBJS)
 	    $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \
 	done
 
-%.mo:
+%.mo: %.po
 	@msgfmt -o $@ $(SRC_PATH)/po/`basename $@ .mo`.po
 
 messages.po: $(SRC_PATH)/ui/gtk.c
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PATCH 2/2] po: Update German translation
  2013-04-02  9:28 [Qemu-devel] [PATCH 0/2] More translation improvements Kevin Wolf
  2013-04-02  9:28 ` [Qemu-devel] [PATCH 1/2] po/Makefile: Fix dependency for %.mo Kevin Wolf
@ 2013-04-02  9:28 ` Kevin Wolf
  2013-04-03 21:46 ` [Qemu-devel] [PATCH 0/2] More translation improvements Aurelien Jarno
  2 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2013-04-02  9:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, aurelien

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 po/de_DE.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/de_DE.po b/po/de_DE.po
index 2566674..92c5df5 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -18,27 +18,27 @@ msgstr ""
 
 #: ../ui/gtk.c:213
 msgid " - Press Ctrl+Alt+G to release grab"
-msgstr ""
+msgstr "- Strg+Alt+G drücken, um Eingabegeräte freizugeben"
 
 #: ../ui/gtk.c:217
 msgid " [Paused]"
-msgstr ""
+msgstr "[Angehalten]"
 
 #: ../ui/gtk.c:1250
 msgid "_Machine"
-msgstr ""
+msgstr "_Maschine"
 
 #: ../ui/gtk.c:1252
 msgid "_Pause"
-msgstr ""
+msgstr "_Angehalten"
 
 #: ../ui/gtk.c:1258
 msgid "_Reset"
-msgstr ""
+msgstr "_Reset"
 
 #: ../ui/gtk.c:1261
 msgid "Power _Down"
-msgstr ""
+msgstr "_Herunterfahren"
 
 #: ../ui/gtk.c:1276
 msgid "_View"
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH 0/2] More translation improvements
  2013-04-02  9:28 [Qemu-devel] [PATCH 0/2] More translation improvements Kevin Wolf
  2013-04-02  9:28 ` [Qemu-devel] [PATCH 1/2] po/Makefile: Fix dependency for %.mo Kevin Wolf
  2013-04-02  9:28 ` [Qemu-devel] [PATCH 2/2] po: Update German translation Kevin Wolf
@ 2013-04-03 21:46 ` Aurelien Jarno
  2 siblings, 0 replies; 4+ messages in thread
From: Aurelien Jarno @ 2013-04-03 21:46 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-devel

On Tue, Apr 02, 2013 at 11:28:23AM +0200, Kevin Wolf wrote:
> This series is meant to be applied on top of Aurélien's series.
> 
> Kevin Wolf (2):
>   po/Makefile: Fix dependency for %.mo
>   po: Update German translation
> 
>  po/Makefile |  2 +-
>  po/de_DE.po | 12 ++++++------
>  2 files changed, 7 insertions(+), 7 deletions(-)
> 

Thanks, both patches applied.


-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-03 21:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-02  9:28 [Qemu-devel] [PATCH 0/2] More translation improvements Kevin Wolf
2013-04-02  9:28 ` [Qemu-devel] [PATCH 1/2] po/Makefile: Fix dependency for %.mo Kevin Wolf
2013-04-02  9:28 ` [Qemu-devel] [PATCH 2/2] po: Update German translation Kevin Wolf
2013-04-03 21:46 ` [Qemu-devel] [PATCH 0/2] More translation improvements Aurelien Jarno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).