SOURCES: kdelibs-branch.diff - update

arekm arekm at pld-linux.org
Tue Aug 2 08:02:35 CEST 2005


Author: arekm                        Date: Tue Aug  2 06:02:35 2005 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- update

---- Files affected:
SOURCES:
   kdelibs-branch.diff (1.15 -> 1.16) 

---- Diffs:

================================================================
Index: SOURCES/kdelibs-branch.diff
diff -u SOURCES/kdelibs-branch.diff:1.15 SOURCES/kdelibs-branch.diff:1.16
--- SOURCES/kdelibs-branch.diff:1.15	Mon Apr 18 12:35:31 2005
+++ SOURCES/kdelibs-branch.diff	Tue Aug  2 08:02:29 2005
@@ -1,22789 +1,346 @@
-diff -urN -x CVS kdelibs.orig/admin/acinclude.m4.in kdelibs/admin/acinclude.m4.in
---- kdelibs.orig/admin/acinclude.m4.in	2005-02-09 23:21:09.000000000 +0100
-+++ kdelibs/admin/acinclude.m4.in	2005-03-24 20:18:09.000000000 +0100
-@@ -1644,7 +1644,15 @@
- 
- AC_MSG_RESULT([$kde_cv_uic_plugins])
- if test "$kde_cv_uic_plugins" != yes; then
--	AC_MSG_ERROR([you need to install kdelibs first.])
-+	AC_MSG_ERROR([
-+you need to install kdelibs first.
-+
-+If you did install kdelibs, then the Qt version that is picked up by
-+this configure is not the same version you used to compile kdelibs. 
-+The Qt Plugin installed by kdelibs is *ONLY* loadable if its the 
-+same Qt version, compiled with the same compiler and the same Qt
-+configuration settings.
-+])
- fi
- fi
- ])
-@@ -3104,8 +3112,8 @@
-         fi
-         rm -f conftest.h conftest.h.gch
-     fi
--    AM_CONDITIONAL(unsermake_enable_pch, test "$kde_use_pch" = "yes" && test "$kde_gcc_supports_pch" = "yes")
-   fi
-+  AM_CONDITIONAL(unsermake_enable_pch, test "$kde_use_pch" = "yes" && test "$kde_gcc_supports_pch" = "yes")
-   if test "$CXX" = "KCC"; then
-     dnl unfortunately we currently cannot disable exception support in KCC
-     dnl because doing so is binary incompatible and Qt by default links with exceptions :-(
-@@ -3194,6 +3202,51 @@
-   ifdef([AM_DEPENDENCIES], AC_REQUIRE([KDE_ADD_DEPENDENCIES]), [])
- ])
- 
-+AC_DEFUN([KDE_CHECK_VISIBILITY_GCC_BUG],
-+  [
-+    AC_CACHE_CHECK([for gcc -fvisibility-inlines-hidden bug], kde_cv_val_gcc_visibility_bug,
-+      [
-+        AC_LANG_SAVE
-+        AC_LANG_CPLUSPLUS
-+
-+        safe_CXXFLAGS=$CXXFLAGS
-+        safe_LDFLAGS=$LDFLAGS
-+        CXXFLAGS="$CXXFLAGS -fPIC -fvisibility-inlines-hidden -O0"
-+        LDFLAGS="$LDFLAGS -shared -fPIC"
-+
-+        AC_TRY_LINK(
-+        [
-+          /* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19664 */
-+          template<typename CharT>
-+          struct VisTest
-+          {
-+            inline VisTest ();
-+          };
-+          template<typename CharT>
-+          inline VisTest<CharT>::VisTest()
-+          {}
-+          extern template class VisTest<char>;  // It works if we drop that line
-+          int some_function( int do_something ) __attribute__ ((visibility("default")));
-+          int some_function( int )
-+          {
-+            VisTest<char> a;
-+            return 0;
-+          }
-+        ], [/* elvis is alive */],
-+        kde_cv_val_gcc_visibility_bug=no, kde_cv_val_gcc_visibility_bug=yes)
-+
-+        CXXFLAGS=$safe_CXXFLAGS
-+        LDFLAGS=$safe_LDFLAGS
-+        AC_LANG_RESTORE
-+      ]
-+    )
-+
-+    if test x$kde_cv_val_gcc_visibility_bug = xno; then
-+      CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
-+    fi
-+  ]
-+)
-+
- AC_DEFUN([KDE_CHECK_AND_ADD_HIDDEN_VISIBILITY],
- [
-   if test "$GXX" = "yes"; then
-@@ -3202,7 +3255,9 @@
-     KDE_CHECK_COMPILER_FLAG(fno-common, [CXXFLAGS="$CXXFLAGS -fno-common"])
-     KDE_CHECK_COMPILER_FLAG(fvisibility=hidden, 
-     [
--        CXXFLAGS="$CXXFLAGS -fvisibility=hidden -fvisibility-inlines-hidden"
-+        CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
-+        KDE_CHECK_VISIBILITY_GCC_BUG
-+
-         HAVE_GCC_VISIBILITY=1
-         AC_DEFINE_UNQUOTED(__KDE_HAVE_GCC_VISIBILITY, "$HAVE_GCC_VISIBILITY", [define to 1 if -fvisibility is supported])
-     ])
-diff -urN -x CVS kdelibs.orig/admin/am_edit kdelibs/admin/am_edit
---- kdelibs.orig/admin/am_edit	2004-12-17 21:18:28.000000000 +0100
-+++ kdelibs/admin/am_edit	2005-04-18 10:49:33.000000000 +0200
-@@ -483,6 +483,7 @@
-             $MakefileData =~ s/$lookup/$replacement/;
-             $lookup =~ s/\\\$\\\(CXXFLAGS\\\)/\\\$\\\(KCXXFLAGS\\\)/;
-             $replacement = "$stuff_before\$(KCXXFLAGS) \$(KDE_CXXFLAGS)$stuff_after";
-+            next if ($stuff_before =~ /\$\(KDE_CXXFLAGS\)/ or $stuff_after =~ /\$\(KDE_CXXFLAGS\)/);
-             substituteLine($lookup, $replacement);
-         } else {
-             $found = 0;
-@@ -634,7 +635,7 @@
- 		if ($pre eq '' && exists($varcontent{$variable})) {
- 		    my @addlist = split(/[\034\s]+/, $varcontent{$variable});
- 		    push(@objlist, @addlist);
--                } elsif ($variable !~ 'OBJEXT') {
-+                } elsif ($variable !~ 'OBJEXT' && $variable !~ /am__objects_\d+/ ) {
-                     $ocv = 1;
- 		}
-             }
-@@ -1376,8 +1377,11 @@
- 		$dep_lines .= "\tif test \"\$\$ret\" = 0; then echo '#include \"$source.moc\"' >> $source.$cxxsuffix; else rm -f $source.$cxxsuffix ; exit \$\$ret ; fi\n\n";
-                 $dep_lines .= "$source.h: $sourcedir$source.ui\n";
-                 $dep_lines .= "\trm -rf $source.h;\n";
--                $dep_lines .= "\t\$(UIC) $sourcedir$source.ui | \$(PERL) -pi -e \"s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g\" >> $source.h ;\n";
--
-+                if (!$kdeopts{"qtonly"}) {
-+                    $dep_lines .= "\t\$(UIC) $sourcedir$source.ui | \$(PERL) -pi -e \"s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g\" >> $source.h ;\n";
-+                } else {
-+                    $dep_lines .= "\t\$(UIC) -o $source.h $sourcedir$source.ui\n";
-+                }
-                 $dep_lines .= "$source.moc: $source.h\n";
-                 $dep_lines .= "\t\$(MOC) $source.h -o $source.moc\n";
- 
-@@ -2276,7 +2280,7 @@
-            "\t        echo \"\$\$i\"; \\\n" . 
-            "\t        if ! ";
-     $t .=  $cxxsuffix eq "KKK" ?
--           "\$(CXX) \$(DEFS) -I. -I\$(srcdir) -I\$(top_builddir) \$(INCLUDES) \$(AM_CPPFLAGS) \$(CPPFLAGS) \$(KDE_CXXFLAGS) " :
-+           "\$(CXX) \$(DEFS) -I. -I\$(srcdir) -I\$(top_builddir) \$(INCLUDES) \$(AM_CPPFLAGS) \$(CPPFLAGS) \$(CXXFLAGS) \$(KDE_CXXFLAGS) " :
-            "\$(CXXCOMPILE) ";
-     $t .=  " --dump-class-hierarchy -c \$\$i.bchecktest.cc; then \\\n" .
-            "\t            rm -f \$\$i.bchecktest.cc; exit 1; \\\n" .
-@@ -2352,7 +2356,7 @@
-     $MakefileData =~ s/\034/\\\n/g;    # Restore continuation lines
-     # Append our $progId line, _below_ the "generated by automake" line
-     # because automake-1.6 relies on the first line to be his own.
--    my $progIdLine = "\# $progId - " . '$Revision$ '."\n";
-+    my $progIdLine = "\# $progId - " . '$Revision$ '."\n";
-     if ( !( $MakefileData =~ s/^(.*generated .*by automake.*\n)/$1$progIdLine/ ) ) {
-         warn "automake line not found in $makefile\n";
- 	# Fallback: first line
-diff -urN -x CVS kdelibs.orig/arts/kde/mcop-dcop/kmcop.desktop kdelibs/arts/kde/mcop-dcop/kmcop.desktop
---- kdelibs.orig/arts/kde/mcop-dcop/kmcop.desktop	2005-02-23 06:04:12.000000000 +0100
-+++ kdelibs/arts/kde/mcop-dcop/kmcop.desktop	2005-03-10 17:04:42.000000000 +0100
-@@ -2,12 +2,10 @@
- Encoding=UTF-8
- Type=Service
- Name=KMCOP
--Name[af]=Kmcop
- Name[hi]=क༇-ŕ¤ŕ¤Žŕ¤•ŕĽ‰ŕ¤Ş 
--Name[xx]=xxKMCOPxx
- Exec=kmcop
- Comment=KDE MCOP-DCOP Bridge
--Comment[af]=Kde MCOP-DCOP Brug
-+Comment[af]=KDE MCOP-DCOP Brug
- Comment[ar]=؏سع KDE MCOP-DCOP
- Comment[az]=KDE MCOP-DCOP KĂśrpĂźsĂź
- Comment[be]=ĐœĐžŃŃ‚ KDE MCOP-DCOP
-@@ -71,7 +69,6 @@
- Comment[uz]=KDE MCOP-DCOP кўприги
- Comment[ven]=KDE MCOP-DCOP Buroho
- Comment[xh]=KDE MCOP-DCOP Ibhulorho
--Comment[xx]=xxKDE MCOP-DCOP Bridgexx
- Comment[zh_CN]=KDED MCOP-DCOP 楼
- Comment[zh_TW]=KDE MCOP-DCOP 抋樑
- Comment[zu]=Ibhulogo le-KDE MCOP-DCOP
-diff -urN -x CVS kdelibs.orig/arts/knotify/knotify.cpp kdelibs/arts/knotify/knotify.cpp
---- kdelibs.orig/arts/knotify/knotify.cpp	2004-12-15 12:03:57.000000000 +0100
-+++ kdelibs/arts/knotify/knotify.cpp	2005-03-17 16:26:27.000000000 +0100
-@@ -388,11 +388,8 @@
-     if ( present & KNotifyClient::Sound ) // && QFile(sound).isReadable()
-         notifyBySound( sound, fromApp, eventId );
- 
--    if ( present & KNotifyClient::PassivePopup )
--        notifyByPassivePopup( text, fromApp, checkWinId( fromApp, winId ));
--
--    else if ( present & KNotifyClient::Messagebox )
--        notifyByMessagebox( text, level, checkWinId( fromApp, winId ));
-+    if ( present & KNotifyClient::Execute )
-+        notifyByExecute( commandline, event, fromApp, text, winId, eventId );
- 
-     if ( present & KNotifyClient::Logfile ) // && QFile(file).isWritable()
-         notifyByLogfile( text, file );
-@@ -400,12 +397,14 @@
-     if ( present & KNotifyClient::Stderr )
-         notifyByStderr( text );
- 
--    if ( present & KNotifyClient::Execute )
--        notifyByExecute( commandline, event, fromApp, text, winId, eventId );
--
-     if ( present & KNotifyClient::Taskbar )
-         notifyByTaskbar( checkWinId( fromApp, winId ));
- 
-+    if ( present & KNotifyClient::PassivePopup )
-+        notifyByPassivePopup( text, fromApp, checkWinId( fromApp, winId ));
-+    else if ( present & KNotifyClient::Messagebox )
-+        notifyByMessagebox( text, level, checkWinId( fromApp, winId ));
-+
-     QByteArray qbd;
-     QDataStream ds(qbd, IO_WriteOnly);
-     ds << event << fromApp << text << sound << file << present << level
-diff -urN -x CVS kdelibs.orig/arts/knotify/knotify.desktop kdelibs/arts/knotify/knotify.desktop
---- kdelibs.orig/arts/knotify/knotify.desktop	2005-02-23 06:04:14.000000000 +0100
-+++ kdelibs/arts/knotify/knotify.desktop	2005-03-07 15:13:12.000000000 +0100
-@@ -23,7 +23,6 @@
- Name[tg]=майарҳОи систоПавӣ
- Name[th]=ŕ¸Łŕ¸°ŕ¸šŕ¸šŕšŕ¸ˆŕš‰ŕ¸‡ŕš€ŕ¸•ŕ¸ˇŕ¸­ŕ¸™ - K
- Name[ven]=U divhadza ha K
--Name[xx]=xxKNotifyxx
- Name[zu]=I-KNotify
- Exec=knotify
- Comment=KDE Notification Daemon
-@@ -97,7 +96,6 @@
- Comment[vi]=Daemon thông båo cᝧa KDE 
- Comment[wa]=DĂŠmon di notifiaedje di KDE
- Comment[xh]=Daemon Ulwaziso lwe KDE
--Comment[xx]=xxKDE Notification Daemonxx
- Comment[zh_CN]=KDE é€šĺ‘ŠĺŽˆćŠ¤čż›ç¨‹
- Comment[zh_TW]=KDE é€šçŸĽćœĺ‹™ç¨‹ĺź
- Comment[zu]=Isaziso se-Daemon ye-KDE
-diff -urN -x CVS kdelibs.orig/dnssd/configure.in.bot kdelibs/dnssd/configure.in.bot
---- kdelibs.orig/dnssd/configure.in.bot	2005-02-10 14:28:45.000000000 +0100
-+++ kdelibs/dnssd/configure.in.bot	2005-03-10 20:03:43.000000000 +0100
-@@ -1,4 +1,4 @@
--if test -z "$LIB_DNSSD"; then
-+if test "$have_libdns_sd" = "no"; then
-   echo ""
-   echo "You're missing Apple mDNSResponder 85 or later, therefore"
-   echo "dnssd will be compiled as stub, without any real functionality."
-diff -urN -x CVS kdelibs.orig/dnssd/configure.in.in kdelibs/dnssd/configure.in.in
---- kdelibs.orig/dnssd/configure.in.in	2005-01-15 22:14:28.000000000 +0100
-+++ kdelibs/dnssd/configure.in.in	2005-03-10 20:03:43.000000000 +0100
-@@ -8,7 +8,11 @@
- save_dnssdtest_CPPFLAGS="$CPPFLAGS"
- LDFLAGS="$all_libraries $LDFLAGS"
- CPPFLAGS="$CPPFLAGS $all_includes"
--LIBS="-ldns_sd"
-+case $host_os in
-+  darwin*) LIBS="" ;;
-+  *) LIBS="-ldns_sd" ;;
-+esac
-+have_libdns_sd="no"
- AC_TRY_LINK(	[
- 			#include <dns_sd.h>
- 		],[
-@@ -16,7 +20,11 @@
- 			TXTRecordDeallocate( (TXTRecordRef*) 0);
- 		],[
- 			AC_DEFINE(HAVE_DNSSD,1,[Define if dns-sd is available])
--                        LIB_DNSSD="-ldns_sd"
-+			case $host_os in
-+				darwin*) LIB_DNSSD="" ;;
-+				*) LIB_DNSSD="-ldns_sd" ;;
-+			esac
-+			have_libdns_sd="yes"
- 			AC_MSG_RESULT(yes)
- 		],[
- 			AC_MSG_RESULT(no)
-@@ -27,5 +35,5 @@
- LIBS=$save_dnssdtest_LIBS
- fi
- AC_SUBST(LIB_DNSSD)
--AM_CONDITIONAL(HAVE_DNSSD, test -n "$LIB_DNSSD")
-+AM_CONDITIONAL(HAVE_DNSSD, test "$have_libdns_sd" = "yes")
- 
-diff -urN -x CVS kdelibs.orig/dnssd/publicservice.cpp kdelibs/dnssd/publicservice.cpp
---- kdelibs.orig/dnssd/publicservice.cpp	2004-12-12 13:35:38.000000000 +0100
-+++ kdelibs/dnssd/publicservice.cpp	2005-03-25 12:45:27.000000000 +0100
-@@ -18,7 +18,12 @@
-  * Boston, MA 02111-1307, USA.
-  */
- 
-+#include "config.h"
-+
- #include "publicservice.h"
-+#ifdef HAVE_SYS_TYPES_H
-+#include <sys/types.h>
-+#endif
- #include <netinet/in.h>
- #include <qapplication.h>
- #include "sdevent.h"
-diff -urN -x CVS kdelibs.orig/doc/kdelibs/Makefile.am kdelibs/doc/kdelibs/Makefile.am
---- kdelibs.orig/doc/kdelibs/Makefile.am	2005-02-10 21:03:34.000000000 +0100
-+++ kdelibs/doc/kdelibs/Makefile.am	2005-04-14 11:46:59.000000000 +0200
-@@ -2,3 +2,4 @@
- KDE_MANS = AUTO
- KDE_XSL_MAN_STYLESHEET = $(top_srcdir)/kdoctools/customization/kde-man.xsl
- 
-+KDE_DOCS_DEPS = $(MEINPROC_DEP)
-diff -urN -x CVS kdelibs.orig/interfaces/kimproxy/interface/dcopinstantmessenger.desktop kdelibs/interfaces/kimproxy/interface/dcopinstantmessenger.desktop
---- kdelibs.orig/interfaces/kimproxy/interface/dcopinstantmessenger.desktop	2005-02-23 06:04:14.000000000 +0100
-+++ kdelibs/interfaces/kimproxy/interface/dcopinstantmessenger.desktop	2005-03-10 17:04:42.000000000 +0100
-@@ -3,6 +3,7 @@
- Type=ServiceType
- X-KDE-ServiceType=DCOP/InstantMessenger
- Comment=Instant Messenger with a DCOP interface
-+Comment[af]=Oombliklike Boodskapper met DCOP intervlak
- Comment[bg]=ĐŸŃ€ĐžĐłŃ€Đ°ĐźĐ° Са ŃŃŠĐžĐąŃ‰ĐľĐ˝Đ¸Ń в роаНнО вроПо с инторфоКс DCOP
- Comment[bn]=ŕŚĄŕŚżŕŚ•ŕŚŞ (DCOP) ŕŚ‡ŕŚ¨ŕ§ŕŚŸŕŚžŕŚ°ŕŚŤŕ§‡ŕŚ¸ সহ ŕŚ‡ŕŚ¨ŕŚ¸ŕ§ŕŚŸŕ§ŕŚŻŕŚžŕŚ¨ŕ§ŕŚŸ ŕŚŽŕ§‡ŕŚ¸ŕ§‡ŕŚžŕ§ŕŚœŕŚžŕŚ°
- Comment[bs]=Instant poruke sa DCOP interfejsom
-@@ -42,11 +43,10 @@
- Comment[sk]=Instant Messanger s rozhranĂ­m DCOP
- Comment[sl]=Takojšni sporočilnik z vmesnikom DCOP
- Comment[sr]=БрСи гНасник са DCOP Đ¸Đ˝Ń‚ĐľŃ€Ń„ĐľŃ˜ŃĐžĐź
--Comment[sr at Latn]=БрСи гНасник са DCOP Đ¸Đ˝Ń‚ĐľŃ€Ń„ĐľŃ˜ŃĐžĐź
-+Comment[sr at Latn]=Brzi glasnik sa DCOP interfejsom
- Comment[sv]=Direktmeddelanden med ett DCOP-gränssnitt
- Comment[ta]=ŕŽ‰ŕŽŸŕŽŠŕŽŸŕŽż ŕŽšŕŻ†ŕŽŻŕŻŕŽ¤ŕŽżŕŽŻŕŽžŕŽłŕŽ°ŕŻ DCOP ŕŽ‡ŕŽŸŕŻˆŕŽŽŕŻŕŽ•ŕŽ¤ŕŻŕŽ¤ŕŻ‹ŕŽŸŕŻ
- Comment[tg]=КНионти ĐźŃƒĐąĐžĐ´Đ¸ĐťĐ°Đ¸ иттиНООт йО инторфоКси DCOP
- Comment[tr]=DCOP arayĂźzĂźyle AnÄąnda MesajlaĹŸma
- Comment[uk]=ĐŸŃ€ĐžĐłŃ€Đ°ĐźĐ° для ПиттєвОгО Св'ŃĐˇĐşŃƒ чороС DCOP
--Comment[xx]=xxInstant Messenger with a DCOP interfacexx
- Comment[zh_CN]=希 DCOP ćŽĽĺŁçš„ĺłć—śé€ščŽŻç¨‹ĺş
-diff -urN -x CVS kdelibs.orig/interfaces/kimproxy/interface/kcm_instantmessenger.desktop kdelibs/interfaces/kimproxy/interface/kcm_instantmessenger.desktop
---- kdelibs.orig/interfaces/kimproxy/interface/kcm_instantmessenger.desktop	2005-02-23 06:04:14.000000000 +0100
-+++ kdelibs/interfaces/kimproxy/interface/kcm_instantmessenger.desktop	2005-03-30 08:47:17.000000000 +0200
-@@ -1,16 +1,19 @@
- Name=Instant Messenger
-+Name[af]=Oombliklike Boodskapper
- Name[bg]=ĐĄŃŠĐžĐąŃ‰ĐľĐ˝Đ¸Ń в роаНнО вроПо
- Name[bn]=ŕŚ‡ŕŚ¨ŕŚ¸ŕ§ŕŚŸŕ§ŕŚŻŕŚžŕŚ¨ŕ§ŕŚŸ ŕŚŽŕ§‡ŕŚ¸ŕ§‡ŕŚžŕ§ŕŚœŕŚžŕŚ°
- Name[bs]=Instant poruke
- Name[ca]=Missatgeria instantĂ nia
- Name[cs]=KomunikĂĄtor
- Name[cy]=Negesydd Chwim
-+Name[el]=ΣτΚγΟΚιίος ÎąĎ€ÎżĎƒĎ„ÎżÎťÎ­ÎąĎ‚
- Name[eo]=Tujmesaĝilo
- Name[et]=Kiirsuhtlus
-+Name[eu]=Berehalako mezularitza
- Name[fi]=Pikaviestiohjelma
- Name[fr]=Messagerie instantanĂŠe
- Name[ga]=ClĂĄr teachtaireachtaĂ­ meandaracha
--Name[he]=×ž×Ą×¨×™× מיידיים
-+Name[he]=×ž×Ą×¨×™× מידיים
- Name[hi]=ŕ¤‡ŕ¤‚ŕ¤¸ŕĽŕ¤ŸŕĽˆŕ¤‚ŕ¤Ÿ ŕ¤ŽŕĽˆŕ¤¸ŕĽ‡ŕ¤‚ŕ¤œŕ¤°
- Name[hu]=Azonnali ßzenetkßldő
- Name[is]=Spjallforrit
-@@ -32,16 +35,16 @@
- Name[se]=Šleađgadieđut
- Name[sl]=Takojšni sporočilnik
- Name[sr]=БрСи гНасник
--Name[sr at Latn]=БрСи гНасник
-+Name[sr at Latn]=Brzi glasnik
- Name[sv]=Direktmeddelanden
- Name[ta]=ŕŽ‰ŕŽŸŕŽŠŕŽŸŕŽż ŕŽšŕŻ†ŕŽŻŕŻŕŽ¤ŕŽżŕŽŻŕŽžŕŽłŕŽ°ŕŻ
- Name[tg]=ĐœŃƒĐąĐžĐ´Đ¸ĐťĐ°Đ¸ иттиНООтҳО
- Name[tr]=AnÄąnda MesajlaĹŸma
- Name[uk]=ĐŸŃ€ĐžĐłŃ€Đ°ĐźĐ° для ПиттєвОгО Св'ŃĐˇĐşŃƒ чороС DCOP
- Name[uz]=майар Đ°ĐťĐźĐ°ŃˆĐ¸Ńˆ вОситаси
--Name[xx]=xxInstant Messengerxx
- Name[zh_CN]=ĺłć—śé€ščŽŻç¨‹ĺş
- Comment=The instant messenger allows two-way chat between individuals and groups.
-+Comment[af]=Die oombliklike boodskappe laat twee rigting kommunikasie tussen individue en groepe toe.
- Comment[bg]=РаСгОвОр ĐźĐľĐśĐ´Ńƒ раСНични Ń
Ора в роаНнО вроПо.
- Comment[bn]=ŕŚ‡ŕŚ¨ŕŚ¸ŕ§ŕŚŸŕ§ŕŚŻŕŚžŕŚ¨ŕ§ŕŚŸ ŕŚŽŕ§‡ŕŚ¸ŕ§‡ŕŚžŕ§ŕŚœŕŚžŕŚ° ŕŚŕŚ•ŕŚžŕŚ§ŕŚżŕŚ• ŕŚŹŕ§ŕŚŻŕŚ•ŕ§ŕŚ¤ŕŚż বা ŕŚ—ŕ§‹ŕŚˇŕ§ŕŚ ŕ§€ŕŚ•ŕ§‡ ŕŚŚŕ§ŕŚŹŕŚżŕŚŽŕ§ŕŚ–ŕ§€ বার্তালাপ বা ŕŚ†ŕŚĄŕ§ŕŚĄŕŚžŕŚ° ŕŚ¸ŕ§ŕŚŻŕ§‹ŕŚ— ŕŚŚŕ§‡ŕ§ŸŕĽ¤ 
- Comment[bs]=Program za instant poruke omogućuje dvosmjernu komunikaciju između pojedinaca i grupa.
-@@ -81,13 +84,12 @@
- Comment[sk]=Instant messenger umoĹžĹˆuje rozhovor medzi rĂ´znymi osobami a skupinami.
- Comment[sl]=Takojšni sporočilnik omogoča dvosmeren klepet med posamezniki in skupinami.
- Comment[sr]=БрСи гНасник ваП ĐžĐźĐžĐłŃƒŃ›Đ°Đ˛Đ° двОсПорнО ћаскањо Đ¸ĐˇĐźĐľŃ’Ńƒ Đ¸Đ˝Đ´Đ¸Đ˛Đ¸Đ´ŃƒĐ° и ĐłŃ€ŃƒĐżĐ°.
--Comment[sr at Latn]=БрСи гНасник ваП ĐžĐźĐžĐłŃƒŃ›Đ°Đ˛Đ° двОсПорнО ћаскањо Đ¸ĐˇĐźĐľŃ’Ńƒ Đ¸Đ˝Đ´Đ¸Đ˛Đ¸Đ´ŃƒĐ° и ĐłŃ€ŃƒĐżĐ°.
-+Comment[sr at Latn]=Brzi glasnik vam omogućava dvosmerno ćaskanje između individua i grupa.
- Comment[sv]=Direktmeddelanden mÜjliggÜr tvüvägschatt mellan individer och grupper.
- Comment[ta]=ŕŽ‰ŕŽŸŕŽŠŕŽŸŕŽż ŕŽ¤ŕŽ•ŕŽľŕŽ˛ŕŻ ŕŽ‰ŕŽ™ŕŻŕŽ•ŕŽłŕŻˆ ŕŽ‡ŕŽ°ŕŽŁŕŻŕŽŸŕŻ வழியில் தனிநபர் மற்றும் ŕŽ•ŕŻŕŽ´ŕŻŕŽ•ŕŻŕŽ•ŕŽłŕŻ ŕŽ‡ŕŽŸŕŻˆŕŽŻŕŻ‡ ŕŽ
ŕŽŠŕŻŕŽŽŕŽ¤ŕŽżŕŽ•ŕŻŕŽ•ŕŻŕŽŽŕŻ.
- Comment[tg]=КНионти ĐźŃƒĐąĐžĐ´Đ¸ĐťĐ°Đ¸ иттиНООт йарОи ĐźŃƒĐąĐžĐ´Đ¸ĐťĐ°Đ¸ иттиНООт йаКни ОдаПОн ва ĐłŃƒŃ€ÓŻŇłŇłĐž Ń
иСПат ПорасОнад.
- Comment[tr]=AnÄąnda mesajlaĹŸtÄąrÄącÄą iki yollu sohbet saÄŸlar: bireyler ve gruplar.
- Comment[uk]=ĐŸŃ€ĐžĐłŃ€Đ°ĐźĐ° для ПиттєвОгО Св'ŃĐˇĐşŃƒ Đ´ĐžĐˇĐ˛ĐžĐťŃŃ” Ń€ĐžĐˇĐźĐžĐ˛ĐťŃŃ‚Đ¸ С Ń–Đ˝ŃˆĐžŃŽ НюдинОю чи ĐłŃ€ŃƒĐżĐžŃŽ НюдоК.
--Comment[xx]=xxThe instant messenger allows two-way chat between individuals and groups.xx
- Comment[zh_CN]=ĺ
čŽ¸ĺœ¨ä¸Şäşşĺ’Œçž¤çť„äš‹é—´ĺŒĺ‘čŠĺ¤Šçš„ĺłć—śé€ščŽŻç¨‹ĺşă€‚
- ServiceTypeToConfigure=DCOP/InstantMessenger
- MimeTypeOfInterest=DCOP/InstantMessenger
-diff -urN -x CVS kdelibs.orig/interfaces/kscript/sample/shellscript.desktop kdelibs/interfaces/kscript/sample/shellscript.desktop
---- kdelibs.orig/interfaces/kscript/sample/shellscript.desktop	2005-02-23 06:04:16.000000000 +0100
-+++ kdelibs/interfaces/kscript/sample/shellscript.desktop	2005-04-13 04:13:27.000000000 +0200
-@@ -1,6 +1,7 @@
- [Desktop Entry]
- Encoding=UTF-8
- Name=Bash Shell Script Runner
-+Name[af]=Bash Tolk Skrip Hardloper
- Name[az]=Bash QabĹq Skripti İcraçĹsĹ
- Name[bn]=ব্যাশ ŕŚśŕ§‡ŕŚ˛ ŕŚ¸ŕ§ŕŚ•ŕ§ŕŚ°ŕŚżŕŚŞŕ§ŕŚŸ ŕŚšŕŚžŕŚ˛ŕŚ•
- Name[bs]=IzvrĹĄavanje Bash shell skripti
-@@ -20,6 +21,7 @@
- Name[fy]=Bash Flues Skript Rinner
- Name[ga]=ReathaĂ­ Script Bhlaoisce bash
- Name[gl]=GuiĂłn ExecutĂĄbel da Shell Bash
-+Name[he]=הר׌ת ×Ş×Ą×¨×™×˜ ×ž×˘×˜×¤×Ş ׊ל Bash
- Name[hi]=ŕ¤ŹŕĽˆŕ¤ś ज༇ल ŕ¤¸ŕĽŕ¤•ŕĽŕ¤°ŕ¤żŕ¤ŞŕĽŕ¤Ÿ चञलक
- Name[hr]=Izvršivač skripti Bash shella
- Name[hu]=Bash parancsfĂĄjl futtatĂĄsa
-@@ -53,13 +55,13 @@
- Name[uk]=Đ’Đ¸ĐşĐžĐ˝ŃƒĐ˛Đ°Ń‡ скриптів кОПанднОї ОйОНОнки (bash)
- Name[uz]=Bash ŃˆĐľĐťĐť скриптини Đ¸ŃˆĐłĐ° Ń‚ŃƒŃˆŃƒŃ€ŃƒĐ˛Ń‡Đ¸
- Name[wa]=Enondeu di scripes shell bash
--Name[xx]=xxBash Shell Script Runnerxx
- Name[zh_CN]=Bash Shell č„šćœŹčżčĄŒç¨‹ĺş
- Type=Service
- X-KDE-Library=libshellscript
- X-KDE-Script-Runner=ShellScript/bash
- ServiceTypes=KScriptRunner/KScriptRunner
- Comment=Runs bash shell scripts from inside the application.
-+Comment[af]=Laai bash tolk skripte vanuit die program.
- Comment[ar]=يشغَل bash shell scripts Ů
ن دا؎ل التءبيق
- Comment[az]=ProqramĹn içindən bash qabĹq skriptlərini icra edin
- Comment[bg]=Đ˜ĐˇĐżŃŠĐťĐ˝ĐľĐ˝Đ¸Đľ на скриптОво на bash От Đ´Ń€ŃƒĐłĐ° прОграПа.
-@@ -118,6 +120,5 @@
- Comment[uk]=Đ—Đ°ĐżŃƒŃĐşĐ°Ń” скрипти кОПанднОї ОйОНОнки (bash) С прОграПи.
- Comment[uz]=Đ”Đ°ŃŃ‚ŃƒŃ€ĐťĐ°Ń€Đ˝Đ¸Đ˝Đł ичдан bash ŃˆĐľĐťĐť скриптини Đ¸ŃˆĐłĐ° Ń‚ŃƒŃˆĐ¸Ń€Đ°Đ´Đ¸
- Comment[wa]=Enonder des scripes shell bash a pĂĽrti do programe
--Comment[xx]=xxRuns bash shell scripts from inside the application.xx
- Comment[zh_CN]=ĺœ¨ĺş”ç”¨ç¨‹ĺşĺ†
čżčĄŒ bash shell č„šćœŹă€‚
- Comment[zh_TW]=ć–źç¨‹ĺźĺ
§ĺŸˇčĄŒ bash shell script ćŞ”ćĄˆ
-diff -urN -x CVS kdelibs.orig/interfaces/kscript/scriptinterface.desktop kdelibs/interfaces/kscript/scriptinterface.desktop
---- kdelibs.orig/interfaces/kscript/scriptinterface.desktop	2005-02-23 06:04:15.000000000 +0100
-+++ kdelibs/interfaces/kscript/scriptinterface.desktop	2005-03-07 15:13:13.000000000 +0100
-@@ -67,7 +67,6 @@
- Comment[vi]=Đây là b᝙ script th᝭ nghiᝇm chung cho viᝇc th᝭ cåc script giao diᝇn 
- Comment[wa]=Çouchal est on programe di saye po vey kimint rote l' eterface di scripes.
- Comment[xh]=Olu luvavanyo luka wonke-wonke lwenjini yokushicilelweyo yokuvavanya ujongano loshicilelo.
--Comment[xx]=xxThis is a generic test script engine for testing the script interface.xx
- Comment[zh_CN]=čż™ć˜Żä¸€ä¸Şç”¨äşŽćľ‹čŻ•č„šćœŹćŽĽĺŁçš„é€šç”¨č„šćœŹćľ‹čŻ•ĺź•ć“Žă€‚
- Comment[zh_TW]=é€™ć˜Żç”¨äž†ć¸ŹčŠŚć‰‹ç¨żäť‹é˘ç”¨çš„ä¸€čˆŹć€§ć¸ŹčŠŚć‰‹ç¨żĺź•ć“Ž
- Comment[zu]=Lena yinjini yesikripti sokuvivinya sawonke wonke yokuvivinya isikripti somxhumanisi.
-diff -urN -x CVS kdelibs.orig/interfaces/kspeech/dcoptexttospeech.desktop kdelibs/interfaces/kspeech/dcoptexttospeech.desktop
---- kdelibs.orig/interfaces/kspeech/dcoptexttospeech.desktop	2005-02-23 06:04:16.000000000 +0100
-+++ kdelibs/interfaces/kspeech/dcoptexttospeech.desktop	2005-03-27 09:28:40.000000000 +0200
-@@ -5,6 +5,7 @@
- Comment=Text-to-Speech Service with a DCOP interface
- Comment[bg]=ХинтоС на гНас с инторфоКс DCOP
- Comment[bn]=ŕŚĄŕŚżŕŚ•ŕŚŞ (DCOP) ŕŚ‡ŕŚ¨ŕ§ŕŚŸŕŚžŕŚ°ŕŚŤŕ§‡ŕŚ¸ সহ ŕŚŸŕ§‡ŕŚ•ŕ§ŕŚ¸ŕŚŸ-ŕŚŸŕ§-ŕŚ¸ŕ§ŕŚŞŕ§€ŕŚš সার্ভিস
-+Comment[bs]=Servis za izgovaranje teksta sa DCOP interfejsom
- Comment[ca]=Servei de sĂ­ntesi de veu amb una interfĂ­cie DCOP
- Comment[cs]=SluĹžba text-na-Ĺ™eč s DCOP rozhranĂ­m
- Comment[cy]=Gwasanaeth Testun-i-Lafar efo rhyngwyneb DCOP
-@@ -12,12 +13,16 @@
- Comment[de]=Sprachausgabe mit DCOP-Schnittstelle
- Comment[es]=Texto a servicio de voz con un interfaz DCOP
- Comment[et]=Teksti kĂľneks muutmise teenus DCOP liidesega
-+Comment[eu]=DCOP interfazea duen testua-hitz-egitera
-+Comment[fi]=Teksti-Puheeksi palvelu DCOP-rajapinnalla
- Comment[fr]=Service de synthèse vocale munie d'une interface DCOP
- Comment[ga]=SeirbhĂ­s TĂŠacs-go-Caint le comhĂŠadan DCOP
-+Comment[he]=׊ירות ×˜×§×Ą×˜ לדיבור עם ממ׊ק DCOP
-+Comment[hi]=थༀक༉प ŕ¤‡ŕ¤‚ŕ¤Ÿŕ¤°ŕ¤ŤŕĽ‡ŕ¤¸ सचित पञठ स༇ ध्वनि
- Comment[hsb]=konwertowanje teksta na rěč z DCOP-interfejsom
- Comment[hu]=SzĂśvegfelolvasĂł szolgĂĄltatĂĄs DCOP-felĂźlettel
- Comment[is]=Texti-Ă­-tal ĂžjĂłnusta meĂ° DCOP viĂ°mĂłti
--Comment[it]=Servizio di lettura vocale di testi con un'interfaccia DCOP
-+Comment[it]=Servizio di pronuncia con un'interfaccia DCOP
- Comment[lt]=Teksto vertimo kalba tarnyba su DCOP sÄ
saja
- Comment[nb]=Tekst til tale-program med DCOP-grensesnitt
- Comment[nl]=Tekst-tot-spraak-dienst met een DCOP interface
-@@ -31,8 +36,7 @@
- Comment[sk]=Služba prevodu textu na reč s rozhraním DCOP
- Comment[sl]=Servis, ki spremeni besedilo v govor, z vmesnikom DCOP
- Comment[sr]=Đ˘ĐľĐşŃŃ‚â€”Ńƒâ€”ĐłĐžĐ˛ĐžŃ€ сорвис са DCOP Đ¸Đ˝Ń‚ĐľŃ€Ń„ĐľŃ˜ŃĐžĐź
--Comment[sr at Latn]=Đ˘ĐľĐşŃŃ‚â€”Ńƒâ€”ĐłĐžĐ˛ĐžŃ€ сорвис са DCOP Đ¸Đ˝Ń‚ĐľŃ€Ń„ĐľŃ˜ŃĐžĐź
-+Comment[sr at Latn]=Tekst—u—govor servis sa DCOP interfejsom
- Comment[sv]=Text till tal-tjänst med ett DCOP-gränssnitt
- Comment[uk]=ĐĄĐťŃƒĐśĐąĐ° ŃĐ¸Đ˝Ń‚ĐľĐˇŃƒ мовлення С інторфоКсОП DCOP
--Comment[xx]=xxText-to-Speech Service with a DCOP interfacexx
- Comment[zh_CN]=希 DCOP ćŽĽĺŁçš„ć–‡ćœŹĺˆ°čŻ­éŸłćœĺŠĄ
-diff -urN -x CVS kdelibs.orig/interfaces/ktexteditor/kcm_ktexteditor.desktop kdelibs/interfaces/ktexteditor/kcm_ktexteditor.desktop
---- kdelibs.orig/interfaces/ktexteditor/kcm_ktexteditor.desktop	2005-02-23 06:04:17.000000000 +0100
-+++ kdelibs/interfaces/ktexteditor/kcm_ktexteditor.desktop	2005-03-07 15:13:14.000000000 +0100
-@@ -63,7 +63,6 @@
- Name[ven]=Musengulusi wa manwalwa o dzheniswaho
- Name[wa]=RavalĂŠ aspougneu di tecse
- Name[xh]=Umhleli Wombhalo Olungiselelweyo
--Name[xx]=xxEmbedded Text Editorxx
- Name[zh_CN]=ĺľŒĺ
Ľĺźć–‡ćœŹçź–螑器
- Name[zh_TW]=ĺľŒĺ
Ľĺźć–‡ĺ­—硨蟯器
- Name[zu]=Umlungisi Wombhalo Oshuthekiwe
-@@ -129,7 +128,6 @@
- Comment[uz]=ĐœĐ°Ń‚Đ˝ тарҳрирчи Ń
иСПати Đ´Đ°ŃŃ‚ŃƒŃ€ĐťĐ°Ń€Đ˝Đ¸ Патн ĐşŃžŃ€ŃƒĐ˛Ń‡Đ¸ ва таҳрирчи йиНан таъПинНаКди. ĐœĐ°Ń‚Đ˝ Ń‚Đ°ŇłŃ€Đ¸Ń€ĐťĐ°Ńˆ Đ¸ĐźĐşĐžĐ˝Đ¸ŃŃ‚Đ¸Đ˝Đ¸ ŃŃ€Đ°Ń‚ŃƒĐ˛Ń‡Đ¸ KDE Đ´Đ°ŃŃ‚ŃƒŃ€ĐťĐ°Ń€Đ¸ ŃˆŃƒ Ń
иСПатни Đ¸ŃˆĐťĐ°Ń‚Đ¸ŃˆĐ¸ корак.
- Comment[ven]=Tshumelo ya musengulusi wa manwalwa i diswa apulifikhesheni dzirena na vhavhoni vha manwalwa na musengulusi. Apulifikhesheni ya KDE ine ya disa zwishumiswa zwa u sengulusa manwalwa i fanela u shumisa tshumelo ino.
- Comment[xh]=Inkonzo yomhleli wombhalo onika izicelo ngombonisi wombhalo nomhleli Izicelo ze KDE ezinikezela ngohlelo lombhalo ekufuneka isebenzise lenkonzo.
--Comment[xx]=xxThe text editor service provides applications with a text viewer and editor. KDE applications that provide text editing facilities should use this service.xx
- Comment[zh_CN]=ć–‡ćœŹçź–čž‘ĺ™¨ćœĺŠĄćäž›äş†ć–‡ćœŹćŸĽçœ‹ĺ™¨ĺ’Œçź–čž‘ĺ™¨çš„ĺş”ç”¨ç¨‹ĺşă€‚ćäž›ć–‡ćœŹçź–čž‘ĺŠŸčƒ˝çš„ KDE ĺş”ç”¨ç¨‹ĺşéƒ˝ĺş”čŻĽä˝żç”¨ć­¤ćœĺŠĄă€‚
- Comment[zh_TW]=ć–‡ĺ­—çˇ¨čźŻćœĺ‹™ćäž›ç¨‹ĺźä¸€ĺ€‹ć–‡ĺ­—ćŞ˘čŚ–ĺ™¨äťĽĺŠçˇ¨čźŻĺ™¨ă€‚ćäž›ć–‡ĺ­—çˇ¨čźŻĺŠŸčƒ˝çš„ KDE ç¨‹ĺźć“čŠ˛ä˝żç”¨é€™é 
ćœĺ‹™ă€‚
- Comment[zu]=Umsebenzi womlungisi wombhalo onikeza imiyaleli ngombukisi wombhalo kanye nomhleli.Abayaleli abanikeza izisebenzi zokulungisa umbhalo okumele zisebenzise lomsebenzi.
-diff -urN -x CVS kdelibs.orig/interfaces/ktexteditor/ktexteditor.desktop kdelibs/interfaces/ktexteditor/ktexteditor.desktop
---- kdelibs.orig/interfaces/ktexteditor/ktexteditor.desktop	2005-02-23 06:04:17.000000000 +0100
-+++ kdelibs/interfaces/ktexteditor/ktexteditor.desktop	2005-03-07 15:13:14.000000000 +0100
-@@ -69,7 +69,6 @@
- Comment[ven]=Khomphonente ya musengulusi ya manwalwa (ina Doc/u khethekana ha u vhona)
- Comment[vi]=Componet cᝧa trĂŹnh soấn thảo văn bản cĂł tháťƒ embeÄ‘
- Comment[xh]=Inxenye Yomhleli Wombhalo Olungiselelweyo (ngo Xwebhu/Ulwahlulo Lwemboniselo)
--Comment[xx]=xxEmbeddable Text Editor Component (with Doc/View Separation)xx
- Comment[zh_CN]=ĺŻĺľŒĺ
Ľçš„ć–‡ćœŹçź–čž‘ĺ™¨éƒ¨äťś(希 文楣/ćŸĽçœ‹ ĺˆ†çŚť)
- Comment[zh_TW]=ĺŻĺľŒĺ
Ľçš„文字硨蟯器ĺ
ƒäťś (Doc/View ĺˆ†é–‹)
- Comment[zu]=IIunga Lomlungisi Wombhalo (Ngokuhlukana kwe-Doc/Umbukiso)
-diff -urN -x CVS kdelibs.orig/interfaces/ktexteditor/ktexteditoreditor.desktop kdelibs/interfaces/ktexteditor/ktexteditoreditor.desktop
---- kdelibs.orig/interfaces/ktexteditor/ktexteditoreditor.desktop	2005-02-23 06:04:17.000000000 +0100
-+++ kdelibs/interfaces/ktexteditor/ktexteditoreditor.desktop	2005-03-07 15:13:14.000000000 +0100
-@@ -69,7 +69,6 @@
- Comment[ven]=Khomphonente ya musengulusi wa manwalwa (i sina Doc/U khethekana hau vhona)
- Comment[vi]=Componet cᝧa trĂŹnh soấn thảo văn bản cĂł tháťƒ Embed( khĂ´ng phan^ biᝇtn Doc/ View)
- Comment[xh]=Ingxenye Yomhleli Wombhalo Olungiselekayo (ngaphandle Koxwebhu/Ulwahlulo Lwemboniselo)
--Comment[xx]=xxEmbeddable Text Editor Component (without Doc/View Separation)xx
- Comment[zh_CN]=ĺŻĺľŒĺ
Ľçš„ć–‡ćœŹçź–čž‘ĺ™¨éƒ¨äťś(不带 文楣/ćŸĽçœ‹ ĺˆ†çŚť)
- Comment[zh_TW]=ĺŻĺľŒĺ
Ľçš„文字硨蟯器ĺ
ƒäťś (Doc/View ä¸ĺˆ†é–‹)
- Comment[zu]=Ilunga Lomlungisi Wombhalo (ngaphandle Kokuhlukana kwe-Doc/Umbukiso)
-diff -urN -x CVS kdelibs.orig/interfaces/ktexteditor/ktexteditorplugin.desktop kdelibs/interfaces/ktexteditor/ktexteditorplugin.desktop
---- kdelibs.orig/interfaces/ktexteditor/ktexteditorplugin.desktop	2005-02-23 06:04:17.000000000 +0100
-+++ kdelibs/interfaces/ktexteditor/ktexteditorplugin.desktop	2005-03-10 17:04:43.000000000 +0100
-@@ -4,6 +4,7 @@
- X-KDE-ServiceType=KTextEditor/Plugin
- X-KDE-Derived=
- Comment=KTextEditor Plugin
-+Comment[af]=KTextEditor Inprop Module
- Comment[ar]=Ů
ساؚد بعناŮ
ŘŹ KTextEditor
- Comment[az]=KTextEditor ƏlavÉ™si
- Comment[be]=Đ”Đ°ĐżĐ°ŃžĐ˝ĐľĐ˝ŃŒĐ˝Đľ K Đ˘ŃĐşŃŃ‚Đ°Đ˛Đ°ĐłĐ° Ń€ŃĐ´Đ°ĐşŃ‚Đ°Ń€Đ°
-@@ -57,7 +58,7 @@
- Comment[sl]=Vstavek KTextEditor
- Comment[sq]=Shtojca KTextEditor
- Comment[sr]=KTextEditor ĐżŃ€Đ¸ĐşŃ™ŃƒŃ‡Đ°Đş
--Comment[sr at Latn]=KTextEditor dodatak
-+Comment[sr at Latn]=KTextEditor priključak
- Comment[ss]=I-plugini ye KTextEditor 
- Comment[sv]=Insticksprogram fĂśr texteditor
- Comment[ta]=ŕŽ•ŕŻ‡ŕŽ‰ŕŽ°ŕŻˆŕŽ¤ŕŻŠŕŽ•ŕŻŕŽŞŕŻŕŽŞŕŽż ŕŽšŕŻŠŕŽ°ŕŻŕŽ•ŕŻŕŽŞŕŻŕŽŞŕŻŠŕŽ°ŕŻŕŽłŕŻ
-@@ -68,7 +69,6 @@
- Comment[ven]=Pulagini ya musengulusi wa manwalwa a K
- Comment[wa]=TchĂ´ke-divins KTextEditor
- Comment[xh]=KTextEditor ye Plagi efakiweyo
--Comment[xx]=xxKTextEditor Pluginxx
- Comment[zh_CN]=KTextEditor ć’äťś
- Comment[zh_TW]=KTextEditor ĺ¤–ćŽ›ç¨‹ĺź
- Comment[zu]= Ukungena ngaphakathi kwe-KTextEditor
-diff -urN -x CVS kdelibs.orig/kabc/distributionlistdialog.cpp kdelibs/kabc/distributionlistdialog.cpp
---- kdelibs.orig/kabc/distributionlistdialog.cpp	2004-07-08 11:55:37.000000000 +0200
-+++ kdelibs/kabc/distributionlistdialog.cpp	2005-03-09 16:19:35.000000000 +0100
-@@ -53,12 +53,15 @@
- {
- }
- 
-+static QMap<QWidget*,QString> *sEmailMap = 0;
- 
- EmailSelector::EmailSelector( const QStringList &emails, const QString &current,
-                                       QWidget *parent ) :
-   KDialogBase( KDialogBase::Plain, i18n("Select Email Address"), Ok, Ok,
-                parent )
- {
-+  if (!sEmailMap)
-+     sEmailMap = new QMap<QWidget*,QString>();
-   QFrame *topFrame = plainPage();
-   QBoxLayout *topLayout = new QVBoxLayout( topFrame );
- 
-@@ -69,8 +72,9 @@
-   QStringList::ConstIterator it;
-   for( it = emails.begin(); it != emails.end(); ++it ) {
-     QRadioButton *button = new QRadioButton( *it, mButtonGroup );
-+    sEmailMap->insert( button, *it );
-     if ( (*it) == current ) {
--      button->setDown( true );
-+      mButtonGroup->setButton(mButtonGroup->id(button));
-     }
-   }
- }
-@@ -78,7 +82,7 @@
- QString EmailSelector::selected()
- {
-   QButton *button = mButtonGroup->selected();
--  if ( button ) return button->text();
-+  if ( button ) return (*sEmailMap)[button];
-   return QString::null;
- }
- 
-diff -urN -x CVS kdelibs.orig/kabc/formats/binary.desktop kdelibs/kabc/formats/binary.desktop
---- kdelibs.orig/kabc/formats/binary.desktop	2005-02-23 06:04:19.000000000 +0100
-+++ kdelibs/kabc/formats/binary.desktop	2005-03-07 15:13:14.000000000 +0100
-@@ -66,7 +66,6 @@
- Name[ven]=Zwivhili
- Name[wa]=Binaire
- Name[xh]=Ephindwe kabini
--Name[xx]=xxBinaryxx
- Name[zh_CN]=äşŒčż›ĺˆś
- Name[zh_TW]=äşŒé€˛ä˝
- Name[zu]=Okuhambisana ngambili
-diff -urN -x CVS kdelibs.orig/kabc/kab2kabc.desktop kdelibs/kabc/kab2kabc.desktop
---- kdelibs.orig/kabc/kab2kabc.desktop	2005-02-23 06:04:18.000000000 +0100
-+++ kdelibs/kabc/kab2kabc.desktop	2005-03-07 15:13:14.000000000 +0100
-@@ -13,7 +13,6 @@
- Name[pt_BR]=ConversĂŁo de  kab para kabc
- Name[ro]=Kab2kabc
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/kdelibs-branch.diff?r1=1.15&r2=1.16&f=u




More information about the pld-cvs-commit mailing list