[geeklog-cvs] tools: Add $LANG_tab array (as of Geeklog 1.8)

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Feb 26 15:54:55 EST 2011


changeset 59:75171c9cf3c8
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/tools/rev/75171c9cf3c8
user: Dirk Haun <dirk at haun-online.de>
date: Sat Feb 26 21:54:48 2011 +0100
description:
Add $LANG_tab array (as of Geeklog 1.8)

diffstat:

 lm/include/calendar.inc    |  8 ++++----
 lm/include/links.inc       |  8 ++++----
 lm/include/polls.inc       |  6 ++++--
 lm/include/spamx.inc       |  8 ++++----
 lm/include/staticpages.inc |  6 ++++--
 lm/include/xmlsitemap.inc  |  6 ++++--
 6 files changed, 24 insertions(+), 18 deletions(-)

diffs (237 lines):

diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/calendar.inc
--- a/lm/include/calendar.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/calendar.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.5                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | calendar.inc                                                              |
 // |                                                                           |
 // | Update a calendar language file by merging it with english.php            |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2008 by the following authors:                              |
+// | Copyright (C) 2008-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -28,8 +28,6 @@
 // | Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           |
 // |                                                                           |
 // +---------------------------------------------------------------------------+
-//
-// $Id: calendar.inc,v 1.1 2008/04/27 17:11:13 dhaun Exp $
 
 // save the english text strings
 $ENG_CAL_1 = $LANG_CAL_1;
@@ -48,6 +46,7 @@
 $ENG_configsections['calendar'] = $LANG_configsections['calendar'];
 $ENG_confignames['calendar'] = $LANG_confignames['calendar'];
 $ENG_configsubgroups['calendar'] = $LANG_configsubgroups['calendar'];
+$ENG_tab['calendar'] = $LANG_tab['calendar'];
 $ENG_fs['calendar'] = $LANG_fs['calendar'];
 $ENG_configselects['calendar'] = $LANG_configselects['calendar'];
 
@@ -98,6 +97,7 @@
 mergeArrays($ENG_configsections['calendar'], $LANG_configsections['calendar'], "LANG_configsections['calendar']", false);
 mergeArrays($ENG_confignames['calendar'], $LANG_confignames['calendar'], "LANG_confignames['calendar']", false);
 mergeArrays($ENG_configsubgroups['calendar'], $LANG_configsubgroups['calendar'], "LANG_configsubgroups['calendar']", false);
+mergeArrays($ENG_tab['calendar'], $LANG_tab['calendar'], "LANG_tab['calendar']", false);
 mergeArrays($ENG_fs['calendar'], $LANG_fs['calendar'], "LANG_fs['calendar']", false);
 echo "\n";
 echo "// Note: entries 0, 1, 6, 9, 12 are the same as in \$LANG_configselects['Core']";
diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/links.inc
--- a/lm/include/links.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/links.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.5                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | links.inc                                                                 |
 // |                                                                           |
 // | Update a links language file by merging it with english.php               |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2008 by the following authors:                              |
+// | Copyright (C) 2008-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -28,8 +28,6 @@
 // | Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           |
 // |                                                                           |
 // +---------------------------------------------------------------------------+
-//
-// $Id: links.inc,v 1.2 2008/08/17 14:10:07 dhaun Exp $
 
 // save the english text strings
 $ENG_LINKS = $LANG_LINKS;
@@ -59,6 +57,7 @@
 $ENG_configsections['links'] = $LANG_configsections['links'];
 $ENG_confignames['links'] = $LANG_confignames['links'];
 $ENG_configsubgroups['links'] = $LANG_configsubgroups['links'];
+$ENG_tab['links'] = $LANG_tab['links'];
 $ENG_fs['links'] = $LANG_fs['links'];
 $ENG_configselects['links'] = $LANG_configselects['links'];
 
@@ -115,6 +114,7 @@
 mergeArrays($ENG_configsections['links'], $LANG_configsections['links'], "LANG_configsections['links']", false);
 mergeArrays($ENG_confignames['links'], $LANG_confignames['links'], "LANG_confignames['links']", false);
 mergeArrays($ENG_configsubgroups['links'], $LANG_configsubgroups['links'], "LANG_configsubgroups['links']", false);
+mergeArrays($ENG_tab['links'], $LANG_tab['links'], "LANG_tab['links']", false);
 mergeArrays($ENG_fs['links'], $LANG_fs['links'], "LANG_fs['links']", false);
 echo "\n";
 echo "// Note: entries 0, 1, and 12 are the same as in \$LANG_configselects['Core']";
diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/polls.inc
--- a/lm/include/polls.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/polls.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.6                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | polls.inc                                                                 |
 // |                                                                           |
 // | Update a polls language file by merging it with english.php               |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2008-2009 by the following authors:                         |
+// | Copyright (C) 2008-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -41,6 +41,7 @@
 $ENG_configsections['polls'] = $LANG_configsections['polls'];
 $ENG_confignames['polls'] = $LANG_confignames['polls'];
 $ENG_configsubgroups['polls'] = $LANG_configsubgroups['polls'];
+$ENG_tab['polls'] = $LANG_tab['polls'];
 $ENG_fs['polls'] = $LANG_fs['polls'];
 $ENG_configselects['polls'] = $LANG_configselects['polls'];
 
@@ -76,6 +77,7 @@
 mergeArrays($ENG_configsections['polls'], $LANG_configsections['polls'], "LANG_configsections['polls']", false);
 mergeArrays($ENG_confignames['polls'], $LANG_confignames['polls'], "LANG_confignames['polls']", false);
 mergeArrays($ENG_configsubgroups['polls'], $LANG_configsubgroups['polls'], "LANG_configsubgroups['polls']", false);
+mergeArrays($ENG_tab['polls'], $LANG_tab['polls'], "LANG_tab['polls']", false);
 mergeArrays($ENG_fs['polls'], $LANG_fs['polls'], "LANG_fs['polls']", false);
 echo "\n";
 echo "// Note: entries 0, 1, and 12 are the same as in \$LANG_configselects['Core']";
diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/spamx.inc
--- a/lm/include/spamx.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/spamx.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.5                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | spamx.inc                                                                 |
 // |                                                                           |
 // | Update a spamx language file by merging it with english.php               |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2008 by the following authors:                              |
+// | Copyright (C) 2008-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -28,8 +28,6 @@
 // | Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           |
 // |                                                                           |
 // +---------------------------------------------------------------------------+
-//
-// $Id: spamx.inc,v 1.1 2008/04/27 20:27:56 dhaun Exp $
 
 // save the english text strings
 $ENG_SX00 = $LANG_SX00;
@@ -41,6 +39,7 @@
 $ENG_configsections['spamx'] = $LANG_configsections['spamx'];
 $ENG_confignames['spamx'] = $LANG_confignames['spamx'];
 $ENG_configsubgroups['spamx'] = $LANG_configsubgroups['spamx'];
+$ENG_tab['spamx'] = $LANG_tab['spamx'];
 $ENG_fs['spamx'] = $LANG_fs['spamx'];
 $ENG_configselects['spamx'] = $LANG_configselects['spamx'];
 
@@ -67,6 +66,7 @@
 mergeArrays($ENG_configsections['spamx'], $LANG_configsections['spamx'], "LANG_configsections['spamx']", false);
 mergeArrays($ENG_confignames['spamx'], $LANG_confignames['spamx'], "LANG_confignames['spamx']", false);
 mergeArrays($ENG_configsubgroups['spamx'], $LANG_configsubgroups['spamx'], "LANG_configsubgroups['spamx']", false);
+mergeArrays($ENG_tab['spamx'], $LANG_tab['spamx'], "LANG_tab['spamx']", false);
 mergeArrays($ENG_fs['spamx'], $LANG_fs['spamx'], "LANG_fs['spamx']", false);
 echo "\n";
 echo "// Note: entries 0, 1, 9, and 12 are the same as in \$LANG_configselects['Core']";
diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/staticpages.inc
--- a/lm/include/staticpages.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/staticpages.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.6                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | staticpages.inc                                                           |
 // |                                                                           |
 // | Update a staticpages language file by merging it with english.php         |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2008-2009 by the following authors:                         |
+// | Copyright (C) 2008-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -41,6 +41,7 @@
 $ENG_configsections['staticpages'] = $LANG_configsections['staticpages'];
 $ENG_confignames['staticpages'] = $LANG_confignames['staticpages'];
 $ENG_configsubgroups['staticpages'] = $LANG_configsubgroups['staticpages'];
+$ENG_tab['staticpages'] = $LANG_tab['staticpages'];
 $ENG_fs['staticpages'] = $LANG_fs['staticpages'];
 $ENG_configselects['staticpages'] = $LANG_configselects['staticpages'];
 
@@ -75,6 +76,7 @@
 mergeArrays($ENG_configsections['staticpages'], $LANG_configsections['staticpages'], "LANG_configsections['staticpages']", false);
 mergeArrays($ENG_confignames['staticpages'], $LANG_confignames['staticpages'], "LANG_confignames['staticpages']", false);
 mergeArrays($ENG_configsubgroups['staticpages'], $LANG_configsubgroups['staticpages'], "LANG_configsubgroups['staticpages']", false);
+mergeArrays($ENG_tab['staticpages'], $LANG_tab['staticpages'], "LANG_tab['staticpages']", false);
 mergeArrays($ENG_fs['staticpages'], $LANG_fs['staticpages'], "LANG_fs['staticpages']", false);
 echo "\n";
 echo "// Note: entries 0, 1, 9, 12, 17 are the same as in \$LANG_configselects['Core']";
diff -r 20a277b5678a -r 75171c9cf3c8 lm/include/xmlsitemap.inc
--- a/lm/include/xmlsitemap.inc	Sun Feb 20 19:27:13 2011 +0100
+++ b/lm/include/xmlsitemap.inc	Sat Feb 26 21:54:48 2011 +0100
@@ -2,13 +2,13 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.6                                                               |
+// | Geeklog 1.8                                                               |
 // +---------------------------------------------------------------------------+
 // | xmlsitemap.inc                                                            |
 // |                                                                           |
 // | Update a xmlsitemap language file by merging it with english.php          |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2009 by the following authors:                              |
+// | Copyright (C) 2009-2011 by the following authors:                         |
 // |                                                                           |
 // | Author:  Dirk Haun         - dirk AT haun-online DOT de                   |
 // +---------------------------------------------------------------------------+
@@ -35,6 +35,7 @@
 $ENG_configsections['xmlsitemap'] = $LANG_configsections['xmlsitemap'];
 $ENG_confignames['xmlsitemap'] = $LANG_confignames['xmlsitemap'];
 $ENG_configsubgroups['xmlsitemap'] = $LANG_configsubgroups['xmlsitemap'];
+$ENG_tab['xmlsitemap'] = $LANG_tab['xmlsitemap'];
 $ENG_fs['xmlsitemap'] = $LANG_fs['xmlsitemap'];
 $ENG_configselects['xmlsitemap'] = $LANG_configselects['xmlsitemap'];
 
@@ -51,6 +52,7 @@
 mergeArrays($ENG_configsections['xmlsitemap'], $LANG_configsections['xmlsitemap'], "LANG_configsections['xmlsitemap']", false);
 mergeArrays($ENG_confignames['xmlsitemap'], $LANG_confignames['xmlsitemap'], "LANG_confignames['xmlsitemap']", false);
 mergeArrays($ENG_configsubgroups['xmlsitemap'], $LANG_configsubgroups['xmlsitemap'], "LANG_configsubgroups['xmlsitemap']", false);
+mergeArrays($ENG_tab['xmlsitemap'], $LANG_tab['xmlsitemap'], "LANG_tab['xmlsitemap']", false);
 mergeArrays($ENG_fs['xmlsitemap'], $LANG_fs['xmlsitemap'], "LANG_fs['xmlsitemap']", false);
 echo "\n";
 echo "// Note: entries 0, 1, 9, and 12 are the same as in \$LANG_configselects['Core']";



More information about the geeklog-cvs mailing list