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
348eff8040
commit
edd9dff220
@ -3,6 +3,10 @@
|
|||||||
Version 1.1 ()
|
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
|
* Fix bug with using %username% in author permalinks, thanks to oeli
|
||||||
from the forums! (garvinhicking)
|
from the forums! (garvinhicking)
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ function serendipity_drawList() {
|
|||||||
false,
|
false,
|
||||||
serendipity_db_limit(
|
serendipity_db_limit(
|
||||||
$offSet,
|
$offSet,
|
||||||
$perPage
|
$perPage + 1
|
||||||
),
|
),
|
||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
@ -98,8 +98,8 @@ function serendipity_drawList() {
|
|||||||
$filter_sql
|
$filter_sql
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<form action="?" method="get">
|
|
||||||
<div class="serendipity_admin_list">
|
<div class="serendipity_admin_list">
|
||||||
|
<form action="?" method="get">
|
||||||
<input type="hidden" name="serendipity[action]" value="admin" />
|
<input type="hidden" name="serendipity[action]" value="admin" />
|
||||||
<input type="hidden" name="serendipity[adminModule]" value="entries" />
|
<input type="hidden" name="serendipity[adminModule]" value="entries" />
|
||||||
<input type="hidden" name="serendipity[adminAction]" value="editSelect" />
|
<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>
|
<td align="right" colspan="6"><input type="submit" name="go" value="<?php echo GO ?>" class="serendipityPrettyButton" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</form>
|
||||||
|
|
||||||
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
||||||
<?php
|
<?php
|
||||||
if (is_array($entries)) {
|
if (is_array($entries)) {
|
||||||
@ -199,17 +201,35 @@ function serendipity_drawList() {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
</td>
|
</td>
|
||||||
<td align="right">
|
<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>
|
<a href="<?php echo $linkNext ?>" class="serendipityIconLinkRight"><?php echo NEXT ?><img src="<?php echo serendipity_getTemplateFile('admin/img/next.png') ?>" /></a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</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
|
<?php
|
||||||
// Print the entries
|
// Print the entries
|
||||||
$rows = 0;
|
$rows = 0;
|
||||||
foreach ($entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
$rows++;
|
$rows++;
|
||||||
|
if ($rows > $perPage) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
// Find out if the entry has been modified later than 30 minutes after creation
|
// Find out if the entry has been modified later than 30 minutes after creation
|
||||||
if ($entry['timestamp'] <= ($entry['last_modified'] - 60*30)) {
|
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>';
|
$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 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="?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>
|
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
} // end entries output
|
} // end entries output
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
<table class="serendipity_admin_list" cellpadding="5" width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
@ -278,18 +298,33 @@ function serendipity_drawList() {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
</td>
|
</td>
|
||||||
<td align="right">
|
<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>
|
<a href="<?php echo $linkNext ?>" class="serendipityIconLinkRight"><?php echo NEXT ?><img src="<?php echo serendipity_getTemplateFile('admin/img/next.png') ?>" /></a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</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'); ?>">
|
<div class="serendipity_admin_list_item serendipity_admin_list_item_<?php echo (($rows+1) % 2 ? 'even' : 'uneven'); ?>">
|
||||||
<table width="100%" cellspacing="0" cellpadding="3">
|
<table width="100%" cellspacing="0" cellpadding="3">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<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" />
|
<?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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -303,7 +338,6 @@ function serendipity_drawList() {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
|
||||||
<?php
|
<?php
|
||||||
} // End function serendipity_drawList()
|
} // End function serendipity_drawList()
|
||||||
|
|
||||||
@ -451,6 +485,25 @@ switch($serendipity['GET']['adminAction']) {
|
|||||||
serendipity_deleteEntry((int)$serendipity['GET']['id']);
|
serendipity_deleteEntry((int)$serendipity['GET']['id']);
|
||||||
printf(RIP_ENTRY, $entry['id'] . ' - ' . htmlspecialchars($entry['title']));
|
printf(RIP_ENTRY, $entry['id'] . ' - ' . htmlspecialchars($entry['title']));
|
||||||
echo '<br />';
|
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':
|
case 'editSelect':
|
||||||
serendipity_drawList();
|
serendipity_drawList();
|
||||||
@ -472,6 +525,30 @@ switch($serendipity['GET']['adminAction']) {
|
|||||||
<?php echo str_repeat(' ', 10); ?>
|
<?php echo str_repeat(' ', 10); ?>
|
||||||
<a href="<?php echo $newLoc; ?>" class="serendipityPrettyButton"><?php echo DUMP_IT; ?></a>
|
<a href="<?php echo $newLoc; ?>" class="serendipityPrettyButton"><?php echo DUMP_IT; ?></a>
|
||||||
</div>
|
</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
|
<?php
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -84,3 +84,4 @@ foreach($const['missing'] AS $file => $constants) {
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Забранени събития');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translated by
|
# Translated by
|
||||||
@ -885,3 +885,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
# 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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
# 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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
|
# Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
|
||||||
@ -885,3 +885,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
# 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('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('INSTALL_PERMALINK_COMMENTSPATH', 'Pfad zu Kommentaren');
|
||||||
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
||||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Verbotene Plugins');
|
||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Verbotene Ereignisse');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@define('PERMISSION_FORBIDDEN_ENABLE', 'Sollen persönliche Plugin-Rechte für Benutzergruppen aktiviert werden?');
|
||||||
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
/* vim: set sts=4 ts=4 expandtab : */
|
/* vim: set sts=4 ts=4 expandtab : */
|
||||||
@ -880,3 +880,6 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
|
# 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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# this translation, translated by Omid Mottaghi <http://oxygenws.com>
|
# this translation, translated by Omid Mottaghi <http://oxygenws.com>
|
||||||
@ -885,3 +885,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Mauri Sahlberg <mos@iki.fi>
|
# Translation by Mauri Sahlberg <mos@iki.fi>
|
||||||
@ -883,3 +883,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Sebastian Mordziol <argh@php-tools.net>
|
# Translation by Sebastian Mordziol <argh@php-tools.net>
|
||||||
@ -890,3 +890,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Örn Arnarson <orn@arnarson.net>
|
# Translation by Örn Arnarson <orn@arnarson.net>
|
||||||
@ -884,3 +884,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
|
# Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
|
||||||
@ -886,3 +886,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translated by: Wesley Hwang-Chung <wesley96@gmail.com>
|
# Translated by: Wesley Hwang-Chung <wesley96@gmail.com>
|
||||||
@ -886,3 +886,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
|
# Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
|
||||||
@ -886,3 +886,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
|
# Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
|
||||||
@ -886,3 +886,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Agner Olson <agner@agner.net>
|
# Translation (c) by Agner Olson <agner@agner.net>
|
||||||
@ -888,3 +888,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Nightly <nightly@reys.net>
|
# 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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translated by CapriSkye <admin@capriskye.com>
|
# Translated by CapriSkye <admin@capriskye.com>
|
||||||
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translated by CapriSkye <admin@capriskye.com>
|
# Translated by CapriSkye <admin@capriskye.com>
|
||||||
@ -887,3 +887,4 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translated by
|
# Translated by
|
||||||
@ -884,3 +884,4 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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."
|
echo "available language file."
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
find -name \*.php -maxdepth 1 -exec ./append.sh $1 {} \;
|
find -maxdepth 1 -name \*.php -exec ./append.sh $1 {} \;
|
||||||
cd UTF-8
|
cd UTF-8
|
||||||
./recode.sh
|
./recode.sh
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1 @@
|
|||||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||||
@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.');
|
|
||||||
|
@ -84,3 +84,4 @@ foreach($const['missing'] AS $file => $constants) {
|
|||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Забранени събития');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
@define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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('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('INSTALL_PERMALINK_COMMENTSPATH', 'Pfad zu Kommentaren');
|
||||||
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
@define('PERM_SET_CHILD', 'Identische Rechte auch auf alle Unterverzeichnisse anwenden');
|
||||||
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Forbidden plugins');
|
@define('PERMISSION_FORBIDDEN_PLUGINS', 'Verbotene Plugins');
|
||||||
@define('PERMISSION_FORBIDDEN_HOOKS', 'Forbidden events');
|
@define('PERMISSION_FORBIDDEN_HOOKS', 'Verbotene Ereignisse');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@define('PERMISSION_FORBIDDEN_ENABLE', 'Sollen persönliche Plugin-Rechte für Benutzergruppen aktiviert werden?');
|
||||||
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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_HOOKS', 'Forbidden events');
|
||||||
@define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?');
|
@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_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