Bug 122103 - kate-insertcommand has untranslatable string
Summary: kate-insertcommand has untranslatable string
Status: RESOLVED FIXED
Alias: None
Product: kdeaddons
Classification: Frameworks and Libraries
Component: kate-insertcommand (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Anders Lund
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-02-16 15:02 UTC by Burkhard Lück
Modified: 2006-03-05 19:37 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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