From 1f5e0ed500cb932930f6259eaa30de3f51886d26 Mon Sep 17 00:00:00 2001
From: Aricura
Date: Sun, 7 Sep 2014 01:48:33 +0000
Subject: [PATCH] Prepare for release version 1.4.0 - Update: Changed e-Mail
support address to the WordPress support forum - Update: Language EN and DE -
Add: Tab for Plugin Diagnostics - Add: Donate link to the installed Plugin
overview page - Add: Donate button to the "HowTo" tab
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@983360 b8457f37-d9ea-0310-8a92-e5e31aec5664
---
classes/admin.php | 5 +-
classes/tab_diagnostics.php | 119 +++++++++++++++++++++++++++++++++++
classes/tab_howto.php | 19 +++++-
includes/defines.php | 2 +-
includes/plugin-settings.php | 11 ++--
index.php | 2 +-
languages/footnotes-de.mo | Bin 5477 -> 6245 bytes
languages/footnotes-de.po | 79 +++++++++++++++++++----
languages/footnotes-en.mo | Bin 5309 -> 6025 bytes
languages/footnotes-en.po | 79 +++++++++++++++++++----
readme.txt | 7 ++-
11 files changed, 290 insertions(+), 33 deletions(-)
create mode 100644 classes/tab_diagnostics.php
diff --git a/classes/admin.php b/classes/admin.php
index a9232e8..7f8dacd 100644
--- a/classes/admin.php
+++ b/classes/admin.php
@@ -63,6 +63,9 @@ class MCI_Footnotes_Admin {
// load tab 'how to'
require_once(dirname( __FILE__ ) . "/tab_howto.php");
new MCI_Footnotes_Tab_HowTo($this->a_arr_SettingsTabs);
+ // load tab 'diagnostics'
+ require_once(dirname( __FILE__ ) . "/tab_diagnostics.php");
+ new MCI_Footnotes_Tab_Diagnostics($this->a_arr_SettingsTabs);
}
/**
@@ -116,7 +119,7 @@ class MCI_Footnotes_Admin {
do_settings_sections(self::$a_str_ActiveTab);
do_meta_boxes(self::$a_str_ActiveTab, 'main', NULL);
// adds a submit button to the current page
- if (self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_HOWTO) {
+ if (self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_HOWTO && self::$a_str_ActiveTab != FOOTNOTES_SETTINGS_TAB_DIAGNOSTICS) {
submit_button();
}
echo '';
diff --git a/classes/tab_diagnostics.php b/classes/tab_diagnostics.php
new file mode 100644
index 0000000..529c16b
--- /dev/null
+++ b/classes/tab_diagnostics.php
@@ -0,0 +1,119 @@
+';
+ echo '';
+
+ // website
+ echo '';
+ echo '' . $this->Highlight(__('Server name', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . $_SERVER["SERVER_NAME"] . ' | ';
+ echo '
';
+
+ // PHP version
+ echo '';
+ echo '' . $this->Highlight(__('PHP version', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . phpversion() . ' | ';
+ echo '
';
+
+ // max. execution time
+ echo '';
+ echo '' . $this->Highlight(__('Max execution time', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . ini_get('max_execution_time') . ' ' . __('seconds', FOOTNOTES_PLUGIN_NAME) . ' | ';
+ echo '
';
+
+ // memory limit
+ echo '';
+ echo '' . $this->Highlight(__('Memory limit', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . ini_get('memory_limit') . ' | ';
+ echo '
';
+
+ // PHP extensions
+ echo '';
+ echo '' . $this->Highlight(__('PHP extensions', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '';
+ foreach (get_loaded_extensions() as $l_int_Index => $l_str_Extension) {
+ if ($l_int_Index > 0) {
+ echo ' | ';
+ }
+ echo $l_str_Extension . ' ' . phpversion($l_str_Extension);
+ }
+ echo ' | ';
+ echo '
';
+
+ // WordPress version
+ echo '';
+ echo '' . $this->Highlight(__('WordPress version', FOOTNOTES_PLUGIN_NAME)) . ' | ';
+ echo '' . $wp_version . ' | ';
+ echo '
';
+
+ // WordPress Plugins installed
+ foreach (get_plugins() as $l_arr_Plugin) {
+ echo '';
+ echo '' . $this->Highlight($l_arr_Plugin["Name"]) . ' | ';
+ echo '' . $l_arr_Plugin["Version"] . ' [' . $l_arr_Plugin["PluginURI"] . ']' . ' | ';
+ echo '
';
+ }
+
+ echo '';
+ echo '';
+ }
+} // class MCI_Footnotes_Tab_Diagnostics
+
+endif;
\ No newline at end of file
diff --git a/classes/tab_howto.php b/classes/tab_howto.php
index fdc551c..c8d05f6 100644
--- a/classes/tab_howto.php
+++ b/classes/tab_howto.php
@@ -41,6 +41,14 @@ class MCI_Footnotes_Tab_HowTo extends MCI_Footnotes_Admin {
FOOTNOTES_SETTINGS_TAB_HOWTO,
'main'
);
+ // donate
+ add_meta_box(
+ 'MCI_Footnotes_Tab_HowTo_Donate',
+ __("Help us to improve our Plugin.", FOOTNOTES_PLUGIN_NAME),
+ array($this, 'Donate'),
+ FOOTNOTES_SETTINGS_TAB_HOWTO,
+ 'main'
+ );
}
/**
@@ -91,12 +99,21 @@ class MCI_Footnotes_Tab_HowTo extends MCI_Footnotes_Admin {
- ', ''); ?>
+ ', ''); ?>
';
+ }
} // class MCI_Footnotes_Tab_HowTo
endif;
\ No newline at end of file
diff --git a/includes/defines.php b/includes/defines.php
index 720e873..bbcf471 100644
--- a/includes/defines.php
+++ b/includes/defines.php
@@ -36,7 +36,7 @@ define("FOOTNOTES_SETTINGS_PAGE_ID", "footnotes"); // plugins setting page inter
define("FOOTNOTES_SETTINGS_TAB_GENERAL", "footnotes_general_settings"); // internal label for the plugins general settings tab
define("FOOTNOTES_SETTINGS_TAB_CUSTOM", "footnotes_custom_settings"); // internal label for the plugins custom settings tab
define("FOOTNOTES_SETTINGS_TAB_HOWTO", "footnotes_howto_settings"); // internal label for the plugins how to tab
-
+define("FOOTNOTES_SETTINGS_TAB_DIAGNOSTICS", "footnotes_diagnostics_settings"); // internal label for the plugins diagnostics tab
// PLUGIN SETTINGS INPUT FIELDS
define("FOOTNOTES_INPUT_COMBINE_IDENTICAL", "footnote_inputfield_combine_identical"); // id of input field for the combine identical setting
diff --git a/includes/plugin-settings.php b/includes/plugin-settings.php
index d8c846b..d59511d 100644
--- a/includes/plugin-settings.php
+++ b/includes/plugin-settings.php
@@ -21,13 +21,16 @@ add_filter("plugin_action_links_{$l_str_plugin_file}", 'MCI_Footnotes_PluginLink
*/
function MCI_Footnotes_PluginLinks($p_arr_Links, $p_str_File) {
// add link to the footnotes plugin settings page
- $l_str_SettingsLink = '' . __('Settings', FOOTNOTES_PLUGIN_NAME) . '';
+ $l_str_Settings = '' . __('Settings', FOOTNOTES_PLUGIN_NAME) . '';
// add link to the footnotes plugin support page on wordpress.org
- $l_str_SupportLink = '' . __('Support', FOOTNOTES_PLUGIN_NAME) . '';
+ $l_str_Support = '' . __('Support', FOOTNOTES_PLUGIN_NAME) . '';
+ // add link to Donate
+ $l_str_Donate = '' . __('Donate', FOOTNOTES_PLUGIN_NAME) . '';
// add defined links to the plugin main page
- $p_arr_Links[] = $l_str_SupportLink;
- $p_arr_Links[] = $l_str_SettingsLink;
+ $p_arr_Links[] = $l_str_Support;
+ $p_arr_Links[] = $l_str_Settings;
+ $p_arr_Links[] = $l_str_Donate;
// return new links
return $p_arr_Links;
diff --git a/index.php b/index.php
index 0903a83..a397780 100755
--- a/index.php
+++ b/index.php
@@ -4,7 +4,7 @@
Plugin URI: http://wordpress.org/plugins/footnotes/
Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine.
Author: ManFisher Medien ManuFaktur
- Version: 1.3.4
+ Version: 1.4.0
Author URI: http://manfisher.net/plugins/footnotes/
Text Domain: footnotes
Domain Path: /languages
diff --git a/languages/footnotes-de.mo b/languages/footnotes-de.mo
index fecca79ccdcea4d5abcb5bef14fcc7b86ce01c02..0214dcf57a1775c81130b6e789a6a1ee6499aa13 100755
GIT binary patch
delta 2378
zcmZXUTWnNS6oz-XOA$hPh?_(Xna8vOf)3&f`P=Cz8Qps;46tyf=@~`3PBV7)|rEVu4J8W@3YVBz1I5I
zo*Qd#be69-&3aE^gZNVXl^IG|@WWX=Fg-`9xo`!nhaIp3Zh*DsN&r8@?eH#K1Gm&Fbr4#R
zz12l10Zzk3@G=~RKS6$?y4h?Q?1A$At8g9Xt2~27UR0ob_z9FiK9BhgY+`;BHo&`(
zBB=zY&4%?*0!~5+bUAz!u7k4gu6X^$c-?};q>6Ao=c{oBa=;lV0bGDmk!hHQKR`;Q
zHnY2In1wT82vcwhw!t${0=WuBitpq39Vikdh+e*52nQqssA8@7vdME
zplEjKUNg>N@e
z|Cbni$_vTlZ%D8zv7lPQX1JeuJCw*@ha2EADB53uTjAGGGX4w7cTF^aG~3dc+n`8t
z5b}w74ax;OT4o^KcpMV6Isv8Rr=diC7Rp9n#p~B0?VxT!3G~l+y^ho6x~+kdNH3I%
zJO>ZJaVQdAhH}oYP@1?ri?HNcC14-yhtfpHA;nPdL(%lJc>X2a#{3eLjcU2flJR2L
z23Nv%xDQH?9D%5(K7!IyXW=S%1tN7>{lP%ANg}93xCqL|+aW=!{jf&XaS3b<{-8;g
zlJPy0J;aDF>ZO@bN-ZW8-GuMPrSBT#{)@>$Vq5SXcn>ZzNOMWlViJ^?=qD!Szh}}5
za<#-zB(iRv>+z@XUARD-ODm^77KsXcfvF1KI+--%O@sMI2Z
z^uh*QOk~u!lvjF6tRELSMB00{IUaPuwx{FCGY}=BKbqB0?x)Bi8p^++I@db;YR#Z+
zmgE6BgOh)_08#i9N9v&RlmNTjkxZdcn
zXM8_Z`F+mO#y;1v0;8(XjyqAAN-QZ4xSr019(#BXZCxrD%QreZX0nI0oZ^O_ZuR}J
zRC2vQ6GK>R^)*4$KRYgRrhU8!Z%sh8TBiSftv5C~9YwW;yyzF;^2|IhJ5YBh0Oy%9i9V10+
zGNnmBH+^x;3!S__YK5plA~s=pkw~_Y6}3-J>mfhSMDp}|)pJ-QWzp~DSg>o2yX(_Y
g*G7spH{E$avG}8N4GZSYs7;$gl+ieqmgb><0Nj+3KmY&$
delta 1647
zcmZA1TWDNG9LMp=#pc$;Bu!(|*mksyO*T1kciY5dYthEgHqa*8Rth4@N+-$U<{aH~
zw$LE#LyIpeC`ScRY*0iHsSiP|K8bxQNED&sLlqT5iTI#+iC96uzs*+EVds3#Ei?c5
z&;Mj4xsoV--Cp~Gq1{Qpnf_;$F~{&q4F_7^4aPKKKQ`hpdU!Y9fp)s1baRC=gC*oV!SM@_hZt@sQk
z@Kw~rmrz@@iaYREOkg)RZ^a4JmdxTtd>S|7OIUic+L(7Z(ZC}_K~Ux(ZpHiX5C)a&
z3#in8fxGZWR1I_ywKA4LW#BM&;UXsS15`lYV-Id-GA$_8O8&WLCb-dy$MJq#Ko!$x
zsDQ4bw&*9!;2LTLX=c^)LpX{@aT`8W@hz<7`Vy)}mQnLvt~_69BmbP6TEbDPJ5dAd
zL{;xSs6BoNwSpNufzP2*y^18zG;d*Zr5KX3*qAOF{E@ftfuE74^wEtR&>PUP3?{)_lsv9y_Du0t&
zk(#A@^dwzP|CF?ETG?*8YJ!FSr%}7*#@F{xQ*rL0E5&KLYCzknEhXXQraCa@_Vt3&
z-l*v_QK2d2N~?;BSIQ}^!Nk(m4WC!VWA$g^<@zmk2c7Q<*?jzP!_@fXj6EF`?OgVh
zvswSNeZ1(xC>QwQpnWXwvZ1pl1AkX!=UkYJvXQeywT`u=+RlyDad+3@zX55s&rARS
diff --git a/languages/footnotes-de.po b/languages/footnotes-de.po
index ba7f7c2..b49127c 100755
--- a/languages/footnotes-de.po
+++ b/languages/footnotes-de.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: footnotes\n"
-"POT-Creation-Date: 2014-08-21 10:29+0100\n"
-"PO-Revision-Date: 2014-08-21 10:35+0100\n"
+"POT-Creation-Date: 2014-09-07 03:43+0100\n"
+"PO-Revision-Date: 2014-09-07 03:46+0100\n"
"Last-Translator: Stefan Herndler \n"
"Language-Team: SHE \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.6.6\n"
+"X-Generator: Poedit 1.6.5\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__;"
@@ -18,11 +18,11 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
-#: classes/footnotes.php:79
+#: classes/footnotes.php:82
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:84
+#: classes/footnotes.php:87
msgid "You do not have permission to run this script."
msgstr "Sie haben nicht die Berechtigung diese Funktion auszuführen."
@@ -93,6 +93,42 @@ msgstr "Einzelnachweiß - Symbol für den Link"
msgid "reference container footnotes text"
msgstr "Einzelnachweis - Fußnote"
+#: classes/tab_diagnostics.php:27
+msgid "Diagnostics"
+msgstr "Diagnose"
+
+#: classes/tab_diagnostics.php:38
+msgid "Displays information about the web server, PHP and WordPress."
+msgstr "Ausgabe von Informationen bezgl. des Webservers, PHP und WordPress."
+
+#: classes/tab_diagnostics.php:65
+msgid "Server name"
+msgstr "Servername"
+
+#: classes/tab_diagnostics.php:71
+msgid "PHP version"
+msgstr "PHP Version"
+
+#: classes/tab_diagnostics.php:77
+msgid "Max execution time"
+msgstr "max. Ausführungsdauer"
+
+#: classes/tab_diagnostics.php:78
+msgid "seconds"
+msgstr "Sekunden"
+
+#: classes/tab_diagnostics.php:83
+msgid "Memory limit"
+msgstr "Speicherlimitierung"
+
+#: classes/tab_diagnostics.php:89
+msgid "PHP extensions"
+msgstr "PHP Erweiterungen"
+
+#: classes/tab_diagnostics.php:102
+msgid "WordPress version"
+msgstr "WordPress Version"
+
#: classes/tab_general.php:28
msgid "General"
msgstr "Allgemein"
@@ -237,26 +273,38 @@ msgstr "Hilfe"
msgid "Brief introduction in how to use the plugin"
msgstr "Kurze Anleitung für die Verwendung des Plugins."
-#: classes/tab_howto.php:69
+#: classes/tab_howto.php:47
+msgid "Help us to improve our Plugin."
+msgstr "Helfen Sie bei der weiteren Entwicklung des Plugins."
+
+#: classes/tab_howto.php:77
msgid "example string"
msgstr "Beispieltext"
-#: classes/tab_howto.php:74
+#: classes/tab_howto.php:82
msgid "Start your footnote with the following shortcode:"
msgstr "Starten Sie eine Fußnote mit:"
-#: classes/tab_howto.php:80
+#: classes/tab_howto.php:88
msgid "...and end your footnote with this shortcode:"
msgstr "...und beenden Sie diese mit:"
-#: classes/tab_howto.php:88
+#: classes/tab_howto.php:96
msgid "will be displayed as:"
msgstr "wird dargestellt als:"
-#: classes/tab_howto.php:94
+#: classes/tab_howto.php:102
#, php-format
-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 ""
+"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."
+
+#: classes/tab_howto.php:115
+msgid "Donate now"
+msgstr "Jetzt spenden"
#: classes/widget.php:25 classes/widget.php:43
msgid ""
@@ -274,6 +322,13 @@ msgstr "Einstellungen"
msgid "Support"
msgstr "Support"
+#: includes/plugin-settings.php:28
+msgid "Donate"
+msgstr "Spenden"
+
+#~ 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"
diff --git a/languages/footnotes-en.mo b/languages/footnotes-en.mo
index eb0d4655aa2f86b7882e3491d33c02f8297de79d..33f6d65043ca319a0b73eadc2b7f9113da9f90c2 100755
GIT binary patch
literal 6025
zcmeH~*^eAY9mgwRVpxuZ08Y4)vWc;S-Q!u?iPybx@Oo`$t?VWv&w?GUrKYE5rb!<|
zRren7z#BrmLW>+YR3-j(wQ
zuqD@iy1Q!XcYUk6{o);azNBai^moxe@+zeae0mRmX!=&AUJv)fDHy;2&cOX}0B?hz
zgZto9@Lu>Vda-LuX33CwwEk2*vI)yd4hV
z``|hh`(K0nR9%Dbfj@1={{athe>aPWzjILPeF-w8GWa(5Y4}+Z^#v&F+=UTBQTM_C
z9)qHvk3#Y9Gf@0~63Tktgrc7xHP8PDm$?5I6#YCxGLFCqioZ`nsoS$q^6+CwsnoBb
z*#83*{k#MZ!(#+5`nd{458r{}-*Zs(^8?s{zkw2G`z^J8W}wW!0>%EvAWN#xLz(w9
z6hFS+@cWP@)QeE^^AZ&O{2PjXZb2;K?_MZ=?t`MA1N@P7PeB>K1ZDgx6#ew!G)$qa
z{}m|qzYQfH&%rMI6+8-C6h+qiFckfyQ1tLgDEj#-6gw|KslzXu`@ch}&wrrIzl}jk
zsvd%3cM(z&wE{&yV<`5&48`B)q3Gv_&G=uS=w}~A6n{@csrMX|{0tzbl!v!KSzG*)
znqA+-mi&IRi4AEiU)4`y+#?TY;{OBmbMyte*pVi7q|MMDqR-LA=QdqpkR~~kM!Bjc
zv2Ql1pX5XuX|CF7{z_er(a+K)N1{Wixtu?u{eyIAqVIRo@0S}|NS9nZOrNLA{VfXAEb2O(*$bbJWDn=aat`iO?B
zcF^mtEs8iBdd0ObHWIE?tJN}DUt9V{UOGL<^CHU&tJmUUq>E9^)KTt=DDT@)&Gq{_
zDt(csdcND$Ma~SX$7L^xBRw`ld&3NVF(|Cl7n@bRj=XIbLt?A>mZf_szBqq+(+^UHa(@SjSUX&Q`trs_Ir&+vm
zcr!?^C3XqH*@1O7i>!|FtY9hYLUqm#a%Z-UiHc;4s_?-S1XV$2`I_3)i!KaP3*!o32{L2^jh2qZ-2VhTPOKrz(a1(mXo+3K
ze9-%HJVw13c4b;SxD|ZvhAs85rPd}<3pN=Oh?Fo+$1Y#B)e@bmj4icLRaY%+jICqi
zJfZzY+RGD3k_2{nyMDIK4b`POy=svnWqN*OoQb5qfhH?3B7_|ViD7ea$*gO;ZlkiQ
zauKIiE!i}88#;;8xKNMg>M_ZUl2TJdn|b8vt6L->H)`Um*YlfVzy2W`$R?q>oTny}
z%_r&cs#|GDX9km#gQP2^+4*hZkP{T$U6dSnm{;ia*cM2k6Biaz8JtwL^9(^K}b?pcaH9CF%;gm#$O
z9Lt-+H}!UwgSrWnzzb#9O^Wu}Bus{M>N#jU6(N)A$}=s{g%MM4G)g$G?yb#%;`})93^z3&DRw>motvXMh;2W6tUmz
zq)<5`=EWjskJ_mY6QjC%iM+xb*`y@bILCQ%^W`dw-g5Hyy{fAf^9IDpI$37T`aHF=
zdF$gqUGKkIixCgyYz|Q|%FC0lCL71@JM)3%i^0s+Jn@y6Zg3&vWI(&2p6SKK)YYIqk*gp&x$UFf>DB|S
z`x&WkgL52{V^fSm-D+(;?Q-HrRt{B+g}Syj`OPDCV~w|-UyMD2D=V`rc6KETr;i?=
zU0D}IJlVX+*29z0Q5my7S}{f8_`&4TZe2D%kfBkLCe5tsvYu64PL^HC@_by|%+~9h
z6SbX{m5g&uggBWqh1NKE1KxP44|T=|g&f3Zj?e1)^335(??0ob@0-0Y37k~Xs6%ps
zHtCsCXm)a1bG`f7$H}()*|+=IxBJ;A|Ht`%|Ln_4{u3h~kvn}L?0)xE-`et}yzMh@
M+k@TjzUI5{zgn-EsQ>@~
delta 1641
zcmciB*>6l?9LDiqwYt%wR8h+*s@qJ>j4EwOXe2aZ35g4l$RrM(q-JoYO8f@GVy2XIzida?B=T7qZzgcHFWv$P29-$KWGmvzP3e
zaRBxHK<=O|IE?XaGY3r0VmJ;Hs2A)-P2>c!*(G*iyoyEm0yV$~)B=8>Dp$&^HIW3W
zh^Mg@&tnxnM7{Sbj%R$!p{}|x6;;Y0>IVz40NYRlcHw9|jMaD!HSj%DL<2YjKVdaa
zJP)j3+U*ZM{Z8ON{&ccUiSi;Ca@@)LVAiuzLp`^JSz%w&1WIDpD{KdQtRQ5pB3UU(f9QUB2W
z_o$3NqXuZ;rd)@t&pcGb9jJ(RA)6f?L;W?AZqA6$ZeSR1p-TP^H36My1-YnO*2%}N@t~y2CJh9
zm(x|5db%e3Z=1jcRbmRg^q-saIM;VYG^un>TA`Xl*M}FPt1X}_cdd91T^}C{`m3ob
zYKrf7tKguH-b9bkv*=Ul`dBGox+w;;*=CKPlBubL`cPC-eSq`nJd*xclyi08l
z;uT4!)%9Y@Xwr3(38&n1gIlAqwsOyD_iFtsc}=-16SgYZ>hAE%#x?kf{EvNGi|=Rn
zi%XXIM+@df<_9BTCmd>w)YXK-p-}$nRlzlGN6cfK;1XWi=tM%{x?t$fa}ECYg4Y@K
UeXk0$GXLYWAN%#i<$tFB3)#8KO8@`>
diff --git a/languages/footnotes-en.po b/languages/footnotes-en.po
index dd1ba33..5d94c74 100755
--- a/languages/footnotes-en.po
+++ b/languages/footnotes-en.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: footnotes\n"
-"POT-Creation-Date: 2014-08-21 10:24+0100\n"
-"PO-Revision-Date: 2014-08-21 10:29+0100\n"
+"POT-Creation-Date: 2014-09-07 03:43+0100\n"
+"PO-Revision-Date: 2014-09-07 03:43+0100\n"
"Last-Translator: Stefan Herndler \n"
"Language-Team: SHE \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.6.6\n"
+"X-Generator: Poedit 1.6.5\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__;"
@@ -18,11 +18,11 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
-#: classes/footnotes.php:79
+#: classes/footnotes.php:82
msgid "You must be logged in to run this script."
msgstr "You must be logged in to run this script."
-#: classes/footnotes.php:84
+#: classes/footnotes.php:87
msgid "You do not have permission to run this script."
msgstr "You do not have permission to run this script."
@@ -92,6 +92,42 @@ msgstr "reference container footnotes linked arrow"
msgid "reference container footnotes text"
msgstr "reference container footnotes text"
+#: classes/tab_diagnostics.php:27
+msgid "Diagnostics"
+msgstr "Diagnostics"
+
+#: classes/tab_diagnostics.php:38
+msgid "Displays information about the web server, PHP and WordPress."
+msgstr "Displays information about the web server, PHP and WordPress."
+
+#: classes/tab_diagnostics.php:65
+msgid "Server name"
+msgstr "Server name"
+
+#: classes/tab_diagnostics.php:71
+msgid "PHP version"
+msgstr "PHP version"
+
+#: classes/tab_diagnostics.php:77
+msgid "Max execution time"
+msgstr "Max execution time"
+
+#: classes/tab_diagnostics.php:78
+msgid "seconds"
+msgstr "seconds"
+
+#: classes/tab_diagnostics.php:83
+msgid "Memory limit"
+msgstr "Memory limit"
+
+#: classes/tab_diagnostics.php:89
+msgid "PHP extensions"
+msgstr "PHP extensions"
+
+#: classes/tab_diagnostics.php:102
+msgid "WordPress version"
+msgstr "WordPress version"
+
#: classes/tab_general.php:28
msgid "General"
msgstr "General"
@@ -236,26 +272,38 @@ msgstr "How to"
msgid "Brief introduction in how to use the plugin"
msgstr "Brief introduction in how to use the plugin"
-#: classes/tab_howto.php:69
+#: classes/tab_howto.php:47
+msgid "Help us to improve our Plugin."
+msgstr "Help us to improve our Plugin."
+
+#: classes/tab_howto.php:77
msgid "example string"
msgstr "example string"
-#: classes/tab_howto.php:74
+#: classes/tab_howto.php:82
msgid "Start your footnote with the following shortcode:"
msgstr "Start your footnote with the following shortcode:"
-#: classes/tab_howto.php:80
+#: classes/tab_howto.php:88
msgid "...and end your footnote with this shortcode:"
msgstr "...and end your footnote with this shortcode:"
-#: classes/tab_howto.php:88
+#: classes/tab_howto.php:96
msgid "will be displayed as:"
msgstr "will be displayed as:"
-#: classes/tab_howto.php:94
+#: classes/tab_howto.php:102
#, php-format
-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 ""
+"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."
+
+#: classes/tab_howto.php:115
+msgid "Donate now"
+msgstr "Donate now"
#: classes/widget.php:25 classes/widget.php:43
msgid ""
@@ -273,6 +321,13 @@ msgstr "Settings"
msgid "Support"
msgstr "Support"
+#: includes/plugin-settings.php:28
+msgid "Donate"
+msgstr "Donate"
+
+#~ 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"
diff --git a/readme.txt b/readme.txt
index a53d3d9..588817b 100755
--- a/readme.txt
+++ b/readme.txt
@@ -6,7 +6,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tested up to: 4.0
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
-Stable Tag: 1.3.4
+Stable Tag: 1.4.0
== Description ==
@@ -74,6 +74,11 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
= 1.4.0 =
- Feature: WPML Config XML file for easy multi language string translation (WPML String Translation Support File)
+- Update: Changed e-Mail support address to the WordPress support forum
+- Update: Language EN and DE
+- Add: Tab for Plugin Diagnostics
+- Add: Donate link to the installed Plugin overview page
+- Add: Donate button to the "HowTo" tab
= 1.3.4 =
- Bugfix: Settings access permission vor sub-sites