From 389d4ea5bd95d72538587e33b2732037c5088199 Mon Sep 17 00:00:00 2001 From: pewgeuges <73141620+pewgeuges@users.noreply.github.com> Date: Sun, 1 Nov 2020 05:41:22 +0000 Subject: [PATCH] Files ready for urgent bugfix v2.0.4, please check, test, release if OK git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2410551 b8457f37-d9ea-0310-8a92-e5e31aec5664 --- class/config.php | 92 +++++--- class/dashboard/subpage-main.php | 42 +++- class/init.php | 181 +++++++-------- class/settings.php | 9 +- class/task.php | 12 +- class/template.php | 208 +++++++++--------- css/public.css | 202 +++++++++-------- css/settings.css | 63 ++++-- footnotes.php | 4 +- languages/de_AT.mo | Bin 9510 -> 9489 bytes languages/de_AT.po | 32 +-- languages/de_DE.mo | Bin 9510 -> 9489 bytes languages/de_DE.po | 28 +-- languages/en_GB.mo | Bin 9197 -> 9194 bytes languages/en_GB.po | 20 +- languages/en_US.mo | Bin 9189 -> 9186 bytes languages/en_US.po | 16 +- languages/es_ES.mo | Bin 9689 -> 9692 bytes languages/es_ES.po | 16 +- languages/footnotes.mo | Bin 611 -> 593 bytes languages/footnotes.pot | 10 +- languages/fr_FR.mo | Bin 9915 -> 9921 bytes languages/fr_FR.po | 16 +- readme.txt | 11 +- .../public/reference-container-body.html | 2 +- 25 files changed, 553 insertions(+), 411 deletions(-) diff --git a/class/config.php b/class/config.php index d996170..617f63d 100644 --- a/class/config.php +++ b/class/config.php @@ -5,6 +5,8 @@ * @filesource * @author Stefan Herndler * @since 1.5.0 12.09.14 10:56 + * + * Last edited for v2.0.4 2020-11-01T0452+0100 */ @@ -16,39 +18,63 @@ */ class MCI_Footnotes_Config { - /** - * Internal Plugin name. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_PLUGIN_NAME = "footnotes"; + /** + * Internal Plugin name. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + const C_STR_PLUGIN_NAME = "footnotes"; - /** - * Public Plugin name. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_PLUGIN_PUBLIC_NAME = 'footnotes'; + /** + * Public Plugin name. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + * + * edited classes for v2.0.4 + */ + const C_STR_PLUGIN_PUBLIC_NAME = ''; - /** - * Html tag for the LOVE symbol. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_LOVE_SYMBOL = ''; + /** + * Public Plugin name for dashboard heading + * + * After properly displaying in dashboard headings until WPv5.4, the above started + * in WPv5.5 being torn apart as if the headline was text-align:justify and not + * the last line. That ugly display bug badly affected the plugin’s communication. + * The only working solution found so far is using position:fixed in one heading + * that isn’t translated, and dropping the logo in another, translatable heading. + * + * @since 2.0.4 + * @var string + */ + const C_STR_PLUGIN_HEADING_NAME = 'footnotes'; - /** - * Short code to DON'T display the 'LOVE ME' slug on certain pages. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_NO_LOVE_SLUG = '[[no footnotes: love]]'; -} \ No newline at end of file + /** + * Html tag for the LOVE symbol. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + const C_STR_LOVE_SYMBOL = ''; + + /** + * HTML code for the 'love' symbol used in dashboard heading + * + * @since 2.0.4 + * @var string + */ + const C_STR_LOVE_SYMBOL_HEADING = ''; + + /** + * Short code to DON'T display the 'LOVE ME' slug on certain pages. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + const C_STR_NO_LOVE_SLUG = '[[no footnotes: love]]'; +} diff --git a/class/dashboard/subpage-main.php b/class/dashboard/subpage-main.php index d3b9f08..8904a33 100644 --- a/class/dashboard/subpage-main.php +++ b/class/dashboard/subpage-main.php @@ -5,6 +5,8 @@ * @filesource * @author Stefan Herndler * @since 1.5.0 14.09.14 14:47 + * + * Edited for v2.0.4 2020-11-01T0509+0100 */ /** @@ -72,17 +74,23 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine { * @author Stefan Herndler * @since 1.5.0 * @return array + * + * Edited for v2.0.4 to reflect changes in display since WPv5.5 + * Details in class/config.php */ protected function getMetaBoxes() { return array( + // Change string "%s styling" to "Footnotes styling": + $this->addMetaBox("settings", "styling", __("Footnotes styling", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Styling"), $this->addMetaBox("settings", "reference-container", __("References Container", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "ReferenceContainer"), - $this->addMetaBox("settings", "styling", sprintf(__("%s styling", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), MCI_Footnotes_Config::C_STR_PLUGIN_PUBLIC_NAME), "Styling"), - $this->addMetaBox("settings", "love", MCI_Footnotes_Config::C_STR_PLUGIN_PUBLIC_NAME . ' ' . MCI_Footnotes_Config::C_STR_LOVE_SYMBOL, "Love"), + // Leave intact since this is not localized: + $this->addMetaBox("settings", "love", MCI_Footnotes_Config::C_STR_PLUGIN_HEADING_NAME . ' ' . MCI_Footnotes_Config::C_STR_LOVE_SYMBOL_HEADING, "Love"), $this->addMetaBox("settings", "other", __("Other", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Other"), + // This is restored to meet user demand for arrow symbol semantics: + $this->addMetaBox("customize", "hyperlink-arrow", __("Hyperlink symbol in the Reference container", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "HyperlinkArrow"), $this->addMetaBox("customize", "superscript", __("Superscript layout", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Superscript"), $this->addMetaBox("customize", "mouse-over-box", __("Mouse-over box", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "MouseOverBox"), - $this->addMetaBox("customize", "custom-css", __("Add custom CSS to the public page", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "CustomCSS"), $this->addMetaBox("expert", "lookup", __("WordPress hooks to look for Footnote short codes", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "lookupHooks"), @@ -360,6 +368,34 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine { echo $l_obj_Template->getContent(); } + /** + * Displays all settings for the prepended symbol + * + * @author Stefan Herndler + * @since 1.5.0 + * + * Edited heading for v2.0.4 + * The former 'hyperlink arrow' became 'prepended arrow' in v2.0.3 after + * a user complaint about missing backlinking semantics of the footnote number. + */ + public function HyperlinkArrow() { + // load template file + $l_obj_Template = new MCI_Footnotes_Template(MCI_Footnotes_Template::C_STR_DASHBOARD, "customize-hyperlink-arrow"); + // replace all placeholders + $l_obj_Template->replace( + array( + "label-symbol" => $this->addLabel(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW, __("Hyperlink symbol", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)), + "symbol" => $this->addSelectBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW, MCI_Footnotes_Convert::getArrow()), + + "label-user-defined" => $this->addLabel(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW_USER_DEFINED, __("or enter a user defined symbol", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)), + "user-defined" => $this->addTextBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW_USER_DEFINED), + "comment" => __("if set it overrides the hyperlink symbol above", MCI_Footnotes_Config::C_STR_PLUGIN_NAME) + ) + ); + // display template with replaced placeholders + echo $l_obj_Template->getContent(); + } + /** * Displays the custom css box. * diff --git a/class/init.php b/class/init.php index b249557..b58a0af 100644 --- a/class/init.php +++ b/class/init.php @@ -1,16 +1,18 @@ /** * Entry point of the Plugin. Loads the Dashboard and executes the Task. @@ -20,91 +22,98 @@ */ class MCI_Footnotes { - /** - * Reference to the Plugin Task object. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var null|MCI_Footnotes_Task - */ - public $a_obj_Task = null; + /** + * Reference to the Plugin Task object. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var null|MCI_Footnotes_Task + */ + public $a_obj_Task = null; - /** - * Executes the Plugin. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - public function run() { - // register language - MCI_Footnotes_Language::registerHooks(); - // register Button hooks - MCI_Footnotes_WYSIWYG::registerHooks(); - // register general hooks - MCI_Footnotes_Hooks::registerHooks(); - - // initialize the Plugin Dashboard - $this->initializeDashboard(); - // initialize the Plugin Task - $this->initializeTask(); - - // Register all Public Stylesheets and Scripts - add_action('init', array($this, 'registerPublic')); - // Enqueue all Public Stylesheets and Scripts - add_action('wp_enqueue_scripts', array($this, 'registerPublic')); - // Register all Widgets of the Plugin. - add_action('widgets_init', array($this, 'initializeWidgets')); - } + /** + * Executes the Plugin. + * + * @author Stefan Herndler + * @since 1.5.0 + */ + public function run() { + // register language + MCI_Footnotes_Language::registerHooks(); + // register Button hooks + MCI_Footnotes_WYSIWYG::registerHooks(); + // register general hooks + MCI_Footnotes_Hooks::registerHooks(); + + // initialize the Plugin Dashboard + $this->initializeDashboard(); + // initialize the Plugin Task + $this->initializeTask(); + + // Register all Public Stylesheets and Scripts + add_action('init', array($this, 'registerPublic')); + // Enqueue all Public Stylesheets and Scripts + add_action('wp_enqueue_scripts', array($this, 'registerPublic')); + // Register all Widgets of the Plugin. + add_action('widgets_init', array($this, 'initializeWidgets')); + } - /** - * Initializes all Widgets of the Plugin. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - public function initializeWidgets() { - register_widget("MCI_Footnotes_Widget_ReferenceContainer"); - } + /** + * Initializes all Widgets of the Plugin. + * + * @author Stefan Herndler + * @since 1.5.0 + */ + public function initializeWidgets() { + register_widget("MCI_Footnotes_Widget_ReferenceContainer"); + } - /** - * Initializes the Dashboard of the Plugin and loads them. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - private function initializeDashboard() { - new MCI_Footnotes_Layout_Init(); - } + /** + * Initializes the Dashboard of the Plugin and loads them. + * + * @author Stefan Herndler + * @since 1.5.0 + */ + private function initializeDashboard() { + new MCI_Footnotes_Layout_Init(); + } - /** - * Initializes the Plugin Task and registers the Task hooks. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - private function initializeTask() { - $this->a_obj_Task = new MCI_Footnotes_Task(); - $this->a_obj_Task->registerHooks(); - } + /** + * Initializes the Plugin Task and registers the Task hooks. + * + * @author Stefan Herndler + * @since 1.5.0 + */ + private function initializeTask() { + $this->a_obj_Task = new MCI_Footnotes_Task(); + $this->a_obj_Task->registerHooks(); + } - /** - * Registers and enqueue scripts and stylesheets to the public pages. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - public function registerPublic() { - - // Add jQueryUI following @vonpiernik : - wp_register_script( 'jQueryUI', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', null, null, true ); - wp_enqueue_script( 'jQueryUI' ); - - // IMPORTANT: current version number for cache busting: - wp_enqueue_style('mci-footnotes-css-public', plugins_url('../css/public.css', __FILE__), '', '2.0.3'); - // add the jQuery plugin (already registered by WordPress) - wp_enqueue_script('jquery'); - - // Finish adding jQueryUI: - wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__), ['jQueryUI']); - } + /** + * Registers and enqueues scripts and stylesheets to the public pages. + * + * @author Stefan Herndler + * @since 1.5.0 + * + * Updated for v2.0.0 by adding jQueryUI following vonpiernik (@vonpiernik). + * See + * + * jQueryUI re-enables the tooltip infobox disabled when WPv5.5 was released. + */ + public function registerPublic() { + + // Add jQueryUI: + wp_register_script( 'jQueryUI', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', null, null, true ); + wp_enqueue_script( 'jQueryUI' ); + + // IMPORTANT: up-to-date plugin version number for cache busting. + wp_enqueue_style('mci-footnotes-css-public', plugins_url('../css/public.css', __FILE__), '', '2.0.4'); + wp_enqueue_style('mci-footnotes-css-settings', plugins_url('../css/settings.css', __FILE__), '', '2.0.4'); + + // add the jQuery plugin (already registered by WordPress) + wp_enqueue_script('jquery'); + + // Finish adding jQueryUI: + wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__), ['jQueryUI']); + } } diff --git a/class/settings.php b/class/settings.php index fa984d3..5305237 100644 --- a/class/settings.php +++ b/class/settings.php @@ -5,6 +5,8 @@ * @filesource * @author Stefan Herndler * @since 1.5.0 14.09.14 10:43 + * + * Edited for v2.0.4 2020-11-01T0333+0100 */ @@ -372,7 +374,10 @@ class MCI_Footnotes_Settings { self::C_STR_REFERENCE_CONTAINER_NAME => 'References', self::C_BOOL_REFERENCE_CONTAINER_COLLAPSE => '', self::C_STR_REFERENCE_CONTAINER_POSITION => 'post_end', - self::C_BOOL_COMBINE_IDENTICAL_FOOTNOTES => 'yes', + // Identical footnotes should not be combined by default + // as long as the feature raises criticism for malfunctioning: + // + self::C_BOOL_COMBINE_IDENTICAL_FOOTNOTES => '', self::C_STR_FOOTNOTES_SHORT_CODE_START => '((', self::C_STR_FOOTNOTES_SHORT_CODE_END => '))', self::C_STR_FOOTNOTES_SHORT_CODE_START_USER_DEFINED => '', @@ -581,4 +586,4 @@ class MCI_Footnotes_Settings { register_setting($this->getContainer($i), $this->getContainer($i)); } } -} \ No newline at end of file +} diff --git a/class/task.php b/class/task.php index 736d8cb..4629814 100644 --- a/class/task.php +++ b/class/task.php @@ -6,10 +6,10 @@ * @author Stefan Herndler * @since 1.5.0 * + * Edited for v2.0.0 and following. + * Last modified 2020-11-01T0342+0100 */ -/* -Last modified: 2020-10-29T1402+0100 -*/ + // If called directly, abort: defined( 'ABSPATH' ) or die; @@ -309,10 +309,8 @@ class MCI_Footnotes_Task { * @return string */ public function search($p_str_Content, $p_bool_ConvertHtmlChars, $p_bool_HideFootnotesText) { - // prepare prepending post ID to make footnote IDs unique wrt archive view: - $id_underscore = get_the_id(); - $id_underscore .= '_'; - self::$a_str_Prefix = $id_underscore; + // prepare prepending post ID to make footnote IDs unique wrt archive view: + self::$a_str_Prefix = get_the_id() . '_'; // contains the index for the next footnote on this page $l_int_FootnoteIndex = count(self::$a_arr_Footnotes) + 1; // contains the starting position for the lookup of a footnote diff --git a/class/template.php b/class/template.php index a8366cc..cc47091 100644 --- a/class/template.php +++ b/class/template.php @@ -5,8 +5,10 @@ * @filesource * @author Stefan Herndler * @since 1.5.0 14.09.14 10:58 + * + * Last modified: 2020-11-01T0347+0100 */ -// Last modified: 2020-10-29T0805+0100 + /** * Handles each Template file for the Plugin Frontend (e.g. Settings Dashboard, Public pages, ...). @@ -17,114 +19,114 @@ */ class MCI_Footnotes_Template { - /** - * Directory name for dashboard templates. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_DASHBOARD = "dashboard"; + /** + * Directory name for dashboard templates. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + const C_STR_DASHBOARD = "dashboard"; - /** - * Directory name for public templates. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - const C_STR_PUBLIC = "public"; + /** + * Directory name for public templates. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + const C_STR_PUBLIC = "public"; - /** - * Contains the content of the template after initialize. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - private $a_str_OriginalContent = ""; + /** + * Contains the content of the template after initialize. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + private $a_str_OriginalContent = ""; - /** - * Contains the content of the template after initialize with replaced place holders. - * - * @author Stefan Herndler - * @since 1.5.0 - * @var string - */ - private $a_str_ReplacedContent = ""; + /** + * Contains the content of the template after initialize with replaced place holders. + * + * @author Stefan Herndler + * @since 1.5.0 + * @var string + */ + private $a_str_ReplacedContent = ""; - /** - * Class Constructor. Reads and loads the template file without replace any placeholder. - * - * @author Stefan Herndler - * @since 1.5.0 - * @param string $p_str_FileType Template file type (take a look on the Class constants). - * @param string $p_str_FileName Template file name inside the Template directory without the file extension. - * @param string $p_str_Extension Optional Template file extension (default: html) - */ - public function __construct($p_str_FileType, $p_str_FileName, $p_str_Extension = "html") { - // no template file type and/or file name set - if (empty($p_str_FileType) || empty($p_str_FileName)) { - return; - } - // get absolute path to the specified template file - $l_str_TemplateFile = dirname(__FILE__) . "/../templates/" . $p_str_FileType . "/" . $p_str_FileName . "." . $p_str_Extension; - // Template file does not exist - if (!file_exists($l_str_TemplateFile)) { - return; - } - // get Template file content - $this->a_str_OriginalContent = str_replace("\n", "", file_get_contents($l_str_TemplateFile)); - $this->a_str_OriginalContent = str_replace("\r", "", $this->a_str_OriginalContent); - $this->a_str_OriginalContent = str_replace("\t", " ", $this->a_str_OriginalContent); - $this->a_str_OriginalContent = str_replace(" ", " ", $this->a_str_OriginalContent); - $this->reload(); - } + /** + * Class Constructor. Reads and loads the template file without replace any placeholder. + * + * @author Stefan Herndler + * @since 1.5.0 + * @param string $p_str_FileType Template file type (take a look on the Class constants). + * @param string $p_str_FileName Template file name inside the Template directory without the file extension. + * @param string $p_str_Extension Optional Template file extension (default: html) + */ + public function __construct($p_str_FileType, $p_str_FileName, $p_str_Extension = "html") { + // no template file type and/or file name set + if (empty($p_str_FileType) || empty($p_str_FileName)) { + return; + } + // get absolute path to the specified template file + $l_str_TemplateFile = dirname(__FILE__) . "/../templates/" . $p_str_FileType . "/" . $p_str_FileName . "." . $p_str_Extension; + // Template file does not exist + if (!file_exists($l_str_TemplateFile)) { + return; + } + // get Template file content + $this->a_str_OriginalContent = str_replace("\n", "", file_get_contents($l_str_TemplateFile)); + $this->a_str_OriginalContent = str_replace("\r", "", $this->a_str_OriginalContent); + $this->a_str_OriginalContent = str_replace("\t", " ", $this->a_str_OriginalContent); + $this->a_str_OriginalContent = preg_replace('# +#', " ", $this->a_str_OriginalContent); + $this->reload(); + } - /** - * Replace all placeholders specified in array. - * - * @author Stefan Herndler - * @since 1.5.0 - * @param array $p_arr_Placeholders Placeholders (key = placeholder, value = value). - * @return bool True on Success, False if Placeholders invalid. - */ - public function replace($p_arr_Placeholders) { - // no placeholders set - if (empty($p_arr_Placeholders)) { - return false; - } - // template content is empty - if (empty($this->a_str_ReplacedContent)) { - return false; - } - // iterate through each placeholder and replace it with its value - foreach($p_arr_Placeholders as $l_str_Placeholder => $l_str_Value) { - $this->a_str_ReplacedContent = str_replace("[[" . $l_str_Placeholder . "]]", $l_str_Value, $this->a_str_ReplacedContent); - } - // success - return true; - } + /** + * Replace all placeholders specified in array. + * + * @author Stefan Herndler + * @since 1.5.0 + * @param array $p_arr_Placeholders Placeholders (key = placeholder, value = value). + * @return bool True on Success, False if Placeholders invalid. + */ + public function replace($p_arr_Placeholders) { + // no placeholders set + if (empty($p_arr_Placeholders)) { + return false; + } + // template content is empty + if (empty($this->a_str_ReplacedContent)) { + return false; + } + // iterate through each placeholder and replace it with its value + foreach($p_arr_Placeholders as $l_str_Placeholder => $l_str_Value) { + $this->a_str_ReplacedContent = str_replace("[[" . $l_str_Placeholder . "]]", $l_str_Value, $this->a_str_ReplacedContent); + } + // success + return true; + } - /** - * Reloads the original content of the template file. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - public function reload() { - $this->a_str_ReplacedContent = $this->a_str_OriginalContent; - } + /** + * Reloads the original content of the template file. + * + * @author Stefan Herndler + * @since 1.5.0 + */ + public function reload() { + $this->a_str_ReplacedContent = $this->a_str_OriginalContent; + } - /** - * Returns the content of the template file with replaced placeholders. - * - * @author Stefan Herndler - * @since 1.5.0 - * @return string Template content with replaced placeholders. - */ - public function getContent() { - return $this->a_str_ReplacedContent; - } + /** + * Returns the content of the template file with replaced placeholders. + * + * @author Stefan Herndler + * @since 1.5.0 + * @return string Template content with replaced placeholders. + */ + public function getContent() { + return $this->a_str_ReplacedContent; + } } // end of class diff --git a/css/public.css b/css/public.css index c6a34df..427f06d 100755 --- a/css/public.css +++ b/css/public.css @@ -4,169 +4,187 @@ * Created-Date: 15.05.14 * Created-Time: 16:21 * Since: 1.0 - * Version: 2.0.3 - * Last modified: 2020-10-29T1343+0100 + * Version: 2.0.4 + * Last modified: 2020-11-01T0536+0100 */ -/* footnote tags */ + +/* MCI Footnotes logo + * + * The classes with 'heading' fix display in dashboard + * See class/config.php and css/settings.css + */ -.footnote_tag_styling, -.footnote_tag_styling:hover { +.footnotes_logo, +.footnotes_logo:hover, +.footnotes_logo_heading { text-decoration: none; font-weight: normal; } -.footnote_tag_styling_1 { +.footnotes_logo_part1, +.footnotes_logo_part1_heading { color: #2bb975; } -.footnote_tag_styling_2 { +.footnotes_logo_part2, +.footnotes_logo_part2_heading { color: #545f5a; } -/* superscript footnote anchors */ +/* Inline footnote referrers + * aka superscript footnote anchors + * + * Class footnote_plugin_tooltip_text is the referrer and surroundings + */ .footnote_plugin_tooltip_text { - vertical-align: top !important; - position: relative !important; - top: 0.6em !important; - cursor: pointer; - z-index: 1; + vertical-align: top !important; + position: relative !important; + top: 0.6em !important; + cursor: pointer; + z-index: 1; } .footnote_plugin_tooltip_text { - display: inline-block; - text-decoration: none; + display: inline-block; + text-decoration: none; } .footnote_plugin_tooltip_text:hover { - text-decoration: underline; + text-decoration: underline; } /* tooltip infobox */ span.footnote_tooltip { - font-size: inherit; - text-align: left; - z-index: 99; + font-size: inherit; + text-align: left; + line-height: 1.2em; + z-index: 99; } .continue { - font-style: italic; - color: green; + font-style: italic; + color: green; + text-decoration: none !important; } .continue:hover { - color: blue; - text-decoration: underline; + color: blue; + text-decoration: underline !important; } -/* reference container */ +/* Footnotes reference container + */ .footnote-reference-container { - width: 100%; - border: none; -} -.footnote_container_prepare { - display: block !important; - padding-top: 24px !important; -} -#footnote_references_container td { - padding: none; + width: 100%; + border: none; } /* label */ +.footnote_container_prepare { + display: block !important; + padding-top: 24px !important; + margin-bottom: -5px; +} .footnote_container_prepare > p { - line-height: 1.3 !important; - margin-top: 1em !important; - margin-bottom: 0.25em !important; - padding: 0 !important; - font-weight: normal !important; - overflow: hidden !important; - border-bottom: 1px solid #aaaaaa !important; - display: block !important; - -webkit-margin-before: 0.83em !important; - -webkit-margin-after: 0.83em !important; - -webkit-margin-start: 0px !important; - -webkit-margin-end: 0px !important; - text-align: left !important; - vertical-align: middle; + line-height: 1.3 !important; + margin-top: 1em !important; + margin-bottom: 0.25em !important; + padding: 0 !important; + font-weight: normal !important; + overflow: hidden !important; + border-bottom: 1px solid #aaaaaa !important; + display: block !important; + -webkit-margin-before: 0.83em !important; + -webkit-margin-after: 0.83em !important; + -webkit-margin-start: 0px !important; + -webkit-margin-end: 0px !important; + text-align: left !important; + vertical-align: middle; } .footnote_container_prepare > p > span:first-child { - text-align: left !important; - font-size: 1.5em !important; + text-align: left !important; + font-size: 1.5em !important; } /* collapse button */ #footnote_reference_container_collapse_button { - cursor: pointer; + cursor: pointer; } .footnote_container_prepare > p > span:last-child a { - text-decoration: none; + text-decoration: none; } .footnote_container_prepare > p > span:last-child a:hover { - text-decoration: underline; - color: #008800; + text-decoration: underline; + color: #008800; } /* footnotes */ .footnote_plugin_index, .footnote_plugin_text { - border:none !important; - text-align: left; - vertical-align: top; + border:none !important; + text-align: left; + vertical-align: top; + padding: 10px 3px 5px 0; } .footnote_plugin_index a, .footnote_plugin_text a { - text-decoration: none; + text-decoration: none; } .footnote_plugin_index a:hover, .footnote_plugin_text a:hover { - text-decoration: underline !important; + text-decoration: underline !important; } .footnote_plugin_index { - cursor: pointer; - overflow-wrap: unset; - word-wrap: unset; - word-wrap: normal !important; - word-break: unset; - word-break: keep-all !important; - white-space: nowrap; - max-width: 140px; - overflow: hidden; + cursor: pointer; + overflow-wrap: unset; + word-wrap: unset; + word-wrap: normal !important; + word-break: unset; + word-break: keep-all !important; + white-space: nowrap; + max-width: 140px; + overflow: hidden; } @media only screen and (max-width: 768px) { - .footnote_plugin_index { - max-width: 100px; - } + .footnote_plugin_index { + max-width: 100px; + } } -/* printing style */ +/* Footnotes printing style rules + * + * Printing a table, browsers tend to avoid page breaks, + * but it takes a wrapper to avoid a page break before the table + */ .footnote_container_overall_wrapper { - page-break-inside: avoid; + page-break-inside: avoid; } .footnote_container_prepare { - page-break-after: avoid; + page-break-after: avoid; } table.footnote_reference_container td { - display: block; + display: block; } table.footnote_reference_container { - page-break-before: avoid; - page-break-inside: auto; + page-break-before: avoid; + page-break-inside: auto; } table.footnote_reference_container tr { - page-break-before: auto; + page-break-before: auto; } @media print { - .footnote_tooltip, - .footnote_reference_container_collapse_button_outfit, - .footnote_plugin_index_arrow { - display: none; - } - .footnote_plugin_tooltip_text { - color: inherit; - } - .footnote_plugin_index a { - color: inherit; - text-decoration: none !important; - } - div.post-meta-edit-link-wrapper { /*hides the Edit button in WP2020*/ - display: none; /*(added as a service)*/ - } + .footnote_tooltip, + .footnote_reference_container_collapse_button_outfit, + .footnote_plugin_index_arrow { + display: none; + } + .footnote_plugin_tooltip_text { + color: inherit; + } + .footnote_plugin_index a { + color: inherit; + text-decoration: none !important; + } + div.post-meta-edit-link-wrapper { /*hides the Edit button in WP2020*/ + display: none; /*(added as a service)*/ + } } diff --git a/css/settings.css b/css/settings.css index 7e1b0f9..7d86001 100755 --- a/css/settings.css +++ b/css/settings.css @@ -1,42 +1,73 @@ /** * Created by Stefan Herndler. * User: Stefan - * Date: 15.05.14 - * Time: 16:21 - * Version: 1.0-beta + * Created-Date: 15.05.14 + * Created-Time: 16:21 * Since: 1.0 + * Version: 2.0.4 + * Last modified: 2020-11-01T0415+0100 */ + +/* MCI Footnotes logo + * + * The classes with 'heading' fix display in dashboard + * See class/config.php and css/public.css + */ + + .postbox-header { + position: relative; + padding: 0 20px; +} +.footnotes_logo_heading { + display: inline-block; + float: left; + position: absolute; +} +.footnotes_logo_part1_heading { + left: 20px; +} +.footnotes_logo_part2_heading { + left: 51px; +} +.footnotes_heart_heading { + color:#ff6d3b; + font-weight:bold; + position: absolute; + left: 96px; +} + + input[type=text], input[type=password], textarea, select { - padding-left: 8px !important; - padding-right: 8px !important; - width: 80% !important; + padding-left: 8px !important; + padding-right: 8px !important; + width: 80% !important; } textarea { - height: 250px; + height: 250px; } label { - display: inline-block; + display: inline-block; } .postbox > h3 { - height: 32px !important; - line-height: 32px !important; + height: 32px !important; + line-height: 32px !important; } .postbox > h3 > span { - padding-left: 10px; + padding-left: 10px; } .postbox > .inside > table { - border: none !important; + border: none !important; } .postbox > .inside >table > tbody > tr > td:first-child { - width: 15% !important; - font-weight: bold !important; + width: 15% !important; + font-weight: bold !important; } .footnote_placeholder_box_container { @@ -57,5 +88,5 @@ span.footnote_highlight_placeholder { width: 50% !important; display: block !important; margin: 20px auto !important; - text-align: center !important; -} \ No newline at end of file + text-align: center !important; +} diff --git a/footnotes.php b/footnotes.php index 2207b02..d527fa8 100755 --- a/footnotes.php +++ b/footnotes.php @@ -4,7 +4,7 @@ Plugin URI: https://wordpress.org/plugins/footnotes/ Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine. Author: Mark Cheret - Version: 2.0.3 + Version: 2.0.4 Author URI: http://cheret.de/plugins/footnotes-2/ Text Domain: footnotes Domain Path: /languages @@ -25,7 +25,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -// Last modified: 2020-10-29T1405+0100 + /** * @filesource * @author Stefan Herndler diff --git a/languages/de_AT.mo b/languages/de_AT.mo index 68895cb8f4cb0caec51e814e63b6041ebe3cdefd..eb423fd9c2932720bbfcda5fd7aecf4d0bfe37c3 100644 GIT binary patch delta 2554 zcmYk-YfMx}7{>8gP*@a15JA}@N5BipU7+`g-~=4N>G#v@par!XJC!(6fef*Z|`^$HQ6-w(~*TAB?iWDF5fTWG`x#rF_Wh}I2kjr8i~~`MuwPH z%)_;~2>Wq1ev0dH1XHkrhl$P9WkiixO{0;Hc07P>_yaD(Qqon#12`4;p(Z|pTJU?E zg1?~>NXm@QmxBd-w^0kej;Z(->bZlcz(0u6ASg48&*0|?uc3D44)QTc>|YUPqsG@I zY(myHt1t;S;w7=EB1*malSdGu2 zwsvbm2lf0})c8wSgV#}sr1D2QkdKvEgdAJoU_nD|fYB8PlO=F^C#b^h&6t(4js0Vf;v6wfo z3=g3uxQH5e6_wdf32&hSy^AH7!7HMKYEV1WfI9o-n9llUH4Q#y1Ak6(h#}O(Gq_p0 zM0Kdk*nv&>K5D|7sByod7JP^;n8QugTd)BYa0GQ!M^Q)m6+VwQF{+LdURrHY9V)VR zREC|Xg?dms(T|n*3i2_>`J>Bt87&+^jlYM=^q+)o-dX*gg-W0XYcS$r|C?zH)1fWA zjaukFF2`ijYQ#3wxVLdBUPXd8Ic!fMR^S3$iMo74sGT{C3^l{J3NPV2oXpMBI<3># ze`UOm4rSs+?u`i|$7fzcVljsj#*n1U*Qg18$C>yD^;{v*XyJLNon4A!a1GAFE}V;d zQS+aO(olrw6CFRIZuLFX5u{l0t;|Mc=0OEI2erVns4Z_n1=4{Ea1ZKEy@v|)IBLgE zV?Bx9n?ZqMe%?ZqApo8D)VmC#M@B`e1b`M8XNE| z>InZr1+P#OG!+R6td&VtnZ`TA)GwUVlMbe~id)BlTh zRfU()v{L6f@1*8U%~cmg3lX5%LRBSzi|^gkK`J-XWIFwBkE_KQa(mKrD^yaP6YjkE$+WavDvRTo zg_xaai%rxq)EU&-RFyf-V|Qhi{wL8j?xL=sdYp!|yl$P2E_*XoMVqL*yHsB&e(E-A zCzTg+wCEjB(H(84zC>-K>S_k4oW%>T7D8jNH7OMceINK0D&GLyf+EuRl<+d7wYmntRI?TR7#4tFrIH*+FZ0pGX7gr^Ewq)Z9%W?-4^!m^xK1B ztJiObY-`!mnPdB{^{$-rXZ-!vI)AUv4xc}6`E2If;yj+-?QANlPbzP54i#OS#E2!q j(B>_HNGN1^gI2E{baoVXX3*bZ`$@8o@MAZMSGxWMTs=S9 delta 2594 zcmZA2eQXp(7{~D`(Dq7Oc`3Be0$utdFQu=PCM|6sls2Ul5U3>-0-U|&dUCf{?nR+$ zE{ZWhYJ{xOU^Iqkh~dRZ8q`04s5KCLMU6%@!DvD#i3Vac5r~Q3U%U8+lbieO&CSj{ z^UUnsk1E_uxd;kY=J|4uGcoIwTBP_)0 zn2#pgm@X*5sTe@DC$mjzY``HJrqgf~r{O8D;{~kX^H(?z?_oL?5=9YOn2XIwtfmv` zV!E*acVRQ`!-aSjd+{1(U}J8|7=kn_8Ra2di(U8{cH&KJ!+MshhzD^t9zhL!5;fr{ z&cZ)Yh2nR~pIU^e+v|0>Vr z$egAFC*T%bfW4m2AZsuuJU>8X@FMEI)aP6%qMuNEd;@3TZRBOr*$;KhNA)YmTC7E- zw9j)0b^lpZ{|i`$U!WGEH)S9XtFZ{#(v(@t#bz2F#TvYT+LBwi81JI?vOI4*LoKL& zy~x<+5KhF`u?mmjBD{iH`CZi3`B;@c7o!$Zi8;(~8oh@0u?Ax{p;EpRbwd=1!90aa z@GxqC^QeB8Q7gOZ`3q_*Z(1ksRA%1C4R{HcVgV;l2g zJb)ViOo|KLc+qS45p}9>p;Dh_ji)ddwbFc4pf#uoT2QH8kIQf?D!>;}XX*qh&<|1f ze~Aq^iV8ec%n!Iy-j4OS9v9&O+=8cZC8n2*Pt=Y|?MBq$+J#!cKGeWNs0EDR1pE$L z@CVe^oKk{wgZqo2chMuWUT9 zRjBcLQHO9hD!?c%!Q=RV9?);8O5v}l8-7Pka0ivj>~gm$v#?Py?WI;z_4Nj-%EWR0 zdsmDq%Jv#+hx8C21>F)W=f^tp2gL=O_%tbSGvDXm9Quj_~ae5Y4 zmOIy1TB+ltqGLpE#~vshEfx06Y^TPk93(T@ zl@*@LQCoVy?BqiK89Fb@v`U5hkFR=K23I;|TdC`)bKI7!f}oCverHxwRrCO9hgV&Y&H3{C)k8 z+o8BMn6w7$SUl?Z!=ZS{j@iy|Y2kAdhcC|kK5cpr-}n=QmU=S)!?>r47rEDpTV{2I z;t87pWB(h_U1-%W**$VDW;w~2^;k4wwc8F|W2`A)Jz~fE`eP$+IeWNyRm=`0?BV@Z zZ`#a~P{i623Iy#$iDi=^n_I%}jrrR%h$-m=-PV$Z30A-RM9DY4v1kHz#NAceGtD2d R+MK|6B%8;^8!26%_AlXsM$!NP diff --git a/languages/de_AT.po b/languages/de_AT.po index 9b9b791..e599ead 100755 --- a/languages/de_AT.po +++ b/languages/de_AT.po @@ -1,10 +1,12 @@ # Copyright (C) 2014 # This file is distributed under the same license as the package. msgid "" -msgstr "Project-Id-Version: footnotes\nReport-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n" +msgstr "" +"Project-Id-Version: footnotes\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n" "POT-Creation-Date: 2014-10-18 20:57+0100\n" -"PO-Revision-Date: 2020-10-25T2210+0100\n" -"Last-Translator: Stefan Herndler \n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: SHE \n" "Language: de_AT\n" "MIME-Version: 1.0\n" @@ -122,12 +124,12 @@ msgstr "Kurzanleitung" #: class/dashboard/subpage-main.php:78 msgid "References Container" -msgstr "Liste der Einzelnachweise" +msgstr "Fußnotenliste" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "%s Design" +msgid "Footnotes styling" +msgstr "Fußnoten-Basiseinstellungen" #: class/dashboard/subpage-main.php:81 msgid "Other" @@ -147,7 +149,7 @@ msgstr "Benutzerdefinierten CSS Code zu den veröffentlichten Seiten hinzufügen #: class/dashboard/subpage-main.php:88 msgid "WordPress hooks to look for Footnote short codes" -msgstr "WordPress hooks in welchen nach Fußnoten gesucht wird" +msgstr "WordPress-Hooks in welchen nach Fußnoten gesucht wird" #: class/dashboard/subpage-main.php:90 msgid "Brief introduction in how to use the plugin" @@ -159,11 +161,11 @@ msgstr "Helfen Sie bei der weiteren Entwicklung des Plugins" #: class/dashboard/subpage-main.php:104 msgid "in the footer" -msgstr "am Ende der Seite" +msgstr "im Seitenfuß" #: class/dashboard/subpage-main.php:105 msgid "at the end of the post" -msgstr "nach dem Beitrag" +msgstr "im Anschluss an den Beitrag" #: class/dashboard/subpage-main.php:106 msgid "in the widget area" @@ -179,7 +181,7 @@ msgstr "Zunächst zusammengeklappt" #: class/dashboard/subpage-main.php:120 msgid "Where shall the reference container appear" -msgstr "Positionierung" +msgstr "Position" #: class/dashboard/subpage-main.php:139 class/dashboard/subpage-main.php:239 #: class/dashboard/subpage-main.php:290 @@ -339,11 +341,11 @@ msgstr "Pixel; negativer Wert für Linksversatz" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Senkrechter Versatz" +msgstr "Senkrechter Versatz abwärts" #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "Pixel; negativer Wert für Versatz nach unten" +msgstr "Pixel; negativer Wert für Aufwärtsversatz" #: class/dashboard/subpage-main.php:329 msgid "Color" @@ -391,7 +393,7 @@ msgstr "Maximalbreite" #: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." -msgstr "Pixel; 0 für nur vom Fensterrand beschränkte Breite" +msgstr "Pixel; 0 deaktiviert diese Einstellung" #: class/dashboard/subpage-main.php:353 msgid "Box shadow color" @@ -407,7 +409,7 @@ msgstr "Benutzerdefinierter CSS Code" #: class/dashboard/subpage-main.php:378 msgid "Available CSS classes to customize the footnotes and the reference container" -msgstr "Verfügbare CSS Klassen um die Fußnoten und den Einzelnachweis zu personalisieren" +msgstr "Verfügbare CSS Klassen für Fußnotenanker, Infobox und Fußnotenliste" #: class/dashboard/subpage-main.php:381 msgid "superscript, Footnotes index" @@ -482,7 +484,7 @@ msgstr "%sWeiterlesen%s" #: class/widgets/reference-container.php:49 #: class/widgets/reference-container.php:61 msgid "The widget defines the position of the reference container if set to \"widget area\"." -msgstr "Das Widget definiert die Position der Einzelnachweise wenn \"im Widget\" eingestellt ist." +msgstr "Das Widget definiert die Position der Einzelnachweise wenn »im Widget« gewählt ist." #~ msgid "inline footnotes" #~ msgstr "Fußnoten Index im veröffneltichten Text" diff --git a/languages/de_DE.mo b/languages/de_DE.mo index 6323ef2f3ad4e5569913cc9975037143e514eac5..04f12a327d34d9a6155d6a9e24a36011f96d2542 100755 GIT binary patch delta 2554 zcmYk-YfMx}7{>8gP*@a15JA}@N5BipU7+`g-~=4N>G#v@par!XJC!(6fef*Z|`^$HQ6-w(~*TAB?iWDF5fTWG`x#rF_Wh}I2kjr8i~~`MuwPH z%)_;~2>Wq1ev0dH1XHkrhl$P9WkiixO{0;Hc07P>_yaD(Qqon#12`4;p(Z|pTJU?E zg1?~>NXm@QmxBd-w^0kej;Z(->bZlcz(0u6ASg48&*0|?uc3D44)QTc>|YUPqsG@I zY(myHt1t;S;w7=EB1*malSdGu2 zwsvbm2lf0})c8wSgV#}sr1D2QkdKvEgdAJoU_nD|fYB8PlO=F^C#b^h&6t(4js0Vf;v6wfo z3=g3uxQH5e6_wdf32&hSy^AH7!7HMKYEV1WfI9o-n9llUH4Q#y1Ak6(h#}O(Gq_p0 zM0Kdk*nv&>K5D|7sByod7JP^;n8QugTd)BYa0GQ!M^Q)m6+VwQF{+LdURrHY9V)VR zREC|Xg?dms(T|n*3i2_>`J>Bt87&+^jlYM=^q+)o-dX*gg-W0XYcS$r|C?zH)1fWA zjaukFF2`ijYQ#3wxVLdBUPXd8Ic!fMR^S3$iMo74sGT{C3^l{J3NPV2oXpMBI<3># ze`UOm4rSs+?u`i|$7fzcVljsj#*n1U*Qg18$C>yD^;{v*XyJLNon4A!a1GAFE}V;d zQS+aO(olrw6CFRIZuLFX5u{l0t;|Mc=0OEI2erVns4Z_n1=4{Ea1ZKEy@v|)IBLgE zV?Bx9n?ZqMe%?ZqApo8D)VmC#M@B`e1b`M8XNE| z>InZr1+P#OG!+R6td&VtnZ`TA)GwUVlMbe~id)BlTh zRfU()v{L6f@1*8U%~cmg3lX5%LRBSzi|^gkK`J-XWIFwBkE_KQa(mKrD^yaP6YjkE$+WavDvRTo zg_xaai%rxq)EU&-RFyf-V|Qhi{wL8j?xL=sdYp!|yl$P2E_*XoMVqL*yHsB&e(E-A zCzTg+wCEjB(H(84zC>-K>S_k4oW%>T7D8jNH7OMceINK0D&GLyf+EuRl<+d7wYmntRI?TR7#4tFrIH*+FZ0pGX7gr^Ewq)Z9%W?-4^!m^xK1B ztJiObY-`!mnPdB{^{$-rXZ-!vI)AUv4xc}6`E2If;yj+-?QANlPbzP54i#OS#E2!q j(B>_HNGN1^gI2E{baoVXX3*bZ`$@8o@MAZMSGxWMTs=S9 delta 2594 zcmZA2d2EzL7{~D`(2KTm6k2G3zVwiz^rSRtX#=6ODW!lwEuj#gc3-wDyYH4g6sl&U z7!#yM$ZIqhjUgIhIE-Y2`UeoT27)JQG@=Pc6GBNe5Tl7eO#J?~FaF_VXFu=G&O7tW zGxP2q={nwZxI8i07;`4um|Q%E)p!{j@o#Lv8aid657jS(58yD)$AdT%PhuHCe9na;`U$niH*f~tMqVbJ{ZPjORKE(W!#Y$- z2Ruhm_n$@ezkv1l1!^IBQwH*}28)p`O_;S@Y^LE+ti=ncExCn@@h)mFEAq!P)QalY zhm36w;Y55LtMM2v!Yini-$iX*7OT?d64XMfFqipFlh@FZYA|LKD&;#-H-wQG%u~1o z52FS+kLq_BwX&<8zo54ACYECckA@ahiONtTYVTKIF7ul;T<|izynW0j22mYqI8mCQ z33Zs(pbn!SSK(>Yz_(HT?x7~m;e>YLLR9AVq5?mN+OqdhTl+I6HgR#=YiQ%4RjPVW z0qjAoG>)3+X;el=um)d6UglHYbSST*g@2&>=ktte#q&HDpuVp~Ens6Y`LE~VB^p-a zB~&VNS%xN>fgM;KqZbTifU8n`@Lk&EFTEHky!0)gX ze?VP^^ zLXFplI)uAX0fuo29>)jtfPPC=3V%i2@H=XPJE&CVRJhHVMNNunFSUlMuQyOtCXVyp zyJA#Pw%1TQ-4`+oXDd}Int*Z5AXU*!ch6@QR%rSi)cfUOE?TIIy#_y)xpy*4(zCg; z+__n0RXR>8I!5F+^+4%psjz2eJ2gV(AepIdD62TlxCgU}vkUmFlIfn#Dr}m>6+auP zvchvYYD@2zom}WYL+3@AR;hIV$*P%_!Ie(gR_Z$H9Je*Q(68g6-(y zvYz_-x`xWyy4u>w-Tl#6RZpbfi3a;);YhQ!IcD$fcdSl3;`oAg#A=DghlawD*vdh# zr8*q(Cs!1VrDa;H?P$R7B+F-ANo$UWEMLI3I^v^mIN_M>SaHW^`LI3U4BJ7ce_-%& zI}o*oBes()D|&8X^5Wd@)28?GO@D0IQf~%e8241kBKKNJ>#XiT zG-fkk\n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: SHE \n" "Language: de_DE\n" "MIME-Version: 1.0\n" @@ -124,12 +124,12 @@ msgstr "Kurzanleitung" #: class/dashboard/subpage-main.php:78 msgid "References Container" -msgstr "Liste der Einzelnachweise" +msgstr "Fußnotenliste" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "%s Design" +msgid "Footnotes styling" +msgstr "Fußnoten-Basiseinstellungen" #: class/dashboard/subpage-main.php:81 msgid "Other" @@ -149,7 +149,7 @@ msgstr "Benutzerdefinierten CSS Code zu den veröffentlichten Seiten hinzufügen #: class/dashboard/subpage-main.php:88 msgid "WordPress hooks to look for Footnote short codes" -msgstr "WordPress hooks in welchen nach Fußnoten gesucht wird" +msgstr "WordPress-Hooks in welchen nach Fußnoten gesucht wird" #: class/dashboard/subpage-main.php:90 msgid "Brief introduction in how to use the plugin" @@ -161,11 +161,11 @@ msgstr "Helfen Sie bei der weiteren Entwicklung des Plugins" #: class/dashboard/subpage-main.php:104 msgid "in the footer" -msgstr "am Ende der Seite" +msgstr "im Seitenfuß" #: class/dashboard/subpage-main.php:105 msgid "at the end of the post" -msgstr "nach dem Beitrag" +msgstr "im Anschluss an den Beitrag" #: class/dashboard/subpage-main.php:106 msgid "in the widget area" @@ -181,7 +181,7 @@ msgstr "Zunächst zusammengeklappt" #: class/dashboard/subpage-main.php:120 msgid "Where shall the reference container appear" -msgstr "Positionierung" +msgstr "Position" #: class/dashboard/subpage-main.php:139 class/dashboard/subpage-main.php:239 #: class/dashboard/subpage-main.php:290 @@ -341,11 +341,11 @@ msgstr "Pixel; negativer Wert für Linksversatz" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Senkrechter Versatz" +msgstr "Senkrechter Versatz abwärts" #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "Pixel; negativer Wert für Versatz nach unten" +msgstr "Pixel; negativer Wert für Aufwärtsversatz" #: class/dashboard/subpage-main.php:329 msgid "Color" @@ -393,7 +393,7 @@ msgstr "Maximalbreite" #: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." -msgstr "Pixel; 0 für nur vom Fensterrand beschränkte Breite" +msgstr "Pixel; 0 deaktiviert diese Einstellung" #: class/dashboard/subpage-main.php:353 msgid "Box shadow color" @@ -409,7 +409,7 @@ msgstr "Benutzerdefinierter CSS Code" #: class/dashboard/subpage-main.php:378 msgid "Available CSS classes to customize the footnotes and the reference container" -msgstr "Verfügbare CSS Klassen um die Fußnoten und den Einzelnachweis zu personalisieren" +msgstr "Verfügbare CSS Klassen für Fußnotenanker, Infobox und Fußnotenliste" #: class/dashboard/subpage-main.php:381 msgid "superscript, Footnotes index" @@ -484,7 +484,7 @@ msgstr "%sWeiterlesen%s" #: class/widgets/reference-container.php:49 #: class/widgets/reference-container.php:61 msgid "The widget defines the position of the reference container if set to \"widget area\"." -msgstr "Das Widget definiert die Position der Einzelnachweise wenn \"im Widget\" eingestellt ist." +msgstr "Das Widget definiert die Position der Einzelnachweise wenn »im Widget« gewählt ist." #~ msgid "inline footnotes" #~ msgstr "Fußnoten Index im veröffneltichten Text" diff --git a/languages/en_GB.mo b/languages/en_GB.mo index 99d379d952ec7a7dd04ce5914802bd93f00eb002..76261f503f36d36c7645a93473d82b1bf24d71dd 100755 GIT binary patch delta 2436 zcmX}tZBSHI9LMp)DzYMvDNg~i38b*F?h;ZE42T(l5S9-US>h5KV6aQO*I{~GOJ3NZ zP0hZ^aT?%7FD$3Dt!5k_-e_Z^zGyOgVFNWa(~u60Q&W>QJ$!%c#XI}o&%JlgJ@=gd z{~VZayV3SmSv1WUb8@*c9z2J2IFGehmTHU>dr2OcwT_?(aqQ_u2{*HFt6HCO5Ki+HM#}H`f<%HQvHx%;c#;%)xZ@A!9YoNE6eJ zdAI``aRk@l`}ibY#bxN>Va8@Qq(_Zu`ynbbmywT|3B>bdAgoM=SnP_@2`#W;cZkqC)4!d zDpYD8whf`4e+Sim8f)+bY9c?PGVlkk$A6L1MvaGGw{fEjy*Q1k%~x27GpL$6S0*y# zLbYo``Y=IUg8R{f<5+=l)XZm4CA?{0JD8m&l7(r!-xS$5Di&_AC{QVHMRo8vG6u5; zt1yDKbfLE8C^8l^ft@&oQKfL66OH&k)QpR0 ztpQb{UeJPS*M)BEMY3roP??xSz3>Cn^A}Mwyk`IY9lE%_iP}ABG`C^m*jhN1!(||fq+ixddT00ghgNN+>Vd~>_n-z8Le=^uRPDx513rRkKaFa40#*AnNYczKvMkJBsOML@677qy zhHE!!aYlD@q7DzB_T>aJICC1e;dRt@^U%9W(~IhGFDf$;Tv!XJc9W=?eTmwZKcEMH zLT$?&R-^{ljASxuc5$LqhEX%wk4ohs`}&A|{T@2F|1qllr>Jdt9+lE>a4kAY6Wg*9 zHL(WUR(yc#4lKt5n5utU#|X{n6IAWbq6TmgwF|zE)u$BJYiQ3C%25{4P3UkWxbuCl zeWv8M6YkjIl)M7186C=CCoxFW5!tb`{HnL^CR7j|I|wc3ir9RLJ6U5Zi4{9bwSX25 z<(qVxR$}p{i}R<5FroTo#zvflNsq+da2EDx7CN-#14I?!Ba{XmO9<6cM{@%6AS%6! zM=vK!iCSWveX}z5k8^!AnJX>L9-@m-bvFuDn8p|v36uA0BW5F?hxIbdLt-(O}POI3K dl7T!c z^FRNSool(>@@82)!x-~Hx-nV!33~A>^y58Thc$F^V*u4}02kxSxC+NH7vINH{1jK< zP0T}+X-pgB<5CQu+D9@?eBptw(~v{M349EvoQ@ZEw~Lgqm9qtEb0M;Ojje`gM~PNYJU~= z!pm5I-{Vfag+;i2N#aF&(ZzKas(%PI;NdtY48|P6mH3+Dd#H?DMm}biuM+$N)jxwg z%6#NqrVNvDEmol4u@jkt8FPFGmBG`f`{I+FXhi2xYy3Gb$8V93xxtq@&ZGJzu|9Q} zjY?^wV;}1Nw^030q7ToYCUOmxfxoZ@|3#KGZYub-orY$t#gnKd`35WTDrzm0mL)P& zi0bD@o?$|`2uIP2NAO9ULe2atYUzG=uJ5BJlFlr%c)!WzL=7bi4Lk&u@(rj5Y(vIi zI&ck!QT+zbWU0kMZ&K8H?D8x*?N_ zQnBTsW>$+ku?wHav#19?MAd?u&PshQYFn0}c1bg;c6w0T@+dMUa|+{aoXl{dR3`JQ zM!p<1^E%YP8c{FUjq2BfRTx9EX-=Us@*(Plmr(a#L(O!~`TZ_hT&t6I&ngf3U&~1+ z4O{SS)V}-?m4RPT+i?yX(aY#`9l?!w4z;#-kY^hgd#(XXPy^~hKIQ;l%G|hf{WI!4 z_ln5B*6twGcH0EU!`Lc>V^AIGdzgA+r&}*Cmhe9mf|DSw!DJX_@(1N zs7#i{ixWlUNA1gI)QxSZ0qsYvaR{|$L#P2CMfE#|>NkN;<0O(Sa|0<0^8j^!o|Wid zj6SZtsN#%wbD{^1q4wo*WN_vpw&QiwcB`YJv?M*K2M(Yza|l%f$5H)Gqh|I4YFpk! zFWy3J%K|D<18hPv88@ArD3v3qnY@BZnTF3^Vk1HAQGf=TU2a2{nMPQPn?d*SkFRYB@+KN1ERbLdT*6|9>Yt zXKX3+9MNhYbLAH*Q#v%kHlmO46FK$;epOyO2@OlfZbD^TY2S8LrD{x;UF0sU*7S6! z5SXoLB2-m6NUwQ;h!U*1S!xfsJxRtMcY8Wiu{xBFAhCw1Bc331q!20=9gPXh2GqJf zI=VPffvzL8jykIB2kx4FB932i!6g-T83x|(>F(4i_=LTuIrM?Z0Z z*h8oSN&mv;g@w(%7xxoe39VO{=+>WFd7MjgHfwtcw}g3FdEy`=d^eSqoHX}-k(YCN6$J}a46ND zU)(!=x2Pm3B`|n6Viy#9)69+-_t;&\n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: SHE \n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -126,12 +128,12 @@ msgstr "References Container" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "%s styling" +msgid "Footnotes styling" +msgstr "Footnotes main settings" #: class/dashboard/subpage-main.php:81 msgid "Other" -msgstr "Other" +msgstr "Other settings" #: class/dashboard/subpage-main.php:83 msgid "Superscript layout" @@ -339,11 +341,11 @@ msgstr "pixels; negative value for a leftwards offset" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Vertical offset" +msgstr "Vertical offset downwards" #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "pixels; negative value for a downwards offset" +msgstr "pixels; negative value for a upwards offset" #: class/dashboard/subpage-main.php:329 msgid "Color" @@ -391,7 +393,7 @@ msgstr "Maximum width" #: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." -msgstr "pixels; 0 for limiting the width only by the window edge" +msgstr "pixels; 0 to disable this setting" #: class/dashboard/subpage-main.php:353 msgid "Box shadow color" diff --git a/languages/en_US.mo b/languages/en_US.mo index 10253acb8af39963bf3f2a2b19c9efb4652861c3..41fc3d1eac5581ad8171370277c7650d70747198 100644 GIT binary patch delta 2444 zcmX}te@xVM9LMnwD01@apg^D#x%iAfP{V&w?QBfb zgW0ImK4=+4J^vc2{S?;V2dIhsjLN`2SdF)krHvRD-*!^bj&7Vnt<5D|jaN`>YP&O@ zAt$O`6VitX;36DD7mi~&#!xfAf?C4gt#Tr>(?l{cjrW`7Rz>-I1)Bnu@@7;Ak04_( zPhus8P#sL7+MPnp>{HA0sHMDsCHNa^LKz$tWhfuD_C=V+`%NV`{F!<_rdh-e)MiUy zXK6+b+=iQRD;`I6bPcr!ZlF@Ghjc9Ms8ixW?U{Deu^dLmVvb-NPGW>*HFMl(#J5l# zI%ur{m7&UOQSG*11@1z!X%3@i_6F*OCr}wXhnnFcw5Cnfj4;oBgQv$1LAMEy*;pqULj~!gHt$ z{)yVW1(Cw|T34eUXtmsl8c-i(qT0WUI+mwVDg72#;Z4-B zEaDeQ6RWXo!22jSV<{fM6#Z;X5t`8{)Y^Z98o*i9DYy`=Pj=L6XwMMJk5R78&^=jLnA=u!sTh<>7u$clc(w|eUngcd|s7tu(RN9U3&k~Fr$Xo0O* z8)*JgzDei&kyxm7Qr<<35L!QbbjapNcqsa!&C#t{=+c(=5tW38P#SbCBD9ve*2OXR zqtd%@?dE1NQA?Crm8+xw*{UN+l(aRwiFQKUZw=8v=+J3bkjnW*(*iv}=+eQ}7T%}= z*8nj{>>xOf^Z&YZwsi52$?PN^CpHsWSU=&_ubCDrc6zBh$sP;`f?;3C84B<74+Q$6 zV+8}ThwU#fsr6L3J=@)NH8mA(kK3Kn<_(3bwvTuNA-^{q9BFVi4*N#?e0%$Rq4j-3 z-T}Ysso+qoblKH}SYF;>QqDrZd=+qpeBm&ihhk#|M-meE4oB^Uu6$>2a5OOL9qA33 rj&Q$kJRyjPT&`DTfvA)}Af<9)B-BLhUbw8wMK9M8HN5K& zak^@`hks;iqgKnN6~?Ik5Lae@G~29}TIcV`uk!U(a*ydCqgr z_nZS)o31szRu<1N#+*twCJRra7r(?>{0CQI4UJqFK(*_|9DD&Ez{8l2CvY)-hDCS{ z3(#a5(*kbH#Q>^)f2N7gb@(zBc~l(3d-0^x@C;UQe*y2u+n9<)jKYH!W@7^~RdO5w~F>_M++!pzkS%KN8 zl&*ISp`JgAYCnp8d>1v5pHLb28*A_uvZQfS!LO}UY(^iBqL$=5F2hTxwM<%&$WS4w zT`kgw>Bf0Dh+Z7RN<4|0`6blS{p#G`MolE0S!VHmlh1`JO6Mx*1eNkNs1CLwV=(Qw z9K)#g$58FwM$K%}aSFARUtk$tMNKG;BccrDq1N7mS-jtrbHT^>`8vxYHlrTMWJhVU z6`*G3!)@4!kKs6~!&%f`aM4()&qp20GSn&AjM_VUP{;BhGA1*I@fI#7xnOxsGQVo% z3s4>UPy<`*+_$3I?ZPVDhh)>djvDYO)C*6eGWR`drq@v!n??)&MV+2v5BXooMF&r9 z!dFq}@;g+AKjOo99oJzcqtkr|)xinW+TK9=G_y{95ob>?d~^ldY)?Oi%uUquIaZ>* z8~xlbL2b@>I~VHk0P0*0BZD&^VJlulA6BxXv?Lv<4uh!7L{NKR7}ahRHM8@mWBD_B z@e1l#=CTttzU7JgmR?$Jx-|1OYr}9 zvUA0eGLI0=_A6=bLS;%t6Ko+uL@kkLPw}hrx|7hbRGuUnh-LPlX;rBjlVumX7FTO} zD%uFla_%T-SE-O*^9&IsSaXwW_qseu#y;%wv}?zzC>=p!IkAFRLa3w=+AJ#T6PPuq zb-i0UxzGk(MQ9yWs_Z+inz#;<^3+Z|O6WYSCh7?tI_(N=HEq|W#706zyFd%IK{u2h z;yI#?&<-U1bB7n^4)+dxn%F{Uy~4z9{Xx=hFy;MLe{3+^6X~89Pxqxx%;emhpYE&n z*KYUw{dM+qzPr3N7VO#`v6_R?NFW@HS`GdC_wMbB#u`ITjkhn_J>e<1k>tAD*M|!u zsrF1x*Tf&irAaA)zJZ9HTjI5k=Qi3$ORBwHeNiji)7ul{wN@+?v<7+tv5?gl2@hI( T2A!G+k6FP$cW~ljNp{MA7\n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: SHE \n" "Language: en_US\n" "MIME-Version: 1.0\n" @@ -128,12 +128,12 @@ msgstr "References Container" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "%s styling" +msgid "Footnotes styling" +msgstr "Footnotes main settings" #: class/dashboard/subpage-main.php:81 msgid "Other" -msgstr "Other" +msgstr "Other settings" #: class/dashboard/subpage-main.php:83 msgid "Superscript layout" @@ -341,11 +341,11 @@ msgstr "pixels; negative value for a leftwards offset" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Vertical offset" +msgstr "Vertical offset downwards" #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "pixels; negative value for a downwards offset" +msgstr "pixels; negative value for a upwards offset" #: class/dashboard/subpage-main.php:329 msgid "Color" @@ -393,7 +393,7 @@ msgstr "Maximum width" #: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." -msgstr "pixels; 0 for limiting the width only by the window edge" +msgstr "pixels; 0 to disable this setting" #: class/dashboard/subpage-main.php:353 msgid "Box shadow color" diff --git a/languages/es_ES.mo b/languages/es_ES.mo index 99b5372519d89a332104f43541d9dce1abbacd14..033fde7058846b2eb62bd2f237b04f4a1cb09d73 100644 GIT binary patch delta 2350 zcmYk-du)?c7{~F`&90qvl)+eGbz9xWWo&F~vrTtF=9mkGa)|hTX*ZW4%C=f ziI)Tt2=XTK*9aseEE*C?y~N-&X5e4b7$6#T7~_R#B05b__ygnj*S$-8)6>s+&)&;< z&hwn^>#eg}PgJBl#+Zw_#?;_P*oe2V9xLuQ#*JO5>$-6`mQO`TP$fV3tI>#Bv$Fuf@X{_S>GM3;RI?>Breq4@u7)0i3HX@gp zF#2#ew&D=3#W(ROyoNbg!_CaiG~}g>*-593fe5~iTkt!43@Zs&Gfv=2d=2&BGpHBd zz!mr_Du68S{PPO1nDZFwg)gHEkD~57iJJK76dfjICh-A$*Y+xEW&S`uCX4ke!= zA4V;0zpaJ3|3lRES1^RvQGvMl(h3w|EtVmvO_|5(Ji)*y*5MUYZvMt~=vX$N(`wWT zb)c?`BF{D_F&oce4NhVueuawMK{QIC7j?cG6-YgLc)w}02exGfs8ZCDKZCmA5Hc6@ z3RdGO)B`S~uKNNN+4r`;pe8zp6`02sQ9vQo3T;5;z7svX-|VEr$2`r~6iG~?wo#DE zQX~<45)Yw@^mEh;{ZynTQjRLlTE2o9M&17cY65Sdw(BKSAU80KbC^=Dnz>rrCX70d zqN;bqK0l6%bON=+7m(o0to`>tk!NN0CaZ3W*rO`a8rv3B@ovTz9Kc8Lyr1=dj?PU6 zRFwxt@tMUPZlU zvV`?lPTpZakx!v=GlMFcFHsM=W$P}T&uuxXHrkMPn(e5i9kj<&*ueQQ)V7?)hwxK- z{9jZ6^{K%8Pv>^j1IJKH{SqpY6Q~JIpsM{mD)%3tBKrijL6_nV*rY7zh6V6k!RfnD?Nz z2? z3H*p!!Mmsw=MYs0y{IB?N3Z^EjndH#hfzy;3N^#Gkez0xttOYhN#!z1tEFjLJ7_vI zrT-tR?GxP@rd3(TT)vf>s1E%O@JiE1(`w{fQ!d}COgNk^9J}eX(kktNUM#cjx=Ni2 zq|_>Qmn$WiLo+62ndC1F1~}hG8>3OU#%m3^{f^Dn5w|~Ak?P2?F1US7+4K~vj*atV zsz3=?I1bRckH&Ij7Fy%$tb6X-d?!7ntc$jd=C?NF`u63~TSM!h>BwwE+>|*pCXNHN zJv8kd9jYK5+7l7lUYa(nN_UV(4l~J2U&`I(^d`oK6XUUDAUXd0V0^eY?eX5p$qlZr z3+}3G427(`LSI4aNbK3(*umadvaNS08Xv6bNerdKg?~BHkrj8GOCIe%nA8)xr_Uzi mJ&9y`Q^{?Ib8IZ$9kp5mAy1$$+7pikqTSK{M0z+d;QS9q=<6E* delta 2366 zcmX}tZA@EL9LMp)SZNs`j45R+4^`GFvO=kVmWMIjgFG3HFqq5?J6ahG3Tv5}gju7B z34z5eH7-tlvBV|noN+cYd*Sfmg-Ud8`eKo2%%(9LuQX=5r)d2C%AF@Y{oH#w_ug~< z|NkjJwa>R7SRG$xj5(2MOg4Uul{klWcnxc?ia`zxp~j8iZ8(8<;uPM2$FK}P!&Uej z7NE&8rURUqhauGUJy|B6df*Hf^11LDF30z*fwNe_`B^N%n`pyT%)*6k%)v%vuBHtc zV!F_YPhlhO#e481_TtZ&fq|U3F-+2|=P8e2J9gk3*oF(Z32RucW;}r_@gVBK$51c4 zjD>gw^_-ksV~TM*>P3@i#}`rKr%@9=6z71+m?Kz(?^}M2ipXW;V{Y&FDu|jxXWu_y_VaHu9l?1*mZztj20o zNc$~kQ1_oijh{t7orMdSe4F8Q48^6Ht#n9>%!*L1!EpZg}e`S!zeNbvk%we z0n`IdqsGmlRyJ>W5tYgXT#XrQ4K1hw6`?v*?wc{2_nTG@_?T|Kz9osnsL(f1QQAfw zs1*%h4<1An=>qD-byTD#v<_9AZG2T@2zCFfsEM3FZP)Xt1zp2AZJob^TJb4VsJ}uMX|7s-&t^~ZOyfeLZfa4*+G^R2D&l@@z?WRae;o&(b73#0 z5jR!m1ZqXkqqg6S<@dOm^Fn5&>wTyf9z|9CCs>1*P%kc`!kC*WM{Vbgs0qA`dj5wc z#9uj?<$@ycB`P=PQAKkB^?<9E`K61w^`dH{4SAQ@iVEp7*7Yf@<@^w8Tb{xD@f>P` z4)@~3o8lZO\n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: Pablo Laguna \n" "Language: es_ES\n" "MIME-Version: 1.0\n" @@ -126,8 +128,8 @@ msgstr "Sección de notas" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "Apariencia de %s" +msgid "Footnotes styling" +msgstr "Ajustes básicos" #: class/dashboard/subpage-main.php:81 msgid "Other" @@ -339,11 +341,11 @@ msgstr "en pixels; valor negativo para desplazar a la izquierda" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Desplazamiento vertical" +msgstr "Desplazamiento vertical hacia abajo" #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "en pixels; valor negativo para desplazar hacia abajo" +msgstr "en pixels; valor negativo para desplazar hacia arriba" #: class/dashboard/subpage-main.php:329 msgid "Color" diff --git a/languages/footnotes.mo b/languages/footnotes.mo index e50005192cbb4cfbdbca33bd1de246d00d70b15e..e57c1777376d68df280d7563db63d9709f8ce605 100644 GIT binary patch delta 73 zcmaFNa*<_%3ZwW$)fE;-2D*lZx(0?J24+S^+6IOO23$Ug#U;8SMTvREIf*6tMOF$n c1*zrfsior=OmWo7g;F;m!zg8<|%lj7UiYnq!uaI Z6qgnh\n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: enter your name \n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -126,7 +128,7 @@ msgstr "" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" +msgid "Footnotes styling" msgstr "" #: class/dashboard/subpage-main.php:81 diff --git a/languages/fr_FR.mo b/languages/fr_FR.mo index a3840db611405b45065854098f9954c6bff6504a..16754331080f5e7f25708ca8e0293dc78ae4038e 100644 GIT binary patch delta 2356 zcmYk-TTEO<9LMol=(3AlSZFER7LeuEN}&`8ASeVvtC0#Vp%kUm>b6}MDhn;U#WW^v zYKA>x+0RUPC8(c`FZBVFuP9V>PYF zBc=m=xD%T(jJM(IxC<9C4Xb#Wv6=dem@(Zn+PKk)&*4`53h%;lrmGQ;;u?Gk_2ILq z4!^|J_!DXZDc-r9$8audg2&-`(wKg|!13FeF*R&E9 zp)IKA0?4<`B&OmNR^c?3;}@uzJD81@(2KfWhnh$odg$M@**CfpH^@>{$R9?%FpiAH zJc*U~Jn91%QO_-)X7-KkkEnrO!&1y(i)cc%s0g*7*8Xnv(7)-X!C@ZYG|M7JP#u<$ zSz60RRQ5iEO42!0hi)=b1IR*!)Q^fxH)@w0MMdOA)OS8XEzNb@kE!g{m^vDy!C@Zb zq=B44&EO6D`VuOHU!yv>f!b#4>4hkpR`lZzlCG}A~Q<{WB(3)qd{VHwsJ zCL=gdNc`2|K5npFW(2i1$51mqiA>f^* z*oY^v0q0Q>{3k|3KczXGv=j}ftnRQKK+PzOTI(aIB$}|VCsEJ8iud9<)bE5&OxBd3 zCe)6kjp;-!K@gP_vDauQnLfrgTttN^haYr>{tnbOJdKLb`=|k3M$O<`jG4Wt8Cjbh3h`lK>F?bBd8yuCr};C zpdxh{o%lT}Vn3roe;wCh1*dHN+v-U)*b=tmsN^}0N49`B!N=`|ax zYkI32YHO{GTwhM}!Qi8z;Neg((iRE_hK8&5jfUeLxj#7KZL4R}R(1!*0^yIQqhow! rf6%`-5D8iyZ%@3r@I%M4!NB3Dw>J8vGlpv4T!+>_hb%#npHaH{lUni*s0v7q9?t zU_P1*W7@!jIoOAKKAB-+$rn!ZU=0tBV=kVuJI!P~e4t68pQd=S^;Tc{V$p$5E# z>+mnsd$O{PDa3uKfexVyr%?Tmq9*)qj0Tf2CvgLww*3Ybkz2^mEOU7PGl-x1m)q7M zW1416#l83tcH16C)?hxgJ%@_m0_yK#muYB5S5Y~>iTC3l$j>;)hdSn?`uVUDD^VeR z!FC$;_h(W4=dlW}pcbNwB9Mm_=tWW*Gp#f_c`%FtoJXbPcYGL^P`UKwtwg9E)vp_Q zw>gSwcmm7uB$nd0sFg3FQs-t>x-UX4qzp3|-_+UAze}i<{b+j)mCD;#f=-Tx7UV}os0Nk$2Fzr9vy%otvxm!^?1ii{2OSLGRkfo zLLHYcP$65uz4#q=V<~597ru^9;rFP4wy=}5@+MSdUP7hlA~Kd)#16cJJ`5JEL~ef( z@z+4ZJRn_W5|x`bP%C{KS*)3}T|j>38W*iN#aj77u0=(#1(mwzke>;2(dL}NM=_3D z@iHoMsWHBv3UvYM1p(Bq-fp`awUPl;j-#keG-cmUqx#QcE1pJuCzg=KnnG^0pdhkc zOcN^fJ*d49J3&L6=qqf*E2t2y=0mQKSEG*M3@SpOq9(M6TESK1Pt2eA2P|C z*pKBnj5?ObQ4_hiV$A$RLm|6s>tuA@dr%?XY#YQ>?mJKu>9n5@qCP~2Py@V=iqs-H z@E26XZeR`mh7Y2TORoN1wIv&Tt8K?oo8~aG@63DgT9>z0AKe$J+GYy)6I2zg@&83r zRMEEFNo|h5>GG^sL{to~1^p+O0Y9QMWh6#E-bW>DtvQuJ}i8PwjoQlns@J6-*r} z@b^j&4F!^LBm=DH{`kM{id-ixZQiG;?bHqN`gG5LPP!8EI8{ZlR6@4vhB8DwK;1*t z7FFRKCyUOS4)8P77OE0ALM3O(FNyI*t?0xnBSYbV#K-AfjzoU;UFVKKS=H9As;bI> zKTsJ6tZM6xPLy>;dc)C?-ifiuV^-%xsJ}OCHHRYMzL8MG3PvZ#$HyWQjf3`+^0CN3 vq9Om+l$`dVXvhkMt^TpdXvp$K6D8|TITP16=B1|X?~TTnEq|hF(~RRk+_Lhj diff --git a/languages/fr_FR.po b/languages/fr_FR.po index effb7c3..baf814f 100755 --- a/languages/fr_FR.po +++ b/languages/fr_FR.po @@ -1,10 +1,12 @@ # Copyright (C) 2014 # This file is distributed under the same license as the package. msgid "" -msgstr "Project-Id-Version: footnotes\nReport-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n" +msgstr "" +"Project-Id-Version: footnotes\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n" "POT-Creation-Date: 2014-10-18 20:59+0100\n" -"PO-Revision-Date: 2020-10-25T2210+0100\n" -"Last-Translator: Stefan Herndler \n" +"PO-Revision-Date: 2020-11-01T0622+0100\n" +"Last-Translator: \n" "Language-Team: SHE \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" @@ -126,8 +128,8 @@ msgstr "Liste des notes" #: class/dashboard/subpage-main.php:79 #, php-format -msgid "%s styling" -msgstr "Mise en forme %s" +msgid "Footnotes styling" +msgstr "Paramètres de base" #: class/dashboard/subpage-main.php:81 msgid "Other" @@ -339,11 +341,11 @@ msgstr "pixels ; valeur négative pour décaler vers la gauche" #: class/dashboard/subpage-main.php:325 msgid "Offset Y (px)" -msgstr "Décalage vertical " +msgstr "Décalage vertical vers le bas " #: class/dashboard/subpage-main.php:327 msgid "Offset (Y axis) in px (may be negative)" -msgstr "pixels ; valeur négative pour décaler vers le bas" +msgstr "pixels ; valeur négative pour décaler vers le haut" #: class/dashboard/subpage-main.php:329 msgid "Color" diff --git a/readme.txt b/readme.txt index 2c3f4c9..321088e 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: footnote, footnotes, bibliography, formatting, notes, Post, posts, referen Requires at least: 3.9 Tested up to: 5.5 Requires PHP: 5.6 -Stable Tag: 2.0.3 +Stable Tag: 2.0.4 License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -80,9 +80,16 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest** == Changelog == += 2.0.4 = +- Update: Restored arrow settings to customize or disable the now prepended arrow symbol +- Bugfix: Reference container: layout: removed inconvenient left/right cellpadding +- Bugfix: Tooltip infobox: improved layout with inherited font size by lower line height +- Bugfix: Tooltip infobox: 'Continue reading' button: disabled default underline +- Bugfix: Fixed display of 2 dashboard headings + = 2.0.3 = - Bugfix: Layout: Self-adjusting width of ID column but hidden overflow -- Update: Prepended transitional up arrow to backlinking footnote numbers +- Update: Prepended transitional up arrow to backlinking footnote numbers after a user complaint about missing backlinking semantics of the footnote number - Bugfix: Fragment IDs: Prepended post ID to footnote number - Bugfix: Feed plugin version in style sheet query string for cache busting - Bugfix: Print style: Hide reference collapse button when printing diff --git a/templates/public/reference-container-body.html b/templates/public/reference-container-body.html index cd6a7d7..c48be48 100755 --- a/templates/public/reference-container-body.html +++ b/templates/public/reference-container-body.html @@ -1,4 +1,4 @@ - ↑ [[index]]. + [[arrow]] [[index]]. [[text]]