From patchwork Mon Aug 20 13:14:48 2007 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Schwarzott X-Patchwork-Id: 12509 Received: from mail-out.m-online.net ([212.18.0.10]) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1IN75u-0001Zr-1S for vdr@linuxtv.org; Mon, 20 Aug 2007 15:14:58 +0200 Received: from mail01.m-online.net (mail.m-online.net [192.168.3.149]) by mail-out.m-online.net (Postfix) with ESMTP id 5517D24677B for ; Mon, 20 Aug 2007 15:14:53 +0200 (CEST) Received: from gauss.x.fun (DSL01.83.171.166.63.ip-pool.NEFkom.net [83.171.166.63]) by mail.nefkom.net (Postfix) with ESMTP id 372BB900EB for ; Mon, 20 Aug 2007 15:14:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by gauss.x.fun (Postfix) with ESMTP id 23B041761DA for ; Mon, 20 Aug 2007 15:14:52 +0200 (CEST) From: Matthias Schwarzott To: vdr@linuxtv.org Date: Mon, 20 Aug 2007 15:14:48 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Message-Id: <200708201514.49784.zzam@gentoo.org> Subject: [vdr] [PATCH] Also set correct locale-filename in i18n-to-gettext.pl for vdr-1.5.8 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 13:14:58 -0000 Status: O X-Status: X-Keywords: X-UID: 13853 Hi there! as vdr-1.5.8 now uses vdr-$(PLUGIN).mo as filename, i18n-to-gettext.pl should add corresponding code to Makefiles. Matthias Index: vdr-1.5.8/i18n-to-gettext.pl =================================================================== --- vdr-1.5.8.orig/i18n-to-gettext.pl +++ vdr-1.5.8/i18n-to-gettext.pl @@ -323,7 +323,7 @@ i18n: $(I18Nmo) @mkdir -p $(LOCALEDIR) for i in $(I18Ndirs); do\ mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\ - cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/$(PLUGIN).mo;\ + cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/vdr-$(PLUGIN).mo;\ done };