Bug 122103

Summary: kate-insertcommand has untranslatable string
Product: [Unmaintained] kdeaddons Reporter: Burkhard Lück <lueck>
Component: kate-insertcommandAssignee: Anders Lund <anderslund>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version First Reported In: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Burkhard Lück 2006-02-16 15:02:23 UTC
Version:            (using KDE KDE 3.5.1)
Installed from:    Compiled From Sources

The string "Configure Insert Command Plugin" from the file kdeaddons/kate/insertcommand/plugin_kateinsertcommand.h has a i18n(),
but is not extracted to kateinsertcommand.pot

This patch should fix the bug:

Index: kdeaddons/kate/insertcommand/Makefile.am
===================================================================
--- kdeaddons/kate/insertcommand/Makefile.am    (revision 510094)
+++ kdeaddons/kate/insertcommand/Makefile.am    (working copy)
@@ -18,4 +18,4 @@
 kde_services_DATA = kateinsertcommand.desktop

 messages: rc.cpp
-       $(XGETTEXT) *.cpp -o $(podir)/kateinsertcommand.pot
+       $(XGETTEXT) *.cpp *.h -o $(podir)/kateinsertcommand.pot
Comment 1 Burkhard Lück 2006-02-24 08:30:30 UTC
Please apply the patch. 
Without this patch no translator can take the new screenshots 
for the insertcommand dokumentation in his language
Comment 2 Burkhard Lück 2006-03-05 19:37:51 UTC
SVN commit 516028 by lueck:

fix for untranslatable string
BUG:122103
CCMAIL:kde-i18n-doc@kde.org

 M  +1 -1      Makefile.am  


--- branches/KDE/3.5/kdeaddons/kate/insertcommand/Makefile.am #516027:516028
@@ -18,4 +18,4 @@
 kde_services_DATA = kateinsertcommand.desktop
 
 messages: rc.cpp
-	$(XGETTEXT) *.cpp -o $(podir)/kateinsertcommand.pot
+	$(XGETTEXT) *.cpp *.h -o $(podir)/kateinsertcommand.pot