Issue #234: Granular forcing of backend popups for specific areas
References #234
This commit is contained in:
parent
df20e85811
commit
5f7f2e5ce0
@ -3,6 +3,9 @@
|
||||
Version 2.1 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Issue #234: Granular options to force backend popups for certain
|
||||
areas
|
||||
|
||||
* Issue #248: Add $serendipity['forceBase64']=true option (can be set
|
||||
in serendipity_config_local.inc.php) to make Serendipity *not*
|
||||
use 8bit Imap functions for sending mail, for MTAs that behave
|
||||
|
@ -1045,6 +1045,14 @@ function serendipity_smarty_init($vars = array()) {
|
||||
|
||||
}
|
||||
|
||||
$_force_backendpopups = explode(',', $serendipity['enableBackendPopupGranular']);
|
||||
$force_backendpopups = array();
|
||||
foreach($_force_backendpopups AS $fbp_key => $fbp_val) {
|
||||
$fbp_val = trim($fbp_val);
|
||||
if (empty($fbp_val)) continue;
|
||||
$force_backendpopups[$fbp_val] = $fbp_val;
|
||||
}
|
||||
|
||||
$serendipity['smarty']->assign(
|
||||
array(
|
||||
'head_charset' => LANG_CHARSET,
|
||||
@ -1057,6 +1065,7 @@ function serendipity_smarty_init($vars = array()) {
|
||||
'is_xhtml' => true,
|
||||
'use_popups' => $serendipity['enablePopup'],
|
||||
'use_backendpopups' => $serendipity['enableBackendPopup'],
|
||||
'force_backendpopups' => $force_backendpopups,
|
||||
'is_embedded' => (!$serendipity['embed'] || $serendipity['embed'] === 'false' || $serendipity['embed'] === false) ? false : true,
|
||||
'is_raw_mode' => $serendipity['smarty_raw_mode'],
|
||||
'is_logged_in' => serendipity_userLoggedIn(),
|
||||
|
@ -143,7 +143,16 @@
|
||||
'type' => 'bool',
|
||||
'default' => false,
|
||||
'flags' => array('config'),
|
||||
'permission' => 'personalConfiguration')
|
||||
'permission' => 'personalConfiguration'),
|
||||
|
||||
array('var' => 'enableBackendPopupGranular',
|
||||
'title' => INSTALL_BACKENDPOPUP_GRANULAR,
|
||||
'description' => INSTALL_BACKENDPOPUP_GRANULAR_DESC
|
||||
. 'images, comments, categories, tags, links.',
|
||||
'type' => 'string',
|
||||
'permission' => 'personalConfiguration',
|
||||
'default' => '',
|
||||
'flags' => array('config')),
|
||||
));
|
||||
|
||||
$res['defaults'] =
|
||||
|
@ -142,3 +142,5 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1084,3 +1084,5 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1122,3 +1122,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1122,3 +1122,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1091,3 +1091,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1088,9 +1088,12 @@
|
||||
@define('CATEGORY_PLUGIN_SHOWALL', 'Falls aktiviert wird Besuchern ein Link angezeigt, das Blog ohne Einschränkung der Kategorien darzustellen.');
|
||||
@define('SERENDIPITY_PHPVERSION_FAIL', 'Serendipity benötigt eine PHP-Version >= %2$s - Sie benutzen eine ältere Version (%1$s) und müssen auf eine neuere upgraden. Die meisten Provider gestatten den Wechsel auf neuere PHP-Versionen über einen Schalter in der Admin-Oberfläche oder eine Anweisung in der .htaccess.');
|
||||
@define('TOGGLE_VIEW', 'Darstellung der Kategorien wechseln');
|
||||
@define('PUBLISH_NOW', 'Publish this entry now (sets current time and date)');
|
||||
@define('PUBLISH_NOW', 'Diesen Eintrag jetzt veröffentlichen (setzt aktuelle Zeit)');
|
||||
@define('EDITOR_TAGS', 'Tags');
|
||||
@define('EDITOR_NO_TAGS', 'Keine Tags');
|
||||
@define('DASHBOARD_ENTRIES', 'In Vorbereitung');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_PASSWORD2', 'Admin-Passwort (erneut)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Passwort für den Administrator-Zugang, nochmal zur Bestätigung eingeben.');
|
||||
@define('INSTALL_PASSWORD_INVALID', 'Die eingebenen Administrator-Passwörter stimmen nicht überein.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Popups in speziellen Bereichen erzwingen=');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'Wenn Popups generell deaktiviert wurden, kann an speziellen Stellen dennoch der Einsatz von Popups forciert werden, indem die Liste jener Stellen hier aufgeführt wird (kommasepariert). Die vollständige Liste ist: ');
|
||||
|
@ -1093,3 +1093,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1110,3 +1110,5 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1099,3 +1099,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1090,3 +1090,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1095,3 +1095,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1090,3 +1090,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1103,3 +1103,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1093,3 +1093,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1095,3 +1095,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1011,3 +1011,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1082,3 +1082,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1091,3 +1091,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@ $i18n_unknown = 'tw';
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1097,3 +1097,5 @@ $i18n_unknown = 'tw';
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1 +1,2 @@
|
||||
@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -142,3 +142,5 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1084,3 +1084,5 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1122,3 +1122,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1122,3 +1122,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1091,3 +1091,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1088,9 +1088,12 @@
|
||||
@define('CATEGORY_PLUGIN_SHOWALL', 'Falls aktiviert wird Besuchern ein Link angezeigt, das Blog ohne Einschränkung der Kategorien darzustellen.');
|
||||
@define('SERENDIPITY_PHPVERSION_FAIL', 'Serendipity benötigt eine PHP-Version >= %2$s - Sie benutzen eine ältere Version (%1$s) und müssen auf eine neuere upgraden. Die meisten Provider gestatten den Wechsel auf neuere PHP-Versionen über einen Schalter in der Admin-Oberfläche oder eine Anweisung in der .htaccess.');
|
||||
@define('TOGGLE_VIEW', 'Darstellung der Kategorien wechseln');
|
||||
@define('PUBLISH_NOW', 'Publish this entry now (sets current time and date)');
|
||||
@define('PUBLISH_NOW', 'Diesen Eintrag jetzt veröffentlichen (setzt aktuelle Zeit)');
|
||||
@define('EDITOR_TAGS', 'Tags');
|
||||
@define('EDITOR_NO_TAGS', 'Keine Tags');
|
||||
@define('DASHBOARD_ENTRIES', 'In Vorbereitung');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_PASSWORD2', 'Admin-Passwort (erneut)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Passwort für den Administrator-Zugang, nochmal zur Bestätigung eingeben.');
|
||||
@define('INSTALL_PASSWORD_INVALID', 'Die eingebenen Administrator-Passwörter stimmen nicht überein.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Popups in speziellen Bereichen erzwingen=');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'Wenn Popups generell deaktiviert wurden, kann an speziellen Stellen dennoch der Einsatz von Popups forciert werden, indem die Liste jener Stellen hier aufgeführt wird (kommasepariert). Die vollständige Liste ist: ');
|
||||
|
@ -1093,3 +1093,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1110,3 +1110,5 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1099,3 +1099,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1090,3 +1090,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1095,3 +1095,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1094,3 +1094,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1090,3 +1090,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1103,3 +1103,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1093,3 +1093,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1095,3 +1095,5 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1011,3 +1011,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1082,3 +1082,5 @@ $i18n_filename_to = array (
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1091,3 +1091,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@ $i18n_unknown = 'tw';
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1096,3 +1096,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1097,3 +1097,5 @@ $i18n_unknown = 'tw';
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -1092,3 +1092,5 @@
|
||||
@define('DASHBOARD_ENTRIES', 'In Progress');
|
||||
@define('INSTALL_PASSWORD2', 'Admin password (verify)');
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
|
@ -599,7 +599,7 @@
|
||||
}
|
||||
|
||||
serendipity.closeCommentPopup = function() {
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.comments}
|
||||
parent.self.close();
|
||||
{else}
|
||||
window.parent.parent.$.magnificPopup.close();
|
||||
@ -607,7 +607,7 @@
|
||||
}
|
||||
|
||||
serendipity.openPopup = function(url) {
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.images}
|
||||
window.open(url,
|
||||
'ImageSel',
|
||||
'width=800,height=600,toolbar=no,scrollbars=1,scrollbars,resize=1,resizable=1');
|
||||
@ -970,7 +970,7 @@ $(function() {
|
||||
}
|
||||
|
||||
// Show category selector
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.categories}
|
||||
if($('#serendipityEntry').length > 0) {
|
||||
$('#select_category').click(function(e) {
|
||||
$('#toggle_metadata').click();
|
||||
@ -1030,7 +1030,7 @@ $(function() {
|
||||
};
|
||||
|
||||
// Show tag selector
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.tags}
|
||||
if($('#serendipityEntry').length > 0) {
|
||||
$('#select_tags').click(function(e) {
|
||||
$('#toggle_advanced').click();
|
||||
@ -1177,7 +1177,7 @@ $(function() {
|
||||
|
||||
$('.comments_reply').click(function(e) {
|
||||
e.preventDefault();
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.comments}
|
||||
window.open(this.href, 'CommentForm', 'width=800,height=600,toolbar=no,scrollbars=1,scrollbars,resize=1,resizable=1').focus();
|
||||
{else}
|
||||
$(this).magnificPopup({ type:'iframe' });
|
||||
@ -1246,7 +1246,7 @@ $(function() {
|
||||
});
|
||||
|
||||
// Show further links
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.links}
|
||||
if($('#dashboard').length > 0) {
|
||||
$('.toggle_links').click(function(e) {
|
||||
$('#s9y_links').toggleClass('mfp-hide');
|
||||
@ -1262,7 +1262,7 @@ $(function() {
|
||||
{/if}
|
||||
|
||||
// Media file actions
|
||||
{if $use_backendpopups}
|
||||
{if $use_backendpopups || $force_backendpopups.images}
|
||||
$('.media_fullsize').click(function(e) {
|
||||
e.preventDefault();
|
||||
var $el = $(this);
|
||||
|
Loading…
x
Reference in New Issue
Block a user