From 5f7f2e5ce04e2aacd3264d3d82942f19c58d0d3b Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Thu, 29 Jan 2015 15:25:38 +0100 Subject: [PATCH] Issue #234: Granular forcing of backend popups for specific areas References #234 --- docs/NEWS | 3 +++ include/functions_smarty.inc.php | 9 +++++++++ include/tpl/config_personal.inc.php | 11 ++++++++++- lang/UTF-8/plugin_lang.php | 2 ++ lang/UTF-8/serendipity_lang_bg.inc.php | 2 ++ lang/UTF-8/serendipity_lang_cn.inc.php | 2 ++ lang/UTF-8/serendipity_lang_cs.inc.php | 2 ++ lang/UTF-8/serendipity_lang_cz.inc.php | 2 ++ lang/UTF-8/serendipity_lang_da.inc.php | 2 ++ lang/UTF-8/serendipity_lang_de.inc.php | 9 ++++++--- lang/UTF-8/serendipity_lang_en.inc.php | 2 ++ lang/UTF-8/serendipity_lang_es.inc.php | 2 ++ lang/UTF-8/serendipity_lang_fa.inc.php | 2 ++ lang/UTF-8/serendipity_lang_fi.inc.php | 2 ++ lang/UTF-8/serendipity_lang_fr.inc.php | 2 ++ lang/UTF-8/serendipity_lang_hu.inc.php | 2 ++ lang/UTF-8/serendipity_lang_is.inc.php | 2 ++ lang/UTF-8/serendipity_lang_it.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ja.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ko.inc.php | 2 ++ lang/UTF-8/serendipity_lang_nl.inc.php | 2 ++ lang/UTF-8/serendipity_lang_no.inc.php | 2 ++ lang/UTF-8/serendipity_lang_pl.inc.php | 2 ++ lang/UTF-8/serendipity_lang_pt.inc.php | 2 ++ lang/UTF-8/serendipity_lang_pt_PT.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ro.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ru.inc.php | 2 ++ lang/UTF-8/serendipity_lang_sa.inc.php | 2 ++ lang/UTF-8/serendipity_lang_se.inc.php | 2 ++ lang/UTF-8/serendipity_lang_sk.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ta.inc.php | 2 ++ lang/UTF-8/serendipity_lang_tn.inc.php | 2 ++ lang/UTF-8/serendipity_lang_tr.inc.php | 2 ++ lang/UTF-8/serendipity_lang_tw.inc.php | 2 ++ lang/UTF-8/serendipity_lang_zh.inc.php | 2 ++ lang/addlang.txt | 3 ++- lang/plugin_lang.php | 2 ++ lang/serendipity_lang_bg.inc.php | 2 ++ lang/serendipity_lang_cn.inc.php | 2 ++ lang/serendipity_lang_cs.inc.php | 2 ++ lang/serendipity_lang_cz.inc.php | 2 ++ lang/serendipity_lang_da.inc.php | 2 ++ lang/serendipity_lang_de.inc.php | 9 ++++++--- lang/serendipity_lang_en.inc.php | 2 ++ lang/serendipity_lang_es.inc.php | 2 ++ lang/serendipity_lang_fa.inc.php | 2 ++ lang/serendipity_lang_fi.inc.php | 2 ++ lang/serendipity_lang_fr.inc.php | 2 ++ lang/serendipity_lang_hu.inc.php | 2 ++ lang/serendipity_lang_is.inc.php | 2 ++ lang/serendipity_lang_it.inc.php | 2 ++ lang/serendipity_lang_ja.inc.php | 2 ++ lang/serendipity_lang_ko.inc.php | 2 ++ lang/serendipity_lang_nl.inc.php | 2 ++ lang/serendipity_lang_no.inc.php | 2 ++ lang/serendipity_lang_pl.inc.php | 2 ++ lang/serendipity_lang_pt.inc.php | 2 ++ lang/serendipity_lang_pt_PT.inc.php | 2 ++ lang/serendipity_lang_ro.inc.php | 2 ++ lang/serendipity_lang_ru.inc.php | 2 ++ lang/serendipity_lang_sa.inc.php | 2 ++ lang/serendipity_lang_se.inc.php | 2 ++ lang/serendipity_lang_sk.inc.php | 2 ++ lang/serendipity_lang_ta.inc.php | 2 ++ lang/serendipity_lang_tn.inc.php | 2 ++ lang/serendipity_lang_tr.inc.php | 2 ++ lang/serendipity_lang_tw.inc.php | 2 ++ lang/serendipity_lang_zh.inc.php | 2 ++ templates/2k11/admin/serendipity_editor.js.tpl | 14 +++++++------- 69 files changed, 167 insertions(+), 15 deletions(-) diff --git a/docs/NEWS b/docs/NEWS index 8fea6e0b..8f530bd8 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -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 diff --git a/include/functions_smarty.inc.php b/include/functions_smarty.inc.php index b6d29542..c9641654 100644 --- a/include/functions_smarty.inc.php +++ b/include/functions_smarty.inc.php @@ -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(), diff --git a/include/tpl/config_personal.inc.php b/include/tpl/config_personal.inc.php index 461ebed0..4a80ad2b 100644 --- a/include/tpl/config_personal.inc.php +++ b/include/tpl/config_personal.inc.php @@ -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'] = diff --git a/lang/UTF-8/plugin_lang.php b/lang/UTF-8/plugin_lang.php index 1a992bcb..ef813d54 100644 --- a/lang/UTF-8/plugin_lang.php +++ b/lang/UTF-8/plugin_lang.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index fec664d6..8063f0ee 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index 2dc0e278..99a0b1ff 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_cs.inc.php b/lang/UTF-8/serendipity_lang_cs.inc.php index 4101b480..ad5f2bda 100644 --- a/lang/UTF-8/serendipity_lang_cs.inc.php +++ b/lang/UTF-8/serendipity_lang_cs.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index a0f87991..5181bb0f 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index 9a5565be..03bb756b 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index ae7661e5..c3e01e22 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_en.inc.php b/lang/UTF-8/serendipity_lang_en.inc.php index 72da5704..5080e068 100644 --- a/lang/UTF-8/serendipity_lang_en.inc.php +++ b/lang/UTF-8/serendipity_lang_en.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_es.inc.php b/lang/UTF-8/serendipity_lang_es.inc.php index 3f4f7211..6e4666d8 100644 --- a/lang/UTF-8/serendipity_lang_es.inc.php +++ b/lang/UTF-8/serendipity_lang_es.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index da442c13..d9a0ddcb 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index ef6b1f28..30327463 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index 8793a3aa..d41bc285 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index cdf34d91..6d2f6584 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index 100cc307..f46f5f71 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index ea720d28..e30a1e9d 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index 1b9e8ab5..149af032 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index 5542e0aa..89b179ac 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index 8298b67c..6ae7e73a 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index 4fc95e23..02680dd5 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_pl.inc.php b/lang/UTF-8/serendipity_lang_pl.inc.php index c144d13a..73ba5c69 100644 --- a/lang/UTF-8/serendipity_lang_pl.inc.php +++ b/lang/UTF-8/serendipity_lang_pl.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_pt.inc.php b/lang/UTF-8/serendipity_lang_pt.inc.php index 9b32b9a4..a4e366f3 100644 --- a/lang/UTF-8/serendipity_lang_pt.inc.php +++ b/lang/UTF-8/serendipity_lang_pt.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_pt_PT.inc.php b/lang/UTF-8/serendipity_lang_pt_PT.inc.php index ee91cda2..277a3967 100644 --- a/lang/UTF-8/serendipity_lang_pt_PT.inc.php +++ b/lang/UTF-8/serendipity_lang_pt_PT.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_ro.inc.php b/lang/UTF-8/serendipity_lang_ro.inc.php index 1d039f87..11b073b2 100644 --- a/lang/UTF-8/serendipity_lang_ro.inc.php +++ b/lang/UTF-8/serendipity_lang_ro.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_ru.inc.php b/lang/UTF-8/serendipity_lang_ru.inc.php index 8cf22625..9090f4a8 100644 --- a/lang/UTF-8/serendipity_lang_ru.inc.php +++ b/lang/UTF-8/serendipity_lang_ru.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_sa.inc.php b/lang/UTF-8/serendipity_lang_sa.inc.php index bfa9b71f..1b2da3e5 100644 --- a/lang/UTF-8/serendipity_lang_sa.inc.php +++ b/lang/UTF-8/serendipity_lang_sa.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_se.inc.php b/lang/UTF-8/serendipity_lang_se.inc.php index 5ddc1f82..945e4c38 100644 --- a/lang/UTF-8/serendipity_lang_se.inc.php +++ b/lang/UTF-8/serendipity_lang_se.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_sk.inc.php b/lang/UTF-8/serendipity_lang_sk.inc.php index cc4f95f9..62b1cf87 100644 --- a/lang/UTF-8/serendipity_lang_sk.inc.php +++ b/lang/UTF-8/serendipity_lang_sk.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_ta.inc.php b/lang/UTF-8/serendipity_lang_ta.inc.php index 4e925e86..be06752e 100644 --- a/lang/UTF-8/serendipity_lang_ta.inc.php +++ b/lang/UTF-8/serendipity_lang_ta.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_tn.inc.php b/lang/UTF-8/serendipity_lang_tn.inc.php index 4b3d2a8c..c09ad98d 100644 --- a/lang/UTF-8/serendipity_lang_tn.inc.php +++ b/lang/UTF-8/serendipity_lang_tn.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_tr.inc.php b/lang/UTF-8/serendipity_lang_tr.inc.php index df001f51..17c13a79 100644 --- a/lang/UTF-8/serendipity_lang_tr.inc.php +++ b/lang/UTF-8/serendipity_lang_tr.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index 96b6c8bd..f27d29dd 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -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: '); diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index 4315aa86..b3fa62dd 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -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: '); diff --git a/lang/addlang.txt b/lang/addlang.txt index 1398f0dd..e2d81509 100644 --- a/lang/addlang.txt +++ b/lang/addlang.txt @@ -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: '); diff --git a/lang/plugin_lang.php b/lang/plugin_lang.php index 1a992bcb..ef813d54 100644 --- a/lang/plugin_lang.php +++ b/lang/plugin_lang.php @@ -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: '); diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index 3bb841c1..8d52cdb1 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index 2dc0e278..99a0b1ff 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index 4fcb85dd..370d99b7 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index b488825e..ef41c9cd 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 0eec6f96..1e10dbf4 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index af9e6003..ddda88ec 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index 30157aa8..de358c11 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index fff38c9e..94abd18d 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index da442c13..d9a0ddcb 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index ef6b1f28..30327463 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 0889faec..90935e57 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index d8407326..dc6612c8 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 4a72baab..6a10d1bc 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index 0f950a65..e824ee4b 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index 1b9e8ab5..149af032 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 5542e0aa..89b179ac 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index 5969fc21..54f9f021 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index 5a9b99f5..d1579809 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_pl.inc.php b/lang/serendipity_lang_pl.inc.php index 7bd21c0d..d31b24dd 100644 --- a/lang/serendipity_lang_pl.inc.php +++ b/lang/serendipity_lang_pl.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index fd50876b..1c78f3f3 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index f9b8dd5f..57084d4e 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 1d039f87..11b073b2 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index 8cf22625..9090f4a8 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_sa.inc.php b/lang/serendipity_lang_sa.inc.php index 7566f00b..44ba1042 100644 --- a/lang/serendipity_lang_sa.inc.php +++ b/lang/serendipity_lang_sa.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index dc9e59a9..81a316a0 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_sk.inc.php b/lang/serendipity_lang_sk.inc.php index 619f5594..7a90a104 100644 --- a/lang/serendipity_lang_sk.inc.php +++ b/lang/serendipity_lang_sk.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_ta.inc.php b/lang/serendipity_lang_ta.inc.php index 4e925e86..be06752e 100644 --- a/lang/serendipity_lang_ta.inc.php +++ b/lang/serendipity_lang_ta.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index 4b3d2a8c..c09ad98d 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_tr.inc.php b/lang/serendipity_lang_tr.inc.php index df001f51..17c13a79 100644 --- a/lang/serendipity_lang_tr.inc.php +++ b/lang/serendipity_lang_tr.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index b4697bfd..652e219c 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -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: '); diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index 86c6f2d1..6929e29a 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -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: '); diff --git a/templates/2k11/admin/serendipity_editor.js.tpl b/templates/2k11/admin/serendipity_editor.js.tpl index 747af1f3..8c6b1096 100644 --- a/templates/2k11/admin/serendipity_editor.js.tpl +++ b/templates/2k11/admin/serendipity_editor.js.tpl @@ -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);