[Kde-games-devel] Adding i18n strings to kshisen in KDE_3_1_BRANCH

Dave Corrie kde-games-devel@mail.kde.org
Wed, 1 Jan 2003 23:02:57 +0000


--------------Boundary-00=_XC52Y6N66K2ZJ3P0TUDR
Content-Type: text/plain;
  charset="us-ascii"
Content-Transfer-Encoding: 8bit

Hi,

Marc's email earlier today reminded me that the kshisen's about box in 
KDE_3_1_BRANCH is out of date. Ideally I'd like to apply the attached 
patch, but as this patch adds some i18n strings I guess it is not 
permissible at this stage?

I'd like to update the about box, but I can't think of a way of doing 
this that is both clear and does not introduce new strings. Can anyone 
tell me how I should proceed?

Thanks in advance,

Dave
--------------Boundary-00=_XC52Y6N66K2ZJ3P0TUDR
Content-Type: text/x-diff;
  charset="us-ascii";
  name="kshisen_about.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="kshisen_about.patch"

Index: main.cpp
===================================================================
RCS file: /home/kde/kdegames/kshisen/main.cpp,v
retrieving revision 1.14
diff -u -3 -p -r1.14 main.cpp
--- main.cpp	14 Jan 2002 22:37:55 -0000	1.14
+++ main.cpp	1 Jan 2003 22:50:37 -0000
@@ -54,7 +54,10 @@ int main(int argc, char **argv)
   KAboutData aboutData( "kshisen", I18N_NOOP("Shisen-Sho"), 
     KSHISEN_VERSION, description, KAboutData::License_GPL, 
     "(c) 1997, Mario Weilguni");
-  aboutData.addAuthor("Mario Weilguni",0, "mweilguni@sime.com");
+  aboutData.addAuthor("Dave Corrie", I18N_NOOP("Current Maintainer"), "kde@davecorrie.com");
+  aboutData.addAuthor("Mario Weilguni", I18N_NOOP("Original Author"), "mweilguni@sime.com");
+  aboutData.addCredit("Jason Lane", I18N_NOOP("Added 'tiles removed' counter\nTile smooth-scaling"), "jglane@btopenworld.com");
+  aboutData.addCredit(I18N_NOOP("Thanks also to everyone who should be listed here but isn't!"), 0, 0);
   KCmdLineArgs::init( argc, argv, &aboutData );
 
   KApplication a;

--------------Boundary-00=_XC52Y6N66K2ZJ3P0TUDR--