From dhaun at qs1489.pair.com Mon Sep 1 05:21:13 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Mon, 01 Sep 2008 09:21:13 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html lib-common.php,1.725,1.726
Message-ID: <20080901092113.CBF66F740E@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html
In directory qs1489.pair.com:/tmp/cvs-serv44667/public_html
Modified Files:
lib-common.php
Log Message:
Cosmetics - some language files have an extra blank here, some don't
Index: lib-common.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/lib-common.php,v
retrieving revision 1.725
retrieving revision 1.726
diff -C2 -d -r1.725 -r1.726
*** lib-common.php 17 Aug 2008 14:16:02 -0000 1.725
--- lib-common.php 1 Sep 2008 09:21:04 -0000 1.726
***************
*** 1069,1073 ****
$header->set_var( 'rss_url', $rdf );
! $msg = $LANG01[67] . ' ' . $_CONF['site_name'];
if( !empty( $_USER['username'] ))
--- 1069,1073 ----
$header->set_var( 'rss_url', $rdf );
! $msg = rtrim($LANG01[67]) . ' ' . $_CONF['site_name'];
if( !empty( $_USER['username'] ))
From dhaun at qs1489.pair.com Tue Sep 2 15:02:49 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Tue, 02 Sep 2008 19:02:49 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html/docs history,1.717,1.718
Message-ID: <20080902190249.6B9BFF740E@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/docs
In directory qs1489.pair.com:/tmp/cvs-serv85011/public_html/docs
Modified Files:
history
Log Message:
Prevent direct execution of the FCKeditor upload script (reported by t0pP8uZz)
Index: history
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/docs/history,v
retrieving revision 1.717
retrieving revision 1.718
diff -C2 -d -r1.717 -r1.718
*** history 31 Aug 2008 19:17:39 -0000 1.717
--- history 2 Sep 2008 19:02:46 -0000 1.718
***************
*** 4,7 ****
--- 4,8 ----
------------
+ - Prevent direct execution of the FCKeditor upload script (reported by t0pP8uZz) [Dirk]
- Renamed the "Restore" option in the Configuration to "Enable" [Dirk]
- Provided better error handling for database backups (bug 0000714) [Mike]
From dhaun at qs1489.pair.com Tue Sep 2 15:02:49 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Tue, 02 Sep 2008 19:02:49 +0000
Subject: [geeklog-cvs]
Geeklog-1.x/public_html/fckeditor/editor/filemanager/connectors/php
upload.php, 1.2, 1.3
Message-ID: <20080902190249.66F19F740F@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/connectors/php
In directory qs1489.pair.com:/tmp/cvs-serv85011/public_html/fckeditor/editor/filemanager/connectors/php
Modified Files:
upload.php
Log Message:
Prevent direct execution of the FCKeditor upload script (reported by t0pP8uZz)
Index: upload.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/connectors/php/upload.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** upload.php 5 May 2008 00:35:25 -0000 1.2
--- upload.php 2 Sep 2008 19:02:46 -0000 1.3
***************
*** 23,26 ****
--- 23,30 ----
*/
+ if (strpos($_SERVER['PHP_SELF'], 'upload.php') !== false) {
+ die('This file can not be used on its own!');
+ }
+
require('./config.php') ;
require('./util.php') ;
From mjervis at qs1489.pair.com Tue Sep 2 15:08:58 2008
From: mjervis at qs1489.pair.com (Michael Jervis)
Date: Tue, 02 Sep 2008 19:08:58 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html/docs history,1.718,1.719
Message-ID: <20080902190858.EE10DF740E@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/docs
In directory qs1489.pair.com:/tmp/cvs-serv85721/public_html/docs
Modified Files:
history
Log Message:
Hide passwords with rootdebug on [1]. (Bug 0000722)
[1] - What part of rootdebug was hard to understand?
Index: history
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/docs/history,v
retrieving revision 1.718
retrieving revision 1.719
diff -C2 -d -r1.718 -r1.719
*** history 2 Sep 2008 19:02:46 -0000 1.718
--- history 2 Sep 2008 19:08:55 -0000 1.719
***************
*** 4,10 ****
------------
- Prevent direct execution of the FCKeditor upload script (reported by t0pP8uZz) [Dirk]
- Renamed the "Restore" option in the Configuration to "Enable" [Dirk]
! - Provided better error handling for database backups (bug 0000714) [Mike]
- Provided auto-detection of -left and -right overrides for any given block
template. This allows any block to auto-style to left and right for themes
--- 4,13 ----
------------
+ - If root debugging is enabled, hide anything in the array stack that has a key
+ containing 'cookie' or 'pass'. And added option to override this.
+ (bug #0000722) [Mike]
- Prevent direct execution of the FCKeditor upload script (reported by t0pP8uZz) [Dirk]
- Renamed the "Restore" option in the Configuration to "Enable" [Dirk]
! - Provided better error handling for database backups (bug #0000714) [Mike]
- Provided auto-detection of -left and -right overrides for any given block
template. This allows any block to auto-style to left and right for themes
From mjervis at qs1489.pair.com Tue Sep 2 15:08:58 2008
From: mjervis at qs1489.pair.com (Michael Jervis)
Date: Tue, 02 Sep 2008 19:08:58 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html lib-common.php, 1.726,
1.727 siteconfig.php.dist, 1.17, 1.18
Message-ID: <20080902190858.090E3F7410@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html
In directory qs1489.pair.com:/tmp/cvs-serv85721/public_html
Modified Files:
lib-common.php siteconfig.php.dist
Log Message:
Hide passwords with rootdebug on [1]. (Bug 0000722)
[1] - What part of rootdebug was hard to understand?
Index: siteconfig.php.dist
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/siteconfig.php.dist,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** siteconfig.php.dist 1 Jul 2008 20:27:35 -0000 1.17
--- siteconfig.php.dist 2 Sep 2008 19:08:56 -0000 1.18
***************
*** 20,24 ****
// If you have errors on your site, can't login, or can't get to the
// config UI, then you can comment this in to set the root debug option
! // on and get detailed error messages:
// $_CONF['rootdebug'] = true;
--- 20,26 ----
// If you have errors on your site, can't login, or can't get to the
// config UI, then you can comment this in to set the root debug option
! // on and get detailed error messages. You can set this to 'force' (which the
! // Config UI won't allow you to do, to override hiding of password and cookie
! // items in the debug trace.
// $_CONF['rootdebug'] = true;
Index: lib-common.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/lib-common.php,v
retrieving revision 1.726
retrieving revision 1.727
diff -C2 -d -r1.726 -r1.727
*** lib-common.php 1 Sep 2008 09:21:04 -0000 1.726
--- lib-common.php 2 Sep 2008 19:08:56 -0000 1.727
***************
*** 6551,6565 ****
if($_CONF['rootdebug'] || SEC_inGroup('Root'))
{
! echo("
! An error has occurred:
! $errno - $errstr @ $errfile line $errline
!
");
ob_start();
var_dump($errcontext);
$errcontext = htmlspecialchars(ob_get_contents());
ob_end_clean();
! echo("$errcontext
! (This text is only displayed to users in the group 'Root')
! ");
exit;
}
--- 6551,6580 ----
if($_CONF['rootdebug'] || SEC_inGroup('Root'))
{
! echo('If this is a production ! website you must disable this ! option once you have resolved any issues you are ! investigating.
'); ! } else { ! echo('(This text is only displayed to users in the group \'Root\')');
ob_start();
var_dump($errcontext);
$errcontext = htmlspecialchars(ob_get_contents());
ob_end_clean();
! echo("$errcontext");
exit;
}
***************
*** 6617,6620 ****
--- 6632,6666 ----
/**
+ * Recurse through the error context array removing/blanking password/cookie
+ * values in case the "for development" only switch is left on in a production
+ * environment.
+ *
+ * [Not fit for public consumption comments about what users who enable root
+ * debug in production should have done to them, and why making this change
+ * defeats the point of the entire root debug feature go here.]
+ *
+ * @param $array Array of state info (Recursive array).
+ * @return Cleaned array
+ */
+ function COM_rootDebugClean($array, $blank=false)
+ {
+ $blankField = false;
+ while(list($key, $value) = each($array)) {
+ $lkey = strtolower($key);
+ if((strpos($lkey, 'pass') !== false) || (strpos($lkey, 'cookie')!== false)) {
+ $blankField = true;
+ } else {
+ $blankField = $blank;
+ }
+ if(is_array($value)) {
+ $array[$key] = COM_rootDebugClean($value, $blankField);
+ } elseif($blankField) {
+ $array[$key] = '[VALUE REMOVED]';
+ }
+ }
+ return $array;
+ }
+
+ /**
* Checks to see if a specified user, or the current user if non-specified
* is the anonymous user.
From mjervis at qs1489.pair.com Thu Sep 4 15:03:32 2008
From: mjervis at qs1489.pair.com (Michael Jervis)
Date: Thu, 04 Sep 2008 19:03:32 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html/admin moderation.php, 1.123,
1.124
Message-ID: <20080904190332.DA185F740E@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/admin
In directory qs1489.pair.com:/tmp/cvs-serv53435/public_html/admin
Modified Files:
moderation.php
Log Message:
Bug 726, approve draft from moderation queue fails due to CSRF hardening.
Index: moderation.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/admin/moderation.php,v
retrieving revision 1.123
retrieving revision 1.124
diff -C2 -d -r1.123 -r1.124
*** moderation.php 19 Jun 2008 18:46:21 -0000 1.123
--- moderation.php 4 Sep 2008 19:03:29 -0000 1.124
***************
*** 217,221 ****
if (SEC_hasRights('story.edit')) {
if ($_CONF['listdraftstories'] == 1) {
! $retval .= draftlist ();
}
}
--- 217,221 ----
if (SEC_hasRights('story.edit')) {
if ($_CONF['listdraftstories'] == 1) {
! $retval .= draftlist ($token);
}
}
***************
*** 400,404 ****
*
*/
! function draftlist ()
{
global $_CONF, $_TABLES, $LANG24, $LANG29, $LANG_ADMIN;
--- 400,404 ----
*
*/
! function draftlist ($token)
{
global $_CONF, $_TABLES, $LANG24, $LANG29, $LANG_ADMIN;
***************
*** 439,442 ****
--- 439,443 ----
if ($nrows > 0) {
$form_arr['bottom'] = '' . LB
+ . '' . LB
. '' . LB
. ''
From mjervis at qs1489.pair.com Thu Sep 4 15:03:32 2008
From: mjervis at qs1489.pair.com (Michael Jervis)
Date: Thu, 04 Sep 2008 19:03:32 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html/docs history,1.719,1.720
Message-ID: <20080904190333.15224F740F@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/docs
In directory qs1489.pair.com:/tmp/cvs-serv53435/public_html/docs
Modified Files:
history
Log Message:
Bug 726, approve draft from moderation queue fails due to CSRF hardening.
Index: history
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/docs/history,v
retrieving revision 1.719
retrieving revision 1.720
diff -C2 -d -r1.719 -r1.720
*** history 2 Sep 2008 19:08:55 -0000 1.719
--- history 4 Sep 2008 19:03:30 -0000 1.720
***************
*** 4,7 ****
--- 4,8 ----
------------
+ - CSRF token not passed to draft list (bug #0000726) [Ted Powell]
- If root debugging is enabled, hide anything in the array stack that has a key
containing 'cookie' or 'pass'. And added option to override this.
From dhaun at qs1489.pair.com Sat Sep 6 08:38:16 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Sat, 06 Sep 2008 12:38:16 +0000
Subject: [geeklog-cvs] Geeklog-1.x/public_html/docs changes.html, 1.74,
1.75 history, 1.720, 1.721
Message-ID: <20080906123816.48BD8F7412@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/public_html/docs
In directory qs1489.pair.com:/tmp/cvs-serv31121
Modified Files:
changes.html history
Log Message:
Updated documentation and added missing entry for Geeklog 1.4.0sr6
Index: changes.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/docs/changes.html,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** changes.html 31 Aug 2008 10:05:39 -0000 1.74
--- changes.html 6 Sep 2008 12:38:12 -0000 1.75
***************
*** 27,30 ****
--- 27,34 ----
MustLive pointed out a possible XSS in the form to email an article to a friend that we're fixing with this release.
+ +??????????????????????????????????????? ', ! 'inst2' => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'inst3' => '?????????????????????????????????????????????
????????????????????????????????????????????????????????????????????????????????????', ! 'inst4' => ' spamx at pigstye.net?????????????????????????????????????????????', 'inst5' => '???????????????????????????????????????', 'submit' => '??????', ! 'subthis' => '??????Spam-X????????????Spam-X Central Database???????????????????????????', ! 'secbut' => '2????????????????????????RDF?????????????????????????????????????????????????????????????????????????????????', 'sitename' => '????????????: ', 'URL' => 'URL Spam-X ?????????: ', ! 'RDF' => 'RDF url: ', ! 'impinst1a' => 'Spam-X?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'impinst1b' => '???????????????????????????????????? (?????????????????????????????????)', ! 'impinst2' => 'Gplugs/Spam-X ??????????????????????????????????????????????????????????????? ', ! 'impinst2a' => '????????????????????????????????? (???: ????????????????????????????????? ?????????????????????????????????????????????????????????', ! 'impinst2b' => '??????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????) ', ! 'impinst2c' => '?????????????????????????????????????????? [??????]???????????????????????????????????????????????????????????????', ! 'impinst3' => '?????????????????????????????????????????????: (??????????????????????????????????????????????????????????????????????????????).', ! 'availb' => '???????????????????????????', ! 'clickv' => '????????????????????????????????????????????????', 'clicki' => '?????????????????????????????????????????????????????????', 'ok' => 'OK', 'rsscreated' => 'RSS????????????????????????????????????', ! 'add1' => '????????????????????? ', ! 'add2' => ' ???????????????: ', ! 'add3' => '????????????????????????', 'adminc' => '?????????????????????:', 'mblack' => '???????????????????????????:', ! 'rlinks' => '??????????????????:', ! 'e3' => 'Geeklog??????????????????????????????:', ! 'addcen' => '???????????????????????????', 'addentry' => '??????????????????', 'e1' => '???????????????????????????????????????', ! 'e2' => '???????????????????????????, ??????????????????????????????????????????????????????????????????????????????????????????Perl??????????????????????????????????????????????????? ', 'pblack' => 'Spam-X ????????????????????????????????????', ! 'conmod' => 'Spam-X?????????????????????', 'acmod' => 'Spam-X ??????????????????????????????', ! 'exmod' => 'Spam-X ??????????????????????????????', ! 'actmod' => '??????????????????????????????', ! 'avmod' => '?????????????????????????????????', ! 'coninst' => '
????????????????????????????????? ', ! 'inst2' => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'inst3' => '???????????????????????????????????????????????????
Web??????????????????????????????????????????????????????????????????????????????', ! 'inst4' => 'spamx at pigstye.net??????????????????????????????????????????', 'inst5' => '???????????????????????????????????????', 'submit' => '??????', ! 'subthis' => '??????Spam-X ????????? Spam-X Central Database ?????????????????????', ! 'secbut' => '2?????????????????????????????????????????????RDF??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 'sitename' => '????????????: ', 'URL' => 'URL Spam-X ?????????: ', ! 'RDF' => 'RDF URL: ', ! 'impinst1a' => 'Spam-X??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'impinst1b' => '?????????2????????????????????????????????????????????????(????????????????????????????????????????????????????????????)???', ! 'impinst2' => '??????????????????????????????????????????????????????????????????????????????Gplugs/Spam-X??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'impinst2a' => '(???: ????????????????????????????????????????????????1????????????????????????????????????????????????????????????????????????????????????????????????', ! 'impinst2b' => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????) ', ! 'impinst2c' => '?????????????????????????????????????????? Web???????????????[??????]???????????????????????????????????????????????????????????????', ! 'impinst3' => '????????????????????????????????????(?????????????????????????????????????????????????????????)???', ! 'availb' => '????????????????????????????????????', ! 'clickv' => '????????????????????????????????????????????????', 'clicki' => '?????????????????????????????????????????????????????????', 'ok' => 'OK', 'rsscreated' => 'RSS????????????????????????????????????', ! 'add1' => '', ! 'add2' => ' ????????????????????? ', ! 'add3' => "?????????????????????????????????????????????????????????", 'adminc' => '?????????????????????:', 'mblack' => '???????????????????????????:', ! 'rlinks' => '???????????????:', ! 'e3' => 'Geeklog???????????????????????????????????????????????????????????????????????????????????????????????????', ! 'addcen' => '????????????????????????????????????', 'addentry' => '??????????????????', 'e1' => '???????????????????????????????????????', ! 'e2' => '???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Perl?????????????????????????????????????????????????????????', 'pblack' => 'Spam-X ????????????????????????????????????', ! 'conmod' => 'Spam-X ?????????????????????', 'acmod' => 'Spam-X ??????????????????????????????', ! 'exmod' => 'Spam-X ?????????????????????', ! 'actmod' => '???????????????????????????????????????', ! 'avmod' => '??????????????????????????????', ! 'coninst' => '
Note: ????????????????????????????????????????????????', ! 'note2' => ' ???????????????????????? Spam-X ??????????????????????????????
', ! 'note5' => '??????????????????????????????????????????????????????????????? -- ???????????????????????? ', ! 'note6' => '?????????????????????????????????????????????
', ! 'masshead' => '???????????????????????????????????? ???????????????"', ! 'initial_import' => '?????? MT-????????????????????? ???????????????', ! 'import_success' => '
%d ????????????????????????????????????????????????????????????????????????', ! 'import_failure' => '
?????????: ??????????????????????????????????????????', ! 'allow_url_fopen' => '
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? (allow_url_fopen ?????????). ??????URL??????????????????????????????????????????????????????Geeklog??? "?????????" ????????????????????????????????????????????????????????????%s, ??????????????????:',
'documentation' => 'Spam-X ?????????????????????????????????',
'emailmsg' => "???????????????????????? \"%s\"\nUser UID: \"%s\"\n\n???????????????:\"%s\"",
! 'emailsubject' => '?????????????????? %s',
! 'ipblack' => 'Spam-X IP ?????????????????????',
! 'ipofurlblack' => 'Spam-X IP of URL ?????????????????????',
! 'headerblack' => 'Spam-X HTTP Header ?????????????????????',
'headers' => '????????????????????????:',
! 'stats_headline' => 'Spam-X???????????????',
'stats_page_title' => '?????????????????????',
'stats_entries' => '????????????',
'stats_mtblacklist' => 'MT-?????????????????????',
'stats_pblacklist' => '????????????????????????????????????',
! 'stats_ip' => '????????????IP',
'stats_ipofurl' => 'URL???IP???????????????????????????????????????',
'stats_header' => 'HTTP?????????',
'stats_deleted' => '????????????????????????',
'plugin_name' => 'Spam-X',
'slvwhitelist' => 'SLV?????????????????????'
);
! // Define Messages that are shown when Spam-X module action is taken
! $PLG_spamx_MESSAGE128 = '???????????????????????????????????????????????????';
! $PLG_spamx_MESSAGE8 = '???????????????????????????????????????????????????????????????';
// Messages for the plugin upgrade
--- 87,139 ----
'uninstall' => '????????????????????????',
'warning' => '??????! ????????????????????????????????????',
! 'enabled' => '??????????????????????????????????????????????????????????????????',
! 'readme' => '?????????????????????! ??????????????????????????????????????????????????????????????????????????????????????????',
! 'installdoc' => '',
! 'spamdeleted' => '?????????????????????',
! 'foundspam' => '?????????????????????????????????????????????????????????',
! 'foundspam2' => ' ??????????????????',
! 'foundspam3' => ' IP???',
'deletespam' => '???????????????',
! 'numtocheck' => '?????????????????????????????????',
! 'note1' => '
?????????????????????????????????????????????????????????????????????????????????????????????', ! 'note2' => 'Spam-X??????????????????????????????????????????????????????????????????
???????????????', ! 'note5' => '???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', ! 'note6' => '?????????????????????????????????
', ! 'masshead' => '??????????????????????????????????????????????????????"', ! 'initial_import' => 'MT-?????????????????????????????????????????????', ! 'import_success' => '
%d ???????????????????????????????????????????????????????????????????????????', ! 'import_failure' => '
?????????: ???????????????????????????????????????', ! 'allow_url_fopen' => '
??????????????????????????????????????????Web????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? (allow_url_fopen ?????????)?????????URL??????????????????????????????????????????????????????Geeklog??? "data" ????????????????????????????????????????????????????????????%s, ??????????????????:',
'documentation' => 'Spam-X ?????????????????????????????????',
'emailmsg' => "???????????????????????? \"%s\"\nUser UID: \"%s\"\n\n???????????????:\"%s\"",
! 'emailsubject' => '??????????????????%s',
! 'ipblack' => 'Spam-X IP?????????????????????',
! 'ipofurlblack' => 'Spam-X URL???IP?????????????????????',
! 'headerblack' => 'Spam-X HTTP??????????????????????????????',
'headers' => '????????????????????????:',
!
! 'stats_headline' => 'Spam-X ??????',
'stats_page_title' => '?????????????????????',
'stats_entries' => '????????????',
'stats_mtblacklist' => 'MT-?????????????????????',
'stats_pblacklist' => '????????????????????????????????????',
! 'stats_ip' => '?????????????????????IP',
'stats_ipofurl' => 'URL???IP???????????????????????????????????????',
'stats_header' => 'HTTP?????????',
'stats_deleted' => '????????????????????????',
+
'plugin_name' => 'Spam-X',
'slvwhitelist' => 'SLV?????????????????????'
);
!
! /* Define Messages that are shown when Spam-X module action is taken */
! $PLG_spamx_MESSAGE128 = '??????????????????????????????????????????????????????';
! $PLG_spamx_MESSAGE8 = '??????????????????????????????????????????????????????????????????';
// Messages for the plugin upgrade
***************
*** 137,140 ****
--- 141,145 ----
$PLG_spamx_MESSAGE3002 = $LANG32[9];
+
// Localization of the Admin Configuration UI
$LANG_configsections['spamx'] = array(
***************
*** 146,150 ****
'action' => 'Spam-X ?????????',
'notification_email' => '????????????????????????',
! 'admin_override' => '?????????????????????????????????????????????',
'logging' => '????????????????????????',
'timeout' => '??????????????????'
--- 151,155 ----
'action' => 'Spam-X ?????????',
'notification_email' => '????????????????????????',
! 'admin_override' => "??????????????????????????????????????????",
'logging' => '????????????????????????',
'timeout' => '??????????????????'
***************
*** 152,156 ****
$LANG_configsubgroups['spamx'] = array(
! 'sg_main' => '?????????'
);
--- 157,161 ----
$LANG_configsubgroups['spamx'] = array(
! 'sg_main' => '????????????'
);
***************
*** 159,166 ****
);
- // Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['spamx'] = array(
0 => array('??????' => 1, '?????????' => 0),
! 1 => array('??????' => true, '?????????' => false)
);
--- 164,170 ----
);
$LANG_configselects['spamx'] = array(
0 => array('??????' => 1, '?????????' => 0),
! 1 => array('??????' => TRUE, '?????????' => FALSE)
);
From dhaun at qs1489.pair.com Tue Sep 9 14:26:21 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Tue, 09 Sep 2008 18:26:21 +0000
Subject: [geeklog-cvs] Geeklog-1.x/plugins/links/language japanese_utf-8.php,
1.17, 1.18
Message-ID: <20080909182621.39DB4F7410@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/plugins/links/language
In directory qs1489.pair.com:/tmp/cvs-serv7658/plugins/links/language
Modified Files:
japanese_utf-8.php
Log Message:
Updated Japanese language files, provided by the Geeklog.jp group
Index: japanese_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/links/language/japanese_utf-8.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** japanese_utf-8.php 17 Aug 2008 16:11:24 -0000 1.17
--- japanese_utf-8.php 9 Sep 2008 18:26:18 -0000 1.18
***************
*** 29,32 ****
--- 29,50 ----
#
###############################################################################
+ # $Id$
+ # Last Update 2008/06/02 by Geeklog.jp group - info AT geeklog DOT jp
+
+ /**
+ * This is the english language page for the Geeklog links Plug-in!
+ *
+ * @package Links
+ * @subpackage Language
+ * @filesource
+ * @version 2.0
+ * @since GL 1.4.0
+ * @copyright Copyright © 2005-2007
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @author Trinity Bays
??????????????????????????????????????????????????????????????????????????????????????????PHP????????????????????????????????????????????????PHP????????????????????????????????????????????????????????????????????????:Static Page Admin??????????????????staticpages.PHP???????????????????????????????????????PHP????????????????????????(return)????????????PHP??????????????????????????????????????????????????????????????????????????????????????????????????????',
'exit_msg' => '??????????????????: ',
! 'exit_info' => '??????????????????????????????????????????????????????????????????????????????????????????????????????
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
! 'deny_msg' => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
'stats_headline' => '????????????????????????10??????',
'stats_page_title' => '????????????',
'stats_hits' => '?????????',
! 'stats_no_hits' => '??????????????????????????????????????????????????????????????????????????????',
'id' => 'ID',
'duplicate_id' => '????????????ID??????????????????????????????????????????ID???????????????????????????',
! 'instructions' => '???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????[C]????????????????????????????????????',
'centerblock' => '?????????????????????: ',
! 'centerblock_msg' => '???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????ID???????????????????????????',
'topic' => '??????: ',
'position' => '???????????????: ',
--- 70,88 ----
'no_title_or_content' => '???????????????????????????????????????????????????',
'no_such_page_anon' => '?????????????????????????????????',
! 'no_page_access_msg' => "???????????????????????????????????????????????????????????????????????????????????????{$_CONF["site_name"]}???????????????????????????????????????????????????????????????{$_CONF["site_name"]}??? ???????????????????????????????????????????????????????????????????????????????????????????????????",
'php_msg' => 'PHP: ',
! 'php_warn' => '
??????????????????????????????????????????????????????????????????????????????????????????PHP????????????????????????????????????????????????PHP????????????????????????????????????????????????????????????????????????:Static Page Admin??????????????????staticpages.PHP???????????????????????????????????????PHP????????????????????????(return)????????????PHP??????????????????????????????????????????????????????????????????????????????????????????????????????',
'exit_msg' => '??????????????????: ',
! 'exit_info' => '??????????????????????????????????????????????????????????????????????????????????????????????????????
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
! 'deny_msg' => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
'stats_headline' => '????????????????????????10??????',
'stats_page_title' => '????????????',
'stats_hits' => '?????????',
! 'stats_no_hits' => '??????????????????????????????????????????????????????????????????????????????',
'id' => 'ID',
'duplicate_id' => '????????????ID??????????????????????????????????????????ID???????????????????????????',
! 'instructions' => '?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
'centerblock' => '?????????????????????: ',
! 'centerblock_msg' => '??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????',
'topic' => '??????: ',
'position' => '???????????????: ',
***************
*** 99,103 ****
'centerblock_entire' => '???????????????',
'inblock_msg' => '?????????????????????: ',
! 'inblock_info' => '?????????????????????????????????????????????????????????????????????????????????',
'title_edit' => '??????',
'title_copy' => '??????????????????',
--- 100,104 ----
'centerblock_entire' => '???????????????',
'inblock_msg' => '?????????????????????: ',
! 'inblock_info' => '?????????????????????????????????????????????????????????????????????????????????',
'title_edit' => '??????',
'title_copy' => '??????????????????',
***************
*** 106,111 ****
'select_php_return' => 'PHP??????????????? (return)',
'select_php_free' => 'PHP???????????????',
! 'php_not_activated' => "??????????????????PHP????????????????????????????????????????????????????????????????????? ???????????????????????? ?????????????????????",
'printable_format' => '???????????????????????????',
'copy' => '?????????',
'limit_results' => '????????????',
--- 107,113 ----
'select_php_return' => 'PHP??????????????? (return)',
'select_php_free' => 'PHP???????????????',
! 'php_not_activated' => '??????????????????PHP????????????????????????????????????????????????????????????????????? ???????????????????????? ?????????????????????',
'printable_format' => '???????????????????????????',
+ 'edit' => '??????',
'copy' => '?????????',
'limit_results' => '????????????',
***************
*** 114,121 ****
--- 116,125 ----
);
+
// Messages for the plugin upgrade
$PLG_staticpages_MESSAGE3001 = '??????????????????????????????????????????????????????????????????????????????';
$PLG_staticpages_MESSAGE3002 = $LANG32[9];
+
// Localization of the Admin Configuration UI
$LANG_configsections['staticpages'] = array(
***************
*** 151,155 ****
$LANG_configselects['staticpages'] = array(
0 => array('??????' => 1, '?????????' => 0),
! 1 => array('??????' => true, '?????????' => false),
2 => array('??????' => 'date', '?????????ID' => 'id', '????????????' => 'title'),
3 => array('??????' => 'date', '?????????ID' => 'id', '????????????' => 'title', '?????????' => 'label'),
--- 155,159 ----
$LANG_configselects['staticpages'] = array(
0 => array('??????' => 1, '?????????' => 0),
! 1 => array('??????' => TRUE, '?????????' => FALSE),
2 => array('??????' => 'date', '?????????ID' => 'id', '????????????' => 'title'),
3 => array('??????' => 'date', '?????????ID' => 'id', '????????????' => 'title', '?????????' => 'label'),
From dhaun at qs1489.pair.com Tue Sep 9 14:26:21 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Tue, 09 Sep 2008 18:26:21 +0000
Subject: [geeklog-cvs] Geeklog-1.x/plugins/links/language japanese_utf-8.php,
1.17, 1.18
Message-ID: <20080909182621.39DB4F7410@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/plugins/links/language
In directory qs1489.pair.com:/tmp/cvs-serv7658/plugins/links/language
Modified Files:
japanese_utf-8.php
Log Message:
Updated Japanese language files, provided by the Geeklog.jp group
Index: japanese_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/links/language/japanese_utf-8.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** japanese_utf-8.php 17 Aug 2008 16:11:24 -0000 1.17
--- japanese_utf-8.php 9 Sep 2008 18:26:18 -0000 1.18
***************
*** 29,32 ****
--- 29,50 ----
#
###############################################################################
+ # $Id$
+ # Last Update 2008/06/02 by Geeklog.jp group - info AT geeklog DOT jp
+
+ /**
+ * This is the english language page for the Geeklog links Plug-in!
+ *
+ * @package Links
+ * @subpackage Language
+ * @filesource
+ * @version 2.0
+ * @since GL 1.4.0
+ * @copyright Copyright © 2005-2007
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @author Trinity Bays
P??rast s??ndmuse lisamist saadetakse see meie administraatoritele. Administraatorite poolt kinnitatud s??ndmus ilmub peakalendrisse.",
28 => 'Tiitel',
29 => 'L??puaeg',
--- 65,69 ----
25 => 'Pole tulevasi s??ndmusi',
26 => 'Lisa s??ndmus',
! 27 => "Lisades {$_CONF['site_name']} lehele s??ndmuse, paigutub see peakalendrisse, kust kasutajad saavad soovi korral lisada selle oma enda isiklikku kalendrisse. Lehe kalender ei ole m??eldud teie isiklike s??ndmuste, nagu s??nnip??evade v??i t??htp??evade jaoks.
P??rast s??ndmuse lisamist saadetakse see meie administraatoritele. Administraatorite poolt kinnitatud s??ndmus ilmub peakalendrisse.",
28 => 'Tiitel',
29 => 'L??puaeg',
***************
*** 224,233 ****
// Note: entries 0, 1, 6, 9, 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['calendar'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false),
6 => array('12' => 12, '24' => 24),
! 9 => array('Forward to Event' => 'item', 'Display Admin List' => 'list', 'Display Calendar' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
! 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);
! ?>
\ No newline at end of file
--- 224,233 ----
// Note: entries 0, 1, 6, 9, 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['calendar'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false),
6 => array('12' => 12, '24' => 24),
! 9 => array('Suuna s??ndmuste juurde' => 'item', 'N??ita administreerimisloetelu' => 'list', 'N??ita kalendrit' => 'plugin', 'N??iga avalehte' => 'home', 'N??ita admini lehte' => 'admin'),
! 12 => array('Pole ligip????su' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3)
);
! ?>
Index: estonian.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/calendar/language/estonian.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** estonian.php 17 Aug 2008 16:11:24 -0000 1.7
--- estonian.php 13 Sep 2008 14:27:57 -0000 1.8
***************
*** 3,7 ****
###############################################################################
# estonian.php
! # This is the estonian language page for the Geeklog Calendar Plug-in!
#
# Copyright (C) 2001 Tony Bibbs
--- 3,7 ----
###############################################################################
# estonian.php
! # This is the Estonian language file for the Geeklog Calendar plugin
#
# Copyright (C) 2001 Tony Bibbs
***************
*** 65,69 ****
25 => 'Pole tulevasi s?ndmusi',
26 => 'Lisa s?ndmus',
! 27 => "Lisades {$_CONF['site_name']} lehele s?ndmuse, paigutub see peakalendrisse, kust kasutajad saavad soovi korral lisada selle oma enda isiklikku kalendrisse. Lehe kalender ei ole m?eldud teieisiklike s?ndmuste, nagu s?nnip?evade v?i t?htp?evade jaoks.
P?rast s?ndmuse lisamist saadetakse see meie administraatoritele. Administraatorite poolt kinnitatud s?ndmus ilmub peakalendrisse.",
28 => 'Tiitel',
29 => 'L?puaeg',
--- 65,69 ----
25 => 'Pole tulevasi s?ndmusi',
26 => 'Lisa s?ndmus',
! 27 => "Lisades {$_CONF['site_name']} lehele s?ndmuse, paigutub see peakalendrisse, kust kasutajad saavad soovi korral lisada selle oma enda isiklikku kalendrisse. Lehe kalender ei ole m?eldud teie isiklike s?ndmuste, nagu s?nnip?evade v?i t?htp?evade jaoks.
P?rast s?ndmuse lisamist saadetakse see meie administraatoritele. Administraatorite poolt kinnitatud s?ndmus ilmub peakalendrisse.",
28 => 'Tiitel',
29 => 'L?puaeg',
***************
*** 224,233 ****
// Note: entries 0, 1, 6, 9, 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['calendar'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false),
6 => array('12' => 12, '24' => 24),
! 9 => array('Forward to Event' => 'item', 'Display Admin List' => 'list', 'Display Calendar' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
! 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);
! ?>
\ No newline at end of file
--- 224,233 ----
// Note: entries 0, 1, 6, 9, 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['calendar'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false),
6 => array('12' => 12, '24' => 24),
! 9 => array('Suuna s?ndmuste juurde' => 'item', 'N?ita administreerimisloetelu' => 'list', 'N?ita kalendrit' => 'plugin', 'N?iga avalehte' => 'home', 'N?ita admini lehte' => 'admin'),
! 12 => array('Pole ligip??su' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3)
);
! ?>
From dhaun at qs1489.pair.com Sat Sep 13 10:28:01 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Sat, 13 Sep 2008 14:28:01 +0000
Subject: [geeklog-cvs] Geeklog-1.x/plugins/spamx/language estonian.php, 1.2,
1.3 estonian_utf-8.php, 1.2, 1.3
Message-ID: <20080913142801.33386F7413@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/plugins/spamx/language
In directory qs1489.pair.com:/tmp/cvs-serv20544/plugins/spamx/language
Modified Files:
estonian.php estonian_utf-8.php
Log Message:
Updated Estonian language files, provided by Artur R?pp
Index: estonian_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/spamx/language/estonian_utf-8.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** estonian_utf-8.php 17 Aug 2008 16:11:25 -0000 1.2
--- estonian_utf-8.php 13 Sep 2008 14:27:58 -0000 1.3
***************
*** 7,12 ****
* Copyright (C) 2004-2008 by the following authors:
* Author Tom Willett tomw AT pigstye DOT net
! * Estonian translation by Artur R??pp
Kui sa sisestasid oma veebilehe ja p??rast seda otsustasid, et soovid oma lehe antud loetelust eemaldada, ', ! 'inst4' => 'saada E-kiri aadressil spamx at pigstye.net telling me. ', 'inst5' => 'K??ik taotlused v??etakse arvesse.', 'submit' => 'Sisesta', --- 20,24 ---- 'inst2' => 'teised vaadata sinu isiklikku blacklisti ja seda importida ja nii saame me luua efektiivsema ', 'inst3' => 'jagatud andmebaasi.
Kui sa sisestasid oma veebilehe ja p??rast seda otsustasid, et soovid oma lehe antud loetelust eemaldada, ', ! 'inst4' => 'saada E-kiri aadressil spamx at pigstye.net ja anna oma soovist teada. ', 'inst5' => 'K??ik taotlused v??etakse arvesse.', 'submit' => 'Sisesta', *************** *** 57,61 **** 'actmod' => 'Aktiivsed moodulid', 'avmod' => 'Saadaolevad moodulid', ! 'coninst' => '
M??rkus: Masskustutamine on m??eldud juhuks kui lehte on tabanud ', 'note2' => ' spamkommentaarid ja Spam-X ei saa nendega hakkama.
Kommentaare ', 'note5' => 'kontrollitakse alates uuematest. Suurema arvu kommentaaride kontrollimine ', --- 95,100 ---- 'note1' => '
M??rkus: Masskustutamine on m??eldud juhuks kui lehte on tabanud ', 'note2' => ' spamkommentaarid ja Spam-X ei saa nendega hakkama.
Kommentaare ', 'note5' => 'kontrollitakse alates uuematest. Suurema arvu kommentaaride kontrollimine ', *************** *** 106,110 **** 'import_success' => '
%d blacklisti kannet on edukalt imporditud.', 'import_failure' => '
Viga: Kandeid ei leitud.', ! 'allow_url_fopen' => '
Sorry, your webserver configuration does not allow reading of remote files (allow_url_fopen is off). Please download the blacklist from the following URL and upload it into Geeklog\'s "data" directory, %s, before trying again:',
'documentation' => 'Spam-X Plugina Dokumentatsioon',
'emailmsg' => "Lehel \"%s\" on postitatud uus spampostitus\nKasutaja UID: \"%s\"\n\nSisu:\"%s\"",
--- 107,111 ----
'import_success' => '
%d blacklisti kannet on edukalt imporditud.', 'import_failure' => '
Viga: Kandeid ei leitud.', ! 'allow_url_fopen' => '
Kahjuks veebiserveri h????lestus ei luba lugeda faile teistest serveritest. (allow_url_fopen on off). Palun lae blacklist alla j??rgnevalt URL-lt ja pane see Geeklog-i "data" kausta, %s, enne kui proovid uuesti:',
'documentation' => 'Spam-X Plugina Dokumentatsioon',
'emailmsg' => "Lehel \"%s\" on postitatud uus spampostitus\nKasutaja UID: \"%s\"\n\nSisu:\"%s\"",
***************
*** 159,165 ****
// Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['spamx'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false)
);
! ?>
\ No newline at end of file
--- 160,166 ----
// Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['spamx'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false)
);
! ?>
Index: estonian.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/spamx/language/estonian.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** estonian.php 17 Aug 2008 16:11:25 -0000 1.2
--- estonian.php 13 Sep 2008 14:27:58 -0000 1.3
***************
*** 7,12 ****
* Copyright (C) 2004-2008 by the following authors:
* Author Tom Willett tomw AT pigstye DOT net
! * Estonian translation by Artur R?pp
Kui sa sisestasid oma veebilehe ja p?rast seda otsustasid, et soovid oma lehe antud loetelust eemaldada, ', ! 'inst4' => 'saada E-kiri aadressil spamx at pigstye.net telling me. ', 'inst5' => 'K?ik taotlused v?etakse arvesse.', 'submit' => 'Sisesta', --- 20,24 ---- 'inst2' => 'teised vaadata sinu isiklikku blacklisti ja seda importida ja nii saame me luua efektiivsema ', 'inst3' => 'jagatud andmebaasi.
Kui sa sisestasid oma veebilehe ja p?rast seda otsustasid, et soovid oma lehe antud loetelust eemaldada, ', ! 'inst4' => 'saada E-kiri aadressil spamx at pigstye.net ja anna oma soovist teada. ', 'inst5' => 'K?ik taotlused v?etakse arvesse.', 'submit' => 'Sisesta', *************** *** 57,61 **** 'actmod' => 'Aktiivsed moodulid', 'avmod' => 'Saadaolevad moodulid', ! 'coninst' => '
M?rkus: Masskustutamine on m?eldud juhuks kui lehte on tabanud ', 'note2' => ' spamkommentaarid ja Spam-X ei saa nendega hakkama.
Kommentaare ', 'note5' => 'kontrollitakse alates uuematest. Suurema arvu kommentaaride kontrollimine ', --- 95,100 ---- 'note1' => '
M?rkus: Masskustutamine on m?eldud juhuks kui lehte on tabanud ', 'note2' => ' spamkommentaarid ja Spam-X ei saa nendega hakkama.
Kommentaare ', 'note5' => 'kontrollitakse alates uuematest. Suurema arvu kommentaaride kontrollimine ', *************** *** 106,110 **** 'import_success' => '
%d blacklisti kannet on edukalt imporditud.', 'import_failure' => '
Viga: Kandeid ei leitud.', ! 'allow_url_fopen' => '
Sorry, your webserver configuration does not allow reading of remote files (allow_url_fopen is off). Please download the blacklist from the following URL and upload it into Geeklog\'s "data" directory, %s, before trying again:',
'documentation' => 'Spam-X Plugina Dokumentatsioon',
'emailmsg' => "Lehel \"%s\" on postitatud uus spampostitus\nKasutaja UID: \"%s\"\n\nSisu:\"%s\"",
--- 107,111 ----
'import_success' => '
%d blacklisti kannet on edukalt imporditud.', 'import_failure' => '
Viga: Kandeid ei leitud.', ! 'allow_url_fopen' => '
Kahjuks veebiserveri h??lestus ei luba lugeda faile teistest serveritest. (allow_url_fopen on off). Palun lae blacklist alla j?rgnevalt URL-lt ja pane see Geeklog-i "data" kausta, %s, enne kui proovid uuesti:',
'documentation' => 'Spam-X Plugina Dokumentatsioon',
'emailmsg' => "Lehel \"%s\" on postitatud uus spampostitus\nKasutaja UID: \"%s\"\n\nSisu:\"%s\"",
***************
*** 159,165 ****
// Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['spamx'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false)
);
! ?>
\ No newline at end of file
--- 160,166 ----
// Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['spamx'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false)
);
! ?>
From dhaun at qs1489.pair.com Sat Sep 13 10:28:01 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Sat, 13 Sep 2008 14:28:01 +0000
Subject: [geeklog-cvs] Geeklog-1.x/plugins/polls/language estonian.php, 1.6,
1.7 estonian_utf-8.php, 1.6, 1.7
Message-ID: <20080913142801.90ECEF7411@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/plugins/polls/language
In directory qs1489.pair.com:/tmp/cvs-serv20544/plugins/polls/language
Modified Files:
estonian.php estonian_utf-8.php
Log Message:
Updated Estonian language files, provided by Artur R?pp
Index: estonian_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/polls/language/estonian_utf-8.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** estonian_utf-8.php 17 Aug 2008 16:11:25 -0000 1.6
--- estonian_utf-8.php 13 Sep 2008 14:27:57 -0000 1.7
***************
*** 3,7 ****
###############################################################################
# estonian_utf-8.php
! # This is the estonian language page for the Geeklog Polls Plug-in
#
# Copyright (C) 2001 Tony Bibbs
--- 3,7 ----
###############################################################################
# estonian_utf-8.php
! # This is the Estonian language file for the Geeklog Polls plugin
#
# Copyright (C) 2001 Tony Bibbs
***************
*** 59,63 ****
'upgrade2' => 'uuenda',
'editinstructions' => 'Palun sisesta k??sitluse ID, v??hemalt ??ks k??sitluse k??simus ning sellele k??simusele v??hemalt kaks vastusevarianti',
! 'start_poll' => 'Start Poll'
);
--- 59,63 ----
'upgrade2' => 'uuenda',
'editinstructions' => 'Palun sisesta k??sitluse ID, v??hemalt ??ks k??sitluse k??simus ning sellele k??simusele v??hemalt kaks vastusevarianti',
! 'start_poll' => 'K??ivita k??sitlus'
);
***************
*** 145,154 ****
// Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['polls'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false),
! 2 => array('As Submitted' => 'submitorder', 'By Votes' => 'voteorder'),
! 9 => array('Forward to Poll' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
! 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);
! ?>
\ No newline at end of file
--- 145,154 ----
// Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['polls'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false),
! 2 => array('Nagu sisestatud' => 'submitorder', 'H????lte j??rgi' => 'voteorder'),
! 9 => array('Suuna k??sitluste juurde' => 'item', 'N??ita administreerimisloetelu' => 'list', 'N??ita avalikku loetelu' => 'plugin', 'N??ita avalehte' => 'home', 'N??ita administreerimislehte' => 'admin'),
! 12 => array('Pole ligip????su' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3)
);
! ?>
Index: estonian.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/polls/language/estonian.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** estonian.php 17 Aug 2008 16:11:25 -0000 1.6
--- estonian.php 13 Sep 2008 14:27:57 -0000 1.7
***************
*** 3,7 ****
###############################################################################
# estonian.php
! # This is the estonian language page for the Geeklog Polls Plug-in
#
# Copyright (C) 2001 Tony Bibbs
--- 3,7 ----
###############################################################################
# estonian.php
! # This is the Estonian language file for the Geeklog Polls plugin
#
# Copyright (C) 2001 Tony Bibbs
***************
*** 59,63 ****
'upgrade2' => 'uuenda',
'editinstructions' => 'Palun sisesta k?sitluse ID, v?hemalt ?ks k?sitluse k?simus ning sellele k?simusele v?hemalt kaks vastusevarianti',
! 'start_poll' => 'Start Poll'
);
--- 59,63 ----
'upgrade2' => 'uuenda',
'editinstructions' => 'Palun sisesta k?sitluse ID, v?hemalt ?ks k?sitluse k?simus ning sellele k?simusele v?hemalt kaks vastusevarianti',
! 'start_poll' => 'K?ivita k?sitlus'
);
***************
*** 145,154 ****
// Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['polls'] = array(
! 0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false),
! 2 => array('As Submitted' => 'submitorder', 'By Votes' => 'voteorder'),
! 9 => array('Forward to Poll' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
! 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);
! ?>
\ No newline at end of file
--- 145,154 ----
// Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['polls'] = array(
! 0 => array('Jah' => 1, 'Ei' => 0),
! 1 => array('Jah' => true, 'Ei' => false),
! 2 => array('Nagu sisestatud' => 'submitorder', 'H??lte j?rgi' => 'voteorder'),
! 9 => array('Suuna k?sitluste juurde' => 'item', 'N?ita administreerimisloetelu' => 'list', 'N?ita avalikku loetelu' => 'plugin', 'N?ita avalehte' => 'home', 'N?ita administreerimislehte' => 'admin'),
! 12 => array('Pole ligip??su' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3)
);
! ?>
From dhaun at qs1489.pair.com Sat Sep 13 10:27:59 2008
From: dhaun at qs1489.pair.com (Dirk Haun)
Date: Sat, 13 Sep 2008 14:27:59 +0000
Subject: [geeklog-cvs] Geeklog-1.x/language estonian.php, 1.8,
1.9 estonian_utf-8.php, 1.8, 1.9
Message-ID: <20080913142759.4C4AFF740E@qs1489.pair.com>
Update of /cvsroot/geeklog/Geeklog-1.x/language
In directory qs1489.pair.com:/tmp/cvs-serv20544/language
Modified Files:
estonian.php estonian_utf-8.php
Log Message:
Updated Estonian language files, provided by Artur R?pp
Index: estonian_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/language/estonian_utf-8.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** estonian_utf-8.php 17 Aug 2008 16:11:21 -0000 1.8
--- estonian_utf-8.php 13 Sep 2008 14:27:56 -0000 1.9
***************
*** 3,7 ****
###############################################################################
# estonian_utf-8.php
! # This is the estonian language page for GeekLog!
#
# Copyright (C) 2000 Jason Whittenburg
--- 3,7 ----
###############################################################################
# estonian_utf-8.php
! # This is the Estonian language file for Geeklog!
#
# Copyright (C) 2000 Jason Whittenburg
***************
*** 351,355 ****
138 => 'Mitmesugused valikud',
139 => 'V??limus ja keel',
! 140 => '
If you use [unscaledX] instead of [imageX], the image will be inserted at its original dimensions.
', ! 28 => 'PREVIEWING: Previewing a story with images attached is best done by saving the article as a draft INSTEAD OF hitting the preview button. Use the preview button only when images are not attached.
', 29 => 'Trackbacks', 30 => 'Faili ??leslaadimise vead', --- 741,745 ---- 26 => 'Loo eelvaade', 27 => 'If you use [unscaledX] instead of [imageX], the image will be inserted at its original dimensions.
', ! 28 => 'EELVAADE: Pilte sisaldava loo eelvaateks on parem eelvaate nupu kl??psamise asemel salvestada see mustandina. Kasuta eelvaate nuppu ainult siis kui pilte pole lisatud.
', 29 => 'Trackbacks', 30 => 'Faili ??leslaadimise vead', *************** *** 888,892 **** 50 => 'M??rgi, et seda gruppi filtreeritaks administreerimisgrupina', 51 => 'Online p??evad', ! 52 => 'If you use [unscaledX] instead of [imageX], the image will be inserted at its original dimensions.
', ! 28 => 'PREVIEWING: Previewing a story with images attached is best done by saving the article as a draft INSTEAD OF hitting the preview button. Use the preview button only when images are not attached.
', 29 => 'Trackbacks', 30 => 'Faili ?leslaadimise vead', --- 741,745 ---- 26 => 'Loo eelvaade', 27 => 'If you use [unscaledX] instead of [imageX], the image will be inserted at its original dimensions.
', ! 28 => 'EELVAADE: Pilte sisaldava loo eelvaateks on parem eelvaate nupu kl?psamise asemel salvestada see mustandina. Kasuta eelvaate nuppu ainult siis kui pilte pole lisatud.
', 29 => 'Trackbacks', 30 => 'Faili ?leslaadimise vead', *************** *** 888,892 **** 50 => 'M?rgi, et seda gruppi filtreeritaks administreerimisgrupina', 51 => 'Online p?evad', ! 52 => 'This is a reminder to secure your site once you have Geeklog up and running. What you should do:
\r\rThis is a reminder to secure your site once you have Geeklog up and running. What you should do:
\r\rThis is a reminder to secure your site once you have Geeklog up and running. What you should do:
\r\rThis is a reminder to secure your site once you have Geeklog up and running. What you should do:
\r\r