From 56a6264f0b35cf8802456edfba345124a57a17af Mon Sep 17 00:00:00 2001 From: Aricura Date: Sat, 18 Oct 2014 10:44:37 +0000 Subject: [PATCH] - **IMPORTANT**: Improved performance. You need to Activate the Plugin again. (Settings won't change!) - Add: Translation: United States - Add: Translation: Austria - Add: Translation: Spanish (many thanks to Pablo L.) - Update: Translations (de_DE and en_GB) - Update: Changed Plugins init file name to improve performance (Re-activation of the Plugin is required) - Bugfix: Avoid multiple IDs for footnotes when multiple reference containers are displayed git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@1009510 b8457f37-d9ea-0310-8a92-e5e31aec5664 --- class/hooks.php | 6 +- class/init.php | 30 +- class/task.php | 15 +- index.php => footnotes.php | 2 +- languages/de_AT.mo | Bin 0 -> 9887 bytes languages/de_AT.po | 568 +++++++++++++++++ languages/de_DE.mo | Bin 9148 -> 9887 bytes languages/de_DE.po | 134 ++-- languages/en_GB.mo | Bin 8774 -> 9439 bytes languages/en_GB.po | 134 ++-- languages/en_US.mo | Bin 0 -> 9439 bytes languages/en_US.po | 585 ++++++++++++++++++ languages/es_ES.mo | Bin 0 -> 8286 bytes languages/es_ES.po | 576 +++++++++++++++++ languages/footnotes.mo | Bin 610 -> 610 bytes languages/footnotes.pot | 140 +++-- readme.txt | 9 + templates/public/footnote.html | 4 +- .../public/reference-container-body.html | 4 +- templates/public/reference-container.html | 5 +- templates/public/tooltip.html | 4 +- 21 files changed, 2053 insertions(+), 163 deletions(-) rename index.php => footnotes.php (94%) create mode 100644 languages/de_AT.mo create mode 100755 languages/de_AT.po create mode 100644 languages/en_US.mo create mode 100755 languages/en_US.po create mode 100644 languages/es_ES.mo create mode 100644 languages/es_ES.po diff --git a/class/hooks.php b/class/hooks.php index 841c9e5..08aa338 100644 --- a/class/hooks.php +++ b/class/hooks.php @@ -22,9 +22,9 @@ class MCI_Footnotes_Hooks { * @since 1.5.0 */ public static function registerHooks() { - register_activation_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "activatePlugin")); - register_deactivation_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "deactivatePlugin")); - register_uninstall_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "uninstallPlugin")); + register_activation_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "activatePlugin")); + register_deactivation_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "deactivatePlugin")); + register_uninstall_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "uninstallPlugin")); } /** diff --git a/class/init.php b/class/init.php index f42ee5f..7b83541 100644 --- a/class/init.php +++ b/class/init.php @@ -45,14 +45,10 @@ class MCI_Footnotes { // initialize the Plugin Task $this->initializeTask(); - // Register all Public Stylesheets - add_action('init', array($this, 'registerPublicStyling')); - // Register all Public Scripts - add_action('init', array($this, 'registerPublicScripts')); - // Enqueue all Public Stylesheets - add_action('wp_enqueue_scripts', array($this, 'registerPublicStyling')); - // Enqueue all Public Scripts - add_action('wp_enqueue_scripts', array($this, 'registerPublicScripts')); + // 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')); } /** @@ -87,25 +83,15 @@ class MCI_Footnotes { } /** - * Registers and enqueue scripts to the public pages. + * Registers and enqueue scripts and stylesheets to the public pages. * * @author Stefan Herndler * @since 1.5.0 */ - public function registerPublicScripts() { + public function registerPublic() { + wp_enqueue_style('mci-footnotes-css-public', plugins_url('../css/public.css', __FILE__)); // add the jQuery plugin (already registered by WordPress) wp_enqueue_script('jquery'); - wp_enqueue_script('mci_footnotes_js_jquery_tools', plugins_url('../js/jquery.tools.min.js', __FILE__), array()); - } - - /** - * Registers and enqueue stylesheets to the public pages. - * - * @author Stefan Herndler - * @since 1.5.0 - */ - public function registerPublicStyling() { - wp_register_style('mci_footnotes_css_public', plugins_url('../css/public.css', __FILE__)); - wp_enqueue_style('mci_footnotes_css_public'); + wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__)); } } \ No newline at end of file diff --git a/class/task.php b/class/task.php index e5e6920..affe02a 100644 --- a/class/task.php +++ b/class/task.php @@ -34,6 +34,15 @@ class MCI_Footnotes_Task { */ public static $a_bool_AllowLoveMe = true; + /** + * Prefix for the Footnote html element ID. + * + * @author Stefan Herndler + * @since 1.5.8 + * @var string + */ + public static $a_str_Prefix = ""; + /** * Register WordPress Hooks to replace Footnotes in the content of a public page. * @@ -360,6 +369,7 @@ class MCI_Footnotes_Task { // fill the footnotes template $l_obj_Template->replace( array( + "id" => self::$a_str_Prefix . $l_str_Index, "index" => $l_str_Index, "text" => MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_FOOTNOTES_MOUSE_OVER_BOX_ENABLED)) ? $l_str_ExcerptText : "", "before" => MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_FOOTNOTES_STYLING_BEFORE), @@ -374,7 +384,7 @@ class MCI_Footnotes_Task { $l_int_OffsetX = intval(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_INT_FOOTNOTES_MOUSE_OVER_BOX_OFFSET_X)); $l_obj_TemplateTooltip->replace( array( - "index" => $l_str_Index, + "id" => self::$a_str_Prefix . $l_str_Index, "position" => MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_FOOTNOTES_MOUSE_OVER_BOX_POSITION), "offset-y" => !empty($l_int_OffsetY) ? $l_int_OffsetY : 0, "offset-x" => !empty($l_int_OffsetX) ? $l_int_OffsetX : 0 @@ -458,7 +468,7 @@ class MCI_Footnotes_Task { $l_obj_Template->replace( array( "index" => $l_str_FootnoteIndex, - "index-int" => MCI_Footnotes_Convert::Index($l_str_FirstFootnoteIndex, MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_FOOTNOTES_COUNTER_STYLE)), + "id" => self::$a_str_Prefix . MCI_Footnotes_Convert::Index($l_str_FirstFootnoteIndex, MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_FOOTNOTES_COUNTER_STYLE)), "arrow" => $l_str_Arrow, "text" => $l_str_FootnoteText ) @@ -481,6 +491,7 @@ class MCI_Footnotes_Task { // free all found footnotes if reference container will be displayed self::$a_arr_Footnotes = array(); + self::$a_str_Prefix = rand(1000, 9999) . "_"; return $l_obj_TemplateContainer->getContent(); } } \ No newline at end of file diff --git a/index.php b/footnotes.php similarity index 94% rename from index.php rename to footnotes.php index 1fd2666..3e466f1 100755 --- a/index.php +++ b/footnotes.php @@ -35,7 +35,7 @@ require_once(dirname(__FILE__) . "/includes.php"); // add Plugin Links to the "installed plugins" page -$l_str_plugin_file = 'footnotes/index.php'; +$l_str_plugin_file = 'footnotes/footnotes.php'; add_filter("plugin_action_links_{$l_str_plugin_file}", array("MCI_Footnotes_Hooks", "PluginLinks"), 10, 2); // initialize the Plugin diff --git a/languages/de_AT.mo b/languages/de_AT.mo new file mode 100644 index 0000000000000000000000000000000000000000..0994f363ae16121781cdbe51462d8f3510bad463 GIT binary patch literal 9887 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 literal 0 HcmV?d00001 diff --git a/languages/de_AT.po b/languages/de_AT.po new file mode 100755 index 0000000..eaed9cb --- /dev/null +++ b/languages/de_AT.po @@ -0,0 +1,568 @@ +msgid "" +msgstr "" +"Project-Id-Version: footnotes\n" +"POT-Creation-Date: 2014-10-18 12:40+0100\n" +"PO-Revision-Date: 2014-10-18 12:40+0100\n" +"Last-Translator: Stefan Herndler \n" +"Language-Team: SHE \n" +"Language: de_AT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.9\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" + +#: class/dashboard/init.php:151 +msgid "Take a look on other Plugins we have developed." +msgstr "Sehen Sie sich unsere weiteren WordPress Plugins an." + +#: class/dashboard/init.php:157 +msgid "Error loading other WordPress Plugins from Manfisher. Sorry!" +msgstr "Fehler beim Laden anderer WordPress Plugins von ManFisher!" + +#: class/dashboard/init.php:173 +msgid "Install now" +msgstr "Installieren" + +#: class/dashboard/init.php:174 +msgid "This Plugin is already installed and up to date." +msgstr "Das Plugin ist bereits installiert." + +#: class/dashboard/init.php:174 +msgid "Installed" +msgstr "bereits installiert" + +#: class/dashboard/init.php:193 +msgid "More Details" +msgstr "weitere Details" + +#: class/dashboard/init.php:194 +msgid "Last Updated" +msgstr "zuletzt aktualisiert" + +#: class/dashboard/init.php:249 +msgid "rating based on" +msgstr "Bewertung basierend auf" + +#: class/dashboard/init.php:249 +msgid "ratings" +msgstr "Bewertungen" + +#: class/dashboard/layout.php:241 +msgid "Settings saved" +msgstr "Einstellungen gespeichert" + +#: class/dashboard/subpage-diagnostics.php:48 +#: class/dashboard/subpage-diagnostics.php:60 +msgid "Diagnostics" +msgstr "Diagnose" + +#: class/dashboard/subpage-diagnostics.php:73 +msgid "Displays information about the web server, PHP and WordPress" +msgstr "Ausgabe von Informationen bezgl. des Webservers, PHP und WordPress" + +#: class/dashboard/subpage-diagnostics.php:110 +msgid "Server name" +msgstr "Servername" + +#: class/dashboard/subpage-diagnostics.php:113 +msgid "PHP version" +msgstr "PHP Version" + +#: class/dashboard/subpage-diagnostics.php:116 +msgid "User agent" +msgstr "User Agent" + +#: class/dashboard/subpage-diagnostics.php:119 +msgid "Max execution time" +msgstr "max. Ausführungsdauer" + +#: class/dashboard/subpage-diagnostics.php:120 +msgid "seconds" +msgstr "Sekunden" + +#: class/dashboard/subpage-diagnostics.php:122 +msgid "Memory limit" +msgstr "Speicherlimitierung" + +#: class/dashboard/subpage-diagnostics.php:125 +msgid "PHP extensions" +msgstr "PHP Erweiterungen" + +#: class/dashboard/subpage-diagnostics.php:128 +msgid "WordPress version" +msgstr "WordPress Version" + +#: class/dashboard/subpage-diagnostics.php:131 +msgid "Active Theme" +msgstr "Aktuelles Theme" + +#: class/dashboard/subpage-main.php:60 class/hooks.php:82 +msgid "Settings" +msgstr "Einstellungen" + +#: class/dashboard/subpage-main.php:61 +msgid "Customize" +msgstr "Personalisieren" + +#: class/dashboard/subpage-main.php:63 +msgid "Expert mode" +msgstr "Experten Modus" + +#: class/dashboard/subpage-main.php:65 +msgid "How to" +msgstr "Hilfe" + +#: class/dashboard/subpage-main.php:78 +msgid "References Container" +msgstr "Einzelnachweise" + +#: class/dashboard/subpage-main.php:79 +#, php-format +msgid "%s styling" +msgstr "%s Design" + +#: class/dashboard/subpage-main.php:81 +msgid "Other" +msgstr "Andere" + +#: class/dashboard/subpage-main.php:83 +msgid "Superscript layout" +msgstr "Layout des Fußnoten Index" + +#: class/dashboard/subpage-main.php:84 +msgid "Mouse-over box" +msgstr "Tooltip Popup Fenster" + +#: class/dashboard/subpage-main.php:85 +msgid "Hyperlink symbol in the Reference container" +msgstr "Einzelnachweis - Symbol für den Link zur Fußnote im Text" + +#: class/dashboard/subpage-main.php:86 +msgid "Add custom CSS to the public page" +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" + +#: class/dashboard/subpage-main.php:90 +msgid "Brief introduction in how to use the plugin" +msgstr "Kurze Anleitung für die Verwendung des Plugins." + +#: class/dashboard/subpage-main.php:91 +msgid "Help us to improve our Plugin" +msgstr "Helfen Sie bei der weiteren Entwicklung des Plugins." + +#: class/dashboard/subpage-main.php:104 +msgid "in the footer" +msgstr "am Ende der Seite" + +#: class/dashboard/subpage-main.php:105 +msgid "at the end of the post" +msgstr "nach einem Beitrag" + +#: class/dashboard/subpage-main.php:106 +msgid "in the widget area" +msgstr "im Widget" + +#: class/dashboard/subpage-main.php:114 +msgid "References label" +msgstr "Überschrift für den Einzelnachweis" + +#: class/dashboard/subpage-main.php:117 +msgid "Collapse references by default" +msgstr "Zeige Einzelnachweise zunächst zusammengeklappt" + +#: class/dashboard/subpage-main.php:120 +msgid "Where shall the reference container appear" +msgstr "Positionierung der Einzelnachweise" + +#: class/dashboard/subpage-main.php:139 class/dashboard/subpage-main.php:239 +#: class/dashboard/subpage-main.php:290 +msgid "Yes" +msgstr "Ja" + +#: class/dashboard/subpage-main.php:140 class/dashboard/subpage-main.php:240 +#: class/dashboard/subpage-main.php:291 +msgid "No" +msgstr "Nein" + +#: class/dashboard/subpage-main.php:147 class/dashboard/subpage-main.php:154 +msgid "user defined" +msgstr "benutzerdefiniert" + +#: class/dashboard/subpage-main.php:158 +msgid "Arabic Numbers - Plain" +msgstr "arabische Ziffern" + +#: class/dashboard/subpage-main.php:159 +msgid "Arabic Numbers - Leading 0" +msgstr "arabisch Ziffern - führende Null" + +#: class/dashboard/subpage-main.php:160 +msgid "Latin Character - lower case" +msgstr "alphabetisch - Kleinschreibung" + +#: class/dashboard/subpage-main.php:161 +msgid "Latin Character - upper case" +msgstr "alphabetisch - Großschreibung" + +#: class/dashboard/subpage-main.php:162 +msgid "Roman Numerals" +msgstr "Römische Ziffern" + +#: class/dashboard/subpage-main.php:170 +msgid "Combine identical footnotes" +msgstr "Kombiniere identische Fußnoten" + +#: class/dashboard/subpage-main.php:173 +msgid "Footnote tag starts with" +msgstr "Start-Shortcode" + +#: class/dashboard/subpage-main.php:176 +msgid "and ends with" +msgstr "endet mit" + +#: class/dashboard/subpage-main.php:185 +msgid "Counter style" +msgstr "Fußnoten Zähler" + +#: class/dashboard/subpage-main.php:207 class/task.php:149 +#, php-format +msgid "I %s %s" +msgstr "Ich %s %s" + +#: class/dashboard/subpage-main.php:208 class/task.php:152 +#, php-format +msgid "this site uses the awesome %s Plugin" +msgstr "Diese Seite verwendet das Plugin %s" + +#: class/dashboard/subpage-main.php:209 class/task.php:156 +#, php-format +msgid "extra smooth %s" +msgstr "besonders feine %s" + +#: class/dashboard/subpage-main.php:210 +msgid "random text" +msgstr "zufälliger Text" + +#: class/dashboard/subpage-main.php:211 +#, php-format +msgid "Don't display a %s %s text in my footer." +msgstr "Verstecke %s %s am Ende meiner Seite." + +#: class/dashboard/subpage-main.php:219 +#, php-format +msgid "Tell the world you're using %s" +msgstr "Teilen Sie der Welt mit, dass Sie %s verwenden" + +#: class/dashboard/subpage-main.php:222 +#, php-format +msgid "" +"Don't tell the world you're using %s on specific pages by adding the " +"following short code:" +msgstr "" +"Platzhalter um der Welt an einzelnen Seiten nicht mitzuteilen, dass Sie %s " +"verwenden:" + +#: class/dashboard/subpage-main.php:248 +msgid "Allow footnotes on Summarized Posts" +msgstr "Erlaube Fußnoten in Zusammenfassungen" + +#: class/dashboard/subpage-main.php:250 +msgid "Enable the Expert mode" +msgstr "Aktiviere den Experten Modus" + +#: class/dashboard/subpage-main.php:270 +msgid "Before Footnotes index" +msgstr "Symbol nach Fußnoten" + +#: class/dashboard/subpage-main.php:273 +msgid "After Footnotes index" +msgstr "Symbole nach Fußnoten" + +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "oben, links" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "oben, zentriert" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "oben, rechts" + +#: class/dashboard/subpage-main.php:298 +msgid "center right" +msgstr "zentriert, rechts" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "unten, rechts" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" +msgstr "unten, zentriert" + +#: class/dashboard/subpage-main.php:301 +msgid "bottom left" +msgstr "unten, links" + +#: class/dashboard/subpage-main.php:302 +msgid "center left" +msgstr "zentriert, links" + +#: class/dashboard/subpage-main.php:309 +msgid "Enable the mouse-over box" +msgstr "Aktiviere das Tooltip Popup Fenster" + +#: class/dashboard/subpage-main.php:312 +msgid "Display only an excerpt" +msgstr "Zeigt nur eine Zusammenfassung" + +#: class/dashboard/subpage-main.php:315 +msgid "Maximum characters for the excerpt" +msgstr "Maximale Zeichenlänge der Zusammenfasung" + +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "Positionierung" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "Versatz X (Pixel)" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "Versatz (X-Achse) in Pixel (negativer Wert ist möglich)" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "Versatz Y (Pixel)" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "Versatz (Y-Achse) in Pixel (negativer Wert ist möglich)" + +#: class/dashboard/subpage-main.php:329 +msgid "Color" +msgstr "Schriftfarbe" + +#: class/dashboard/subpage-main.php:331 +msgid "Empty color will use the default color defined by your current theme." +msgstr "" +"Lassen Sie die Farbe leer um die Standard Schriftfarbe Ihres Themes zu " +"verwenden." + +#: class/dashboard/subpage-main.php:333 +msgid "Background color" +msgstr "Hintergrundfarbe" + +#: class/dashboard/subpage-main.php:335 +msgid "" +"Empty color will use the default background-color defined by your current " +"theme." +msgstr "" +"Lassen Sie die Farbe leer um die Standard Hintergrundfabe Ihres Themes zu " +"verwenden." + +#: class/dashboard/subpage-main.php:337 +msgid "Border width (px)" +msgstr "Rand Breite (px)" + +#: class/dashboard/subpage-main.php:339 +msgid "Set the width to 0px to hide the border." +msgstr "Setzen Sie die Breite auf 0px um einen Rand zu verbergen." + +#: class/dashboard/subpage-main.php:341 +msgid "Border color" +msgstr "Rand Farbe" + +#: class/dashboard/subpage-main.php:343 +msgid "" +"Empty color will use the default border-color defined by your current theme." +msgstr "" +"Lassen Sie die Farbe leer um die Standardfarbe Ihres Themes für den Rand zu " +"verwenden." + +#: class/dashboard/subpage-main.php:345 +msgid "Border radius (px)" +msgstr "Rand Radius (px)" + +#: class/dashboard/subpage-main.php:347 +msgid "Set the radius to 0px to avoid a radius." +msgstr "Setzen Sie den Radius auf 0px um einen Radius zu verhindern." + +#: class/dashboard/subpage-main.php:349 +msgid "Max. width (px)" +msgstr "Max. Breite (px)" + +#: class/dashboard/subpage-main.php:351 +msgid "Set the max-width to 0px to disable this setting." +msgstr "Setzen Sie die max. Breite auf 0px um keine max. Breite zu verwenden." + +#: class/dashboard/subpage-main.php:370 +msgid "Hyperlink symbol" +msgstr "Symbol für den Hyperlink" + +#: class/dashboard/subpage-main.php:373 +msgid "or enter a user defined symbol" +msgstr "oder definieren Sie ein eigenes Symbol" + +#: class/dashboard/subpage-main.php:375 +msgid "if set it overrides the hyperlink symbol above" +msgstr "wenn gesetzt, wird das oben definierte Symbol überschrieben" + +#: class/dashboard/subpage-main.php:394 +msgid "Add custom CSS" +msgstr "Benutzerdefinierter CSS Code" + +#: class/dashboard/subpage-main.php:397 +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" + +#: class/dashboard/subpage-main.php:400 +msgid "superscript, Footnotes index" +msgstr "Fußnote Index im Text" + +#: class/dashboard/subpage-main.php:403 +msgid "mouse-over box, tooltip for each superscript" +msgstr "Tooltip Box für jede Fußnote" + +#: class/dashboard/subpage-main.php:406 +msgid "1st column of the Reference Container, Footnotes index" +msgstr "erste Spalte des Einzelnachweis, Fußnote Index" + +#: class/dashboard/subpage-main.php:409 +msgid "2nd column of the Reference Container, Arrow / Hyperlink" +msgstr "zweite Spalte des Einzelnachweis, Pfeil / Link" + +#: class/dashboard/subpage-main.php:412 +msgid "3rd column of the Reference Container, Footnote text" +msgstr "dritte Spalte des Einzelnachweis Fußnote Text" + +#: class/dashboard/subpage-main.php:431 +msgid "WordPress hook function name" +msgstr "WordPress hook Name" + +#: class/dashboard/subpage-main.php:432 +msgid "Activate" +msgstr "Aktivieren" + +#: class/dashboard/subpage-main.php:433 +msgid "WordPress documentation" +msgstr "WordPress Dokumentation" + +#: class/dashboard/subpage-main.php:481 +msgid "example string" +msgstr "Beispieltext" + +#: class/dashboard/subpage-main.php:488 +msgid "Start your footnote with the following short code:" +msgstr "Starten Sie eine Fußnote mit dem folgenden Shortcode:" + +#: class/dashboard/subpage-main.php:491 +msgid "...and end your footnote with this short code:" +msgstr "...und beenden Sie diesen mit:" + +#: class/dashboard/subpage-main.php:495 +msgid "will be displayed as:" +msgstr "wird dargestellt als:" + +#: class/dashboard/subpage-main.php:498 +#, php-format +msgid "" +"For further information please check out our %ssupport forum%s on WordPress." +"org." +msgstr "" +"Für mehr Informationen besuchen Sie unser %sSupport Forum%s auf WordPress." +"org." + +#: class/dashboard/subpage-main.php:519 +msgid "Donate now" +msgstr "Jetzt spenden" + +#: class/hooks.php:59 +msgid "You must be logged in to run this script." +msgstr "Sie müssen angemeldet sein um diese Funktion ausführen zu können." + +#: class/hooks.php:63 +msgid "You do not have permission to run this script." +msgstr "Sie haben nicht die Berechtigung diese Funktion auszuführen." + +#: class/hooks.php:80 +msgid "Support" +msgstr "Support" + +#: class/hooks.php:84 +msgid "Donate" +msgstr "Spenden" + +#: class/task.php:365 +#, php-format +msgid "%scontinue%s" +msgstr "%sweiter lesen%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." + +#~ msgid "inline footnotes" +#~ msgstr "Fußnoten Index im veröffneltichten Text" + +#~ msgid "inline footnotes, mouse over highlight box" +#~ msgstr "Popup der Fußnote im veröffentlichten Text" + +#~ msgid "reference container footnotes linked arrow" +#~ msgstr "Einzelnachweiß - Symbol für den Link" + +#~ msgid "General" +#~ msgstr "Allgemein" + +#~ msgid "%s Settings" +#~ msgstr "%s Einstellungen" + +#~ msgid "If you have any questions, please don't hesitate to %se-mail%s us." +#~ msgstr "Bei Fragen können Sie uns gerne eine %se-Mail%s senden." + +#~ msgid "HowTo" +#~ msgstr "Hilfe" + +#~ msgid "%s Widget" +#~ msgstr "%s Widget" + +#~ msgid "Hey there, I'm using the awesome WordPress Plugin called %s" +#~ msgstr "Diese Seite verwendet das %s Plugin" + +#~ msgid "starts with:" +#~ msgstr "beginnt mit:" + +#~ msgid "Save" +#~ msgstr "Speichern" + +#~ msgid "General Information" +#~ msgstr "Allgemeine Informationen" + +#~ msgid "" +#~ "Insert the following shortcode where you want your footnotes to be " +#~ "displayed:" +#~ msgstr "Folgender Platzhalter wird durch Ihre Fußnote ersetzt:" + +#~ msgid "The plugin replaces this shortcode automatically with your footnotes" +#~ msgstr "Das Plugin ersetzt Ihren Text duch einen Fußnote" diff --git a/languages/de_DE.mo b/languages/de_DE.mo index e11c4b367a967af96ec1152eb0bc591f7e1bcc55..74b45910e927ca502596a21df23f6983dcd7b0c1 100755 GIT binary patch delta 3152 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 diff --git a/languages/de_DE.po b/languages/de_DE.po index 60ea837..22ecd5f 100755 --- a/languages/de_DE.po +++ b/languages/de_DE.po @@ -1,11 +1,11 @@ msgid "" msgstr "" "Project-Id-Version: footnotes\n" -"POT-Creation-Date: 2014-10-11 14:25+0100\n" -"PO-Revision-Date: 2014-10-11 14:25+0100\n" +"POT-Creation-Date: 2014-10-18 12:40+0100\n" +"PO-Revision-Date: 2014-10-18 12:40+0100\n" "Last-Translator: Stefan Herndler \n" "Language-Team: SHE \n" -"Language: de\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -54,7 +54,7 @@ msgstr "Bewertung basierend auf" msgid "ratings" msgstr "Bewertungen" -#: class/dashboard/layout.php:243 +#: class/dashboard/layout.php:241 msgid "Settings saved" msgstr "Einstellungen gespeichert" @@ -234,17 +234,17 @@ msgstr "endet mit" msgid "Counter style" msgstr "Fußnoten Zähler" -#: class/dashboard/subpage-main.php:207 class/task.php:140 +#: class/dashboard/subpage-main.php:207 class/task.php:149 #, php-format msgid "I %s %s" msgstr "Ich %s %s" -#: class/dashboard/subpage-main.php:208 class/task.php:143 +#: class/dashboard/subpage-main.php:208 class/task.php:152 #, php-format msgid "this site uses the awesome %s Plugin" msgstr "Diese Seite verwendet das Plugin %s" -#: class/dashboard/subpage-main.php:209 class/task.php:147 +#: class/dashboard/subpage-main.php:209 class/task.php:156 #, php-format msgid "extra smooth %s" msgstr "besonders feine %s" @@ -288,33 +288,85 @@ msgstr "Symbol nach Fußnoten" msgid "After Footnotes index" msgstr "Symbole nach Fußnoten" +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "oben, links" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "oben, zentriert" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "oben, rechts" + #: class/dashboard/subpage-main.php:298 +msgid "center right" +msgstr "zentriert, rechts" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "unten, rechts" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" +msgstr "unten, zentriert" + +#: class/dashboard/subpage-main.php:301 +msgid "bottom left" +msgstr "unten, links" + +#: class/dashboard/subpage-main.php:302 +msgid "center left" +msgstr "zentriert, links" + +#: class/dashboard/subpage-main.php:309 msgid "Enable the mouse-over box" msgstr "Aktiviere das Tooltip Popup Fenster" -#: class/dashboard/subpage-main.php:301 +#: class/dashboard/subpage-main.php:312 msgid "Display only an excerpt" msgstr "Zeigt nur eine Zusammenfassung" -#: class/dashboard/subpage-main.php:304 +#: class/dashboard/subpage-main.php:315 msgid "Maximum characters for the excerpt" msgstr "Maximale Zeichenlänge der Zusammenfasung" -#: class/dashboard/subpage-main.php:307 +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "Positionierung" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "Versatz X (Pixel)" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "Versatz (X-Achse) in Pixel (negativer Wert ist möglich)" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "Versatz Y (Pixel)" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "Versatz (Y-Achse) in Pixel (negativer Wert ist möglich)" + +#: class/dashboard/subpage-main.php:329 msgid "Color" msgstr "Schriftfarbe" -#: class/dashboard/subpage-main.php:309 +#: class/dashboard/subpage-main.php:331 msgid "Empty color will use the default color defined by your current theme." msgstr "" "Lassen Sie die Farbe leer um die Standard Schriftfarbe Ihres Themes zu " "verwenden." -#: class/dashboard/subpage-main.php:311 +#: class/dashboard/subpage-main.php:333 msgid "Background color" msgstr "Hintergrundfarbe" -#: class/dashboard/subpage-main.php:313 +#: class/dashboard/subpage-main.php:335 msgid "" "Empty color will use the default background-color defined by your current " "theme." @@ -322,113 +374,113 @@ msgstr "" "Lassen Sie die Farbe leer um die Standard Hintergrundfabe Ihres Themes zu " "verwenden." -#: class/dashboard/subpage-main.php:315 +#: class/dashboard/subpage-main.php:337 msgid "Border width (px)" msgstr "Rand Breite (px)" -#: class/dashboard/subpage-main.php:317 +#: class/dashboard/subpage-main.php:339 msgid "Set the width to 0px to hide the border." msgstr "Setzen Sie die Breite auf 0px um einen Rand zu verbergen." -#: class/dashboard/subpage-main.php:319 +#: class/dashboard/subpage-main.php:341 msgid "Border color" msgstr "Rand Farbe" -#: class/dashboard/subpage-main.php:321 +#: class/dashboard/subpage-main.php:343 msgid "" "Empty color will use the default border-color defined by your current theme." msgstr "" "Lassen Sie die Farbe leer um die Standardfarbe Ihres Themes für den Rand zu " "verwenden." -#: class/dashboard/subpage-main.php:323 +#: class/dashboard/subpage-main.php:345 msgid "Border radius (px)" msgstr "Rand Radius (px)" -#: class/dashboard/subpage-main.php:325 +#: class/dashboard/subpage-main.php:347 msgid "Set the radius to 0px to avoid a radius." msgstr "Setzen Sie den Radius auf 0px um einen Radius zu verhindern." -#: class/dashboard/subpage-main.php:327 +#: class/dashboard/subpage-main.php:349 msgid "Max. width (px)" msgstr "Max. Breite (px)" -#: class/dashboard/subpage-main.php:329 +#: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." msgstr "Setzen Sie die max. Breite auf 0px um keine max. Breite zu verwenden." -#: class/dashboard/subpage-main.php:348 +#: class/dashboard/subpage-main.php:370 msgid "Hyperlink symbol" msgstr "Symbol für den Hyperlink" -#: class/dashboard/subpage-main.php:351 +#: class/dashboard/subpage-main.php:373 msgid "or enter a user defined symbol" msgstr "oder definieren Sie ein eigenes Symbol" -#: class/dashboard/subpage-main.php:353 +#: class/dashboard/subpage-main.php:375 msgid "if set it overrides the hyperlink symbol above" msgstr "wenn gesetzt, wird das oben definierte Symbol überschrieben" -#: class/dashboard/subpage-main.php:372 +#: class/dashboard/subpage-main.php:394 msgid "Add custom CSS" msgstr "Benutzerdefinierter CSS Code" -#: class/dashboard/subpage-main.php:375 +#: class/dashboard/subpage-main.php:397 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" -#: class/dashboard/subpage-main.php:378 +#: class/dashboard/subpage-main.php:400 msgid "superscript, Footnotes index" msgstr "Fußnote Index im Text" -#: class/dashboard/subpage-main.php:381 +#: class/dashboard/subpage-main.php:403 msgid "mouse-over box, tooltip for each superscript" msgstr "Tooltip Box für jede Fußnote" -#: class/dashboard/subpage-main.php:384 +#: class/dashboard/subpage-main.php:406 msgid "1st column of the Reference Container, Footnotes index" msgstr "erste Spalte des Einzelnachweis, Fußnote Index" -#: class/dashboard/subpage-main.php:387 +#: class/dashboard/subpage-main.php:409 msgid "2nd column of the Reference Container, Arrow / Hyperlink" msgstr "zweite Spalte des Einzelnachweis, Pfeil / Link" -#: class/dashboard/subpage-main.php:390 +#: class/dashboard/subpage-main.php:412 msgid "3rd column of the Reference Container, Footnote text" msgstr "dritte Spalte des Einzelnachweis Fußnote Text" -#: class/dashboard/subpage-main.php:409 +#: class/dashboard/subpage-main.php:431 msgid "WordPress hook function name" msgstr "WordPress hook Name" -#: class/dashboard/subpage-main.php:410 +#: class/dashboard/subpage-main.php:432 msgid "Activate" msgstr "Aktivieren" -#: class/dashboard/subpage-main.php:411 +#: class/dashboard/subpage-main.php:433 msgid "WordPress documentation" msgstr "WordPress Dokumentation" -#: class/dashboard/subpage-main.php:459 +#: class/dashboard/subpage-main.php:481 msgid "example string" msgstr "Beispieltext" -#: class/dashboard/subpage-main.php:466 +#: class/dashboard/subpage-main.php:488 msgid "Start your footnote with the following short code:" msgstr "Starten Sie eine Fußnote mit dem folgenden Shortcode:" -#: class/dashboard/subpage-main.php:469 +#: class/dashboard/subpage-main.php:491 msgid "...and end your footnote with this short code:" msgstr "...und beenden Sie diesen mit:" -#: class/dashboard/subpage-main.php:473 +#: class/dashboard/subpage-main.php:495 msgid "will be displayed as:" msgstr "wird dargestellt als:" -#: class/dashboard/subpage-main.php:476 +#: class/dashboard/subpage-main.php:498 #, php-format msgid "" "For further information please check out our %ssupport forum%s on WordPress." @@ -437,7 +489,7 @@ msgstr "" "Für mehr Informationen besuchen Sie unser %sSupport Forum%s auf WordPress." "org." -#: class/dashboard/subpage-main.php:495 +#: class/dashboard/subpage-main.php:519 msgid "Donate now" msgstr "Jetzt spenden" @@ -457,7 +509,7 @@ msgstr "Support" msgid "Donate" msgstr "Spenden" -#: class/task.php:356 +#: class/task.php:365 #, php-format msgid "%scontinue%s" msgstr "%sweiter lesen%s" diff --git a/languages/en_GB.mo b/languages/en_GB.mo index 95e7686dbfeaba429cb3470502259dc4657fd3ec..c5f0c1f3f46b00d69614c1b967e40f5a19d54171 100755 GIT binary patch delta 3099 zcmd7Se@vBC9LMp)Pq9LN2uK?Gpddd(Kv5E;RQwqw1QZy8pcl9%_uk~u!D_p%v1#ic zH*(5W4Onf~vZmL~+SKW?hO6A#{G&E0vE;v6%w}$8>;1X+=->U-I^+Ai&T~1>dCvKs zbDpnif7%lKF*Ww6p&THdAijw)=3RV!78lCzvyFKKXYeun3rlb|Kd!_|tVBPqz!R8& zlc@I7I0tWIHby^cOgiS^5@Uj9HI@1N(2f~6h;?`blX24i{u`>pI4-G}iYb_jMYswV z;x3HCH*f(S#zcG{8M`@+bY;%rJl=06s8sXA4a~{Gf;LQoF#}L+GEYsS6 z4XA-1!^iOxRDTnw7sVwRlZh#)=L<0lU&DCbZ$_wSrlY8toI+)P64k*i)W~O$F`9d* zrApu-nTyKEI^$(dO4DpOIZbWjg2MGdF| zwZ>~P4YwkXnhsRE0IFRO%kV8!X3txvQO_r(l7Bsr$?(fD4>gnRT$F)6T!#BmYx@B< z;$|OO;B!>!Cr}-KkLqt0Tb;3*bS%bv)I^$5{klOadhj4>#z(BjQ8O6D z96XQOgf~&C`xUh(?w|&yQByUE_$G_H1l9f|J5T@r3^lMXaV7qNl^85y%dViZ8`bd$ z>Va|8%sxe(+Y6`{+(6E)xq~{k^SSUYQ-O6@huRAx_Vrm%?jo7+^B zl0_U=ZMGWJxvk}*6z)XL)Q3vh0BVhguo~Y%ZLS}1J4TZ>9orqK4D7~w^rHrN5p`@6 zIfEHG|BY0bjM;fH9Bj%&br9F?hy)~l#YUPnE56E&b2 z)DquE_NR$=$iHT=fQlLxqZ(FW8E!(QcF;PG>fmcs`)gQ^Kcm(*gN>pL6rhf688SE1 ziH&#=OYs_NY2p@>|3WIsiz91Vg-TH)s$l@NS;kQ3HiRX37Ikc=Q8Q0wM`{x;MBP`Q zCbAxt$!+$&&EEH-Ca`}=Fp~Nqeo)76qdNEkHKXsa7=J;{B!#o6j!RKXR*jl*owW%y zfi~pN406#--$P~YL)4x)jT+dwAQc^}D;R}-LaBOzs3BA|p#6k0qCwRYDlrirUZZVI zn|Uj-h0x%9L>HOC7vQwHbn@}xWm@Pi^Lj2OQ5ocAVKCy z;$>nv(L<|t%WKvX#r8M$joCpQAlSs=y#e9U zZtX-ZrOIwXA2+XVC>~-pp}nG#p!45LrHCje`U#a-LT6v)nea98ZP2k%d4-S4p<}3`&6Y=O&<%x;UHIcu z8@}V4fZK?d2yN75gg#a(^NHt(HsV=A8!$k05m9qO_Y)@KgWcWz9@oilaXJUQ{RNKK z=L80v{JzdXr_1B`JUyMR_kgFsY_siJ|6RKlCqFRo@TpdN=k|K`nflH3j%UF2`1-wm zU;prhti-r_f4|oaO(iXlsp;~&uD{ROK5tL2Ya;)5!vC;!{UdbO zDT>N+{ecG^s2XmhO8C*?>a_M*l}=gt>J_EKV`sQj;n2t^BLTl1}3ID6CR7HiN M7u}8ePg0Zf53ePJy#N3J delta 2397 zcmZwHYfRN;9KiACh;a!jkvmj!q$ooW5R^#FN&}IS)W}QbCD3?dwQBQ4^VHhhnzfoP z!d|#u)KKdMd1|vaH0-iwZLKkzj@D(_Tx(?3bPg8v{c`^J!u9O@&gVJ*%X9fX&vSlU z`Ni_Y53^^!5h%UHjYM}^2wr$Uoi9sP2-iXkb1(;Muml%j8#ZAA8}K-0;u!k;CA=Qf zXe5rau>c#eg4aSjl~OM3!a{r*JMe9sg=5k6NwmR&Y#PD2n2U{Ag{^oqK7-fbek{X& zybeD^#u82-pYSzbMf4v|Q(3}=Kk;^~rk9P_g(l$xr0;MXJMmNOz#6O(o{HxGjJFars}ik#!0lpGnkLRq5~U`?q~DE`=wZim1xG+N4|)z z{ZX`|B-Y~zbbuGpiDj~G3vgC0`FG8habYcP!CFkBDL;#M;CU>Us%WmAKZ>S6Q08P_!2t6L3HNdAjt@$ z=uCc({2LwE1m1$hq|em1pu4>t_mcCi=)}%38t?y=pyB}j#YI@dG(Ao|*no%7l#ZY; ze2>oHH}p7NMms2FhjE-jEqa>PAx(xSu>K7GxZj_DG#HWIfjfS457RKJ9Ka4F&aN~jiZ^$Vn_OX3Hn?cI?yhhkG<#s`_RmM z6es__ILrlS@@?c9bYMTD$7vExeFf{_Zm-1{{$Fv=R1>{K7h%esjAiOwT;`9dl1Oc? zE&SL@(C(Guj2|Ip5T@6%lISE%Upet0;S!lvi$~CjEGK#hXTP4X+)cO)F13?eOx#QV z;ZeeLPM7hk#27x?YISW9#h?VkT_RQT5n zYY6v(8|Vqbax3A6wCp52_v?u5L>6Ije{7zrrM^6ZmWK(CT|MFdLKCrxc!=0RxDoHM zNA^}|CaQ>#9LxGL{XjgoJlUSRAT9ZE{=C@!!p#|V<#i3s^>qij3*%SnuM|F;Oe@-z R89lu?mTZY%jzzCj{09m_(5nCd diff --git a/languages/en_GB.po b/languages/en_GB.po index a1fba7e..0e0952c 100755 --- a/languages/en_GB.po +++ b/languages/en_GB.po @@ -1,11 +1,11 @@ msgid "" msgstr "" "Project-Id-Version: footnotes\n" -"POT-Creation-Date: 2014-10-11 14:21+0100\n" -"PO-Revision-Date: 2014-10-11 14:21+0100\n" +"POT-Creation-Date: 2014-10-18 12:40+0100\n" +"PO-Revision-Date: 2014-10-18 12:40+0100\n" "Last-Translator: Stefan Herndler \n" "Language-Team: SHE \n" -"Language: en\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -54,7 +54,7 @@ msgstr "rating based on" msgid "ratings" msgstr "ratings" -#: class/dashboard/layout.php:243 +#: class/dashboard/layout.php:241 msgid "Settings saved" msgstr "Settings saved" @@ -234,17 +234,17 @@ msgstr "and ends with" msgid "Counter style" msgstr "Counter style" -#: class/dashboard/subpage-main.php:207 class/task.php:140 +#: class/dashboard/subpage-main.php:207 class/task.php:149 #, php-format msgid "I %s %s" msgstr "I %s %s" -#: class/dashboard/subpage-main.php:208 class/task.php:143 +#: class/dashboard/subpage-main.php:208 class/task.php:152 #, php-format msgid "this site uses the awesome %s Plugin" msgstr "this site uses the awesome %s Plugin" -#: class/dashboard/subpage-main.php:209 class/task.php:147 +#: class/dashboard/subpage-main.php:209 class/task.php:156 #, php-format msgid "extra smooth %s" msgstr "extra smooth %s" @@ -288,31 +288,83 @@ msgstr "Before Footnotes index" msgid "After Footnotes index" msgstr "After Footnotes index" +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "top left" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "top center" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "top right" + #: class/dashboard/subpage-main.php:298 +msgid "center right" +msgstr "center right" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "bottom right" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" +msgstr "bottom center" + +#: class/dashboard/subpage-main.php:301 +msgid "bottom left" +msgstr "bottom left" + +#: class/dashboard/subpage-main.php:302 +msgid "center left" +msgstr "center left" + +#: class/dashboard/subpage-main.php:309 msgid "Enable the mouse-over box" msgstr "Enable the mouse-over box" -#: class/dashboard/subpage-main.php:301 +#: class/dashboard/subpage-main.php:312 msgid "Display only an excerpt" msgstr "Display only an excerpt" -#: class/dashboard/subpage-main.php:304 +#: class/dashboard/subpage-main.php:315 msgid "Maximum characters for the excerpt" msgstr "Maximum characters for the excerpt" -#: class/dashboard/subpage-main.php:307 +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "Position" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "Offset X (px)" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "Offset (X axis) in px (may be negative)" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "Offset Y (px)" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "Offset (Y axis) in px (may be negative)" + +#: class/dashboard/subpage-main.php:329 msgid "Color" msgstr "Color" -#: class/dashboard/subpage-main.php:309 +#: class/dashboard/subpage-main.php:331 msgid "Empty color will use the default color defined by your current theme." msgstr "Empty color will use the default color defined by your current theme." -#: class/dashboard/subpage-main.php:311 +#: class/dashboard/subpage-main.php:333 msgid "Background color" msgstr "Background color" -#: class/dashboard/subpage-main.php:313 +#: class/dashboard/subpage-main.php:335 msgid "" "Empty color will use the default background-color defined by your current " "theme." @@ -320,111 +372,111 @@ msgstr "" "Empty color will use the default background-color defined by your current " "theme." -#: class/dashboard/subpage-main.php:315 +#: class/dashboard/subpage-main.php:337 msgid "Border width (px)" msgstr "Border width (px)" -#: class/dashboard/subpage-main.php:317 +#: class/dashboard/subpage-main.php:339 msgid "Set the width to 0px to hide the border." msgstr "Set the width to 0px to hide the border." -#: class/dashboard/subpage-main.php:319 +#: class/dashboard/subpage-main.php:341 msgid "Border color" msgstr "Border color" -#: class/dashboard/subpage-main.php:321 +#: class/dashboard/subpage-main.php:343 msgid "" "Empty color will use the default border-color defined by your current theme." msgstr "" "Empty color will use the default border-color defined by your current theme." -#: class/dashboard/subpage-main.php:323 +#: class/dashboard/subpage-main.php:345 msgid "Border radius (px)" msgstr "Border radius (px)" -#: class/dashboard/subpage-main.php:325 +#: class/dashboard/subpage-main.php:347 msgid "Set the radius to 0px to avoid a radius." msgstr "Set the radius to 0px to avoid a radius." -#: class/dashboard/subpage-main.php:327 +#: class/dashboard/subpage-main.php:349 msgid "Max. width (px)" msgstr "Max. width (px)" -#: class/dashboard/subpage-main.php:329 +#: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." msgstr "Set the max-width to 0px to disable this setting." -#: class/dashboard/subpage-main.php:348 +#: class/dashboard/subpage-main.php:370 msgid "Hyperlink symbol" msgstr "Hyperlink symbol" -#: class/dashboard/subpage-main.php:351 +#: class/dashboard/subpage-main.php:373 msgid "or enter a user defined symbol" msgstr "or enter a user defined symbol" -#: class/dashboard/subpage-main.php:353 +#: class/dashboard/subpage-main.php:375 msgid "if set it overrides the hyperlink symbol above" msgstr "if set it overrides the hyperlink symbol above" -#: class/dashboard/subpage-main.php:372 +#: class/dashboard/subpage-main.php:394 msgid "Add custom CSS" msgstr "Add custom CSS" -#: class/dashboard/subpage-main.php:375 +#: class/dashboard/subpage-main.php:397 msgid "" "Available CSS classes to customize the footnotes and the reference container" msgstr "" "Available CSS classes to customize the footnotes and the reference container" -#: class/dashboard/subpage-main.php:378 +#: class/dashboard/subpage-main.php:400 msgid "superscript, Footnotes index" msgstr "superscript, Footnotes index" -#: class/dashboard/subpage-main.php:381 +#: class/dashboard/subpage-main.php:403 msgid "mouse-over box, tooltip for each superscript" msgstr "mouse-over box, tooltip for each superscript" -#: class/dashboard/subpage-main.php:384 +#: class/dashboard/subpage-main.php:406 msgid "1st column of the Reference Container, Footnotes index" msgstr "1st column of the Reference Container, Footnotes index" -#: class/dashboard/subpage-main.php:387 +#: class/dashboard/subpage-main.php:409 msgid "2nd column of the Reference Container, Arrow / Hyperlink" msgstr "2nd column of the Reference Container, Arrow / Hyperlink" -#: class/dashboard/subpage-main.php:390 +#: class/dashboard/subpage-main.php:412 msgid "3rd column of the Reference Container, Footnote text" msgstr "3rd column of the Reference Container, Footnote text" -#: class/dashboard/subpage-main.php:409 +#: class/dashboard/subpage-main.php:431 msgid "WordPress hook function name" msgstr "WordPress hook function name" -#: class/dashboard/subpage-main.php:410 +#: class/dashboard/subpage-main.php:432 msgid "Activate" msgstr "Activate" -#: class/dashboard/subpage-main.php:411 +#: class/dashboard/subpage-main.php:433 msgid "WordPress documentation" msgstr "WordPress documentation" -#: class/dashboard/subpage-main.php:459 +#: class/dashboard/subpage-main.php:481 msgid "example string" msgstr "example string" -#: class/dashboard/subpage-main.php:466 +#: class/dashboard/subpage-main.php:488 msgid "Start your footnote with the following short code:" msgstr "Start your footnote with the following short code:" -#: class/dashboard/subpage-main.php:469 +#: class/dashboard/subpage-main.php:491 msgid "...and end your footnote with this short code:" msgstr "...and end your footnote with this short code:" -#: class/dashboard/subpage-main.php:473 +#: class/dashboard/subpage-main.php:495 msgid "will be displayed as:" msgstr "will be displayed as:" -#: class/dashboard/subpage-main.php:476 +#: class/dashboard/subpage-main.php:498 #, php-format msgid "" "For further information please check out our %ssupport forum%s on WordPress." @@ -433,7 +485,7 @@ msgstr "" "For further information please check out our %ssupport forum%s on WordPress." "org." -#: class/dashboard/subpage-main.php:495 +#: class/dashboard/subpage-main.php:519 msgid "Donate now" msgstr "Donate now" @@ -453,7 +505,7 @@ msgstr "Support" msgid "Donate" msgstr "Donate" -#: class/task.php:356 +#: class/task.php:365 #, php-format msgid "%scontinue%s" msgstr "%scontinue%s" diff --git a/languages/en_US.mo b/languages/en_US.mo new file mode 100644 index 0000000000000000000000000000000000000000..8636a022817cbe4657c49fa43d799264642c939c GIT binary patch literal 9439 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 IAAY<32Q_0&`v3p{ literal 0 HcmV?d00001 diff --git a/languages/en_US.po b/languages/en_US.po new file mode 100755 index 0000000..42dd981 --- /dev/null +++ b/languages/en_US.po @@ -0,0 +1,585 @@ +msgid "" +msgstr "" +"Project-Id-Version: footnotes\n" +"POT-Creation-Date: 2014-10-18 12:40+0100\n" +"PO-Revision-Date: 2014-10-18 12:40+0100\n" +"Last-Translator: Stefan Herndler \n" +"Language-Team: SHE \n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.9\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" + +#: class/dashboard/init.php:151 +msgid "Take a look on other Plugins we have developed." +msgstr "Take a look at other Plugins we have developed." + +#: class/dashboard/init.php:157 +msgid "Error loading other WordPress Plugins from Manfisher. Sorry!" +msgstr "Error loading other WordPress Plugins from Manfisher. Sorry!" + +#: class/dashboard/init.php:173 +msgid "Install now" +msgstr "Install now" + +#: class/dashboard/init.php:174 +msgid "This Plugin is already installed and up to date." +msgstr "This Plugin is already installed and up to date." + +#: class/dashboard/init.php:174 +msgid "Installed" +msgstr "Installed" + +#: class/dashboard/init.php:193 +msgid "More Details" +msgstr "More Details" + +#: class/dashboard/init.php:194 +msgid "Last Updated" +msgstr "Last Updated" + +#: class/dashboard/init.php:249 +msgid "rating based on" +msgstr "rating based on" + +#: class/dashboard/init.php:249 +msgid "ratings" +msgstr "ratings" + +#: class/dashboard/layout.php:241 +msgid "Settings saved" +msgstr "Settings saved" + +#: class/dashboard/subpage-diagnostics.php:48 +#: class/dashboard/subpage-diagnostics.php:60 +msgid "Diagnostics" +msgstr "Diagnostics" + +#: class/dashboard/subpage-diagnostics.php:73 +msgid "Displays information about the web server, PHP and WordPress" +msgstr "Displays information about the web server, PHP and WordPress" + +#: class/dashboard/subpage-diagnostics.php:110 +msgid "Server name" +msgstr "Server name" + +#: class/dashboard/subpage-diagnostics.php:113 +msgid "PHP version" +msgstr "PHP version" + +#: class/dashboard/subpage-diagnostics.php:116 +msgid "User agent" +msgstr "User agent" + +#: class/dashboard/subpage-diagnostics.php:119 +msgid "Max execution time" +msgstr "Max execution time" + +#: class/dashboard/subpage-diagnostics.php:120 +msgid "seconds" +msgstr "seconds" + +#: class/dashboard/subpage-diagnostics.php:122 +msgid "Memory limit" +msgstr "Memory limit" + +#: class/dashboard/subpage-diagnostics.php:125 +msgid "PHP extensions" +msgstr "PHP extensions" + +#: class/dashboard/subpage-diagnostics.php:128 +msgid "WordPress version" +msgstr "WordPress version" + +#: class/dashboard/subpage-diagnostics.php:131 +msgid "Active Theme" +msgstr "Active Theme" + +#: class/dashboard/subpage-main.php:60 class/hooks.php:82 +msgid "Settings" +msgstr "Settings" + +#: class/dashboard/subpage-main.php:61 +msgid "Customize" +msgstr "Customize" + +#: class/dashboard/subpage-main.php:63 +msgid "Expert mode" +msgstr "Expert mode" + +#: class/dashboard/subpage-main.php:65 +msgid "How to" +msgstr "How to" + +#: class/dashboard/subpage-main.php:78 +msgid "References Container" +msgstr "References Container" + +#: class/dashboard/subpage-main.php:79 +#, php-format +msgid "%s styling" +msgstr "%s styling" + +#: class/dashboard/subpage-main.php:81 +msgid "Other" +msgstr "Other" + +#: class/dashboard/subpage-main.php:83 +msgid "Superscript layout" +msgstr "Superscript layout" + +#: class/dashboard/subpage-main.php:84 +msgid "Mouse-over box" +msgstr "Mouse-over box" + +#: class/dashboard/subpage-main.php:85 +msgid "Hyperlink symbol in the Reference container" +msgstr "Hyperlink symbol in the Reference container" + +#: class/dashboard/subpage-main.php:86 +msgid "Add custom CSS to the public page" +msgstr "Add custom CSS to the public page" + +#: class/dashboard/subpage-main.php:88 +msgid "WordPress hooks to look for Footnote short codes" +msgstr "WordPress hooks to look for Footnote short codes" + +#: class/dashboard/subpage-main.php:90 +msgid "Brief introduction in how to use the plugin" +msgstr "Brief introduction in how to use the plugin" + +#: class/dashboard/subpage-main.php:91 +msgid "Help us to improve our Plugin" +msgstr "Help us to improve our Plugin" + +#: class/dashboard/subpage-main.php:104 +msgid "in the footer" +msgstr "in the footer" + +#: class/dashboard/subpage-main.php:105 +msgid "at the end of the post" +msgstr "at the end of the post" + +#: class/dashboard/subpage-main.php:106 +msgid "in the widget area" +msgstr "in the widget area" + +#: class/dashboard/subpage-main.php:114 +msgid "References label" +msgstr "References label" + +#: class/dashboard/subpage-main.php:117 +msgid "Collapse references by default" +msgstr "Collapse references by default" + +#: class/dashboard/subpage-main.php:120 +msgid "Where shall the reference container appear" +msgstr "Where shall the reference container appear" + +#: class/dashboard/subpage-main.php:139 class/dashboard/subpage-main.php:239 +#: class/dashboard/subpage-main.php:290 +msgid "Yes" +msgstr "Yes" + +#: class/dashboard/subpage-main.php:140 class/dashboard/subpage-main.php:240 +#: class/dashboard/subpage-main.php:291 +msgid "No" +msgstr "No" + +#: class/dashboard/subpage-main.php:147 class/dashboard/subpage-main.php:154 +msgid "user defined" +msgstr "user defined" + +#: class/dashboard/subpage-main.php:158 +msgid "Arabic Numbers - Plain" +msgstr "Arabic Numbers - Plain" + +#: class/dashboard/subpage-main.php:159 +msgid "Arabic Numbers - Leading 0" +msgstr "Arabic Numbers - Leading 0" + +#: class/dashboard/subpage-main.php:160 +msgid "Latin Character - lower case" +msgstr "Latin Character - lower case" + +#: class/dashboard/subpage-main.php:161 +msgid "Latin Character - upper case" +msgstr "Latin Character - upper case" + +#: class/dashboard/subpage-main.php:162 +msgid "Roman Numerals" +msgstr "Roman Numerals" + +#: class/dashboard/subpage-main.php:170 +msgid "Combine identical footnotes" +msgstr "Combine identical footnotes" + +#: class/dashboard/subpage-main.php:173 +msgid "Footnote tag starts with" +msgstr "Footnote tag starts with" + +#: class/dashboard/subpage-main.php:176 +msgid "and ends with" +msgstr "and ends with" + +#: class/dashboard/subpage-main.php:185 +msgid "Counter style" +msgstr "Counter style" + +#: class/dashboard/subpage-main.php:207 class/task.php:149 +#, php-format +msgid "I %s %s" +msgstr "I %s %s" + +#: class/dashboard/subpage-main.php:208 class/task.php:152 +#, php-format +msgid "this site uses the awesome %s Plugin" +msgstr "this site uses the awesome %s Plugin" + +#: class/dashboard/subpage-main.php:209 class/task.php:156 +#, php-format +msgid "extra smooth %s" +msgstr "extra smooth %s" + +#: class/dashboard/subpage-main.php:210 +msgid "random text" +msgstr "random text" + +#: class/dashboard/subpage-main.php:211 +#, php-format +msgid "Don't display a %s %s text in my footer." +msgstr "Don't display a %s %s text in my footer." + +#: class/dashboard/subpage-main.php:219 +#, php-format +msgid "Tell the world you're using %s" +msgstr "Tell the world you're using %s" + +#: class/dashboard/subpage-main.php:222 +#, php-format +msgid "" +"Don't tell the world you're using %s on specific pages by adding the " +"following short code:" +msgstr "" +"Don't tell the world you're using %s on specific pages by adding the " +"following short code:" + +#: class/dashboard/subpage-main.php:248 +msgid "Allow footnotes on Summarized Posts" +msgstr "Allow footnotes on Summarized Posts" + +#: class/dashboard/subpage-main.php:250 +msgid "Enable the Expert mode" +msgstr "Enable the Expert mode" + +#: class/dashboard/subpage-main.php:270 +msgid "Before Footnotes index" +msgstr "Before Footnotes index" + +#: class/dashboard/subpage-main.php:273 +msgid "After Footnotes index" +msgstr "After Footnotes index" + +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "top left" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "top center" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "top right" + +#: class/dashboard/subpage-main.php:298 +msgid "center right" +msgstr "center right" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "bottom right" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" +msgstr "bottom center" + +#: class/dashboard/subpage-main.php:301 +msgid "bottom left" +msgstr "bottom left" + +#: class/dashboard/subpage-main.php:302 +msgid "center left" +msgstr "center left" + +#: class/dashboard/subpage-main.php:309 +msgid "Enable the mouse-over box" +msgstr "Enable the mouse-over box" + +#: class/dashboard/subpage-main.php:312 +msgid "Display only an excerpt" +msgstr "Display only an excerpt" + +#: class/dashboard/subpage-main.php:315 +msgid "Maximum characters for the excerpt" +msgstr "Maximum characters for the excerpt" + +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "Position" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "Offset X (px)" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "Offset (X axis) in px (may be negative)" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "Offset Y (px)" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "Offset (Y axis) in px (may be negative)" + +#: class/dashboard/subpage-main.php:329 +msgid "Color" +msgstr "Color" + +#: class/dashboard/subpage-main.php:331 +msgid "Empty color will use the default color defined by your current theme." +msgstr "Empty color will use the default color defined by your current theme." + +#: class/dashboard/subpage-main.php:333 +msgid "Background color" +msgstr "Background color" + +#: class/dashboard/subpage-main.php:335 +msgid "" +"Empty color will use the default background-color defined by your current " +"theme." +msgstr "" +"Empty color will use the default background-color defined by your current " +"theme." + +#: class/dashboard/subpage-main.php:337 +msgid "Border width (px)" +msgstr "Border width (px)" + +#: class/dashboard/subpage-main.php:339 +msgid "Set the width to 0px to hide the border." +msgstr "Set the width to 0px to hide the border." + +#: class/dashboard/subpage-main.php:341 +msgid "Border color" +msgstr "Border color" + +#: class/dashboard/subpage-main.php:343 +msgid "" +"Empty color will use the default border-color defined by your current theme." +msgstr "" +"Empty color will use the default border-color defined by your current theme." + +#: class/dashboard/subpage-main.php:345 +msgid "Border radius (px)" +msgstr "Border radius (px)" + +#: class/dashboard/subpage-main.php:347 +msgid "Set the radius to 0px to avoid a radius." +msgstr "Set the radius to 0px to avoid a radius." + +#: class/dashboard/subpage-main.php:349 +msgid "Max. width (px)" +msgstr "Max. width (px)" + +#: class/dashboard/subpage-main.php:351 +msgid "Set the max-width to 0px to disable this setting." +msgstr "Set the max-width to 0px to disable this setting." + +#: class/dashboard/subpage-main.php:370 +msgid "Hyperlink symbol" +msgstr "Hyperlink symbol" + +#: class/dashboard/subpage-main.php:373 +msgid "or enter a user defined symbol" +msgstr "or enter a user defined symbol" + +#: class/dashboard/subpage-main.php:375 +msgid "if set it overrides the hyperlink symbol above" +msgstr "if set it overrides the hyperlink symbol above" + +#: class/dashboard/subpage-main.php:394 +msgid "Add custom CSS" +msgstr "Add custom CSS" + +#: class/dashboard/subpage-main.php:397 +msgid "" +"Available CSS classes to customize the footnotes and the reference container" +msgstr "" +"Available CSS classes to customize the footnotes and the reference container" + +#: class/dashboard/subpage-main.php:400 +msgid "superscript, Footnotes index" +msgstr "superscript, Footnotes index" + +#: class/dashboard/subpage-main.php:403 +msgid "mouse-over box, tooltip for each superscript" +msgstr "mouse-over box, tooltip for each superscript" + +#: class/dashboard/subpage-main.php:406 +msgid "1st column of the Reference Container, Footnotes index" +msgstr "1st column of the Reference Container, Footnotes index" + +#: class/dashboard/subpage-main.php:409 +msgid "2nd column of the Reference Container, Arrow / Hyperlink" +msgstr "2nd column of the Reference Container, Arrow / Hyperlink" + +#: class/dashboard/subpage-main.php:412 +msgid "3rd column of the Reference Container, Footnote text" +msgstr "3rd column of the Reference Container, Footnote text" + +#: class/dashboard/subpage-main.php:431 +msgid "WordPress hook function name" +msgstr "WordPress hook function name" + +#: class/dashboard/subpage-main.php:432 +msgid "Activate" +msgstr "Activate" + +#: class/dashboard/subpage-main.php:433 +msgid "WordPress documentation" +msgstr "WordPress documentation" + +#: class/dashboard/subpage-main.php:481 +msgid "example string" +msgstr "example string" + +#: class/dashboard/subpage-main.php:488 +msgid "Start your footnote with the following short code:" +msgstr "Start your footnote with the following short code:" + +#: class/dashboard/subpage-main.php:491 +msgid "...and end your footnote with this short code:" +msgstr "...and end your footnote with this short code:" + +#: class/dashboard/subpage-main.php:495 +msgid "will be displayed as:" +msgstr "will be displayed as:" + +#: class/dashboard/subpage-main.php:498 +#, php-format +msgid "" +"For further information please check out our %ssupport forum%s on WordPress." +"org." +msgstr "" +"For further information please check out our %ssupport forum%s on WordPress." +"org." + +#: class/dashboard/subpage-main.php:519 +msgid "Donate now" +msgstr "Donate now" + +#: class/hooks.php:59 +msgid "You must be logged in to run this script." +msgstr "You must be logged in to run this script." + +#: class/hooks.php:63 +msgid "You do not have permission to run this script." +msgstr "You do not have permission to run this script." + +#: class/hooks.php:80 +msgid "Support" +msgstr "Support" + +#: class/hooks.php:84 +msgid "Donate" +msgstr "Donate" + +#: class/task.php:365 +#, php-format +msgid "%scontinue%s" +msgstr "%scontinue%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 "" +"The widget defines the position of the reference container if set to " +"\"widget area\"." + +#~ msgid "inline footnotes" +#~ msgstr "inline footnotes" + +#~ msgid "inline footnotes, mouse over highlight box" +#~ msgstr "inline footnotes, mouse over highlight box" + +#~ msgid "reference container footnotes linked arrow" +#~ msgstr "reference container footnotes linked arrow" + +#~ msgid "General" +#~ msgstr "General" + +#~ msgid "%s Settings" +#~ msgstr "%s Settings" + +#~ msgid "If you have any questions, please don't hesitate to %se-mail%s us." +#~ msgstr "If you have any questions, please don't hesitate to %se-mail%s us." + +#~ msgid "HowTo" +#~ msgstr "HowTo" + +#~ msgid "%s Widget" +#~ msgstr "%s Widget" + +#~ msgid "Hey there, I'm using the awesome WordPress Plugin called %s" +#~ msgstr "Hey there, I'm using the awesome %s Plugin" + +#~ msgid "((" +#~ msgstr "((" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "[ref]" +#~ msgstr "[ref]" + +#~ msgid "))" +#~ msgstr "))" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "[/ref]" +#~ msgstr "[/ref]" + +#~ msgid "starts with:" +#~ msgstr "starts with:" + +#~ msgid "Save" +#~ msgstr "Save" + +#~ msgid "General Information" +#~ msgstr "General Information" + +#~ msgid "" +#~ "Insert the following shortcode where you want your footnotes to be " +#~ "displayed:" +#~ msgstr "" +#~ "Insert the following shortcode where you want your footnotes to be " +#~ "displayed:" + +#~ msgid "The plugin replaces this shortcode automatically with your footnotes" +#~ msgstr "" +#~ "The plugin replaces this shortcode automatically with your footnotes" diff --git a/languages/es_ES.mo b/languages/es_ES.mo new file mode 100644 index 0000000000000000000000000000000000000000..d015aff9010fbd6b6fe15c68e5be5997793011ab GIT binary patch literal 8286 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\n" +"Language-Team: Pablo Laguna \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.9\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" + +#: class/dashboard/init.php:151 +msgid "Take a look on other Plugins we have developed." +msgstr "Echa un vistazo a los otros plugins que hemos desarrollado." + +#: class/dashboard/init.php:157 +msgid "Error loading other WordPress Plugins from Manfisher. Sorry!" +msgstr "Error cargando otro plugin de Manfisher. Disculpa." + +#: class/dashboard/init.php:173 +msgid "Install now" +msgstr "Instalar ahora" + +#: class/dashboard/init.php:174 +msgid "This Plugin is already installed and up to date." +msgstr "Este plugin está instalado y actualizado." + +#: class/dashboard/init.php:174 +msgid "Installed" +msgstr "Instalado" + +#: class/dashboard/init.php:193 +msgid "More Details" +msgstr "Más detalles" + +#: class/dashboard/init.php:194 +msgid "Last Updated" +msgstr "Última actualización" + +#: class/dashboard/init.php:249 +msgid "rating based on" +msgstr "puntuación basada en" + +#: class/dashboard/init.php:249 +msgid "ratings" +msgstr "puntuaciones" + +#: class/dashboard/layout.php:241 +msgid "Settings saved" +msgstr "Ajustes guardados" + +#: class/dashboard/subpage-diagnostics.php:48 +#: class/dashboard/subpage-diagnostics.php:60 +msgid "Diagnostics" +msgstr "Diagnóstico" + +#: class/dashboard/subpage-diagnostics.php:73 +msgid "Displays information about the web server, PHP and WordPress" +msgstr "Muestra información sobre el servidor web, PHP y WordPress" + +#: class/dashboard/subpage-diagnostics.php:110 +msgid "Server name" +msgstr "Nombre del servidor" + +#: class/dashboard/subpage-diagnostics.php:113 +msgid "PHP version" +msgstr "Versión PHP" + +#: class/dashboard/subpage-diagnostics.php:116 +msgid "User agent" +msgstr "Agente usuario" + +#: class/dashboard/subpage-diagnostics.php:119 +msgid "Max execution time" +msgstr "Tiempo máximo de ejecución" + +#: class/dashboard/subpage-diagnostics.php:120 +msgid "seconds" +msgstr "segundos" + +#: class/dashboard/subpage-diagnostics.php:122 +msgid "Memory limit" +msgstr "Límite de memoria" + +#: class/dashboard/subpage-diagnostics.php:125 +msgid "PHP extensions" +msgstr "Extensiones PHP" + +#: class/dashboard/subpage-diagnostics.php:128 +msgid "WordPress version" +msgstr "Versión de WordPress" + +#: class/dashboard/subpage-diagnostics.php:131 +msgid "Active Theme" +msgstr "Tema activo" + +#: class/dashboard/subpage-main.php:60 class/hooks.php:82 +msgid "Settings" +msgstr "Ajustes" + +#: class/dashboard/subpage-main.php:61 +msgid "Customize" +msgstr "Personalizar" + +#: class/dashboard/subpage-main.php:63 +msgid "Expert mode" +msgstr "Modo experto" + +#: class/dashboard/subpage-main.php:65 +msgid "How to" +msgstr "Cómo queda" + +#: class/dashboard/subpage-main.php:78 +msgid "References Container" +msgstr "Sección de referencias" + +#: class/dashboard/subpage-main.php:79 +#, php-format +msgid "%s styling" +msgstr "Apariencia de %s" + +#: class/dashboard/subpage-main.php:81 +msgid "Other" +msgstr "Otro" + +#: class/dashboard/subpage-main.php:83 +msgid "Superscript layout" +msgstr "Apariencia del superíndice" + +#: class/dashboard/subpage-main.php:84 +msgid "Mouse-over box" +msgstr "Caja sobre el cursor" + +#: class/dashboard/subpage-main.php:85 +msgid "Hyperlink symbol in the Reference container" +msgstr "Símbolo del enlace en la sección de referencias" + +#: class/dashboard/subpage-main.php:86 +msgid "Add custom CSS to the public page" +msgstr "Añade CSS personalizado a la página pública" + +#: class/dashboard/subpage-main.php:88 +msgid "WordPress hooks to look for Footnote short codes" +msgstr "Enlaces a WordPress para buscar shortcodes de footnote" + +#: class/dashboard/subpage-main.php:90 +msgid "Brief introduction in how to use the plugin" +msgstr "Breve introducción sobre cómo usar el plugin" + +#: class/dashboard/subpage-main.php:91 +msgid "Help us to improve our Plugin" +msgstr "Ayúdanos a mejorar nuestro plugin" + +#: class/dashboard/subpage-main.php:104 +msgid "in the footer" +msgstr "en el pie" + +#: class/dashboard/subpage-main.php:105 +msgid "at the end of the post" +msgstr "al final de la entrada" + +#: class/dashboard/subpage-main.php:106 +msgid "in the widget area" +msgstr "en el área de widgets" + +#: class/dashboard/subpage-main.php:114 +msgid "References label" +msgstr "Título" + +#: class/dashboard/subpage-main.php:117 +msgid "Collapse references by default" +msgstr "Contraer por defecto" + +#: class/dashboard/subpage-main.php:120 +msgid "Where shall the reference container appear" +msgstr "Dónde debería aparecer" + +#: class/dashboard/subpage-main.php:139 class/dashboard/subpage-main.php:239 +#: class/dashboard/subpage-main.php:290 +msgid "Yes" +msgstr "Sí" + +#: class/dashboard/subpage-main.php:140 class/dashboard/subpage-main.php:240 +#: class/dashboard/subpage-main.php:291 +msgid "No" +msgstr "No" + +#: class/dashboard/subpage-main.php:147 class/dashboard/subpage-main.php:154 +msgid "user defined" +msgstr "definido por el usuario" + +#: class/dashboard/subpage-main.php:158 +msgid "Arabic Numbers - Plain" +msgstr "Números arábigos - simple" + +#: class/dashboard/subpage-main.php:159 +msgid "Arabic Numbers - Leading 0" +msgstr "Números arábigos - empezando con 0" + +#: class/dashboard/subpage-main.php:160 +msgid "Latin Character - lower case" +msgstr "Caracteres latinos - minúsculas" + +#: class/dashboard/subpage-main.php:161 +msgid "Latin Character - upper case" +msgstr "Caracteres latinos - mayúsculas" + +#: class/dashboard/subpage-main.php:162 +msgid "Roman Numerals" +msgstr "Números romanos" + +#: class/dashboard/subpage-main.php:170 +msgid "Combine identical footnotes" +msgstr "Combinar notas idénticas" + +#: class/dashboard/subpage-main.php:173 +msgid "Footnote tag starts with" +msgstr "Etiqueta de inicio de nota" + +#: class/dashboard/subpage-main.php:176 +msgid "and ends with" +msgstr "Etiqueta de fin de nota" + +#: class/dashboard/subpage-main.php:185 +msgid "Counter style" +msgstr "Estilo del contador" + +#: class/dashboard/subpage-main.php:207 class/task.php:149 +#, php-format +msgid "I %s %s" +msgstr "Yo %s %s" + +#: class/dashboard/subpage-main.php:208 class/task.php:152 +#, php-format +msgid "this site uses the awesome %s Plugin" +msgstr "este sitio utiliza el impresionante plugin %s" + +#: class/dashboard/subpage-main.php:209 class/task.php:156 +#, php-format +msgid "extra smooth %s" +msgstr "" + +#: class/dashboard/subpage-main.php:210 +msgid "random text" +msgstr "texto aleatorio" + +#: class/dashboard/subpage-main.php:211 +#, php-format +msgid "Don't display a %s %s text in my footer." +msgstr "No mostrar en mi pie el texto: %s %s" + +#: class/dashboard/subpage-main.php:219 +#, php-format +msgid "Tell the world you're using %s" +msgstr "Cuéntale al mundo que usas %s" + +#: class/dashboard/subpage-main.php:222 +#, php-format +msgid "" +"Don't tell the world you're using %s on specific pages by adding the " +"following short code:" +msgstr "" +"Para no mostrar públicamente en páginas/entradas específicas que usas %s, " +"añade el siguiente shortcode a las mismas:" + +#: class/dashboard/subpage-main.php:248 +msgid "Allow footnotes on Summarized Posts" +msgstr "Permitir notas al pie en entradas resumidas" + +#: class/dashboard/subpage-main.php:250 +msgid "Enable the Expert mode" +msgstr "Habilitar el modo experto" + +#: class/dashboard/subpage-main.php:270 +msgid "Before Footnotes index" +msgstr "Antes del indicador de nota" + +#: class/dashboard/subpage-main.php:273 +msgid "After Footnotes index" +msgstr "Después del indicador de nota" + +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "" + +#: class/dashboard/subpage-main.php:298 +msgid "center right" +msgstr "" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" +msgstr "" + +#: class/dashboard/subpage-main.php:301 +msgid "bottom left" +msgstr "" + +#: class/dashboard/subpage-main.php:302 +msgid "center left" +msgstr "" + +#: class/dashboard/subpage-main.php:309 +msgid "Enable the mouse-over box" +msgstr "Habilitar la caja sobre el cursor" + +#: class/dashboard/subpage-main.php:312 +msgid "Display only an excerpt" +msgstr "Motrar sólo un extracto" + +#: class/dashboard/subpage-main.php:315 +msgid "Maximum characters for the excerpt" +msgstr "Caracteres máximos para el extracto" + +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "" + +#: class/dashboard/subpage-main.php:329 +msgid "Color" +msgstr "Color" + +#: class/dashboard/subpage-main.php:331 +msgid "Empty color will use the default color defined by your current theme." +msgstr "" +"Si se deja vacío se usará el color por defecto definido por tu tema actual." + +#: class/dashboard/subpage-main.php:333 +msgid "Background color" +msgstr "Color del fondo" + +#: class/dashboard/subpage-main.php:335 +msgid "" +"Empty color will use the default background-color defined by your current " +"theme." +msgstr "" +"Si se deja vacío se usará el color por defecto definido por tu tema actual." + +#: class/dashboard/subpage-main.php:337 +msgid "Border width (px)" +msgstr "Ancho del borde (píxeles)" + +#: class/dashboard/subpage-main.php:339 +msgid "Set the width to 0px to hide the border." +msgstr "Establece 0px para ocultar el borde." + +#: class/dashboard/subpage-main.php:341 +msgid "Border color" +msgstr "Color del borde" + +#: class/dashboard/subpage-main.php:343 +msgid "" +"Empty color will use the default border-color defined by your current theme." +msgstr "" +"Si se deja vacío se usará el color por defecto definido por tu tema actual." + +#: class/dashboard/subpage-main.php:345 +msgid "Border radius (px)" +msgstr "" + +#: class/dashboard/subpage-main.php:347 +msgid "Set the radius to 0px to avoid a radius." +msgstr "" + +#: class/dashboard/subpage-main.php:349 +msgid "Max. width (px)" +msgstr "Ancho máximo (píxeles)" + +#: class/dashboard/subpage-main.php:351 +msgid "Set the max-width to 0px to disable this setting." +msgstr "Establece 0px para deshabitar este ajuste." + +#: class/dashboard/subpage-main.php:370 +msgid "Hyperlink symbol" +msgstr "Símbolo del enlace" + +#: class/dashboard/subpage-main.php:373 +msgid "or enter a user defined symbol" +msgstr "o introduce un símbolo" + +#: class/dashboard/subpage-main.php:375 +msgid "if set it overrides the hyperlink symbol above" +msgstr "si se establece, anula el símbolo anterior" + +#: class/dashboard/subpage-main.php:394 +msgid "Add custom CSS" +msgstr "Añadir CSS personalizado" + +#: class/dashboard/subpage-main.php:397 +msgid "" +"Available CSS classes to customize the footnotes and the reference container" +msgstr "" +"Clases CSS disponibles para personalizar las notas y la sección de notas" + +#: class/dashboard/subpage-main.php:400 +msgid "superscript, Footnotes index" +msgstr "" + +#: class/dashboard/subpage-main.php:403 +msgid "mouse-over box, tooltip for each superscript" +msgstr "" + +#: class/dashboard/subpage-main.php:406 +msgid "1st column of the Reference Container, Footnotes index" +msgstr "" + +#: class/dashboard/subpage-main.php:409 +msgid "2nd column of the Reference Container, Arrow / Hyperlink" +msgstr "" + +#: class/dashboard/subpage-main.php:412 +msgid "3rd column of the Reference Container, Footnote text" +msgstr "" + +#: class/dashboard/subpage-main.php:431 +msgid "WordPress hook function name" +msgstr "Nombre de la función de enlace de WordPress" + +#: class/dashboard/subpage-main.php:432 +msgid "Activate" +msgstr "Activar" + +#: class/dashboard/subpage-main.php:433 +msgid "WordPress documentation" +msgstr "Documentación de WordPress" + +#: class/dashboard/subpage-main.php:481 +msgid "example string" +msgstr "nota de ejemplo" + +#: class/dashboard/subpage-main.php:488 +msgid "Start your footnote with the following short code:" +msgstr "Empieza tu nota al pie con el siguiente código:" + +#: class/dashboard/subpage-main.php:491 +msgid "...and end your footnote with this short code:" +msgstr "...y finaliza tu nota al pie con el siguiente código:" + +#: class/dashboard/subpage-main.php:495 +msgid "will be displayed as:" +msgstr "será mostrado así:" + +#: class/dashboard/subpage-main.php:498 +#, php-format +msgid "" +"For further information please check out our %ssupport forum%s on WordPress." +"org." +msgstr "" +"Para más información revisa nuestro %sforo de soporte%s en WordPress.org" + +#: class/dashboard/subpage-main.php:519 +msgid "Donate now" +msgstr "Donar ahora" + +#: class/hooks.php:59 +msgid "You must be logged in to run this script." +msgstr "Deberás estar identificado para ejecutar este script." + +#: class/hooks.php:63 +msgid "You do not have permission to run this script." +msgstr "No tienes permiso para ejecutar este script." + +#: class/hooks.php:80 +msgid "Support" +msgstr "Soporte" + +#: class/hooks.php:84 +msgid "Donate" +msgstr "Donar" + +#: class/task.php:365 +#, php-format +msgid "%scontinue%s" +msgstr "%scontinuar%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 "" +"El widget define la posición de la sección de referencias si estableces " +"\"área de widgets\"." + +#~ msgid "General" +#~ msgstr "General" + +#~ msgid "%s Settings" +#~ msgstr "%s Settings" + +#~ msgid "If you have any questions, please don't hesitate to %se-mail%s us." +#~ msgstr "If you have any questions, please don't hesitate to %se-mail%s us." + +#~ msgid "HowTo" +#~ msgstr "HowTo" + +#~ msgid "%s Widget" +#~ msgstr "%s Widget" + +#~ msgid "Hey there, I'm using the awesome WordPress Plugin called %s" +#~ msgstr "Hey there, I'm using the awesome %s Plugin" + +#~ msgid "((" +#~ msgstr "((" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "[ref]" +#~ msgstr "[ref]" + +#~ msgid "))" +#~ msgstr "))" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "[/ref]" +#~ msgstr "[/ref]" + +#~ msgid "starts with:" +#~ msgstr "starts with:" + +#~ msgid "Save" +#~ msgstr "Save" + +#~ msgid "General Information" +#~ msgstr "General Information" + +#~ msgid "" +#~ "Insert the following shortcode where you want your footnotes to be " +#~ "displayed:" +#~ msgstr "" +#~ "Insert the following shortcode where you want your footnotes to be " +#~ "displayed:" + +#~ msgid "The plugin replaces this shortcode automatically with your footnotes" +#~ msgstr "" +#~ "The plugin replaces this shortcode automatically with your footnotes" diff --git a/languages/footnotes.mo b/languages/footnotes.mo index 8375d34e8eca8bb532522c6c6714c417a02c72f4..4037b6ff0f07e3c541e686fe47760dd69f6b87c0 100644 GIT binary patch delta 29 gcmaFF@`z=^8g>f>LnA9=%ZZy6Axsm4jkntw0g#jlN&o-= delta 29 ecmaFF@`z=^8g@ekLlY|_!-<;}Va$!U+Zh3mO9?gr diff --git a/languages/footnotes.pot b/languages/footnotes.pot index fbdd572..9c92d11 100644 --- a/languages/footnotes.pot +++ b/languages/footnotes.pot @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: footnotes\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n" -"POT-Creation-Date: 2014-10-11 14:21+0100\n" -"PO-Revision-Date: 2014-10-11 14:21+0100\n" +"POT-Creation-Date: 2014-10-18 12:39+0100\n" +"PO-Revision-Date: 2014-10-18 12:40+0100\n" "Last-Translator: Stefan Herndler \n" "Language-Team: enter your name \n" "Language: en_GB\n" @@ -55,7 +55,7 @@ msgstr "" msgid "ratings" msgstr "" -#: class/dashboard/layout.php:243 +#: class/dashboard/layout.php:241 msgid "Settings saved" msgstr "" @@ -235,17 +235,17 @@ msgstr "" msgid "Counter style" msgstr "" -#: class/dashboard/subpage-main.php:207 class/task.php:140 +#: class/dashboard/subpage-main.php:207 class/task.php:149 #, php-format msgid "I %s %s" msgstr "" -#: class/dashboard/subpage-main.php:208 class/task.php:143 +#: class/dashboard/subpage-main.php:208 class/task.php:152 #, php-format msgid "this site uses the awesome %s Plugin" msgstr "" -#: class/dashboard/subpage-main.php:209 class/task.php:147 +#: class/dashboard/subpage-main.php:209 class/task.php:156 #, php-format msgid "extra smooth %s" msgstr "" @@ -287,146 +287,198 @@ msgstr "" msgid "After Footnotes index" msgstr "" +#: class/dashboard/subpage-main.php:295 +msgid "top left" +msgstr "" + +#: class/dashboard/subpage-main.php:296 +msgid "top center" +msgstr "" + +#: class/dashboard/subpage-main.php:297 +msgid "top right" +msgstr "" + #: class/dashboard/subpage-main.php:298 -msgid "Enable the mouse-over box" +msgid "center right" +msgstr "" + +#: class/dashboard/subpage-main.php:299 +msgid "bottom right" +msgstr "" + +#: class/dashboard/subpage-main.php:300 +msgid "bottom center" msgstr "" #: class/dashboard/subpage-main.php:301 -msgid "Display only an excerpt" +msgid "bottom left" msgstr "" -#: class/dashboard/subpage-main.php:304 -msgid "Maximum characters for the excerpt" -msgstr "" - -#: class/dashboard/subpage-main.php:307 -msgid "Color" +#: class/dashboard/subpage-main.php:302 +msgid "center left" msgstr "" #: class/dashboard/subpage-main.php:309 +msgid "Enable the mouse-over box" +msgstr "" + +#: class/dashboard/subpage-main.php:312 +msgid "Display only an excerpt" +msgstr "" + +#: class/dashboard/subpage-main.php:315 +msgid "Maximum characters for the excerpt" +msgstr "" + +#: class/dashboard/subpage-main.php:318 +msgid "Position" +msgstr "" + +#: class/dashboard/subpage-main.php:321 +msgid "Offset X (px)" +msgstr "" + +#: class/dashboard/subpage-main.php:323 +msgid "Offset (X axis) in px (may be negative)" +msgstr "" + +#: class/dashboard/subpage-main.php:325 +msgid "Offset Y (px)" +msgstr "" + +#: class/dashboard/subpage-main.php:327 +msgid "Offset (Y axis) in px (may be negative)" +msgstr "" + +#: class/dashboard/subpage-main.php:329 +msgid "Color" +msgstr "" + +#: class/dashboard/subpage-main.php:331 msgid "Empty color will use the default color defined by your current theme." msgstr "" -#: class/dashboard/subpage-main.php:311 +#: class/dashboard/subpage-main.php:333 msgid "Background color" msgstr "" -#: class/dashboard/subpage-main.php:313 +#: class/dashboard/subpage-main.php:335 msgid "" "Empty color will use the default background-color defined by your current " "theme." msgstr "" -#: class/dashboard/subpage-main.php:315 +#: class/dashboard/subpage-main.php:337 msgid "Border width (px)" msgstr "" -#: class/dashboard/subpage-main.php:317 +#: class/dashboard/subpage-main.php:339 msgid "Set the width to 0px to hide the border." msgstr "" -#: class/dashboard/subpage-main.php:319 +#: class/dashboard/subpage-main.php:341 msgid "Border color" msgstr "" -#: class/dashboard/subpage-main.php:321 +#: class/dashboard/subpage-main.php:343 msgid "" "Empty color will use the default border-color defined by your current theme." msgstr "" -#: class/dashboard/subpage-main.php:323 +#: class/dashboard/subpage-main.php:345 msgid "Border radius (px)" msgstr "" -#: class/dashboard/subpage-main.php:325 +#: class/dashboard/subpage-main.php:347 msgid "Set the radius to 0px to avoid a radius." msgstr "" -#: class/dashboard/subpage-main.php:327 +#: class/dashboard/subpage-main.php:349 msgid "Max. width (px)" msgstr "" -#: class/dashboard/subpage-main.php:329 +#: class/dashboard/subpage-main.php:351 msgid "Set the max-width to 0px to disable this setting." msgstr "" -#: class/dashboard/subpage-main.php:348 +#: class/dashboard/subpage-main.php:370 msgid "Hyperlink symbol" msgstr "" -#: class/dashboard/subpage-main.php:351 +#: class/dashboard/subpage-main.php:373 msgid "or enter a user defined symbol" msgstr "" -#: class/dashboard/subpage-main.php:353 +#: class/dashboard/subpage-main.php:375 msgid "if set it overrides the hyperlink symbol above" msgstr "" -#: class/dashboard/subpage-main.php:372 +#: class/dashboard/subpage-main.php:394 msgid "Add custom CSS" msgstr "" -#: class/dashboard/subpage-main.php:375 +#: class/dashboard/subpage-main.php:397 msgid "" "Available CSS classes to customize the footnotes and the reference container" msgstr "" -#: class/dashboard/subpage-main.php:378 +#: class/dashboard/subpage-main.php:400 msgid "superscript, Footnotes index" msgstr "" -#: class/dashboard/subpage-main.php:381 +#: class/dashboard/subpage-main.php:403 msgid "mouse-over box, tooltip for each superscript" msgstr "" -#: class/dashboard/subpage-main.php:384 +#: class/dashboard/subpage-main.php:406 msgid "1st column of the Reference Container, Footnotes index" msgstr "" -#: class/dashboard/subpage-main.php:387 +#: class/dashboard/subpage-main.php:409 msgid "2nd column of the Reference Container, Arrow / Hyperlink" msgstr "" -#: class/dashboard/subpage-main.php:390 +#: class/dashboard/subpage-main.php:412 msgid "3rd column of the Reference Container, Footnote text" msgstr "" -#: class/dashboard/subpage-main.php:409 +#: class/dashboard/subpage-main.php:431 msgid "WordPress hook function name" msgstr "" -#: class/dashboard/subpage-main.php:410 +#: class/dashboard/subpage-main.php:432 msgid "Activate" msgstr "" -#: class/dashboard/subpage-main.php:411 +#: class/dashboard/subpage-main.php:433 msgid "WordPress documentation" msgstr "" -#: class/dashboard/subpage-main.php:459 +#: class/dashboard/subpage-main.php:481 msgid "example string" msgstr "" -#: class/dashboard/subpage-main.php:466 +#: class/dashboard/subpage-main.php:488 msgid "Start your footnote with the following short code:" msgstr "" -#: class/dashboard/subpage-main.php:469 +#: class/dashboard/subpage-main.php:491 msgid "...and end your footnote with this short code:" msgstr "" -#: class/dashboard/subpage-main.php:473 +#: class/dashboard/subpage-main.php:495 msgid "will be displayed as:" msgstr "" -#: class/dashboard/subpage-main.php:476 +#: class/dashboard/subpage-main.php:498 #, php-format msgid "" "For further information please check out our %ssupport forum%s on WordPress." "org." msgstr "" -#: class/dashboard/subpage-main.php:495 +#: class/dashboard/subpage-main.php:519 msgid "Donate now" msgstr "" @@ -446,7 +498,7 @@ msgstr "" msgid "Donate" msgstr "" -#: class/task.php:356 +#: class/task.php:365 #, php-format msgid "%scontinue%s" msgstr "" diff --git a/readme.txt b/readme.txt index f2474b1..fd0f719 100755 --- a/readme.txt +++ b/readme.txt @@ -84,6 +84,15 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest** == Changelog == += 1.5.8 = +- **IMPORTANT**: Improved performance. You need to Activate the Plugin again. (Settings won't change!) +- Add: Translation: United States +- Add: Translation: Austria +- Add: Translation: Spanish (many thanks to Pablo L.) +- Update: Translations (de_DE and en_GB) +- Update: Changed Plugins init file name to improve performance (Re-activation of the Plugin is required) +- Bugfix: Avoid multiple IDs for footnotes when multiple reference containers are displayed + = 1.5.7 = - Add: Setting to define the positioning of the mouse-over box - Add: Setting to define an offset for the mouse-over box (precise positioning) diff --git a/templates/public/footnote.html b/templates/public/footnote.html index 808c1c0..0098125 100755 --- a/templates/public/footnote.html +++ b/templates/public/footnote.html @@ -1,2 +1,2 @@ -[[before]][[index]][[after]] -[[text]] \ No newline at end of file +[[before]][[index]][[after]] +[[text]] \ No newline at end of file diff --git a/templates/public/reference-container-body.html b/templates/public/reference-container-body.html index 2312110..0dbafc8 100755 --- a/templates/public/reference-container-body.html +++ b/templates/public/reference-container-body.html @@ -1,5 +1,5 @@ - [[index]]. - [[arrow]] + [[index]]. + [[arrow]] [[text]] \ No newline at end of file diff --git a/templates/public/reference-container.html b/templates/public/reference-container.html index 4838d7e..6db290d 100644 --- a/templates/public/reference-container.html +++ b/templates/public/reference-container.html @@ -25,12 +25,11 @@ footnote_collapse_reference_container(); } } - function footnote_moveToAnchor(p_str_TargetID) { footnote_expand_reference_container(); var l_obj_Target = jQuery("#" + p_str_TargetID); - if( l_obj_Target.length ) { - event.preventDefault(); + if(l_obj_Target.length) { + //event.preventDefault(); jQuery('html, body').animate({ scrollTop: l_obj_Target.offset().top - window.innerHeight/2 }, 1000); diff --git a/templates/public/tooltip.html b/templates/public/tooltip.html index b7640c2..38c3d3c 100644 --- a/templates/public/tooltip.html +++ b/templates/public/tooltip.html @@ -1,6 +1,6 @@