- Update: Translation for support link and new setting option
- Add: Label to display the user the short code to not display the 'love me' slug git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@919411 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
ca2c42eeaa
commit
9726a9deea
6 changed files with 149 additions and 93 deletions
|
@ -251,6 +251,16 @@ class Class_FootnotesSettings
|
||||||
echo '<br/><br/>';
|
echo '<br/><br/>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* outputs a simple text
|
||||||
|
* @param string $p_str_Text
|
||||||
|
* @since 1.1.1
|
||||||
|
*/
|
||||||
|
function AddText($p_str_Text)
|
||||||
|
{
|
||||||
|
echo '<span>' . $p_str_Text . '</span>';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* outputs a label for a specific input/select box
|
* outputs a label for a specific input/select box
|
||||||
* @param string $p_str_SettingsID
|
* @param string $p_str_SettingsID
|
||||||
|
@ -272,10 +282,11 @@ class Class_FootnotesSettings
|
||||||
* @param string $p_str_SettingsID [id of the settings field]
|
* @param string $p_str_SettingsID [id of the settings field]
|
||||||
* @param string $p_str_ClassName [css class name]
|
* @param string $p_str_ClassName [css class name]
|
||||||
* @param int $p_str_MaxLength [max length for the input value]
|
* @param int $p_str_MaxLength [max length for the input value]
|
||||||
|
* @param bool $p_bool_Readonly [input is readonly] in version 1.1.1
|
||||||
* @since 1.0-beta
|
* @since 1.0-beta
|
||||||
* removed optional paremter for a label in version 1.0.7
|
* removed optional paremter for a label in version 1.0.7
|
||||||
*/
|
*/
|
||||||
function AddTextbox($p_str_SettingsID, $p_str_ClassName = "", $p_str_MaxLength = 0)
|
function AddTextbox($p_str_SettingsID, $p_str_ClassName = "", $p_str_MaxLength = 0, $p_bool_Readonly = false)
|
||||||
{
|
{
|
||||||
/* collect data for given settings field */
|
/* collect data for given settings field */
|
||||||
$l_arr_Data = $this->LoadSetting($p_str_SettingsID);
|
$l_arr_Data = $this->LoadSetting($p_str_SettingsID);
|
||||||
|
@ -288,8 +299,12 @@ class Class_FootnotesSettings
|
||||||
if (!empty($p_str_MaxLength)) {
|
if (!empty($p_str_MaxLength)) {
|
||||||
$p_str_MaxLength = ' maxlength="' . $p_str_MaxLength . '"';
|
$p_str_MaxLength = ' maxlength="' . $p_str_MaxLength . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($p_bool_Readonly) {
|
||||||
|
$p_bool_Readonly = ' readonly="readonly"';
|
||||||
|
}
|
||||||
/* outputs an input field type TEXT */
|
/* outputs an input field type TEXT */
|
||||||
echo '<input type="text" ' . $p_str_ClassName . $p_str_MaxLength . ' name="' . $l_arr_Data["name"] . '" id="' . $l_arr_Data["id"] . '" value="' . $l_arr_Data["value"] . '"/>';
|
echo '<input type="text" ' . $p_str_ClassName . $p_str_MaxLength . $p_bool_Readonly . ' name="' . $l_arr_Data["name"] . '" id="' . $l_arr_Data["id"] . '" value="' . $l_arr_Data["value"] . '"/>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -469,6 +484,11 @@ class Class_FootnotesSettings
|
||||||
);
|
);
|
||||||
$this->AddLabel(FOOTNOTE_INPUTFIELD_LOVE, sprintf(__("Tell the world you're using %s:", FOOTNOTES_PLUGIN_NAME), FOOTNOTES_PLUGIN_PUBLIC_NAME));
|
$this->AddLabel(FOOTNOTE_INPUTFIELD_LOVE, sprintf(__("Tell the world you're using %s:", FOOTNOTES_PLUGIN_NAME), FOOTNOTES_PLUGIN_PUBLIC_NAME));
|
||||||
$this->AddSelectbox(FOOTNOTE_INPUTFIELD_LOVE, $l_arr_Options, "footnote_plugin_50");
|
$this->AddSelectbox(FOOTNOTE_INPUTFIELD_LOVE, $l_arr_Options, "footnote_plugin_50");
|
||||||
|
$this->AddNewline();
|
||||||
|
|
||||||
|
/* no 'love me' on specific pages */
|
||||||
|
$this->AddLabel("", sprintf(__("Don't tell the world you're using %s on specific pages by adding the following short code:", FOOTNOTES_PLUGIN_NAME), FOOTNOTES_PLUGIN_PUBLIC_NAME));
|
||||||
|
$this->AddText(FOOTNOTES_NO_SLUGME_PLUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Binary file not shown.
|
@ -1,9 +1,9 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: footnotes\n"
|
"Project-Id-Version: footnotes\n"
|
||||||
"POT-Creation-Date: 2014-05-21 20:28+0100\n"
|
"POT-Creation-Date: 2014-05-22 15:42+0100\n"
|
||||||
"PO-Revision-Date: 2014-05-21 20:30+0100\n"
|
"PO-Revision-Date: 2014-05-22 15:43+0100\n"
|
||||||
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
"Last-Translator: SHE <s.herndler@methis.at>\n"
|
||||||
"Language-Team: SHE <s.herndler@methis.at>\n"
|
"Language-Team: SHE <s.herndler@methis.at>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -18,127 +18,148 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Poedit-SearchPath-0: .\n"
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:366
|
#: classes/footnotes.php:68
|
||||||
|
msgid "You must be logged in to run this script."
|
||||||
|
msgstr "Sie müssen angemeldet sein um diese Funktion ausführen zu können."
|
||||||
|
|
||||||
|
#: classes/footnotes.php:73
|
||||||
|
msgid "You do not have permission to run this script."
|
||||||
|
msgstr "Sie haben nicht die Berechtigung diese Funktion auszuführen."
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:381
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:368
|
#: classes/footnotes_settings.php:383
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s Settings"
|
msgid "%s Settings"
|
||||||
msgstr "%s Einstellungen"
|
msgstr "%s Einstellungen"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:369
|
#: classes/footnotes_settings.php:384
|
||||||
msgid "References Container"
|
msgid "References Container"
|
||||||
msgstr "Einzelnachweise"
|
msgstr "Einzelnachweise"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:370
|
#: classes/footnotes_settings.php:385
|
||||||
msgid "Footnotes styling"
|
msgid "Footnotes styling"
|
||||||
msgstr "Layout der Fußnoten"
|
msgstr "Layout der Fußnoten"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:371
|
#: classes/footnotes_settings.php:386
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Andere"
|
msgstr "Andere"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:391
|
#: classes/footnotes_settings.php:406
|
||||||
msgid "References label:"
|
msgid "References label:"
|
||||||
msgstr "Überschrift \"Einzelnachweis\":"
|
msgstr "Überschrift \"Einzelnachweis\":"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:396
|
#: classes/footnotes_settings.php:411
|
||||||
msgid "Collapse references by default:"
|
msgid "Collapse references by default:"
|
||||||
msgstr "Verstecke Einzelnachweise standardmäßig:"
|
msgstr "Verstecke Einzelnachweise standardmäßig:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:405
|
#: classes/footnotes_settings.php:420
|
||||||
msgid "in the footer"
|
msgid "in the footer"
|
||||||
msgstr "am Ende der Seite"
|
msgstr "am Ende der Seite"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:406
|
#: classes/footnotes_settings.php:421
|
||||||
msgid "at the end of the post"
|
msgid "at the end of the post"
|
||||||
msgstr "nach einem Beitrag"
|
msgstr "nach einem Beitrag"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:408
|
#: classes/footnotes_settings.php:422
|
||||||
|
msgid "in the widget area"
|
||||||
|
msgstr "im Widget"
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:424
|
||||||
msgid "Where shall the reference container appear:"
|
msgid "Where shall the reference container appear:"
|
||||||
msgstr "Positionierung der Einzelnachweise:"
|
msgstr "Positionierung der Einzelnachweise:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:420 classes/footnotes_settings.php:457
|
#: classes/footnotes_settings.php:436 classes/footnotes_settings.php:473
|
||||||
#: classes/footnotes_settings.php:466
|
#: classes/footnotes_settings.php:482
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:421 classes/footnotes_settings.php:458
|
#: classes/footnotes_settings.php:437 classes/footnotes_settings.php:474
|
||||||
#: classes/footnotes_settings.php:467
|
#: classes/footnotes_settings.php:483
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:423
|
#: classes/footnotes_settings.php:439
|
||||||
msgid "Combine identical footnotes:"
|
msgid "Combine identical footnotes:"
|
||||||
msgstr "Kombiniere meine Fußnoten:"
|
msgstr "Kombiniere meine Fußnoten:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:428
|
#: classes/footnotes_settings.php:444
|
||||||
msgid "Footnote tag starts with:"
|
msgid "Footnote tag starts with:"
|
||||||
msgstr "Fußnoten starten mit:"
|
msgstr "Fußnoten starten mit:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:432
|
#: classes/footnotes_settings.php:448
|
||||||
msgid "and ends with:"
|
msgid "and ends with:"
|
||||||
msgstr "und endet mit:"
|
msgstr "und endet mit:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:439
|
#: classes/footnotes_settings.php:455
|
||||||
msgid "Arabic Numbers - Plain"
|
msgid "Arabic Numbers - Plain"
|
||||||
msgstr "arabische Ziffern"
|
msgstr "arabische Ziffern"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:440
|
#: classes/footnotes_settings.php:456
|
||||||
msgid "Arabic Numbers - Leading 0"
|
msgid "Arabic Numbers - Leading 0"
|
||||||
msgstr "arabisch Ziffern - führende Null"
|
msgstr "arabisch Ziffern - führende Null"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:441
|
#: classes/footnotes_settings.php:457
|
||||||
msgid "Latin Character - lower case"
|
msgid "Latin Character - lower case"
|
||||||
msgstr "alphabetisch - Kleinschreibung"
|
msgstr "alphabetisch - Kleinschreibung"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:442
|
#: classes/footnotes_settings.php:458
|
||||||
msgid "Latin Character - upper case"
|
msgid "Latin Character - upper case"
|
||||||
msgstr "alphabetisch - Großschreibung"
|
msgstr "alphabetisch - Großschreibung"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:443
|
#: classes/footnotes_settings.php:459
|
||||||
msgid "Roman Numerals"
|
msgid "Roman Numerals"
|
||||||
msgstr "Römische Ziffern"
|
msgstr "Römische Ziffern"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:445
|
#: classes/footnotes_settings.php:461
|
||||||
msgid "Counter style:"
|
msgid "Counter style:"
|
||||||
msgstr "Fußnoten Zähler:"
|
msgstr "Fußnoten Zähler:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:460
|
#: classes/footnotes_settings.php:476
|
||||||
msgid "Allow footnotes on Summarized Posts:"
|
msgid "Allow footnotes on Summarized Posts:"
|
||||||
msgstr "Erlaube Fußnoten in Zusammenfassungen:"
|
msgstr "Erlaube Fußnoten in Zusammenfassungen:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:469
|
#: classes/footnotes_settings.php:485
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Tell the world you're using %s:"
|
msgid "Tell the world you're using %s:"
|
||||||
msgstr "Teile der Welt mit, dass du %s verwendest:"
|
msgstr "Teile der Welt mit, dass du %s verwendest:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:482
|
#: classes/footnotes_settings.php:490
|
||||||
|
#, 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:"
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:503
|
||||||
msgid "HowTo"
|
msgid "HowTo"
|
||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:485
|
#: classes/footnotes_settings.php:506
|
||||||
msgid "Brief introduction in how to use the plugin"
|
msgid "Brief introduction in how to use the plugin"
|
||||||
msgstr "Kurze Anleitung für die Verwendung des Plugins."
|
msgstr "Kurze Anleitung für die Verwendung des Plugins."
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:511
|
#: classes/footnotes_settings.php:532
|
||||||
msgid "Start your footnote with the following shortcode:"
|
msgid "Start your footnote with the following shortcode:"
|
||||||
msgstr "Starten Sie eine Fußnote mit:"
|
msgstr "Starten Sie eine Fußnote mit:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:517
|
#: classes/footnotes_settings.php:538
|
||||||
msgid "...and end your footnote with this shortcode:"
|
msgid "...and end your footnote with this shortcode:"
|
||||||
msgstr "...und beenden Sie diese mit:"
|
msgstr "...und beenden Sie diese mit:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:525 classes/footnotes_settings.php:528
|
#: classes/footnotes_settings.php:546 classes/footnotes_settings.php:549
|
||||||
msgid "example string"
|
msgid "example string"
|
||||||
msgstr "Beispieltext"
|
msgstr "Beispieltext"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:526
|
#: classes/footnotes_settings.php:547
|
||||||
msgid "will be displayed as:"
|
msgid "will be displayed as:"
|
||||||
msgstr "wird dargestellt als:"
|
msgstr "wird dargestellt als:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:533
|
#: classes/footnotes_settings.php:554
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "If you have any questions, please don't hesitate to %se-mail%s us."
|
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."
|
msgstr "Bei Fragen können Sie uns gerne eine %se-Mail%s senden."
|
||||||
|
@ -147,19 +168,15 @@ msgstr "Bei Fragen können Sie uns gerne eine %se-Mail%s senden."
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: includes/replacer.php:180
|
#: includes/plugin-settings.php:24
|
||||||
|
msgid "Support"
|
||||||
|
msgstr "Support"
|
||||||
|
|
||||||
|
#: includes/replacer.php:187
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Hey there, I'm using the awesome WordPress Plugin called %s"
|
msgid "Hey there, I'm using the awesome WordPress Plugin called %s"
|
||||||
msgstr "Diese Seite verwendet das %s Plugin"
|
msgstr "Diese Seite verwendet das %s Plugin"
|
||||||
|
|
||||||
#: includes/uninstall.php:26
|
|
||||||
msgid "You must be logged in to run this script."
|
|
||||||
msgstr "Sie müssen angemeldet sein um diese Funktion ausführen zu können."
|
|
||||||
|
|
||||||
#: includes/uninstall.php:31
|
|
||||||
msgid "You do not have permission to run this script."
|
|
||||||
msgstr "Sie haben nicht die Berechtigung diese Funktion auszuführen."
|
|
||||||
|
|
||||||
#~ msgid "starts with:"
|
#~ msgid "starts with:"
|
||||||
#~ msgstr "beginnt mit:"
|
#~ msgstr "beginnt mit:"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -1,9 +1,9 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: footnotes\n"
|
"Project-Id-Version: footnotes\n"
|
||||||
"POT-Creation-Date: 2014-05-21 20:28+0100\n"
|
"POT-Creation-Date: 2014-05-22 15:42+0100\n"
|
||||||
"PO-Revision-Date: 2014-05-21 20:28+0100\n"
|
"PO-Revision-Date: 2014-05-22 15:42+0100\n"
|
||||||
"Last-Translator: Stefan Herndler <support@herndler.org>\n"
|
"Last-Translator: SHE <s.herndler@methis.at>\n"
|
||||||
"Language-Team: SHE <s.herndler@methis.at>\n"
|
"Language-Team: SHE <s.herndler@methis.at>\n"
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -18,127 +18,148 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Poedit-SearchPath-0: .\n"
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:366
|
#: classes/footnotes.php:68
|
||||||
|
msgid "You must be logged in to run this script."
|
||||||
|
msgstr "You must be logged in to run this script."
|
||||||
|
|
||||||
|
#: classes/footnotes.php:73
|
||||||
|
msgid "You do not have permission to run this script."
|
||||||
|
msgstr "You do not have permission to run this script."
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:381
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "General"
|
msgstr "General"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:368
|
#: classes/footnotes_settings.php:383
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s Settings"
|
msgid "%s Settings"
|
||||||
msgstr "%s Settings"
|
msgstr "%s Settings"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:369
|
#: classes/footnotes_settings.php:384
|
||||||
msgid "References Container"
|
msgid "References Container"
|
||||||
msgstr "References Container"
|
msgstr "References Container"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:370
|
#: classes/footnotes_settings.php:385
|
||||||
msgid "Footnotes styling"
|
msgid "Footnotes styling"
|
||||||
msgstr "Footnotes styling"
|
msgstr "Footnotes styling"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:371
|
#: classes/footnotes_settings.php:386
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Other"
|
msgstr "Other"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:391
|
#: classes/footnotes_settings.php:406
|
||||||
msgid "References label:"
|
msgid "References label:"
|
||||||
msgstr "References label:"
|
msgstr "References label:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:396
|
#: classes/footnotes_settings.php:411
|
||||||
msgid "Collapse references by default:"
|
msgid "Collapse references by default:"
|
||||||
msgstr "Collapse references by default:"
|
msgstr "Collapse references by default:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:405
|
#: classes/footnotes_settings.php:420
|
||||||
msgid "in the footer"
|
msgid "in the footer"
|
||||||
msgstr "in the footer"
|
msgstr "in the footer"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:406
|
#: classes/footnotes_settings.php:421
|
||||||
msgid "at the end of the post"
|
msgid "at the end of the post"
|
||||||
msgstr "at the end of the post"
|
msgstr "at the end of the post"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:408
|
#: classes/footnotes_settings.php:422
|
||||||
|
msgid "in the widget area"
|
||||||
|
msgstr "in the widget area"
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:424
|
||||||
msgid "Where shall the reference container appear:"
|
msgid "Where shall the reference container appear:"
|
||||||
msgstr "Where shall the reference container appear:"
|
msgstr "Where shall the reference container appear:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:420 classes/footnotes_settings.php:457
|
#: classes/footnotes_settings.php:436 classes/footnotes_settings.php:473
|
||||||
#: classes/footnotes_settings.php:466
|
#: classes/footnotes_settings.php:482
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Yes"
|
msgstr "Yes"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:421 classes/footnotes_settings.php:458
|
#: classes/footnotes_settings.php:437 classes/footnotes_settings.php:474
|
||||||
#: classes/footnotes_settings.php:467
|
#: classes/footnotes_settings.php:483
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:423
|
#: classes/footnotes_settings.php:439
|
||||||
msgid "Combine identical footnotes:"
|
msgid "Combine identical footnotes:"
|
||||||
msgstr "Combine identical footnotes:"
|
msgstr "Combine identical footnotes:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:428
|
#: classes/footnotes_settings.php:444
|
||||||
msgid "Footnote tag starts with:"
|
msgid "Footnote tag starts with:"
|
||||||
msgstr "Footnote tag starts with:"
|
msgstr "Footnote tag starts with:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:432
|
#: classes/footnotes_settings.php:448
|
||||||
msgid "and ends with:"
|
msgid "and ends with:"
|
||||||
msgstr "and ends with:"
|
msgstr "and ends with:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:439
|
#: classes/footnotes_settings.php:455
|
||||||
msgid "Arabic Numbers - Plain"
|
msgid "Arabic Numbers - Plain"
|
||||||
msgstr "Arabic Numbers - Plain"
|
msgstr "Arabic Numbers - Plain"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:440
|
#: classes/footnotes_settings.php:456
|
||||||
msgid "Arabic Numbers - Leading 0"
|
msgid "Arabic Numbers - Leading 0"
|
||||||
msgstr "Arabic Numbers - Leading 0"
|
msgstr "Arabic Numbers - Leading 0"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:441
|
#: classes/footnotes_settings.php:457
|
||||||
msgid "Latin Character - lower case"
|
msgid "Latin Character - lower case"
|
||||||
msgstr "Latin Character - lower case"
|
msgstr "Latin Character - lower case"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:442
|
#: classes/footnotes_settings.php:458
|
||||||
msgid "Latin Character - upper case"
|
msgid "Latin Character - upper case"
|
||||||
msgstr "Latin Character - upper case"
|
msgstr "Latin Character - upper case"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:443
|
#: classes/footnotes_settings.php:459
|
||||||
msgid "Roman Numerals"
|
msgid "Roman Numerals"
|
||||||
msgstr "Roman Numerals"
|
msgstr "Roman Numerals"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:445
|
#: classes/footnotes_settings.php:461
|
||||||
msgid "Counter style:"
|
msgid "Counter style:"
|
||||||
msgstr "Counter style:"
|
msgstr "Counter style:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:460
|
#: classes/footnotes_settings.php:476
|
||||||
msgid "Allow footnotes on Summarized Posts:"
|
msgid "Allow footnotes on Summarized Posts:"
|
||||||
msgstr "Allow footnotes on Summarized Posts:"
|
msgstr "Allow footnotes on Summarized Posts:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:469
|
#: classes/footnotes_settings.php:485
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Tell the world you're using %s:"
|
msgid "Tell the world you're using %s:"
|
||||||
msgstr "Tell the world you're using %s:"
|
msgstr "Tell the world you're using %s:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:482
|
#: classes/footnotes_settings.php:490
|
||||||
|
#, 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:"
|
||||||
|
|
||||||
|
#: classes/footnotes_settings.php:503
|
||||||
msgid "HowTo"
|
msgid "HowTo"
|
||||||
msgstr "HowTo"
|
msgstr "HowTo"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:485
|
#: classes/footnotes_settings.php:506
|
||||||
msgid "Brief introduction in how to use the plugin"
|
msgid "Brief introduction in how to use the plugin"
|
||||||
msgstr "Brief introduction in how to use the plugin"
|
msgstr "Brief introduction in how to use the plugin"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:511
|
#: classes/footnotes_settings.php:532
|
||||||
msgid "Start your footnote with the following shortcode:"
|
msgid "Start your footnote with the following shortcode:"
|
||||||
msgstr "Start your footnote with the following shortcode:"
|
msgstr "Start your footnote with the following shortcode:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:517
|
#: classes/footnotes_settings.php:538
|
||||||
msgid "...and end your footnote with this shortcode:"
|
msgid "...and end your footnote with this shortcode:"
|
||||||
msgstr "...and end your footnote with this shortcode:"
|
msgstr "...and end your footnote with this shortcode:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:525 classes/footnotes_settings.php:528
|
#: classes/footnotes_settings.php:546 classes/footnotes_settings.php:549
|
||||||
msgid "example string"
|
msgid "example string"
|
||||||
msgstr "example string"
|
msgstr "example string"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:526
|
#: classes/footnotes_settings.php:547
|
||||||
msgid "will be displayed as:"
|
msgid "will be displayed as:"
|
||||||
msgstr "will be displayed as:"
|
msgstr "will be displayed as:"
|
||||||
|
|
||||||
#: classes/footnotes_settings.php:533
|
#: classes/footnotes_settings.php:554
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "If you have any questions, please don't hesitate to %se-mail%s us."
|
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."
|
msgstr "If you have any questions, please don't hesitate to %se-mail%s us."
|
||||||
|
@ -147,19 +168,15 @@ msgstr "If you have any questions, please don't hesitate to %se-mail%s us."
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Settings"
|
msgstr "Settings"
|
||||||
|
|
||||||
#: includes/replacer.php:180
|
#: includes/plugin-settings.php:24
|
||||||
|
msgid "Support"
|
||||||
|
msgstr "Support"
|
||||||
|
|
||||||
|
#: includes/replacer.php:187
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Hey there, I'm using the awesome WordPress Plugin called %s"
|
msgid "Hey there, I'm using the awesome WordPress Plugin called %s"
|
||||||
msgstr "Hey there, I'm using the awesome %s Plugin"
|
msgstr "Hey there, I'm using the awesome %s Plugin"
|
||||||
|
|
||||||
#: includes/uninstall.php:26
|
|
||||||
msgid "You must be logged in to run this script."
|
|
||||||
msgstr "You must be logged in to run this script."
|
|
||||||
|
|
||||||
#: includes/uninstall.php:31
|
|
||||||
msgid "You do not have permission to run this script."
|
|
||||||
msgstr "You do not have permission to run this script."
|
|
||||||
|
|
||||||
#~ msgid "starts with:"
|
#~ msgid "starts with:"
|
||||||
#~ msgstr "starts with:"
|
#~ msgstr "starts with:"
|
||||||
|
|
||||||
|
|
|
@ -41,10 +41,12 @@ No, this Plugin has been written from scratch. Of course some inspirations on ho
|
||||||
= 1.1.1 =
|
= 1.1.1 =
|
||||||
- Feature: Short code to not display the 'love me' slug on specific pages ( short code = [[no footnotes: love]] )
|
- Feature: Short code to not display the 'love me' slug on specific pages ( short code = [[no footnotes: love]] )
|
||||||
- Update: Setting where the reference container appears on public pages can also be set to the widget area
|
- Update: Setting where the reference container appears on public pages can also be set to the widget area
|
||||||
- Add: link to the wordpress.org support page in the plugin main page
|
- Add: Link to the wordpress.org support page in the plugin main page
|
||||||
- Update: Changed plugin URL from GitHub to WordPress
|
- Update: Changed plugin URL from GitHub to WordPress
|
||||||
- Bugfix: uninstall function to really remove all settings done in the settings page
|
- Bugfix: Uninstall function to really remove all settings done in the settings page
|
||||||
- Bugfix: load default settings after plugin is installed
|
- Bugfix: Load default settings after plugin is installed
|
||||||
|
- Update: Translation for support link and new setting option
|
||||||
|
- Add: Label to display the user the short code to not display the 'love me' slug
|
||||||
|
|
||||||
= 1.1.0 =
|
= 1.1.0 =
|
||||||
- Update: Global styling for the public plugin name
|
- Update: Global styling for the public plugin name
|
||||||
|
|
Reference in a new issue