[geeklog-cvs] tools: Too many language files still use the old "GeekLog" spell...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Wed Jan 26 14:52:59 EST 2011


changeset 55:f1fc41e356ae
url: http://project.geeklog.net/cgi-bin/hgwebdir.cgi/tools/rev/f1fc41e356ae
user: Dirk Haun <dirk at haun-online.de>
date: Wed Jan 26 20:40:54 2011 +0100
description:
Too many language files still use the old "GeekLog" spelling in the credits - fix that

diffstat:

lm/lm.php | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)

diffs (41 lines):

diff -r 99b735173552 -r f1fc41e356ae lm/lm.php
--- a/lm/lm.php Wed Jan 19 20:06:01 2011 +0100
+++ b/lm/lm.php Wed Jan 26 20:40:54 2011 +0100
@@ -3,13 +3,13 @@

/* Reminder: always indent with 4 spaces (no tabs). */
// +---------------------------------------------------------------------------+
-// | Geeklog 1.6 |
+// | Geeklog 1.8 |
// +---------------------------------------------------------------------------+
// | lm.php |
// | |
// | Update a language file by merging it with english.php |
// +---------------------------------------------------------------------------+
-// | Copyright (C) 2004-2009 by the following authors: |
+// | Copyright (C) 2004-2011 by the following authors: |
// | |
// | Author: Dirk Haun - dirk AT haun-online DOT de |
// +---------------------------------------------------------------------------+
@@ -30,7 +30,7 @@
// | |
// +---------------------------------------------------------------------------+

-$VERSION = '1.0.3';
+$VERSION = '1.0.4';

// Prevent PHP from reporting uninitialized variables
error_reporting( E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR );
@@ -367,6 +367,12 @@
fclose ($fh);
}

+ // ensure rebranding extends to the credits :)
+ $csize = count($credits);
+ for ($i = 0; $i < $csize; $i++) {
+ $credits[$i] = str_replace('GeekLog', 'Geeklog', $credits[$i]);
+ }
+
return ($credits);
}



More information about the geeklog-cvs mailing list