- Add: Plugin Widget to define where the reference container shall appear when set to "widget area"
- Update: Translation for new settings and for the Widget description git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@920341 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
b7af8ff042
commit
e6a31532e0
10 changed files with 216 additions and 95 deletions
|
@ -472,9 +472,9 @@ class Class_FootnotesSettings
|
|||
|
||||
/* setting for 'footnote tag starts with' */
|
||||
$l_arr_Options = array(
|
||||
"((" => __("((", FOOTNOTES_PLUGIN_NAME),
|
||||
"<fn>" => htmlspecialchars(__("<fn>", FOOTNOTES_PLUGIN_NAME)),
|
||||
"[ref]" => __("[ref]", FOOTNOTES_PLUGIN_NAME),
|
||||
"((" => "((",
|
||||
"<fn>" => htmlspecialchars("<fn>"),
|
||||
"[ref]" => "[ref]",
|
||||
"userdefined" => __('user defined', FOOTNOTES_PLUGIN_NAME)
|
||||
);
|
||||
$this->AddLabel(FOOTNOTE_INPUTFIELD_PLACEHOLDER_START, __("Footnote tag starts with:", FOOTNOTES_PLUGIN_NAME));
|
||||
|
@ -482,9 +482,9 @@ class Class_FootnotesSettings
|
|||
|
||||
/* setting for 'footnote tag ends with' */
|
||||
$l_arr_Options = array(
|
||||
"))" => __("))", FOOTNOTES_PLUGIN_NAME),
|
||||
"</fn>" => htmlspecialchars(__("</fn>", FOOTNOTES_PLUGIN_NAME)),
|
||||
"[/ref]" => __("[/ref]", FOOTNOTES_PLUGIN_NAME),
|
||||
"))" => "))",
|
||||
"</fn>" => htmlspecialchars("</fn>"),
|
||||
"[/ref]" => "[/ref]",
|
||||
"userdefined" => __('user defined', FOOTNOTES_PLUGIN_NAME)
|
||||
);
|
||||
$this->AddLabel(FOOTNOTE_INPUTFIELD_PLACEHOLDER_END, __("and ends with:", FOOTNOTES_PLUGIN_NAME) . ' ', 'text-align: right;');
|
||||
|
|
Reference in a new issue