Checkbox-based multi-entry deletion, fix admin entry pagination to not show empty paginated pages on the last page
This commit is contained in:
parent
03886b49bc
commit
5ae78da826
@ -3,6 +3,10 @@
|
||||
Version 1.1 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Support to delete multiple entries at once via checkboxes in the
|
||||
entry admin panel, fix admin entry pagination to not show
|
||||
next pages, if that next page were empty. (garvinhicking)
|
||||
|
||||
* Fix bug with using %username% in author permalinks, thanks to oeli
|
||||
from the forums! (garvinhicking)
|
||||
|
||||
|
@ -90,7 +90,7 @@ function serendipity_drawList() {
|
||||
false,
|
||||
serendipity_db_limit(
|
||||
$offSet,
|
||||
$perPage
|
||||
$perPage + 1
|
||||
),
|
||||
true,
|
||||
false,
|
||||
@ -98,8 +98,8 @@ function serendipity_drawList() {
|
||||
$filter_sql
|
||||
);
|
||||
?>
|
||||
<form action="?" method="get">
|
||||
<div class="serendipity_admin_list">
|
||||
<form action="?" method="get">
|
||||
<input type="hidden" name="serendipity[action]" value="admin" />
|
||||
<input type="hidden" name="serendipity[adminModule]" value="entries" />
|
||||
<input type="hidden" name="serendipity[adminAction]" value="editSelect" />
|
||||
@ -178,6 +178,8 @@ function serendipity_drawList() {
|
||||
<td align="right" colspan="6"><input type="submit" name="go" value="<?php echo GO ?>" class="serendipityPrettyButton" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
||||
<?php
|
||||
if (is_array($entries)) {
|
||||
@ -199,17 +201,35 @@ function serendipity_drawList() {
|
||||
<?php } ?>
|
||||
</td>
|
||||
<td align="right">
|
||||
<?php if ($count == $perPage) { ?>
|
||||
<?php if ($count > $perPage) { ?>
|
||||
<a href="<?php echo $linkNext ?>" class="serendipityIconLinkRight"><?php echo NEXT ?><img src="<?php echo serendipity_getTemplateFile('admin/img/next.png') ?>" /></a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script type="text/javascript">
|
||||
function invertSelection() {
|
||||
var f = document.formMultiDelete;
|
||||
for (var i = 0; i < f.elements.length; i++) {
|
||||
if (f.elements[i].type == 'checkbox') {
|
||||
f.elements[i].checked = !(f.elements[i].checked);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<form action="?" method="post" name="formMultiDelete" id="formMultiDelete">
|
||||
<?php echo serendipity_setFormToken(); ?>
|
||||
<input type="hidden" name="serendipity[action]" value="admin" />
|
||||
<input type="hidden" name="serendipity[adminModule]" value="entries" />
|
||||
<input type="hidden" name="serendipity[adminAction]" value="multidelete" />
|
||||
<?php
|
||||
// Print the entries
|
||||
$rows = 0;
|
||||
foreach ($entries as $entry) {
|
||||
$rows++;
|
||||
if ($rows > $perPage) {
|
||||
continue;
|
||||
}
|
||||
// Find out if the entry has been modified later than 30 minutes after creation
|
||||
if ($entry['timestamp'] <= ($entry['last_modified'] - 60*30)) {
|
||||
$lm = '<a href="#" title="' . LAST_UPDATED . ': ' . serendipity_formatTime(DATE_FORMAT_SHORT, $entry['last_modified']) . '" onclick="alert(this.title)"><img src="'. serendipity_getTemplateFile('admin/img/clock.png') .'" alt="*" style="border: 0px none ; vertical-align: bottom;" /></a>';
|
||||
@ -262,14 +282,14 @@ function serendipity_drawList() {
|
||||
<a target="_blank" href="<?php echo $entry['link']; ?>" title="<?php echo VIEW . ' #' . $entry['id']; ?>" class="serendipityIconLink"><img src="<?php echo serendipity_getTemplateFile('admin/img/zoom.png'); ?>" alt="<?php echo VIEW; ?>" /><?php echo VIEW ?></a>
|
||||
<a href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=edit&serendipity[id]=<?php echo $entry['id']; ?>" title="<?php echo EDIT . ' #' . $entry['id']; ?>" class="serendipityIconLink"><img src="<?php echo serendipity_getTemplateFile('admin/img/edit.png'); ?>" alt="<?php echo EDIT; ?>" /><?php echo EDIT ?></a>
|
||||
<a href="?<?php echo serendipity_setFormToken('url'); ?>&serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=delete&serendipity[id]=<?php echo $entry['id']; ?>" title="<?php echo DELETE . ' #' . $entry['id']; ?>" class="serendipityIconLink"><img src="<?php echo serendipity_getTemplateFile('admin/img/delete.png'); ?>" alt="<?php echo DELETE; ?>" /><?php echo DELETE ?></a>
|
||||
<input type="checkbox" name="serendipity[multiDelete][]" value="<?php echo $entry['id']; ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
} // end entries output
|
||||
?>
|
||||
|
||||
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
||||
<tr>
|
||||
<td>
|
||||
@ -278,18 +298,33 @@ function serendipity_drawList() {
|
||||
<?php } ?>
|
||||
</td>
|
||||
<td align="right">
|
||||
<?php if ($count == $perPage) { ?>
|
||||
<?php if ($count > $perPage) { ?>
|
||||
<a href="<?php echo $linkNext ?>" class="serendipityIconLinkRight"><?php echo NEXT ?><img src="<?php echo serendipity_getTemplateFile('admin/img/next.png') ?>" /></a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table class="serendipity_admin_list" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="right">
|
||||
<input type="button" name="toggle" value="<?php echo INVERT_SELECTIONS ?>" onclick="invertSelection()" class="serendipityPrettyButton" />
|
||||
<input type="submit" name="toggle" value="<?php echo DELETE_SELECTED_COMMENTS ?>" class="serendipityPrettyButton" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<div class="serendipity_admin_list_item serendipity_admin_list_item_<?php echo (($rows+1) % 2 ? 'even' : 'uneven'); ?>">
|
||||
<table width="100%" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td>
|
||||
<form action="?" method="get">
|
||||
<input type="hidden" name="serendipity[action]" value="admin" />
|
||||
<input type="hidden" name="serendipity[adminModule]" value="entries" />
|
||||
<input type="hidden" name="serendipity[adminAction]" value="editSelect" />
|
||||
<?php echo EDIT_ENTRY ?>: #<input type="text" size="3" name="serendipity[id]" /> <input type="submit" name="serendipity[editSubmit]" value="<?php echo GO ?>" class="serendipityPrettyButton" />
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -303,7 +338,6 @@ function serendipity_drawList() {
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</form>
|
||||
<?php
|
||||
} // End function serendipity_drawList()
|
||||
|
||||
@ -451,6 +485,25 @@ switch($serendipity['GET']['adminAction']) {
|
||||
serendipity_deleteEntry((int)$serendipity['GET']['id']);
|
||||
printf(RIP_ENTRY, $entry['id'] . ' - ' . htmlspecialchars($entry['title']));
|
||||
echo '<br />';
|
||||
$cont_draw = true;
|
||||
|
||||
case 'doMultiDelete':
|
||||
if (!isset($cont_draw)) {
|
||||
if (!serendipity_checkFormToken() || !isset($serendipity['GET']['id'])) {
|
||||
break;
|
||||
}
|
||||
|
||||
$parts = explode(',', $serendipity['GET']['id']);
|
||||
foreach($parts AS $id) {
|
||||
$id = (int)$id;
|
||||
if ($id > 0) {
|
||||
$entry = serendipity_fetchEntry('id', $id, 1, 1);
|
||||
serendipity_deleteEntry((int)$id);
|
||||
printf(RIP_ENTRY, $entry['id'] . ' - ' . htmlspecialchars($entry['title']));
|
||||
echo '<br />';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
case 'editSelect':
|
||||
serendipity_drawList();
|
||||
@ -472,6 +525,30 @@ switch($serendipity['GET']['adminAction']) {
|
||||
<?php echo str_repeat(' ', 10); ?>
|
||||
<a href="<?php echo $newLoc; ?>" class="serendipityPrettyButton"><?php echo DUMP_IT; ?></a>
|
||||
</div>
|
||||
<?php
|
||||
break;
|
||||
|
||||
case 'multidelete':
|
||||
if (!serendipity_checkFormToken() || !is_array($serendipity['POST']['multiDelete'])) {
|
||||
break;
|
||||
}
|
||||
|
||||
$ids = '';
|
||||
foreach($serendipity['POST']['multiDelete'] AS $idx => $id) {
|
||||
$ids .= (int)$id . ',';
|
||||
$entry = serendipity_fetchEntry('id', $id, 1, 1);
|
||||
printf(DELETE_SURE, $entry['id'] . ' - ' . htmlspecialchars($entry['title']));
|
||||
echo '<br />';
|
||||
}
|
||||
$newLoc = '?' . serendipity_setFormToken('url') . '&serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=doMultiDelete&serendipity[id]=' . $ids;
|
||||
?>
|
||||
<br />
|
||||
<br />
|
||||
<div>
|
||||
<a href="<?php echo htmlspecialchars($_SERVER["HTTP_REFERER"]); ?>" class="serendipityPrettyButton"><?php echo NOT_REALLY; ?></a>
|
||||
<?php echo str_repeat(' ', 10); ?>
|
||||
<a href="<?php echo $newLoc; ?>" class="serendipityPrettyButton"><?php echo DUMP_IT; ?></a>
|
||||
</div>
|
||||
<?php
|
||||
break;
|
||||
|
||||
|
@ -84,3 +84,4 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -867,7 +867,8 @@
|
||||
|
||||
@define('INSTALL_PERMALINK_COMMENTSPATH', 'Път до коментарите');
|
||||
@define('PERM_SET_CHILD', 'Установяване на същите разрешения за всички поддиректории');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Забранени приставки');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Забранени събития');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "Plugin ACL за потребителски групи" е позволена, ще можете да указвате кои потребителски групи имат позволението да изпълняват дадени събитийни и странични приставки.');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Забранени приставки');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Забранени събития');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "Plugin ACL за потребителски групи" е позволена, ще можете да указвате кои потребителски групи имат позволението да изпълняват дадени събитийни и странични приставки.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -897,3 +897,4 @@ $i18n_filename_to = array (
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -897,3 +897,4 @@ $i18n_filename_to = array (
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_de.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_de.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
||||
@ -876,7 +876,8 @@
|
||||
@define('PREFERENCE_USE_JS_WARNING', '(Diese Seite setzt fortgeschrittene JavaScripts ein. Falls dabei Probleme in der Benutzbarkeit auftreten, deaktivieren Sie bitte die Option zum Einsatz dieser JavaScripts im Menüpunkt "Eigene Einstellungen", oder deaktivieren Sie JavaScript in Ihrem Browser.)');
|
||||
@define('INSTALL_PERMALINK_COMMENTSPATH', 'Pfad zu Kommentaren');
|
||||
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Verbotene Plugins');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Verbotene Ereignisse');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Sollen persönliche Plugin-Rechte für Benutzergruppen aktiviert werden?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Falls diese Option aktiviert ist, können Sie bei jeder Benutzergruppe definieren, welche Plugins/Ereignisse diese Gruppe ausführen darf.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Markierte Einträge löschen');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1408 2006-08-23 13:47:50Z 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 : */
|
||||
@ -880,3 +880,6 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1408 2006-08-23 13:47:50Z 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>,
|
||||
@ -893,3 +893,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1403 2006-08-21 12:19:14Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1430 2006-10-03 15:52:17Z 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>
|
||||
@ -890,3 +890,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1408 2006-08-23 13:47:50Z 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.
|
||||
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -888,3 +888,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -890,3 +890,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -887,3 +887,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -802,3 +802,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1408 2006-08-23 13:47:50Z 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>
|
||||
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1399 2006-08-18 12:01:25Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -8,7 +8,7 @@ if [ "x$1" = "x" ]
|
||||
echo "available language file."
|
||||
exit 1
|
||||
else
|
||||
find -name \*.php -maxdepth 1 -exec ./append.sh $1 {} \;
|
||||
find -maxdepth 1 -name \*.php -exec ./append.sh $1 {} \;
|
||||
cd UTF-8
|
||||
./recode.sh
|
||||
fi
|
||||
|
@ -1,4 +1 @@
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -84,3 +84,4 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -871,3 +871,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Забранени събития');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "Plugin ACL за потребителски групи" е позволена, ще можете да указвате кои потребителски групи имат позволението да изпълняват дадени събитийни и странични приставки.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -897,3 +897,4 @@ $i18n_filename_to = array (
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -897,3 +897,4 @@ $i18n_filename_to = array (
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -876,7 +876,8 @@
|
||||
@define('PREFERENCE_USE_JS_WARNING', '(Diese Seite setzt fortgeschrittene JavaScripts ein. Falls dabei Probleme in der Benutzbarkeit auftreten, deaktivieren Sie bitte die Option zum Einsatz dieser JavaScripts im Menüpunkt "Eigene Einstellungen", oder deaktivieren Sie JavaScript in Ihrem Browser.)');
|
||||
@define('INSTALL_PERMALINK_COMMENTSPATH', 'Pfad zu Kommentaren');
|
||||
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Verbotene Plugins');
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Verbotene Ereignisse');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Sollen persönliche Plugin-Rechte für Benutzergruppen aktiviert werden?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Falls diese Option aktiviert ist, können Sie bei jeder Benutzergruppe definieren, welche Plugins/Ereignisse diese Gruppe ausführen darf.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Markierte Einträge löschen');
|
||||
|
@ -880,3 +880,5 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -893,3 +893,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -885,3 +885,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -890,3 +890,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -886,3 +886,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -888,3 +888,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -890,3 +890,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -802,3 +802,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -883,3 +883,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
@ -884,3 +884,4 @@
|
||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.');
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
|
Loading…
x
Reference in New Issue
Block a user