From: garvinhicking Date: Thu, 3 Jan 2008 15:02:22 +0000 (+0000) Subject: Allow to re-moderate comments X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d85de17ea87cc37491ffd69397c386b26603b7de;p=s9y.git Allow to re-moderate comments --- diff --git a/docs/NEWS b/docs/NEWS index ef47f90..9562be3 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -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) diff --git a/include/admin/comments.inc.php b/include/admin/comments.inc.php index 53050a0..6f15baf 100644 --- a/include/admin/comments.inc.php +++ b/include/admin/comments.inc.php @@ -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 echo APPROVE ?> + + <?php echo SET_TO_MODERATED ?> + <?php echo TOGGLE_ALL; ?> diff --git a/include/functions_comments.inc.php b/include/functions_comments.inc.php index 8d6f796..7be3742 100644 --- a/include/functions_comments.inc.php +++ b/include/functions_comments.inc.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; } diff --git a/lang/UTF-8/plugin_lang.php b/lang/UTF-8/plugin_lang.php index b554b2a..cf6e01c 100644 --- a/lang/UTF-8/plugin_lang.php +++ b/lang/UTF-8/plugin_lang.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index 697b2d0..3dc6127 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index 357bf71..592a6f8 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index 0832eb5..687d324 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index 48241bf..226e26e 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index d26466e..3f4efc0 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -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.'); diff --git a/lang/UTF-8/serendipity_lang_en.inc.php b/lang/UTF-8/serendipity_lang_en.inc.php index bed8ce6..077284b 100644 --- a/lang/UTF-8/serendipity_lang_en.inc.php +++ b/lang/UTF-8/serendipity_lang_en.inc.php @@ -1,4 +1,4 @@ -, @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index f6e1003..aa21bca 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index 05a5156..74cedbf 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index fd16f26..a3e10e1 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index 9a0a613..b36699e 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index db0d036..c70e4ba 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index b3ffdf7..ff139e7 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index 9c9c5f5..d462fe4 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -1,4 +1,4 @@ -, 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'); diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index 4754595..33f03da 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index e00b7a9..da2cb16 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index a980317..bc0545f 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_pl.inc.php b/lang/UTF-8/serendipity_lang_pl.inc.php index e6a0101..ad66cc5 100644 --- a/lang/UTF-8/serendipity_lang_pl.inc.php +++ b/lang/UTF-8/serendipity_lang_pl.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_pt.inc.php b/lang/UTF-8/serendipity_lang_pt.inc.php index 69194fd..6814d23 100644 --- a/lang/UTF-8/serendipity_lang_pt.inc.php +++ b/lang/UTF-8/serendipity_lang_pt.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_pt_PT.inc.php b/lang/UTF-8/serendipity_lang_pt_PT.inc.php index b62dab9..464ff31 100644 --- a/lang/UTF-8/serendipity_lang_pt_PT.inc.php +++ b/lang/UTF-8/serendipity_lang_pt_PT.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_ro.inc.php b/lang/UTF-8/serendipity_lang_ro.inc.php index 4c5b254..eda4b7e 100644 --- a/lang/UTF-8/serendipity_lang_ro.inc.php +++ b/lang/UTF-8/serendipity_lang_ro.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_ru.inc.php b/lang/UTF-8/serendipity_lang_ru.inc.php index 1de0373..6ad7ed5 100644 --- a/lang/UTF-8/serendipity_lang_ru.inc.php +++ b/lang/UTF-8/serendipity_lang_ru.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_sa.inc.php b/lang/UTF-8/serendipity_lang_sa.inc.php index bb1bd0f..b520afa 100644 --- a/lang/UTF-8/serendipity_lang_sa.inc.php +++ b/lang/UTF-8/serendipity_lang_sa.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_se.inc.php b/lang/UTF-8/serendipity_lang_se.inc.php index 47d23b0..7c7dddd 100644 --- a/lang/UTF-8/serendipity_lang_se.inc.php +++ b/lang/UTF-8/serendipity_lang_se.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_ta.inc.php b/lang/UTF-8/serendipity_lang_ta.inc.php index f24af76..83d4101 100644 --- a/lang/UTF-8/serendipity_lang_ta.inc.php +++ b/lang/UTF-8/serendipity_lang_ta.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_tn.inc.php b/lang/UTF-8/serendipity_lang_tn.inc.php index 773efd1..1fd28bc 100644 --- a/lang/UTF-8/serendipity_lang_tn.inc.php +++ b/lang/UTF-8/serendipity_lang_tn.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_tr.inc.php b/lang/UTF-8/serendipity_lang_tr.inc.php index d6b33ad..2b888f5 100644 --- a/lang/UTF-8/serendipity_lang_tr.inc.php +++ b/lang/UTF-8/serendipity_lang_tr.inc.php @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index 07e7ea5..7e06a29 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -1,4 +1,4 @@ - @@ -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'); diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index 68ca2b9..cd9ee36 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -1,4 +1,4 @@ - $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'); diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index 3072a8b..b39099b 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -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'); diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index ee12feb..b8fcd4c 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -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'); diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index c6f5bb8..0b466f8 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -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'); diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index ab06bed..9773358 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -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'); diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 66343e5..e83f650 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -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'); diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index 1fd07ed..2c0a15c 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -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.'); diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index 8bf8e94..b288dd4 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -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'); diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index 1a702f9..b52a55e 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -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'); diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index f91b8bd..7997503 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -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'); diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index 557c78e..27f6c56 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -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'); diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index f035257..002acd8 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -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'); diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index a03d956..0757527 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -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'); diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 0a5341d..fc42e28 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -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'); diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index 6e162d6..f338681 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -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'); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index 0d52da6..2220ca0 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -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'); diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 0373209..ea4caed 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -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'); diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index e0d5a43..f1fa46c 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -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'); diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index ceab32b..cb76e2d 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -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'); diff --git a/lang/serendipity_lang_pl.inc.php b/lang/serendipity_lang_pl.inc.php index a6d9b01..2a75346 100644 --- a/lang/serendipity_lang_pl.inc.php +++ b/lang/serendipity_lang_pl.inc.php @@ -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'); diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index 4eca311..30dfb58 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -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'); diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index 5c41be8..5863066 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -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'); diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 4c5b254..eda4b7e 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -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'); diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index 0c3ae98..74ca952 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -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'); diff --git a/lang/serendipity_lang_sa.inc.php b/lang/serendipity_lang_sa.inc.php index 4f955c6..0816ef1 100644 --- a/lang/serendipity_lang_sa.inc.php +++ b/lang/serendipity_lang_sa.inc.php @@ -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'); diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index 03a245f..3886172 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -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'); diff --git a/lang/serendipity_lang_ta.inc.php b/lang/serendipity_lang_ta.inc.php index f24af76..83d4101 100644 --- a/lang/serendipity_lang_ta.inc.php +++ b/lang/serendipity_lang_ta.inc.php @@ -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'); diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index a010ce0..7c1aa12 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -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'); diff --git a/lang/serendipity_lang_tr.inc.php b/lang/serendipity_lang_tr.inc.php index d6b33ad..2b888f5 100644 --- a/lang/serendipity_lang_tr.inc.php +++ b/lang/serendipity_lang_tr.inc.php @@ -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'); diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index 98d630c..712aa93 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -901,3 +901,5 @@ $i18n_unknown = 'tw'; @define('PINGBACK_NOT_FOUND', '¨S¦³¦^´úªººô­¶¡C'); @define('CATEGORY_PLUGIN_HIDEZEROCOUNT', 'ÁôÂþú¥vªº³s±µ¦pªG®É¶¡¤º¨S¦³¤å³¹ (»Ý­n­pºâ¤å³¹¼Æ)'); @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'); diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index dd3d6c5..fde8e74 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -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');