- **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
This commit is contained in:
parent
3ad7787a33
commit
56a6264f0b
21 changed files with 2053 additions and 163 deletions
|
@ -22,9 +22,9 @@ class MCI_Footnotes_Hooks {
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*/
|
*/
|
||||||
public static function registerHooks() {
|
public static function registerHooks() {
|
||||||
register_activation_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "activatePlugin"));
|
register_activation_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "activatePlugin"));
|
||||||
register_deactivation_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "deactivatePlugin"));
|
register_deactivation_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "deactivatePlugin"));
|
||||||
register_uninstall_hook(dirname(__FILE__) . "/../index.php", array("MCI_Footnotes_Hooks", "uninstallPlugin"));
|
register_uninstall_hook(dirname(__FILE__) . "/../footnotes.php", array("MCI_Footnotes_Hooks", "uninstallPlugin"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,14 +45,10 @@ class MCI_Footnotes {
|
||||||
// initialize the Plugin Task
|
// initialize the Plugin Task
|
||||||
$this->initializeTask();
|
$this->initializeTask();
|
||||||
|
|
||||||
// Register all Public Stylesheets
|
// Register all Public Stylesheets and Scripts
|
||||||
add_action('init', array($this, 'registerPublicStyling'));
|
add_action('init', array($this, 'registerPublic'));
|
||||||
// Register all Public Scripts
|
// Enqueue all Public Stylesheets and Scripts
|
||||||
add_action('init', array($this, 'registerPublicScripts'));
|
add_action('wp_enqueue_scripts', array($this, 'registerPublic'));
|
||||||
// Enqueue all Public Stylesheets
|
|
||||||
add_action('wp_enqueue_scripts', array($this, 'registerPublicStyling'));
|
|
||||||
// Enqueue all Public Scripts
|
|
||||||
add_action('wp_enqueue_scripts', array($this, 'registerPublicScripts'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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
|
* @author Stefan Herndler
|
||||||
* @since 1.5.0
|
* @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)
|
// add the jQuery plugin (already registered by WordPress)
|
||||||
wp_enqueue_script('jquery');
|
wp_enqueue_script('jquery');
|
||||||
wp_enqueue_script('mci_footnotes_js_jquery_tools', plugins_url('../js/jquery.tools.min.js', __FILE__), array());
|
wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__));
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -34,6 +34,15 @@ class MCI_Footnotes_Task {
|
||||||
*/
|
*/
|
||||||
public static $a_bool_AllowLoveMe = true;
|
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.
|
* 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
|
// fill the footnotes template
|
||||||
$l_obj_Template->replace(
|
$l_obj_Template->replace(
|
||||||
array(
|
array(
|
||||||
|
"id" => self::$a_str_Prefix . $l_str_Index,
|
||||||
"index" => $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 : "",
|
"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),
|
"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_int_OffsetX = intval(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_INT_FOOTNOTES_MOUSE_OVER_BOX_OFFSET_X));
|
||||||
$l_obj_TemplateTooltip->replace(
|
$l_obj_TemplateTooltip->replace(
|
||||||
array(
|
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),
|
"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-y" => !empty($l_int_OffsetY) ? $l_int_OffsetY : 0,
|
||||||
"offset-x" => !empty($l_int_OffsetX) ? $l_int_OffsetX : 0
|
"offset-x" => !empty($l_int_OffsetX) ? $l_int_OffsetX : 0
|
||||||
|
@ -458,7 +468,7 @@ class MCI_Footnotes_Task {
|
||||||
$l_obj_Template->replace(
|
$l_obj_Template->replace(
|
||||||
array(
|
array(
|
||||||
"index" => $l_str_FootnoteIndex,
|
"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,
|
"arrow" => $l_str_Arrow,
|
||||||
"text" => $l_str_FootnoteText
|
"text" => $l_str_FootnoteText
|
||||||
)
|
)
|
||||||
|
@ -481,6 +491,7 @@ class MCI_Footnotes_Task {
|
||||||
|
|
||||||
// free all found footnotes if reference container will be displayed
|
// free all found footnotes if reference container will be displayed
|
||||||
self::$a_arr_Footnotes = array();
|
self::$a_arr_Footnotes = array();
|
||||||
|
self::$a_str_Prefix = rand(1000, 9999) . "_";
|
||||||
return $l_obj_TemplateContainer->getContent();
|
return $l_obj_TemplateContainer->getContent();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -35,7 +35,7 @@
|
||||||
require_once(dirname(__FILE__) . "/includes.php");
|
require_once(dirname(__FILE__) . "/includes.php");
|
||||||
|
|
||||||
// add Plugin Links to the "installed plugins" page
|
// 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);
|
add_filter("plugin_action_links_{$l_str_plugin_file}", array("MCI_Footnotes_Hooks", "PluginLinks"), 10, 2);
|
||||||
|
|
||||||
// initialize the Plugin
|
// initialize the Plugin
|
BIN
languages/de_AT.mo
Normal file
BIN
languages/de_AT.mo
Normal file
Binary file not shown.
568
languages/de_AT.po
Executable file
568
languages/de_AT.po
Executable file
|
@ -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 <support@herndler.org>\n"
|
||||||
|
"Language-Team: SHE <s.herndler@methis.at>\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"
|
Binary file not shown.
|
@ -1,11 +1,11 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: footnotes\n"
|
"Project-Id-Version: footnotes\n"
|
||||||
"POT-Creation-Date: 2014-10-11 14:25+0100\n"
|
"POT-Creation-Date: 2014-10-18 12:40+0100\n"
|
||||||
"PO-Revision-Date: 2014-10-11 14:25+0100\n"
|
"PO-Revision-Date: 2014-10-18 12:40+0100\n"
|
||||||
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
||||||
"Language-Team: SHE <s.herndler@methis.at>\n"
|
"Language-Team: SHE <s.herndler@methis.at>\n"
|
||||||
"Language: de\n"
|
"Language: de_DE\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -54,7 +54,7 @@ msgstr "Bewertung basierend auf"
|
||||||
msgid "ratings"
|
msgid "ratings"
|
||||||
msgstr "Bewertungen"
|
msgstr "Bewertungen"
|
||||||
|
|
||||||
#: class/dashboard/layout.php:243
|
#: class/dashboard/layout.php:241
|
||||||
msgid "Settings saved"
|
msgid "Settings saved"
|
||||||
msgstr "Einstellungen gespeichert"
|
msgstr "Einstellungen gespeichert"
|
||||||
|
|
||||||
|
@ -234,17 +234,17 @@ msgstr "endet mit"
|
||||||
msgid "Counter style"
|
msgid "Counter style"
|
||||||
msgstr "Fußnoten Zähler"
|
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
|
#, php-format
|
||||||
msgid "I %s %s"
|
msgid "I %s %s"
|
||||||
msgstr "Ich %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
|
#, php-format
|
||||||
msgid "this site uses the awesome %s Plugin"
|
msgid "this site uses the awesome %s Plugin"
|
||||||
msgstr "Diese Seite verwendet das Plugin %s"
|
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
|
#, php-format
|
||||||
msgid "extra smooth %s"
|
msgid "extra smooth %s"
|
||||||
msgstr "besonders feine %s"
|
msgstr "besonders feine %s"
|
||||||
|
@ -288,33 +288,85 @@ msgstr "Symbol nach Fußnoten"
|
||||||
msgid "After Footnotes index"
|
msgid "After Footnotes index"
|
||||||
msgstr "Symbole nach Fußnoten"
|
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
|
#: 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"
|
msgid "Enable the mouse-over box"
|
||||||
msgstr "Aktiviere das Tooltip Popup Fenster"
|
msgstr "Aktiviere das Tooltip Popup Fenster"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:301
|
#: class/dashboard/subpage-main.php:312
|
||||||
msgid "Display only an excerpt"
|
msgid "Display only an excerpt"
|
||||||
msgstr "Zeigt nur eine Zusammenfassung"
|
msgstr "Zeigt nur eine Zusammenfassung"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:304
|
#: class/dashboard/subpage-main.php:315
|
||||||
msgid "Maximum characters for the excerpt"
|
msgid "Maximum characters for the excerpt"
|
||||||
msgstr "Maximale Zeichenlänge der Zusammenfasung"
|
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"
|
msgid "Color"
|
||||||
msgstr "Schriftfarbe"
|
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."
|
msgid "Empty color will use the default color defined by your current theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lassen Sie die Farbe leer um die Standard Schriftfarbe Ihres Themes zu "
|
"Lassen Sie die Farbe leer um die Standard Schriftfarbe Ihres Themes zu "
|
||||||
"verwenden."
|
"verwenden."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:311
|
#: class/dashboard/subpage-main.php:333
|
||||||
msgid "Background color"
|
msgid "Background color"
|
||||||
msgstr "Hintergrundfarbe"
|
msgstr "Hintergrundfarbe"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:313
|
#: class/dashboard/subpage-main.php:335
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default background-color defined by your current "
|
"Empty color will use the default background-color defined by your current "
|
||||||
"theme."
|
"theme."
|
||||||
|
@ -322,113 +374,113 @@ msgstr ""
|
||||||
"Lassen Sie die Farbe leer um die Standard Hintergrundfabe Ihres Themes zu "
|
"Lassen Sie die Farbe leer um die Standard Hintergrundfabe Ihres Themes zu "
|
||||||
"verwenden."
|
"verwenden."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:315
|
#: class/dashboard/subpage-main.php:337
|
||||||
msgid "Border width (px)"
|
msgid "Border width (px)"
|
||||||
msgstr "Rand Breite (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."
|
msgid "Set the width to 0px to hide the border."
|
||||||
msgstr "Setzen Sie die Breite auf 0px um einen Rand zu verbergen."
|
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"
|
msgid "Border color"
|
||||||
msgstr "Rand Farbe"
|
msgstr "Rand Farbe"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:321
|
#: class/dashboard/subpage-main.php:343
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default border-color defined by your current theme."
|
"Empty color will use the default border-color defined by your current theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lassen Sie die Farbe leer um die Standardfarbe Ihres Themes für den Rand zu "
|
"Lassen Sie die Farbe leer um die Standardfarbe Ihres Themes für den Rand zu "
|
||||||
"verwenden."
|
"verwenden."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:323
|
#: class/dashboard/subpage-main.php:345
|
||||||
msgid "Border radius (px)"
|
msgid "Border radius (px)"
|
||||||
msgstr "Rand 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."
|
msgid "Set the radius to 0px to avoid a radius."
|
||||||
msgstr "Setzen Sie den Radius auf 0px um einen Radius zu verhindern."
|
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)"
|
msgid "Max. width (px)"
|
||||||
msgstr "Max. Breite (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."
|
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."
|
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"
|
msgid "Hyperlink symbol"
|
||||||
msgstr "Symbol für den Hyperlink"
|
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"
|
msgid "or enter a user defined symbol"
|
||||||
msgstr "oder definieren Sie ein eigenes 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"
|
msgid "if set it overrides the hyperlink symbol above"
|
||||||
msgstr "wenn gesetzt, wird das oben definierte Symbol überschrieben"
|
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"
|
msgid "Add custom CSS"
|
||||||
msgstr "Benutzerdefinierter CSS Code"
|
msgstr "Benutzerdefinierter CSS Code"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:375
|
#: class/dashboard/subpage-main.php:397
|
||||||
msgid ""
|
msgid ""
|
||||||
"Available CSS classes to customize the footnotes and the reference container"
|
"Available CSS classes to customize the footnotes and the reference container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Verfügbare CSS Klassen um die Fußnoten und den Einzelnachweis zu "
|
"Verfügbare CSS Klassen um die Fußnoten und den Einzelnachweis zu "
|
||||||
"personalisieren"
|
"personalisieren"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:378
|
#: class/dashboard/subpage-main.php:400
|
||||||
msgid "superscript, Footnotes index"
|
msgid "superscript, Footnotes index"
|
||||||
msgstr "Fußnote Index im Text"
|
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"
|
msgid "mouse-over box, tooltip for each superscript"
|
||||||
msgstr "Tooltip Box für jede Fußnote"
|
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"
|
msgid "1st column of the Reference Container, Footnotes index"
|
||||||
msgstr "erste Spalte des Einzelnachweis, Fußnote 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"
|
msgid "2nd column of the Reference Container, Arrow / Hyperlink"
|
||||||
msgstr "zweite Spalte des Einzelnachweis, Pfeil / Link"
|
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"
|
msgid "3rd column of the Reference Container, Footnote text"
|
||||||
msgstr "dritte Spalte des Einzelnachweis Fußnote 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"
|
msgid "WordPress hook function name"
|
||||||
msgstr "WordPress hook Name"
|
msgstr "WordPress hook Name"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:410
|
#: class/dashboard/subpage-main.php:432
|
||||||
msgid "Activate"
|
msgid "Activate"
|
||||||
msgstr "Aktivieren"
|
msgstr "Aktivieren"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:411
|
#: class/dashboard/subpage-main.php:433
|
||||||
msgid "WordPress documentation"
|
msgid "WordPress documentation"
|
||||||
msgstr "WordPress Dokumentation"
|
msgstr "WordPress Dokumentation"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:459
|
#: class/dashboard/subpage-main.php:481
|
||||||
msgid "example string"
|
msgid "example string"
|
||||||
msgstr "Beispieltext"
|
msgstr "Beispieltext"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:466
|
#: class/dashboard/subpage-main.php:488
|
||||||
msgid "Start your footnote with the following short code:"
|
msgid "Start your footnote with the following short code:"
|
||||||
msgstr "Starten Sie eine Fußnote mit dem folgenden Shortcode:"
|
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:"
|
msgid "...and end your footnote with this short code:"
|
||||||
msgstr "...und beenden Sie diesen mit:"
|
msgstr "...und beenden Sie diesen mit:"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:473
|
#: class/dashboard/subpage-main.php:495
|
||||||
msgid "will be displayed as:"
|
msgid "will be displayed as:"
|
||||||
msgstr "wird dargestellt als:"
|
msgstr "wird dargestellt als:"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:476
|
#: class/dashboard/subpage-main.php:498
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For further information please check out our %ssupport forum%s on WordPress."
|
"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."
|
"Für mehr Informationen besuchen Sie unser %sSupport Forum%s auf WordPress."
|
||||||
"org."
|
"org."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:495
|
#: class/dashboard/subpage-main.php:519
|
||||||
msgid "Donate now"
|
msgid "Donate now"
|
||||||
msgstr "Jetzt spenden"
|
msgstr "Jetzt spenden"
|
||||||
|
|
||||||
|
@ -457,7 +509,7 @@ msgstr "Support"
|
||||||
msgid "Donate"
|
msgid "Donate"
|
||||||
msgstr "Spenden"
|
msgstr "Spenden"
|
||||||
|
|
||||||
#: class/task.php:356
|
#: class/task.php:365
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%scontinue%s"
|
msgid "%scontinue%s"
|
||||||
msgstr "%sweiter lesen%s"
|
msgstr "%sweiter lesen%s"
|
||||||
|
|
Binary file not shown.
|
@ -1,11 +1,11 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: footnotes\n"
|
"Project-Id-Version: footnotes\n"
|
||||||
"POT-Creation-Date: 2014-10-11 14:21+0100\n"
|
"POT-Creation-Date: 2014-10-18 12:40+0100\n"
|
||||||
"PO-Revision-Date: 2014-10-11 14:21+0100\n"
|
"PO-Revision-Date: 2014-10-18 12:40+0100\n"
|
||||||
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
||||||
"Language-Team: SHE <s.herndler@methis.at>\n"
|
"Language-Team: SHE <s.herndler@methis.at>\n"
|
||||||
"Language: en\n"
|
"Language: en_GB\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
@ -54,7 +54,7 @@ msgstr "rating based on"
|
||||||
msgid "ratings"
|
msgid "ratings"
|
||||||
msgstr "ratings"
|
msgstr "ratings"
|
||||||
|
|
||||||
#: class/dashboard/layout.php:243
|
#: class/dashboard/layout.php:241
|
||||||
msgid "Settings saved"
|
msgid "Settings saved"
|
||||||
msgstr "Settings saved"
|
msgstr "Settings saved"
|
||||||
|
|
||||||
|
@ -234,17 +234,17 @@ msgstr "and ends with"
|
||||||
msgid "Counter style"
|
msgid "Counter style"
|
||||||
msgstr "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
|
#, php-format
|
||||||
msgid "I %s %s"
|
msgid "I %s %s"
|
||||||
msgstr "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
|
#, php-format
|
||||||
msgid "this site uses the awesome %s Plugin"
|
msgid "this site uses the awesome %s Plugin"
|
||||||
msgstr "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
|
#, php-format
|
||||||
msgid "extra smooth %s"
|
msgid "extra smooth %s"
|
||||||
msgstr "extra smooth %s"
|
msgstr "extra smooth %s"
|
||||||
|
@ -288,31 +288,83 @@ msgstr "Before Footnotes index"
|
||||||
msgid "After Footnotes index"
|
msgid "After Footnotes index"
|
||||||
msgstr "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
|
#: 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"
|
msgid "Enable the mouse-over box"
|
||||||
msgstr "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"
|
msgid "Display only an excerpt"
|
||||||
msgstr "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"
|
msgid "Maximum characters for the excerpt"
|
||||||
msgstr "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"
|
msgid "Color"
|
||||||
msgstr "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."
|
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."
|
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"
|
msgid "Background color"
|
||||||
msgstr "Background color"
|
msgstr "Background color"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:313
|
#: class/dashboard/subpage-main.php:335
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default background-color defined by your current "
|
"Empty color will use the default background-color defined by your current "
|
||||||
"theme."
|
"theme."
|
||||||
|
@ -320,111 +372,111 @@ msgstr ""
|
||||||
"Empty color will use the default background-color defined by your current "
|
"Empty color will use the default background-color defined by your current "
|
||||||
"theme."
|
"theme."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:315
|
#: class/dashboard/subpage-main.php:337
|
||||||
msgid "Border width (px)"
|
msgid "Border width (px)"
|
||||||
msgstr "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."
|
msgid "Set the width to 0px to hide the border."
|
||||||
msgstr "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"
|
msgid "Border color"
|
||||||
msgstr "Border color"
|
msgstr "Border color"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:321
|
#: class/dashboard/subpage-main.php:343
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default border-color defined by your current theme."
|
"Empty color will use the default border-color defined by your current theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Empty color will use the default border-color defined by your current theme."
|
"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)"
|
msgid "Border radius (px)"
|
||||||
msgstr "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."
|
msgid "Set the radius to 0px to avoid a radius."
|
||||||
msgstr "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)"
|
msgid "Max. width (px)"
|
||||||
msgstr "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."
|
msgid "Set the max-width to 0px to disable this setting."
|
||||||
msgstr "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"
|
msgid "Hyperlink symbol"
|
||||||
msgstr "Hyperlink symbol"
|
msgstr "Hyperlink symbol"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:351
|
#: class/dashboard/subpage-main.php:373
|
||||||
msgid "or enter a user defined symbol"
|
msgid "or enter a user defined symbol"
|
||||||
msgstr "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"
|
msgid "if set it overrides the hyperlink symbol above"
|
||||||
msgstr "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"
|
msgid "Add custom CSS"
|
||||||
msgstr "Add custom CSS"
|
msgstr "Add custom CSS"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:375
|
#: class/dashboard/subpage-main.php:397
|
||||||
msgid ""
|
msgid ""
|
||||||
"Available CSS classes to customize the footnotes and the reference container"
|
"Available CSS classes to customize the footnotes and the reference container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Available CSS classes to customize the footnotes and the reference container"
|
"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"
|
msgid "superscript, Footnotes index"
|
||||||
msgstr "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"
|
msgid "mouse-over box, tooltip for each superscript"
|
||||||
msgstr "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"
|
msgid "1st column of the Reference Container, Footnotes index"
|
||||||
msgstr "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"
|
msgid "2nd column of the Reference Container, Arrow / Hyperlink"
|
||||||
msgstr "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"
|
msgid "3rd column of the Reference Container, Footnote text"
|
||||||
msgstr "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"
|
msgid "WordPress hook function name"
|
||||||
msgstr "WordPress hook function name"
|
msgstr "WordPress hook function name"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:410
|
#: class/dashboard/subpage-main.php:432
|
||||||
msgid "Activate"
|
msgid "Activate"
|
||||||
msgstr "Activate"
|
msgstr "Activate"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:411
|
#: class/dashboard/subpage-main.php:433
|
||||||
msgid "WordPress documentation"
|
msgid "WordPress documentation"
|
||||||
msgstr "WordPress documentation"
|
msgstr "WordPress documentation"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:459
|
#: class/dashboard/subpage-main.php:481
|
||||||
msgid "example string"
|
msgid "example string"
|
||||||
msgstr "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:"
|
msgid "Start your footnote with the following short code:"
|
||||||
msgstr "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:"
|
msgid "...and end your footnote with this short code:"
|
||||||
msgstr "...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:"
|
msgid "will be displayed as:"
|
||||||
msgstr "will be displayed as:"
|
msgstr "will be displayed as:"
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:476
|
#: class/dashboard/subpage-main.php:498
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For further information please check out our %ssupport forum%s on WordPress."
|
"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."
|
"For further information please check out our %ssupport forum%s on WordPress."
|
||||||
"org."
|
"org."
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:495
|
#: class/dashboard/subpage-main.php:519
|
||||||
msgid "Donate now"
|
msgid "Donate now"
|
||||||
msgstr "Donate now"
|
msgstr "Donate now"
|
||||||
|
|
||||||
|
@ -453,7 +505,7 @@ msgstr "Support"
|
||||||
msgid "Donate"
|
msgid "Donate"
|
||||||
msgstr "Donate"
|
msgstr "Donate"
|
||||||
|
|
||||||
#: class/task.php:356
|
#: class/task.php:365
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%scontinue%s"
|
msgid "%scontinue%s"
|
||||||
msgstr "%scontinue%s"
|
msgstr "%scontinue%s"
|
||||||
|
|
BIN
languages/en_US.mo
Normal file
BIN
languages/en_US.mo
Normal file
Binary file not shown.
585
languages/en_US.po
Executable file
585
languages/en_US.po
Executable file
|
@ -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 <support@herndler.org>\n"
|
||||||
|
"Language-Team: SHE <s.herndler@methis.at>\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 "<fn>"
|
||||||
|
#~ msgstr "<fn>"
|
||||||
|
|
||||||
|
#~ msgid "[ref]"
|
||||||
|
#~ msgstr "[ref]"
|
||||||
|
|
||||||
|
#~ msgid "))"
|
||||||
|
#~ msgstr "))"
|
||||||
|
|
||||||
|
#~ msgid "</fn>"
|
||||||
|
#~ msgstr "</fn>"
|
||||||
|
|
||||||
|
#~ 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"
|
BIN
languages/es_ES.mo
Normal file
BIN
languages/es_ES.mo
Normal file
Binary file not shown.
576
languages/es_ES.po
Normal file
576
languages/es_ES.po
Normal file
|
@ -0,0 +1,576 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: footnotes\n"
|
||||||
|
"Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n"
|
||||||
|
"POT-Creation-Date: 2014-10-18 12:40+0100\n"
|
||||||
|
"PO-Revision-Date: 2014-10-18 12:41+0100\n"
|
||||||
|
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
||||||
|
"Language-Team: Pablo Laguna <pablolaguna@vera.com.uy>\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 "<fn>"
|
||||||
|
#~ msgstr "<fn>"
|
||||||
|
|
||||||
|
#~ msgid "[ref]"
|
||||||
|
#~ msgstr "[ref]"
|
||||||
|
|
||||||
|
#~ msgid "))"
|
||||||
|
#~ msgstr "))"
|
||||||
|
|
||||||
|
#~ msgid "</fn>"
|
||||||
|
#~ msgstr "</fn>"
|
||||||
|
|
||||||
|
#~ 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"
|
Binary file not shown.
|
@ -4,8 +4,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: footnotes\n"
|
"Project-Id-Version: footnotes\n"
|
||||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n"
|
"Report-Msgid-Bugs-To: http://wordpress.org/tag/footnotes\n"
|
||||||
"POT-Creation-Date: 2014-10-11 14:21+0100\n"
|
"POT-Creation-Date: 2014-10-18 12:39+0100\n"
|
||||||
"PO-Revision-Date: 2014-10-11 14:21+0100\n"
|
"PO-Revision-Date: 2014-10-18 12:40+0100\n"
|
||||||
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
||||||
"Language-Team: enter your name <enter@your.email>\n"
|
"Language-Team: enter your name <enter@your.email>\n"
|
||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
|
@ -55,7 +55,7 @@ msgstr ""
|
||||||
msgid "ratings"
|
msgid "ratings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/layout.php:243
|
#: class/dashboard/layout.php:241
|
||||||
msgid "Settings saved"
|
msgid "Settings saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -235,17 +235,17 @@ msgstr ""
|
||||||
msgid "Counter style"
|
msgid "Counter style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:207 class/task.php:140
|
#: class/dashboard/subpage-main.php:207 class/task.php:149
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "I %s %s"
|
msgid "I %s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:208 class/task.php:143
|
#: class/dashboard/subpage-main.php:208 class/task.php:152
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "this site uses the awesome %s Plugin"
|
msgid "this site uses the awesome %s Plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:209 class/task.php:147
|
#: class/dashboard/subpage-main.php:209 class/task.php:156
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "extra smooth %s"
|
msgid "extra smooth %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -287,146 +287,198 @@ msgstr ""
|
||||||
msgid "After Footnotes index"
|
msgid "After Footnotes index"
|
||||||
msgstr ""
|
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
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:301
|
#: class/dashboard/subpage-main.php:301
|
||||||
msgid "Display only an excerpt"
|
msgid "bottom left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:304
|
#: class/dashboard/subpage-main.php:302
|
||||||
msgid "Maximum characters for the excerpt"
|
msgid "center left"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:307
|
|
||||||
msgid "Color"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:309
|
#: 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."
|
msgid "Empty color will use the default color defined by your current theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:311
|
#: class/dashboard/subpage-main.php:333
|
||||||
msgid "Background color"
|
msgid "Background color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:313
|
#: class/dashboard/subpage-main.php:335
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default background-color defined by your current "
|
"Empty color will use the default background-color defined by your current "
|
||||||
"theme."
|
"theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:315
|
#: class/dashboard/subpage-main.php:337
|
||||||
msgid "Border width (px)"
|
msgid "Border width (px)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:317
|
#: class/dashboard/subpage-main.php:339
|
||||||
msgid "Set the width to 0px to hide the border."
|
msgid "Set the width to 0px to hide the border."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:319
|
#: class/dashboard/subpage-main.php:341
|
||||||
msgid "Border color"
|
msgid "Border color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:321
|
#: class/dashboard/subpage-main.php:343
|
||||||
msgid ""
|
msgid ""
|
||||||
"Empty color will use the default border-color defined by your current theme."
|
"Empty color will use the default border-color defined by your current theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:323
|
#: class/dashboard/subpage-main.php:345
|
||||||
msgid "Border radius (px)"
|
msgid "Border radius (px)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:325
|
#: class/dashboard/subpage-main.php:347
|
||||||
msgid "Set the radius to 0px to avoid a radius."
|
msgid "Set the radius to 0px to avoid a radius."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:327
|
#: class/dashboard/subpage-main.php:349
|
||||||
msgid "Max. width (px)"
|
msgid "Max. width (px)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:329
|
#: class/dashboard/subpage-main.php:351
|
||||||
msgid "Set the max-width to 0px to disable this setting."
|
msgid "Set the max-width to 0px to disable this setting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:348
|
#: class/dashboard/subpage-main.php:370
|
||||||
msgid "Hyperlink symbol"
|
msgid "Hyperlink symbol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:351
|
#: class/dashboard/subpage-main.php:373
|
||||||
msgid "or enter a user defined symbol"
|
msgid "or enter a user defined symbol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:353
|
#: class/dashboard/subpage-main.php:375
|
||||||
msgid "if set it overrides the hyperlink symbol above"
|
msgid "if set it overrides the hyperlink symbol above"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:372
|
#: class/dashboard/subpage-main.php:394
|
||||||
msgid "Add custom CSS"
|
msgid "Add custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:375
|
#: class/dashboard/subpage-main.php:397
|
||||||
msgid ""
|
msgid ""
|
||||||
"Available CSS classes to customize the footnotes and the reference container"
|
"Available CSS classes to customize the footnotes and the reference container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:378
|
#: class/dashboard/subpage-main.php:400
|
||||||
msgid "superscript, Footnotes index"
|
msgid "superscript, Footnotes index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:381
|
#: class/dashboard/subpage-main.php:403
|
||||||
msgid "mouse-over box, tooltip for each superscript"
|
msgid "mouse-over box, tooltip for each superscript"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:384
|
#: class/dashboard/subpage-main.php:406
|
||||||
msgid "1st column of the Reference Container, Footnotes index"
|
msgid "1st column of the Reference Container, Footnotes index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:387
|
#: class/dashboard/subpage-main.php:409
|
||||||
msgid "2nd column of the Reference Container, Arrow / Hyperlink"
|
msgid "2nd column of the Reference Container, Arrow / Hyperlink"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:390
|
#: class/dashboard/subpage-main.php:412
|
||||||
msgid "3rd column of the Reference Container, Footnote text"
|
msgid "3rd column of the Reference Container, Footnote text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:409
|
#: class/dashboard/subpage-main.php:431
|
||||||
msgid "WordPress hook function name"
|
msgid "WordPress hook function name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:410
|
#: class/dashboard/subpage-main.php:432
|
||||||
msgid "Activate"
|
msgid "Activate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:411
|
#: class/dashboard/subpage-main.php:433
|
||||||
msgid "WordPress documentation"
|
msgid "WordPress documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:459
|
#: class/dashboard/subpage-main.php:481
|
||||||
msgid "example string"
|
msgid "example string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:466
|
#: class/dashboard/subpage-main.php:488
|
||||||
msgid "Start your footnote with the following short code:"
|
msgid "Start your footnote with the following short code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:469
|
#: class/dashboard/subpage-main.php:491
|
||||||
msgid "...and end your footnote with this short code:"
|
msgid "...and end your footnote with this short code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:473
|
#: class/dashboard/subpage-main.php:495
|
||||||
msgid "will be displayed as:"
|
msgid "will be displayed as:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:476
|
#: class/dashboard/subpage-main.php:498
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For further information please check out our %ssupport forum%s on WordPress."
|
"For further information please check out our %ssupport forum%s on WordPress."
|
||||||
"org."
|
"org."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/dashboard/subpage-main.php:495
|
#: class/dashboard/subpage-main.php:519
|
||||||
msgid "Donate now"
|
msgid "Donate now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -446,7 +498,7 @@ msgstr ""
|
||||||
msgid "Donate"
|
msgid "Donate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: class/task.php:356
|
#: class/task.php:365
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%scontinue%s"
|
msgid "%scontinue%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -84,6 +84,15 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
|
||||||
|
|
||||||
== Changelog ==
|
== 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 =
|
= 1.5.7 =
|
||||||
- Add: Setting to define the positioning of the mouse-over box
|
- Add: Setting to define the positioning of the mouse-over box
|
||||||
- Add: Setting to define an offset for the mouse-over box (precise positioning)
|
- Add: Setting to define an offset for the mouse-over box (precise positioning)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
<sup id="footnote_plugin_tooltip_[[index]]" class="footnote_plugin_tooltip_text" onclick="footnote_moveToAnchor('footnote_plugin_reference_[[index]]');">[[before]][[index]][[after]]</sup>
|
<sup id="footnote_plugin_tooltip_[[id]]" class="footnote_plugin_tooltip_text" onclick="footnote_moveToAnchor('footnote_plugin_reference_[[id]]');">[[before]][[index]][[after]]</sup>
|
||||||
<span class="footnote_tooltip" id="footnote_plugin_tooltip_text_[[index]]">[[text]]</span>
|
<span class="footnote_tooltip" id="footnote_plugin_tooltip_text_[[id]]">[[text]]</span>
|
|
@ -1,5 +1,5 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="footnote_plugin_index"><span id="footnote_plugin_reference_[[index-int]]">[[index]].</span></td>
|
<td class="footnote_plugin_index"><span id="footnote_plugin_reference_[[id]]">[[index]].</span></td>
|
||||||
<td class="footnote_plugin_link"><span onclick="footnote_moveToAnchor('footnote_plugin_tooltip_[[index-int]]');">[[arrow]]</span></td>
|
<td class="footnote_plugin_link"><span onclick="footnote_moveToAnchor('footnote_plugin_tooltip_[[id]]');">[[arrow]]</span></td>
|
||||||
<td class="footnote_plugin_text">[[text]]</td>
|
<td class="footnote_plugin_text">[[text]]</td>
|
||||||
</tr>
|
</tr>
|
|
@ -25,12 +25,11 @@
|
||||||
footnote_collapse_reference_container();
|
footnote_collapse_reference_container();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function footnote_moveToAnchor(p_str_TargetID) {
|
function footnote_moveToAnchor(p_str_TargetID) {
|
||||||
footnote_expand_reference_container();
|
footnote_expand_reference_container();
|
||||||
var l_obj_Target = jQuery("#" + p_str_TargetID);
|
var l_obj_Target = jQuery("#" + p_str_TargetID);
|
||||||
if( l_obj_Target.length ) {
|
if(l_obj_Target.length) {
|
||||||
event.preventDefault();
|
//event.preventDefault();
|
||||||
jQuery('html, body').animate({
|
jQuery('html, body').animate({
|
||||||
scrollTop: l_obj_Target.offset().top - window.innerHeight/2
|
scrollTop: l_obj_Target.offset().top - window.innerHeight/2
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
jQuery("#footnote_plugin_tooltip_[[index]]").tooltip({
|
jQuery("#footnote_plugin_tooltip_[[id]]").tooltip({
|
||||||
tip: "#footnote_plugin_tooltip_text_[[index]]",
|
tip: "#footnote_plugin_tooltip_text_[[id]]",
|
||||||
tipClass: "footnote_tooltip",
|
tipClass: "footnote_tooltip",
|
||||||
effect: "fade",
|
effect: "fade",
|
||||||
fadeOutSpeed: 100,
|
fadeOutSpeed: 100,
|
||||||
|
|
Reference in a new issue