From ae6b3de789726af3928664ef03eac81950e716e4 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Sun, 16 Mar 2003 19:07:50 +0000 Subject: Enable translations of startmenu-applets. Problem is, in Qt2, moc generates the necessary tr() functions which adds the context (aka class name) and then calls translate(). The startmenu applets don't use moc and therefore don't get the appropriate tr() functions. --- (limited to 'core/applets/homeapplet') diff --git a/core/applets/homeapplet/home.cpp b/core/applets/homeapplet/home.cpp index f94bc14..017de27 100644 --- a/core/applets/homeapplet/home.cpp +++ b/core/applets/homeapplet/home.cpp @@ -1,6 +1,7 @@ #include #include +#include #include #include @@ -31,6 +32,16 @@ QString HomeApplet::text ( ) const return tr( "Desktop" ); } +QString HomeApplet::tr( const char* s ) const +{ + return qApp->translate( "HomeApplet", s, 0 ); +} + +QString HomeApplet::tr( const char* s, const char* p ) const +{ + return qApp->translate( "HomeApplet", s, p ); +} + QIconSet HomeApplet::icon ( ) const { QPixmap pix; diff --git a/core/applets/homeapplet/home.h b/core/applets/homeapplet/home.h index 7f4b630..64af97d 100644 --- a/core/applets/homeapplet/home.h +++ b/core/applets/homeapplet/home.h @@ -36,6 +36,8 @@ public: virtual QString name ( ) const; virtual QIconSet icon ( ) const; virtual QString text ( ) const; + virtual QString tr( const char* ) const; + virtual QString tr( const char*, const char* ) const; virtual QPopupMenu *popup ( QWidget *parent ) const; virtual void activated ( ); -- cgit v0.9.0.2