Allow to re-moderate comments
This commit is contained in:
parent
d5369da92e
commit
b99a7194f8
@ -3,6 +3,10 @@
|
||||
Version 1.3 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Add ability to set comments as "pending" again, even when already
|
||||
approved in the comment-moderation backend panel.
|
||||
(garvinhicking)
|
||||
|
||||
* Insert "serendipity_image_center", "serendipity_image_left" and
|
||||
"serendipity_image_right" CSS classes to the image tag, when
|
||||
inserting an image from the mediadatabase (garvinhicking)
|
||||
|
@ -78,6 +78,23 @@ if (isset($serendipity['GET']['adminAction']) && $serendipity['GET']['adminActio
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($serendipity['GET']['adminAction']) && $serendipity['GET']['adminAction'] == 'pending' && serendipity_checkFormToken()) {
|
||||
$sql = "SELECT c.*, e.title, a.email as authoremail, a.mail_comments
|
||||
FROM {$serendipity['dbPrefix']}comments c
|
||||
LEFT JOIN {$serendipity['dbPrefix']}entries e ON (e.id = c.entry_id)
|
||||
LEFT JOIN {$serendipity['dbPrefix']}authors a ON (e.authorid = a.authorid)
|
||||
WHERE c.id = " . (int)$serendipity['GET']['id'] ." AND status = 'approved'";
|
||||
$rs = serendipity_db_query($sql, true);
|
||||
|
||||
if ($rs === false) {
|
||||
echo ERROR .': '. sprintf(COMMENT_ALREADY_APPROVED, (int)$serendipity['GET']['id']);
|
||||
} else {
|
||||
|
||||
serendipity_approveComment($serendipity['GET']['id'], $rs['entry_id'], true, true);
|
||||
echo DONE . ': '. sprintf(COMMENT_MODERATED, (int)$serendipity['GET']['id']);
|
||||
}
|
||||
}
|
||||
|
||||
/* We are asked to delete a comment */
|
||||
if (isset($serendipity['GET']['adminAction']) && $serendipity['GET']['adminAction'] == 'delete' && serendipity_checkFormToken()) {
|
||||
serendipity_deleteComment($serendipity['GET']['id'], $serendipity['GET']['entry_id']);
|
||||
@ -470,6 +487,9 @@ foreach ($sql as $rs) {
|
||||
<?php if ($comment['status'] == 'pending') { ?>
|
||||
<a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=approve&serendipity[id]=<?php echo $comment['id'] ?>&<?php echo serendipity_setFormToken('url'); ?>" class="serendipityIconLink" title="<?php echo APPROVE; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/accept.png'); ?>" alt="<?php echo APPROVE ?>" /><?php echo APPROVE ?></a>
|
||||
<?php } ?>
|
||||
<?php if ($comment['status'] == 'approved') { ?>
|
||||
<a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=pending&serendipity[id]=<?php echo $comment['id'] ?>&<?php echo serendipity_setFormToken('url'); ?>" class="serendipityIconLink" title="<?php echo SET_TO_MODERATED; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/clock.png'); ?>" alt="<?php echo SET_TO_MODERATED ?>" /><?php echo SET_TO_MODERATED ?></a>
|
||||
<?php } ?>
|
||||
<?php if ($comment['excerpt']) { ?>
|
||||
<a href="#c<?php echo $comment['id'] ?>" onclick="FT_toggle(<?php echo $comment['id'] ?>); return false;" title="<?php echo VIEW; ?>" class="serendipityIconLink"><img src="<?php echo serendipity_getTemplateFile('admin/img/zoom.png'); ?>" alt="<?php echo TOGGLE_ALL; ?>" /><span id="<?php echo $comment['id'] ?>_text"><?php echo TOGGLE_ALL ?></span></a>
|
||||
<?php } ?>
|
||||
|
@ -497,9 +497,10 @@ function serendipity_allowCommentsToggle($entry_id, $switch = 'disable') {
|
||||
* @param int The ID of the comment to approve
|
||||
* @param int The ID of the entry a comment belongs to
|
||||
* @param boolean Whether to force approving a comment despite of its current status
|
||||
* @param boolean If set to true, a comment will be moderated instead of approved.
|
||||
* @return boolean Success or failure
|
||||
*/
|
||||
function serendipity_approveComment($cid, $entry_id, $force = false) {
|
||||
function serendipity_approveComment($cid, $entry_id, $force = false, $moderate = false) {
|
||||
global $serendipity;
|
||||
|
||||
/* Get data about the comment, we need this query because this function can be called from anywhere */
|
||||
@ -518,7 +519,11 @@ function serendipity_approveComment($cid, $entry_id, $force = false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$sql = "UPDATE {$serendipity['dbPrefix']}comments SET status = 'approved' WHERE id = ". (int)$cid;
|
||||
if ($moderate) {
|
||||
$sql = "UPDATE {$serendipity['dbPrefix']}comments SET status = 'pending' WHERE id = ". (int)$cid;
|
||||
} else {
|
||||
$sql = "UPDATE {$serendipity['dbPrefix']}comments SET status = 'approved' WHERE id = ". (int)$cid;
|
||||
}
|
||||
serendipity_db_query($sql);
|
||||
|
||||
$field = ($rs['type'] == 'NORMAL' ? 'comments' : 'trackbacks');
|
||||
@ -531,14 +536,21 @@ function serendipity_approveComment($cid, $entry_id, $force = false) {
|
||||
$lm = (int)$rs['entry_last_modified'];
|
||||
}
|
||||
|
||||
$query = "UPDATE {$serendipity['dbPrefix']}entries SET $field=$field+1, last_modified=". $lm ." WHERE id='". (int)$entry_id ."'";
|
||||
if ($moderate) {
|
||||
$query = "UPDATE {$serendipity['dbPrefix']}entries SET $field=$field-1, last_modified=". $lm ." WHERE id='". (int)$entry_id ."'";
|
||||
} else {
|
||||
$query = "UPDATE {$serendipity['dbPrefix']}entries SET $field=$field+1, last_modified=". $lm ." WHERE id='". (int)$entry_id ."'";
|
||||
}
|
||||
serendipity_db_query($query);
|
||||
|
||||
if ($serendipity['allowSubscriptions']) {
|
||||
serendipity_mailSubscribers($entry_id, $rs['author'], $rs['email'], $rs['title'], $rs['authoremail'], $cid);
|
||||
if (!$moderate) {
|
||||
if ($serendipity['allowSubscriptions']) {
|
||||
serendipity_mailSubscribers($entry_id, $rs['author'], $rs['email'], $rs['title'], $rs['authoremail'], $cid);
|
||||
}
|
||||
|
||||
serendipity_plugin_api::hook_event('backend_approvecomment', $rs);
|
||||
}
|
||||
|
||||
serendipity_plugin_api::hook_event('backend_approvecomment', $rs);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -100,3 +100,5 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -887,3 +887,5 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PINGBACK_NOT_FOUND', 'Не е намерен pingback-URI.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Скриване на връзката към архивите, когато няма статии в избрания период от време (изисква преброяване на статиите)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1907 2007-09-10 10:42:31Z brockhaus $
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
||||
@ -906,3 +906,5 @@ $i18n_filename_to = array (
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
||||
@ -906,3 +906,5 @@ $i18n_filename_to = array (
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
|
||||
@ -895,3 +895,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -893,3 +893,6 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
|
||||
@define('SET_TO_MODERATED', 'Moderieren');
|
||||
@define('COMMENT_MODERATED', 'Kommentar #%s wurde erfolgreich moderiert.');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1854 2007-08-16 13:07:43Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
/* vim: set sts=4 ts=4 expandtab : */
|
||||
@ -894,3 +894,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
|
||||
@ -914,3 +914,5 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# this translation, translated by Omid Mottaghi <http://oxygenws.com>
|
||||
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Mauri Sahlberg <mos@iki.fi>
|
||||
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Sebastian Mordziol <argh@php-tools.net>
|
||||
@ -903,3 +903,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1854 2007-08-16 13:07:43Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Örn Arnarson <orn@arnarson.net>
|
||||
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
|
||||
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by: Wesley Hwang-Chung <wesley96@gmail.com>
|
||||
@ -899,3 +899,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
|
||||
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
|
||||
@ -899,3 +899,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -895,3 +895,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 1854 2007-08-16 13:07:43Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 2077 2007-12-16 22:46:30Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Agner Olson <agner@agner.net>
|
||||
@ -538,7 +538,7 @@
|
||||
@define('ALREADY_INSTALLED', 'Já instalado');
|
||||
@define('SELECT_A_PLUGIN_TO_ADD', 'Selecione o plugin que você deseja instalar');
|
||||
@define('INSTALL_OFFSET', 'Offset temporal no servidor');
|
||||
@define('STICKY_POSTINGS', 'Postagens Fixas');
|
||||
@define('STICKY_POSTINGS', 'Postagens fixas');
|
||||
@define('INSTALL_FETCHLIMIT', 'Entradas que serão mostradas na primeira página');
|
||||
@define('INSTALL_FETCHLIMIT_DESC', 'Números de entradas para mostrar na primeira página');
|
||||
@define('IMPORT_ENTRIES', 'Importar dados');
|
||||
@ -901,3 +901,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -908,3 +908,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1815 2007-08-06 10:18:26Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Nightly <nightly@reys.net>
|
||||
@ -900,3 +900,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -815,3 +815,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1970 2007-10-08 06:01:13Z capriskye $
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by CapriSkye <admin@capriskye.com>
|
||||
@ -900,3 +900,5 @@ $i18n_unknown = 'tw';
|
||||
@define('PINGBACK_NOT_FOUND', '沒有回測的網頁。');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', '隱藏歷史的連接如果時間內沒有文章 (需要計算文章數)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1970 2007-10-08 06:01:13Z capriskye $
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by CapriSkye <admin@capriskye.com>
|
||||
@ -901,3 +901,5 @@ $i18n_unknown = 'tw';
|
||||
@define('PINGBACK_NOT_FOUND', '沒有回測的網頁。');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', '隱藏歷史的連接如果時間內沒有文章 (需要計算文章數)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1907 2007-09-10 10:42:31Z brockhaus $
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1993 2007-10-23 13:30:39Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -1 +1,2 @@
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_APPROVED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -100,3 +100,5 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -887,3 +887,5 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PINGBACK_NOT_FOUND', 'Не е намерен pingback-URI.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Скриване на връзката към архивите, когато няма статии в избрания период от време (изисква преброяване на статиите)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -906,3 +906,5 @@ $i18n_filename_to = array (
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -906,3 +906,5 @@ $i18n_filename_to = array (
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -895,3 +895,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -893,3 +893,6 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
|
||||
@define('SET_TO_MODERATED', 'Moderieren');
|
||||
@define('COMMENT_MODERATED', 'Kommentar #%s wurde erfolgreich moderiert.');
|
||||
|
@ -894,3 +894,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -914,3 +914,5 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -903,3 +903,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -899,3 +899,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -898,3 +898,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -899,3 +899,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -895,3 +895,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -901,3 +901,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -908,3 +908,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -815,3 +815,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -896,3 +896,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@ $i18n_unknown = 'tw';
|
||||
@define('PINGBACK_NOT_FOUND', '沒有回測的網頁。');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', '隱藏歷史的連接如果時間內沒有文章 (需要計算文章數)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -900,3 +900,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -901,3 +901,5 @@ $i18n_unknown = 'tw';
|
||||
@define('PINGBACK_NOT_FOUND', '沒有回測的網頁。');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', '隱藏歷史的連接如果時間內沒有文章 (需要計算文章數)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
@ -897,3 +897,5 @@
|
||||
@define('PINGBACK_NOT_FOUND', 'No pingback-URI found.');
|
||||
@define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'Hide archives link when no entries were made in that timespan (requires counting entries)');
|
||||
@define('RSS_IMPORT_WPXRSS', 'WordPress eXtended RSS import, requires PHP5 and might take up much memory');
|
||||
@define('SET_TO_MODERATED', 'Moderate');
|
||||
@define('COMMENT_MODERATED', 'Comment #%s has successfully been set as moderated');
|
||||
|
Loading…
x
Reference in New Issue
Block a user