Version Description
- Mar 31, 2019 =
- Framework updated: Code formatting improved.
- Framework updated: Code commenting improved.
- Framework updated: The change log design is improved.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Head and Footer Scripts Inserter |
Version | 4.40 |
Comparing to | |
See all releases |
Code changes from version 4.39 to 4.40
- header-and-footer-scripts-inserter.php +1 -1
- inc/php/core.php +1 -1
- inc/php/page.php +12 -11
- inc/php/sidebar.php +10 -0
- inc/php/tabs/settings.php +8 -0
- languages/header-and-footer-scripts-inserter-de_DE.mo +0 -0
- languages/header-and-footer-scripts-inserter-de_DE.po +19 -19
- languages/header-and-footer-scripts-inserter-es_ES.mo +0 -0
- languages/header-and-footer-scripts-inserter-es_ES.po +19 -19
- languages/header-and-footer-scripts-inserter-fr_FR.mo +0 -0
- languages/header-and-footer-scripts-inserter-fr_FR.po +19 -19
- languages/header-and-footer-scripts-inserter-nl_NL.mo +0 -0
- languages/header-and-footer-scripts-inserter-nl_NL.po +19 -19
- languages/header-and-footer-scripts-inserter-pl_PL.mo +0 -0
- languages/header-and-footer-scripts-inserter-pl_PL.po +19 -19
- languages/header-and-footer-scripts-inserter-ru_RU.mo +0 -0
- languages/header-and-footer-scripts-inserter-ru_RU.po +19 -19
- languages/header-and-footer-scripts-inserter.pot +18 -18
- readme.txt +61 -56
header-and-footer-scripts-inserter.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.40
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
inc/php/core.php
CHANGED
@@ -63,7 +63,7 @@ function spacexchimp_p006_plugin_row_meta( $links, $file ) {
|
|
63 |
|
64 |
$url_upgrade = "https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html";
|
65 |
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
|
66 |
-
$link_upgrade = '<a href="' . $url_upgrade
|
67 |
|
68 |
$new_links = array(
|
69 |
'donate' => $link_donate,
|
63 |
|
64 |
$url_upgrade = "https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html";
|
65 |
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
|
66 |
+
$link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . $text_upgrade . '</a>';
|
67 |
|
68 |
$new_links = array(
|
69 |
'donate' => $link_donate,
|
inc/php/page.php
CHANGED
@@ -48,38 +48,39 @@ function spacexchimp_p006_render_submenu_page() {
|
|
48 |
</ul>
|
49 |
<!-- END-TABS NAVIGATION MENU -->
|
50 |
|
51 |
-
<!-- TAB
|
52 |
<div class="tab-page fade active in" id="tab-core">
|
|
|
53 |
<!-- INCLUDE SIDEBAR -->
|
54 |
<?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
|
55 |
-
|
56 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
|
57 |
</div>
|
58 |
-
<!-- END-TAB
|
59 |
|
60 |
-
<!-- TAB
|
61 |
<div class="tab-page fade" id="tab-usage">
|
62 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
|
63 |
</div>
|
64 |
-
<!-- END-TAB
|
65 |
|
66 |
-
<!-- TAB
|
67 |
<div class="tab-page fade" id="tab-faq">
|
68 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
|
69 |
</div>
|
70 |
-
<!-- END-TAB
|
71 |
|
72 |
-
<!-- TAB
|
73 |
<div class="tab-page fade" id="tab-support">
|
74 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
|
75 |
</div>
|
76 |
-
<!-- END-TAB
|
77 |
|
78 |
-
<!-- TAB
|
79 |
<div class="tab-page fade" id="tab-store">
|
80 |
<div class="include-tab-store"></div>
|
81 |
</div>
|
82 |
-
<!-- END-TAB
|
83 |
|
84 |
</div>
|
85 |
|
48 |
</ul>
|
49 |
<!-- END-TABS NAVIGATION MENU -->
|
50 |
|
51 |
+
<!-- TAB MAIN -->
|
52 |
<div class="tab-page fade active in" id="tab-core">
|
53 |
+
|
54 |
<!-- INCLUDE SIDEBAR -->
|
55 |
<?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
|
56 |
+
|
57 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
|
58 |
</div>
|
59 |
+
<!-- END-TAB MAIN -->
|
60 |
|
61 |
+
<!-- TAB USAGE -->
|
62 |
<div class="tab-page fade" id="tab-usage">
|
63 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
|
64 |
</div>
|
65 |
+
<!-- END-TAB USAGE -->
|
66 |
|
67 |
+
<!-- TAB FAQ -->
|
68 |
<div class="tab-page fade" id="tab-faq">
|
69 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
|
70 |
</div>
|
71 |
+
<!-- END-TAB FAQ -->
|
72 |
|
73 |
+
<!-- TAB SUPPORT -->
|
74 |
<div class="tab-page fade" id="tab-support">
|
75 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
|
76 |
</div>
|
77 |
+
<!-- END-TAB SUPPORT -->
|
78 |
|
79 |
+
<!-- TAB STORE -->
|
80 |
<div class="tab-page fade" id="tab-store">
|
81 |
<div class="include-tab-store"></div>
|
82 |
</div>
|
83 |
+
<!-- END-TAB STORE -->
|
84 |
|
85 |
</div>
|
86 |
|
inc/php/sidebar.php
CHANGED
@@ -12,6 +12,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
|
|
15 |
<div class="postbox banner">
|
16 |
<h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
|
17 |
<div class="inside">
|
@@ -20,7 +21,9 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
20 |
</a>
|
21 |
</div>
|
22 |
</div>
|
|
|
23 |
|
|
|
24 |
<div class="postbox banner">
|
25 |
<div class="inside">
|
26 |
<a href="https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html" target="_blank">
|
@@ -28,21 +31,27 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
28 |
</a>
|
29 |
</div>
|
30 |
</div>
|
|
|
31 |
|
|
|
32 |
<div class="postbox about">
|
33 |
<h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
|
34 |
<div class="inside">
|
35 |
<p><?php _e( 'This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.', $plugin['text'] ); ?></p>
|
36 |
</div>
|
37 |
</div>
|
|
|
38 |
|
|
|
39 |
<div class="postbox help">
|
40 |
<h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
|
41 |
<div class="inside">
|
42 |
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
|
43 |
</div>
|
44 |
</div>
|
|
|
45 |
|
|
|
46 |
<div class="postbox support">
|
47 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
48 |
<div class="inside">
|
@@ -56,6 +65,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
56 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
57 |
</div>
|
58 |
</div>
|
|
|
59 |
|
60 |
</div>
|
61 |
</div>
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
15 |
+
<!-- SPACEXCHIMP -->
|
16 |
<div class="postbox banner">
|
17 |
<h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
|
18 |
<div class="inside">
|
21 |
</a>
|
22 |
</div>
|
23 |
</div>
|
24 |
+
<!-- END SPACEXCHIMP -->
|
25 |
|
26 |
+
<!-- UPGRADE -->
|
27 |
<div class="postbox banner">
|
28 |
<div class="inside">
|
29 |
<a href="https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html" target="_blank">
|
31 |
</a>
|
32 |
</div>
|
33 |
</div>
|
34 |
+
<!-- END UPGRADE -->
|
35 |
|
36 |
+
<!-- ABOUT -->
|
37 |
<div class="postbox about">
|
38 |
<h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
|
39 |
<div class="inside">
|
40 |
<p><?php _e( 'This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.', $plugin['text'] ); ?></p>
|
41 |
</div>
|
42 |
</div>
|
43 |
+
<!-- END ABOUT -->
|
44 |
|
45 |
+
<!-- HELP -->
|
46 |
<div class="postbox help">
|
47 |
<h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
|
48 |
<div class="inside">
|
49 |
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
|
50 |
</div>
|
51 |
</div>
|
52 |
+
<!-- END HELP -->
|
53 |
|
54 |
+
<!-- SUPPORT -->
|
55 |
<div class="postbox support">
|
56 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
57 |
<div class="inside">
|
65 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
66 |
</div>
|
67 |
</div>
|
68 |
+
<!-- END SUPPORT -->
|
69 |
|
70 |
</div>
|
71 |
</div>
|
inc/php/tabs/settings.php
CHANGED
@@ -57,7 +57,10 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
57 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
58 |
><?php echo $header_end; ?></textarea>
|
59 |
|
|
|
60 |
<input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
|
|
|
|
61 |
</div>
|
62 |
</div>
|
63 |
|
@@ -91,10 +94,14 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
91 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
92 |
><?php echo $footer_end; ?></textarea>
|
93 |
|
|
|
94 |
<input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
|
|
|
|
95 |
</div>
|
96 |
</div>
|
97 |
|
|
|
98 |
<div class="postbox" id="support-addition">
|
99 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
100 |
<div class="inside">
|
@@ -108,6 +115,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
108 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
109 |
</div>
|
110 |
</div>
|
|
|
111 |
|
112 |
</form>
|
113 |
|
57 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
58 |
><?php echo $header_end; ?></textarea>
|
59 |
|
60 |
+
<!-- SUBMIT -->
|
61 |
<input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
62 |
+
<!-- END SUBMIT -->
|
63 |
+
|
64 |
</div>
|
65 |
</div>
|
66 |
|
94 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
95 |
><?php echo $footer_end; ?></textarea>
|
96 |
|
97 |
+
<!-- SUBMIT -->
|
98 |
<input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
99 |
+
<!-- END SUBMIT -->
|
100 |
+
|
101 |
</div>
|
102 |
</div>
|
103 |
|
104 |
+
<!-- SUPPORT -->
|
105 |
<div class="postbox" id="support-addition">
|
106 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
107 |
<div class="inside">
|
115 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
116 |
</div>
|
117 |
</div>
|
118 |
+
<!-- END SUPPORT -->
|
119 |
|
120 |
</form>
|
121 |
|
languages/header-and-footer-scripts-inserter-de_DE.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -82,7 +82,7 @@ msgstr "Verwendung"
|
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
@@ -90,36 +90,36 @@ msgstr "Unterstützung"
|
|
90 |
msgid "Store"
|
91 |
msgstr "Geschäft"
|
92 |
|
93 |
-
#: inc/php/sidebar.php:
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Wir sind «Space X-Chimp»"
|
96 |
|
97 |
-
#: inc/php/sidebar.php:
|
98 |
msgid "About"
|
99 |
msgstr "Über"
|
100 |
|
101 |
-
#: inc/php/sidebar.php:
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/sidebar.php:
|
106 |
msgid "Help"
|
107 |
msgstr "Hilfe"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Spende mit PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Danke für Ihre Unterstützung!"
|
125 |
|
@@ -539,7 +539,7 @@ msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
@@ -552,12 +552,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
@@ -565,23 +565,23 @@ msgstr ""
|
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "Save changes"
|
570 |
msgstr "Änderungen speichern"
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
90 |
msgid "Store"
|
91 |
msgstr "Geschäft"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:17
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Wir sind «Space X-Chimp»"
|
96 |
|
97 |
+
#: inc/php/sidebar.php:38
|
98 |
msgid "About"
|
99 |
msgstr "Über"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:40
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:47
|
106 |
msgid "Help"
|
107 |
msgstr "Hilfe"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:49
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Spende mit PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Danke für Ihre Unterstützung!"
|
125 |
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
569 |
msgid "Save changes"
|
570 |
msgstr "Änderungen speichern"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:69
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:75
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:78
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:88
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
languages/header-and-footer-scripts-inserter-es_ES.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -82,7 +82,7 @@ msgstr "Uso"
|
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "Preguntas ?"
|
84 |
|
85 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
@@ -90,36 +90,36 @@ msgstr "Soporte"
|
|
90 |
msgid "Store"
|
91 |
msgstr "Tienda"
|
92 |
|
93 |
-
#: inc/php/sidebar.php:
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/sidebar.php:
|
98 |
msgid "About"
|
99 |
msgstr "Acerca de"
|
100 |
|
101 |
-
#: inc/php/sidebar.php:
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código HTML (más JavaScript, CSS, etc.) personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:
|
106 |
msgid "Help"
|
107 |
msgstr "Ayuda"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Donar con PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "¡Gracias por tu apoyo!"
|
125 |
|
@@ -539,7 +539,7 @@ msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
@@ -552,12 +552,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
@@ -565,23 +565,23 @@ msgstr ""
|
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "Save changes"
|
570 |
msgstr "Guardar cambios"
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "Preguntas ?"
|
84 |
|
85 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
90 |
msgid "Store"
|
91 |
msgstr "Tienda"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:17
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/sidebar.php:38
|
98 |
msgid "About"
|
99 |
msgstr "Acerca de"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:40
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código HTML (más JavaScript, CSS, etc.) personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:47
|
106 |
msgid "Help"
|
107 |
msgstr "Ayuda"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:49
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Donar con PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "¡Gracias por tu apoyo!"
|
125 |
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
569 |
msgid "Save changes"
|
570 |
msgstr "Guardar cambios"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:69
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:75
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:78
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:88
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
languages/header-and-footer-scripts-inserter-fr_FR.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -82,7 +82,7 @@ msgstr "Utilisation"
|
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "FAQ."
|
84 |
|
85 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
86 |
msgid "Support"
|
87 |
msgstr ""
|
88 |
|
@@ -90,36 +90,36 @@ msgstr ""
|
|
90 |
msgid "Store"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/sidebar.php:
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/sidebar.php:
|
98 |
msgid "About"
|
99 |
msgstr "A propos"
|
100 |
|
101 |
-
#: inc/php/sidebar.php:
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code HTML (plus JavaScript, CSS, etc.) personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:
|
106 |
msgid "Help"
|
107 |
msgstr "Aide"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Faire un don avec PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Merci pour votre soutien!"
|
125 |
|
@@ -539,7 +539,7 @@ msgstr ""
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr "N'EST PAS SAUVÉ!"
|
545 |
|
@@ -552,12 +552,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Entrez votre extrait de code HTML ici"
|
563 |
|
@@ -565,23 +565,23 @@ msgstr "Entrez votre extrait de code HTML ici"
|
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "Save changes"
|
570 |
msgstr "Enregistrer les modifications"
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "FAQ."
|
84 |
|
85 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
86 |
msgid "Support"
|
87 |
msgstr ""
|
88 |
|
90 |
msgid "Store"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/sidebar.php:17
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/sidebar.php:38
|
98 |
msgid "About"
|
99 |
msgstr "A propos"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:40
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code HTML (plus JavaScript, CSS, etc.) personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:47
|
106 |
msgid "Help"
|
107 |
msgstr "Aide"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:49
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Faire un don avec PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Merci pour votre soutien!"
|
125 |
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr "N'EST PAS SAUVÉ!"
|
545 |
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Entrez votre extrait de code HTML ici"
|
563 |
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
569 |
msgid "Save changes"
|
570 |
msgstr "Enregistrer les modifications"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:69
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:75
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:78
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:88
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
languages/header-and-footer-scripts-inserter-nl_NL.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -82,7 +82,7 @@ msgstr "Gebruik"
|
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
@@ -90,36 +90,36 @@ msgstr "Ondersteuning"
|
|
90 |
msgid "Store"
|
91 |
msgstr "Winkel"
|
92 |
|
93 |
-
#: inc/php/sidebar.php:
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Wij zijn «Space X-Chimp»"
|
96 |
|
97 |
-
#: inc/php/sidebar.php:
|
98 |
msgid "About"
|
99 |
msgstr "Over"
|
100 |
|
101 |
-
#: inc/php/sidebar.php:
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/sidebar.php:
|
106 |
msgid "Help"
|
107 |
msgstr "Helpen"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Doneer via PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Bedankt voor uw steun!"
|
125 |
|
@@ -539,7 +539,7 @@ msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
@@ -552,12 +552,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
@@ -565,23 +565,23 @@ msgstr ""
|
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "Save changes"
|
570 |
msgstr "Wijzigingen opslaan"
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
90 |
msgid "Store"
|
91 |
msgstr "Winkel"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:17
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Wij zijn «Space X-Chimp»"
|
96 |
|
97 |
+
#: inc/php/sidebar.php:38
|
98 |
msgid "About"
|
99 |
msgstr "Over"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:40
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:47
|
106 |
msgid "Help"
|
107 |
msgstr "Helpen"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:49
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Doneer via PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Bedankt voor uw steun!"
|
125 |
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
552 |
msgstr ""
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
569 |
msgid "Save changes"
|
570 |
msgstr "Wijzigingen opslaan"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:69
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:75
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:78
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:88
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr ""
|
587 |
|
languages/header-and-footer-scripts-inserter-pl_PL.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-pl_PL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
@@ -83,7 +83,7 @@ msgstr "Wykorzystanie"
|
|
83 |
msgid "F.A.Q."
|
84 |
msgstr "FAQ"
|
85 |
|
86 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
@@ -91,36 +91,36 @@ msgstr ""
|
|
91 |
msgid "Store"
|
92 |
msgstr "Rodzina"
|
93 |
|
94 |
-
#: inc/php/sidebar.php:
|
95 |
msgid "We are «Space X-Chimp»"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/sidebar.php:
|
99 |
msgid "About"
|
100 |
msgstr "O wtyczce"
|
101 |
|
102 |
-
#: inc/php/sidebar.php:
|
103 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/sidebar.php:
|
107 |
msgid "Help"
|
108 |
msgstr "Pomoc"
|
109 |
|
110 |
-
#: inc/php/sidebar.php:
|
111 |
msgid "If you have a question, please read the information in the FAQ section."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/sidebar.php:
|
115 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/sidebar.php:
|
119 |
#: inc/php/tabs/support.php:21
|
120 |
msgid "Donate with PayPal"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/sidebar.php:
|
124 |
msgid "Thanks for your support!"
|
125 |
msgstr "Dziękujemy za wsparcie!"
|
126 |
|
@@ -540,7 +540,7 @@ msgstr ""
|
|
540 |
msgid "Head Section"
|
541 |
msgstr "Sekcja: Nagłówek"
|
542 |
|
543 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
544 |
msgid "NOT SAVED!"
|
545 |
msgstr ""
|
546 |
|
@@ -553,12 +553,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
553 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD."
|
554 |
|
555 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
556 |
-
#: inc/php/tabs/settings.php:
|
557 |
msgid "Do not place plain text in this!"
|
558 |
msgstr "Nie należy tu umieszczać zwykłego tekstu!"
|
559 |
|
560 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
561 |
-
#: inc/php/tabs/settings.php:
|
562 |
msgid "Enter your custom HTML code here"
|
563 |
msgstr ""
|
564 |
|
@@ -566,23 +566,23 @@ msgstr ""
|
|
566 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
567 |
msgstr "Kod HTML z tego pola zostaną dodane na końcu sekcji HEAD."
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
msgid "Save changes"
|
571 |
msgstr "Zapisz"
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
msgid "Footer Section"
|
575 |
msgstr "Sekcja: Stopka"
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
579 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do stopki witryny."
|
580 |
|
581 |
-
#: inc/php/tabs/settings.php:
|
582 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
583 |
msgstr "Kod HTML z tego pola zostaną dodane przed skryptami ze stopki."
|
584 |
|
585 |
-
#: inc/php/tabs/settings.php:
|
586 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
587 |
msgstr "Kod HTML z tego pola zostaną dodane za skryptami ze stopki."
|
588 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
83 |
msgid "F.A.Q."
|
84 |
msgstr "FAQ"
|
85 |
|
86 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
91 |
msgid "Store"
|
92 |
msgstr "Rodzina"
|
93 |
|
94 |
+
#: inc/php/sidebar.php:17
|
95 |
msgid "We are «Space X-Chimp»"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/sidebar.php:38
|
99 |
msgid "About"
|
100 |
msgstr "O wtyczce"
|
101 |
|
102 |
+
#: inc/php/sidebar.php:40
|
103 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/sidebar.php:47
|
107 |
msgid "Help"
|
108 |
msgstr "Pomoc"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:49
|
111 |
msgid "If you have a question, please read the information in the FAQ section."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
115 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
119 |
#: inc/php/tabs/support.php:21
|
120 |
msgid "Donate with PayPal"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
124 |
msgid "Thanks for your support!"
|
125 |
msgstr "Dziękujemy za wsparcie!"
|
126 |
|
540 |
msgid "Head Section"
|
541 |
msgstr "Sekcja: Nagłówek"
|
542 |
|
543 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
544 |
msgid "NOT SAVED!"
|
545 |
msgstr ""
|
546 |
|
553 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD."
|
554 |
|
555 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
556 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
557 |
msgid "Do not place plain text in this!"
|
558 |
msgstr "Nie należy tu umieszczać zwykłego tekstu!"
|
559 |
|
560 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
561 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
562 |
msgid "Enter your custom HTML code here"
|
563 |
msgstr ""
|
564 |
|
566 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
567 |
msgstr "Kod HTML z tego pola zostaną dodane na końcu sekcji HEAD."
|
568 |
|
569 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
570 |
msgid "Save changes"
|
571 |
msgstr "Zapisz"
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:69
|
574 |
msgid "Footer Section"
|
575 |
msgstr "Sekcja: Stopka"
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:75
|
578 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
579 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do stopki witryny."
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:78
|
582 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
583 |
msgstr "Kod HTML z tego pola zostaną dodane przed skryptami ze stopki."
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:88
|
586 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
587 |
msgstr "Kod HTML z tego pola zostaną dodane za skryptami ze stopki."
|
588 |
|
languages/header-and-footer-scripts-inserter-ru_RU.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -82,7 +82,7 @@ msgstr "Применение"
|
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
@@ -90,36 +90,36 @@ msgstr "Поддержка"
|
|
90 |
msgid "Store"
|
91 |
msgstr "Магазин"
|
92 |
|
93 |
-
#: inc/php/sidebar.php:
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Мы «Space X-Chimp»"
|
96 |
|
97 |
-
#: inc/php/sidebar.php:
|
98 |
msgid "About"
|
99 |
msgstr "О плагине"
|
100 |
|
101 |
-
#: inc/php/sidebar.php:
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский HTML код (плюс JavaScript, CSS, и т.д.) на ваш WordPress веб-сайт, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:
|
106 |
msgid "Help"
|
107 |
msgstr "Помощь"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Пожертвовать через PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Спасибо за вашу поддержку!"
|
125 |
|
@@ -539,7 +539,7 @@ msgstr "Но имейте в виду, что этот плагин являет
|
|
539 |
msgid "Head Section"
|
540 |
msgstr "Верхний колонтитул (HEAD)"
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
@@ -552,12 +552,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
552 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD)."
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr "Не помещайте сюда обычный текст!"
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
563 |
|
@@ -565,23 +565,23 @@ msgstr "Поместите сюда ваш пользовательский HTML
|
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr "HTML код из этой области будет добавлен в конец верхнего колонтитула (HEAD)."
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "Save changes"
|
570 |
msgstr "Сохранить изменения"
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Footer Section"
|
574 |
msgstr "Нижний колонтитул (FOOTER)"
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в нижний колонтитул вашего веб-сайта."
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr "HTML код из этой области будет добавлен в начало нижнего колонтитула."
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr "HTML код из этой области будет добавлен в конец нижнего колонтитула."
|
587 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:11+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
90 |
msgid "Store"
|
91 |
msgstr "Магазин"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:17
|
94 |
msgid "We are «Space X-Chimp»"
|
95 |
msgstr "Мы «Space X-Chimp»"
|
96 |
|
97 |
+
#: inc/php/sidebar.php:38
|
98 |
msgid "About"
|
99 |
msgstr "О плагине"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:40
|
102 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский HTML код (плюс JavaScript, CSS, и т.д.) на ваш WordPress веб-сайт, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:47
|
106 |
msgid "Help"
|
107 |
msgstr "Помощь"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:49
|
110 |
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
114 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
118 |
#: inc/php/tabs/support.php:21
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Пожертвовать через PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Спасибо за вашу поддержку!"
|
125 |
|
539 |
msgid "Head Section"
|
540 |
msgstr "Верхний колонтитул (HEAD)"
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
552 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD)."
|
553 |
|
554 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
555 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr "Не помещайте сюда обычный текст!"
|
558 |
|
559 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
560 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
563 |
|
565 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
566 |
msgstr "HTML код из этой области будет добавлен в конец верхнего колонтитула (HEAD)."
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
569 |
msgid "Save changes"
|
570 |
msgstr "Сохранить изменения"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:69
|
573 |
msgid "Footer Section"
|
574 |
msgstr "Нижний колонтитул (FOOTER)"
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:75
|
577 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
578 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в нижний колонтитул вашего веб-сайта."
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:78
|
581 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
582 |
msgstr "HTML код из этой области будет добавлен в начало нижнего колонтитула."
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:88
|
585 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
586 |
msgstr "HTML код из этой области будет добавлен в конец нижнего колонтитула."
|
587 |
|
languages/header-and-footer-scripts-inserter.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -80,7 +80,7 @@ msgstr ""
|
|
80 |
msgid "F.A.Q."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
@@ -88,36 +88,36 @@ msgstr ""
|
|
88 |
msgid "Store"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/sidebar.php:
|
92 |
msgid "We are «Space X-Chimp»"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/sidebar.php:
|
96 |
msgid "About"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/sidebar.php:
|
100 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/sidebar.php:
|
104 |
msgid "Help"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: inc/php/sidebar.php:
|
108 |
msgid "If you have a question, please read the information in the FAQ section."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/sidebar.php:
|
112 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/sidebar.php:
|
116 |
#: inc/php/tabs/support.php:21
|
117 |
msgid "Donate with PayPal"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/sidebar.php:
|
121 |
msgid "Thanks for your support!"
|
122 |
msgstr ""
|
123 |
|
@@ -537,7 +537,7 @@ msgstr ""
|
|
537 |
msgid "Head Section"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:
|
541 |
msgid "NOT SAVED!"
|
542 |
msgstr ""
|
543 |
|
@@ -550,12 +550,12 @@ msgid "The HTML code from this field will be printed at the beginning of the HEA
|
|
550 |
msgstr ""
|
551 |
|
552 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
553 |
-
#: inc/php/tabs/settings.php:
|
554 |
msgid "Do not place plain text in this!"
|
555 |
msgstr ""
|
556 |
|
557 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Enter your custom HTML code here"
|
560 |
msgstr ""
|
561 |
|
@@ -563,23 +563,23 @@ msgstr ""
|
|
563 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/tabs/settings.php:
|
567 |
msgid "Save changes"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
msgid "Footer Section"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
584 |
msgstr ""
|
585 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:11+0300\n"
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
80 |
msgid "F.A.Q."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:106
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
88 |
msgid "Store"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/sidebar.php:17
|
92 |
msgid "We are «Space X-Chimp»"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/sidebar.php:38
|
96 |
msgid "About"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: inc/php/sidebar.php:40
|
100 |
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/php/sidebar.php:47
|
104 |
msgid "Help"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: inc/php/sidebar.php:49
|
108 |
msgid "If you have a question, please read the information in the FAQ section."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:108
|
112 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:113
|
116 |
#: inc/php/tabs/support.php:21
|
117 |
msgid "Donate with PayPal"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:115
|
121 |
msgid "Thanks for your support!"
|
122 |
msgstr ""
|
123 |
|
537 |
msgid "Head Section"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:71
|
541 |
msgid "NOT SAVED!"
|
542 |
msgstr ""
|
543 |
|
550 |
msgstr ""
|
551 |
|
552 |
#: inc/php/tabs/settings.php:42 inc/php/tabs/settings.php:52
|
553 |
+
#: inc/php/tabs/settings.php:79 inc/php/tabs/settings.php:89
|
554 |
msgid "Do not place plain text in this!"
|
555 |
msgstr ""
|
556 |
|
557 |
#: inc/php/tabs/settings.php:47 inc/php/tabs/settings.php:57
|
558 |
+
#: inc/php/tabs/settings.php:84 inc/php/tabs/settings.php:94
|
559 |
msgid "Enter your custom HTML code here"
|
560 |
msgstr ""
|
561 |
|
563 |
msgid "The HTML code from this field will be printed at the end of the HEAD section."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:61 inc/php/tabs/settings.php:98
|
567 |
msgid "Save changes"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:69
|
571 |
msgid "Footer Section"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:75
|
575 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:78
|
579 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:88
|
583 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section."
|
584 |
msgstr ""
|
585 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: inject code, inject scripts, inject javascript, inject js, inject html, inject css, insert code, insert scripts, insert javascript, insert js, insert html, insert css, inject custom code, inject custom scripts, inject custom snippet, insert custom code, insert custom scripts, insert custom snippet, html, javascript, js, css, code, custom code, script, scripts, custom scripts, meta, meta tags, head, header, head section, head area, footer, footer section, footer area
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -220,7 +220,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
-
= 4.
|
|
|
|
|
|
|
|
|
|
|
224 |
* Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
|
225 |
* Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
|
226 |
* Framework updated: The function "_plugin_row_meta" is improved.
|
@@ -228,20 +233,20 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
228 |
* Framework updated: Code commenting improved.
|
229 |
* Framework updated: All translation files are updated.
|
230 |
|
231 |
-
= 4.38 -
|
232 |
* Improvement: Notification display system updated
|
233 |
* Code commenting improved.
|
234 |
* Code formatting improved.
|
235 |
* Style sheet for the back end is optimised.
|
236 |
|
237 |
-
= 4.37 - 2019
|
238 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
239 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
240 |
|
241 |
-
= 4.36 -
|
242 |
* Added French translation. (Thanks to Hervé Bouzin)
|
243 |
|
244 |
-
= 4.35 =
|
245 |
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
246 |
* Content of the "F.A.Q." section updated.
|
247 |
* Some texts are corrected or replaced with new ones.
|
@@ -250,7 +255,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
250 |
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
251 |
* The "humans.txt" file updated.
|
252 |
|
253 |
-
= 4.34 =
|
254 |
* Content of the "Usage" section updated.
|
255 |
* Content of the "FAQ" section updated.
|
256 |
* Code formatting in the "admin.js" file improved.
|
@@ -258,33 +263,33 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
258 |
* The copyright date updated.
|
259 |
* Translation files are updated.
|
260 |
|
261 |
-
= 4.33 =
|
262 |
* Improvement: Design of the plugin settings page is improved.
|
263 |
|
264 |
-
= 4.32 =
|
265 |
* Improvement: Design of the plugin settings page is improved.
|
266 |
* Content of the "Usage Instructions" section updated.
|
267 |
* Translation files are updated.
|
268 |
|
269 |
-
= 4.31 =
|
270 |
* Added new feature: If the changes in the code editor were made, but not saved, the message "NOT SAVED" is displayed.
|
271 |
* Translation files are updated.
|
272 |
|
273 |
-
= 4.30 =
|
274 |
* Content of the "FAQ" section updated.
|
275 |
* CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
|
276 |
* The sidebar items are rearranged.
|
277 |
* Some texts are updated.
|
278 |
* Translation files are updated.
|
279 |
|
280 |
-
= 4.29 =
|
281 |
* Added information about the PRO version of the plugin.
|
282 |
* The design of the message "Successful" is improved.
|
283 |
* The "readme.txt" file is updated.
|
284 |
* Some texts are updated.
|
285 |
* Translation files are updated.
|
286 |
|
287 |
-
= 4.28 =
|
288 |
* Changed the sorting of functions in the file 'functional.php'.
|
289 |
* The '_output' function renamed to '_prepare'.
|
290 |
* The function '_prepare' is improved.
|
@@ -294,13 +299,13 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
294 |
* Some texts are updated.
|
295 |
* Translation files are updated.
|
296 |
|
297 |
-
= 4.27 =
|
298 |
* Some texts are updated.
|
299 |
* Translation files are updated.
|
300 |
* The translation into Russian has been corrected.
|
301 |
* The translation into Dutch has been corrected.
|
302 |
|
303 |
-
= 4.26 =
|
304 |
* Dutch translation added. (Thanks to Peter Leenders)
|
305 |
* The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
|
306 |
* The function '_load_scripts_admin' is improved.
|
@@ -308,16 +313,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
308 |
* Some texts are updated.
|
309 |
* All translation files are updated.
|
310 |
|
311 |
-
= 4.25 =
|
312 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
313 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|
314 |
* Some texts updated, and typos are corrected.
|
315 |
* All translation files are updated.
|
316 |
|
317 |
-
= 4.24 =
|
318 |
* Fixed: CodeMirror addon 'autorefresh.js' was added to one of the previous versions of the plugin, but it was not enabled.
|
319 |
|
320 |
-
= 4.23 =
|
321 |
* Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
|
322 |
* Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
|
323 |
* Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code fields.
|
@@ -325,64 +330,64 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
325 |
* The code that adds lines to the CodeMirror editor, if all lines are less than 10, is deleted.
|
326 |
* Translations are updated.
|
327 |
|
328 |
-
= 4.22 =
|
329 |
* Updated the method of loading the addons of the CodeMirror library.
|
330 |
* Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
|
331 |
|
332 |
-
= 4.21 =
|
333 |
* CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
|
334 |
* Updated the method of loading the modes and addons of the CodeMirror library.
|
335 |
|
336 |
-
= 4.20 =
|
337 |
* Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
|
338 |
* The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
|
339 |
|
340 |
-
= 4.19 =
|
341 |
* Added new constant "_FILE".
|
342 |
* Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
|
343 |
|
344 |
-
= 4.18 =
|
345 |
* Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
|
346 |
* CSS code in the file 'admin.css' is optimized.
|
347 |
|
348 |
-
= 4.17 =
|
349 |
* Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
|
350 |
* Fixed information stored in the header of the translation files.
|
351 |
* Translation files updated.
|
352 |
|
353 |
-
= 4.16 =
|
354 |
* Some texts updated, and typos corrected.
|
355 |
* All translation files updated.
|
356 |
* The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
|
357 |
* The "humans.txt" file updated.
|
358 |
|
359 |
-
= 4.15 =
|
360 |
* Texts updated.
|
361 |
* The year in the copyright text is updated.
|
362 |
* The sidebar items are rearranged.
|
363 |
* Translation files updated.
|
364 |
|
365 |
-
= 4.14 =
|
366 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
367 |
* CSS code improved.
|
368 |
|
369 |
-
= 4.13 =
|
370 |
* German translation added. (Thanks to Michael)
|
371 |
* Spanish translation updated. (Thanks to Patricio Toledo)
|
372 |
* Fixed an issue where the "Hello" message could not be hidden.
|
373 |
|
374 |
-
= 4.12 =
|
375 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
376 |
|
377 |
-
= 4.11 =
|
378 |
* Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
|
379 |
* Added branded footer text on the plugin's settings page.
|
380 |
* Text of copyright in the output code is updated.
|
381 |
|
382 |
-
= 4.10 =
|
383 |
* Error in the PHP constant name fixed.
|
384 |
|
385 |
-
= 4.9 =
|
386 |
* Added the top level menu item of the brand.
|
387 |
* The submenu item of the plugin has moved to the menu item of the brand.
|
388 |
* The menu item of the plugin is renamed.
|
@@ -392,10 +397,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
392 |
* The "Support" tab renamed to the "Support Me".
|
393 |
* The "Usage" tab renamed to the "Usage Instructions".
|
394 |
|
395 |
-
= 4.8 =
|
396 |
* Plugin data that saved in the database upgraded to version 0001.
|
397 |
|
398 |
-
= 4.7 =
|
399 |
* Added Spanish translation. (Thanks Patricio Toledo)
|
400 |
* The group name of the '_service_info' option renamed to '_settings_group_si'.
|
401 |
* The 'admin.css' file improved.
|
@@ -403,7 +408,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
403 |
* Prefixes of the PHP functions changed to ''spacexchimp_p006_.
|
404 |
* Prefixes of the PHP constants changed to ''SPACEXCHIMP_P006_.
|
405 |
|
406 |
-
= 4.6 =
|
407 |
* Russian translation updated. (Thanks to Milena Kiseleva)
|
408 |
* The navigation of the tabs is rearranged.
|
409 |
* Fixed an issue due to which the sidebar was not hiding on mobile devices.
|
@@ -413,7 +418,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
413 |
* Banner moved from external source to plugin folder.
|
414 |
* Code of PayPal button updated.
|
415 |
|
416 |
-
= 4.5 =
|
417 |
* Stylesheet in the admin.css file improved.
|
418 |
* The '!important' declarations in the admin.css file removed.
|
419 |
* Code formatting in the admin.js file improved.
|
@@ -423,11 +428,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
423 |
* The 'Family' page tab renamed to 'Store'.
|
424 |
* Added ad banner of my store website.
|
425 |
|
426 |
-
= 4.4.1 =
|
427 |
* The HTTPS mixed content issue fixed by changing all links to HTTPS.
|
428 |
* Content of the "FAQ" section updated.
|
429 |
|
430 |
-
= 4.4 =
|
431 |
* On the plugin settings page, text of buttons are corrected.
|
432 |
* On the plugin settings page, the information about the plugin version number moved to header section.
|
433 |
* Some mention of constants replaced with variables for easier access.
|
@@ -435,14 +440,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
435 |
* Content of the "FAQ" tab updated.
|
436 |
* Added load of the jQuery library on the plugin settings page.
|
437 |
|
438 |
-
= 4.3 =
|
439 |
* To the plugin settings page added information about the plugin version number.
|
440 |
* The "Tested up to:" comment changed to 4.8 after full testing process.
|
441 |
* The "version.php" file renamed to "versioning.php".
|
442 |
* The "versioning.php" file updated to new version.
|
443 |
* The "_plugin_version_number" function renamed to the "_versioning".
|
444 |
|
445 |
-
= 4.2 =
|
446 |
* Compatibility with PHP version 5.2 improved.
|
447 |
* PHP shorthands improved.
|
448 |
* Added function for generating the plugin constants.
|
@@ -450,10 +455,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
450 |
* The "_plugin_version_number" function improved.
|
451 |
* Added file "upgrade.php" for future upgrades.
|
452 |
|
453 |
-
= 4.1.1 =
|
454 |
* Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
|
455 |
|
456 |
-
= 4.1 =
|
457 |
* Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
|
458 |
* Value of the "_VERSION" constant replaced with information from the plugin header data.
|
459 |
* All references to the plugin name, slug, prefix are replaced with constants.
|
@@ -461,10 +466,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
461 |
* Code formatting improved.
|
462 |
* F.A.Q. section updated.
|
463 |
|
464 |
-
= 4.0.1 =
|
465 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
466 |
|
467 |
-
= 4.0 =
|
468 |
* The design of the plugin settings page is completely redone.
|
469 |
* Added additional donate link to the "Plugins" page.
|
470 |
* Readme for translations updated.
|
@@ -499,26 +504,26 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
499 |
* The POT file updated.
|
500 |
* Translations updated.
|
501 |
|
502 |
-
= 3.3 =
|
503 |
* Added the Readme.txt file for translation contribution.
|
504 |
* Added global constant for plugin text-domain.
|
505 |
* Translations updated.
|
506 |
* Ad banner replaced with new.
|
507 |
|
508 |
-
= 3.2 =
|
509 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
510 |
* Added constant for storing the plugin version number.
|
511 |
|
512 |
-
= 3.1 =
|
513 |
* Style sheet of settings page improved and better commented.
|
514 |
* The "main.js" file renamed to "admin.js".
|
515 |
* JS code improved.
|
516 |
|
517 |
-
= 3.0.2 =
|
518 |
* Added improved section with using explanation to plugin settings page.
|
519 |
* admin.css improved.
|
520 |
|
521 |
-
= 3.0.1 =
|
522 |
* POT file updated.
|
523 |
* Russian translation updated.
|
524 |
* Polish translation updated.
|
@@ -526,7 +531,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
526 |
* Advertisement replaced by new.
|
527 |
* Added the subject with plugin name to email address on settings page.
|
528 |
|
529 |
-
= 3.0 =
|
530 |
* Plugin renamed to "Head and Footer Scripts Inserter".
|
531 |
* Styles of settings page optimized for mobile devices.
|
532 |
* Added the syntax highlighting (by CodeMirror).
|
@@ -543,7 +548,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
543 |
* The main.js moved to "js" catalog.
|
544 |
* The page.php file moved to "php" catalog.
|
545 |
|
546 |
-
= 2.0 =
|
547 |
* Fixed: "Use of undefined constant header_beginning - assumed 'header_beginning' in page.php".
|
548 |
* Fixed: "Use of undefined constant header_end - assumed 'header_end' in page.php".
|
549 |
* Fixed: "Use of undefined constant footer_beginning - assumed 'footer_beginning' in page.php".
|
@@ -558,20 +563,20 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
558 |
* Added my personal ad about freelance.
|
559 |
* .pot file updated.
|
560 |
|
561 |
-
= 1.2 =
|
562 |
* Added Polish translation. (Thanks Paweł K.)
|
563 |
* Localization improved. (Thanks Paweł K.)
|
564 |
* POT file updated. (Thanks Paweł K.)
|
565 |
|
566 |
-
= 1.1 =
|
567 |
* Added Russian translation.
|
568 |
* Localization improved.
|
569 |
|
570 |
-
= 1.0 =
|
571 |
* Initial release.
|
572 |
* Added ready for translation (.pot file included).
|
573 |
|
574 |
-
= 0.3 =
|
575 |
* Release candidate.
|
576 |
|
577 |
= 0.2 =
|
3 |
Tags: inject code, inject scripts, inject javascript, inject js, inject html, inject css, insert code, insert scripts, insert javascript, insert js, insert html, insert css, inject custom code, inject custom scripts, inject custom snippet, insert custom code, insert custom scripts, insert custom snippet, html, javascript, js, css, code, custom code, script, scripts, custom scripts, meta, meta tags, head, header, head section, head area, footer, footer section, footer area
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.2
|
7 |
+
Stable tag: 4.40
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
+
= 4.40 - Mar 31, 2019 =
|
224 |
+
* Framework updated: Code formatting improved.
|
225 |
+
* Framework updated: Code commenting improved.
|
226 |
+
* Framework updated: The change log design is improved.
|
227 |
+
|
228 |
+
= 4.39 - Mar 24, 2019 =
|
229 |
* Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
|
230 |
* Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
|
231 |
* Framework updated: The function "_plugin_row_meta" is improved.
|
233 |
* Framework updated: Code commenting improved.
|
234 |
* Framework updated: All translation files are updated.
|
235 |
|
236 |
+
= 4.38 - Mar 18, 2019 =
|
237 |
* Improvement: Notification display system updated
|
238 |
* Code commenting improved.
|
239 |
* Code formatting improved.
|
240 |
* Style sheet for the back end is optimised.
|
241 |
|
242 |
+
= 4.37 - Mar 1, 2019 =
|
243 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
244 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
245 |
|
246 |
+
= 4.36 - Feb 24, 2019 =
|
247 |
* Added French translation. (Thanks to Hervé Bouzin)
|
248 |
|
249 |
+
= 4.35 - Feb 21, 2019 =
|
250 |
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
251 |
* Content of the "F.A.Q." section updated.
|
252 |
* Some texts are corrected or replaced with new ones.
|
255 |
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
256 |
* The "humans.txt" file updated.
|
257 |
|
258 |
+
= 4.34 - Jan 11, 2019 =
|
259 |
* Content of the "Usage" section updated.
|
260 |
* Content of the "FAQ" section updated.
|
261 |
* Code formatting in the "admin.js" file improved.
|
263 |
* The copyright date updated.
|
264 |
* Translation files are updated.
|
265 |
|
266 |
+
= 4.33 - Nov 2, 2018 =
|
267 |
* Improvement: Design of the plugin settings page is improved.
|
268 |
|
269 |
+
= 4.32 - Oct 23, 2018 =
|
270 |
* Improvement: Design of the plugin settings page is improved.
|
271 |
* Content of the "Usage Instructions" section updated.
|
272 |
* Translation files are updated.
|
273 |
|
274 |
+
= 4.31 - Oct 8, 2018 =
|
275 |
* Added new feature: If the changes in the code editor were made, but not saved, the message "NOT SAVED" is displayed.
|
276 |
* Translation files are updated.
|
277 |
|
278 |
+
= 4.30 - Sep 22, 2018 =
|
279 |
* Content of the "FAQ" section updated.
|
280 |
* CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
|
281 |
* The sidebar items are rearranged.
|
282 |
* Some texts are updated.
|
283 |
* Translation files are updated.
|
284 |
|
285 |
+
= 4.29 - Sep 12, 2018 =
|
286 |
* Added information about the PRO version of the plugin.
|
287 |
* The design of the message "Successful" is improved.
|
288 |
* The "readme.txt" file is updated.
|
289 |
* Some texts are updated.
|
290 |
* Translation files are updated.
|
291 |
|
292 |
+
= 4.28 - Aug 19, 2018 =
|
293 |
* Changed the sorting of functions in the file 'functional.php'.
|
294 |
* The '_output' function renamed to '_prepare'.
|
295 |
* The function '_prepare' is improved.
|
299 |
* Some texts are updated.
|
300 |
* Translation files are updated.
|
301 |
|
302 |
+
= 4.27 - Aug 7, 2018 =
|
303 |
* Some texts are updated.
|
304 |
* Translation files are updated.
|
305 |
* The translation into Russian has been corrected.
|
306 |
* The translation into Dutch has been corrected.
|
307 |
|
308 |
+
= 4.26 - Jul 24, 2018 =
|
309 |
* Dutch translation added. (Thanks to Peter Leenders)
|
310 |
* The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
|
311 |
* The function '_load_scripts_admin' is improved.
|
313 |
* Some texts are updated.
|
314 |
* All translation files are updated.
|
315 |
|
316 |
+
= 4.25 - Jul 13, 2018 =
|
317 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
318 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|
319 |
* Some texts updated, and typos are corrected.
|
320 |
* All translation files are updated.
|
321 |
|
322 |
+
= 4.24 - Jul 1, 2018 =
|
323 |
* Fixed: CodeMirror addon 'autorefresh.js' was added to one of the previous versions of the plugin, but it was not enabled.
|
324 |
|
325 |
+
= 4.23 - Jun 30, 2018 =
|
326 |
* Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
|
327 |
* Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
|
328 |
* Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code fields.
|
330 |
* The code that adds lines to the CodeMirror editor, if all lines are less than 10, is deleted.
|
331 |
* Translations are updated.
|
332 |
|
333 |
+
= 4.22 - Jun 26, 2018 =
|
334 |
* Updated the method of loading the addons of the CodeMirror library.
|
335 |
* Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
|
336 |
|
337 |
+
= 4.21 - Jun 12, 2018 =
|
338 |
* CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
|
339 |
* Updated the method of loading the modes and addons of the CodeMirror library.
|
340 |
|
341 |
+
= 4.20 - Jun 4, 2018 =
|
342 |
* Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
|
343 |
* The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
|
344 |
|
345 |
+
= 4.19 - May 20, 2018 =
|
346 |
* Added new constant "_FILE".
|
347 |
* Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
|
348 |
|
349 |
+
= 4.18 - May 6, 2018 =
|
350 |
* Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
|
351 |
* CSS code in the file 'admin.css' is optimized.
|
352 |
|
353 |
+
= 4.17 - Apr 25, 2018 =
|
354 |
* Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
|
355 |
* Fixed information stored in the header of the translation files.
|
356 |
* Translation files updated.
|
357 |
|
358 |
+
= 4.16 - Apr 20, 2018 =
|
359 |
* Some texts updated, and typos corrected.
|
360 |
* All translation files updated.
|
361 |
* The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
|
362 |
* The "humans.txt" file updated.
|
363 |
|
364 |
+
= 4.15 - Jan 22, 2018 =
|
365 |
* Texts updated.
|
366 |
* The year in the copyright text is updated.
|
367 |
* The sidebar items are rearranged.
|
368 |
* Translation files updated.
|
369 |
|
370 |
+
= 4.14 - Nov 13, 2017 =
|
371 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
372 |
* CSS code improved.
|
373 |
|
374 |
+
= 4.13 - Oct 28, 2017 =
|
375 |
* German translation added. (Thanks to Michael)
|
376 |
* Spanish translation updated. (Thanks to Patricio Toledo)
|
377 |
* Fixed an issue where the "Hello" message could not be hidden.
|
378 |
|
379 |
+
= 4.12 - Sep 23, 2017 =
|
380 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
381 |
|
382 |
+
= 4.11 - Sep 19, 2017 =
|
383 |
* Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
|
384 |
* Added branded footer text on the plugin's settings page.
|
385 |
* Text of copyright in the output code is updated.
|
386 |
|
387 |
+
= 4.10 - Sep 17, 2017 =
|
388 |
* Error in the PHP constant name fixed.
|
389 |
|
390 |
+
= 4.9 - Sep 15, 2017 =
|
391 |
* Added the top level menu item of the brand.
|
392 |
* The submenu item of the plugin has moved to the menu item of the brand.
|
393 |
* The menu item of the plugin is renamed.
|
397 |
* The "Support" tab renamed to the "Support Me".
|
398 |
* The "Usage" tab renamed to the "Usage Instructions".
|
399 |
|
400 |
+
= 4.8 - Sep 8, 2017 =
|
401 |
* Plugin data that saved in the database upgraded to version 0001.
|
402 |
|
403 |
+
= 4.7 - Aug 31, 2017 =
|
404 |
* Added Spanish translation. (Thanks Patricio Toledo)
|
405 |
* The group name of the '_service_info' option renamed to '_settings_group_si'.
|
406 |
* The 'admin.css' file improved.
|
408 |
* Prefixes of the PHP functions changed to ''spacexchimp_p006_.
|
409 |
* Prefixes of the PHP constants changed to ''SPACEXCHIMP_P006_.
|
410 |
|
411 |
+
= 4.6 - Aug 10, 2017 =
|
412 |
* Russian translation updated. (Thanks to Milena Kiseleva)
|
413 |
* The navigation of the tabs is rearranged.
|
414 |
* Fixed an issue due to which the sidebar was not hiding on mobile devices.
|
418 |
* Banner moved from external source to plugin folder.
|
419 |
* Code of PayPal button updated.
|
420 |
|
421 |
+
= 4.5 - Aug 8, 2017 =
|
422 |
* Stylesheet in the admin.css file improved.
|
423 |
* The '!important' declarations in the admin.css file removed.
|
424 |
* Code formatting in the admin.js file improved.
|
428 |
* The 'Family' page tab renamed to 'Store'.
|
429 |
* Added ad banner of my store website.
|
430 |
|
431 |
+
= 4.4.1 - Jun 21, 2017 =
|
432 |
* The HTTPS mixed content issue fixed by changing all links to HTTPS.
|
433 |
* Content of the "FAQ" section updated.
|
434 |
|
435 |
+
= 4.4 - Jun 16, 2017 =
|
436 |
* On the plugin settings page, text of buttons are corrected.
|
437 |
* On the plugin settings page, the information about the plugin version number moved to header section.
|
438 |
* Some mention of constants replaced with variables for easier access.
|
440 |
* Content of the "FAQ" tab updated.
|
441 |
* Added load of the jQuery library on the plugin settings page.
|
442 |
|
443 |
+
= 4.3 - Jun 4, 2017 =
|
444 |
* To the plugin settings page added information about the plugin version number.
|
445 |
* The "Tested up to:" comment changed to 4.8 after full testing process.
|
446 |
* The "version.php" file renamed to "versioning.php".
|
447 |
* The "versioning.php" file updated to new version.
|
448 |
* The "_plugin_version_number" function renamed to the "_versioning".
|
449 |
|
450 |
+
= 4.2 - May 26, 2017 =
|
451 |
* Compatibility with PHP version 5.2 improved.
|
452 |
* PHP shorthands improved.
|
453 |
* Added function for generating the plugin constants.
|
455 |
* The "_plugin_version_number" function improved.
|
456 |
* Added file "upgrade.php" for future upgrades.
|
457 |
|
458 |
+
= 4.1.1 =
|
459 |
* Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
|
460 |
|
461 |
+
= 4.1 - May 24, 2017 =
|
462 |
* Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
|
463 |
* Value of the "_VERSION" constant replaced with information from the plugin header data.
|
464 |
* All references to the plugin name, slug, prefix are replaced with constants.
|
466 |
* Code formatting improved.
|
467 |
* F.A.Q. section updated.
|
468 |
|
469 |
+
= 4.0.1 - May 12, 2017 =
|
470 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
471 |
|
472 |
+
= 4.0 - May 8, 2017 =
|
473 |
* The design of the plugin settings page is completely redone.
|
474 |
* Added additional donate link to the "Plugins" page.
|
475 |
* Readme for translations updated.
|
504 |
* The POT file updated.
|
505 |
* Translations updated.
|
506 |
|
507 |
+
= 3.3 - Nov 1, 2016 =
|
508 |
* Added the Readme.txt file for translation contribution.
|
509 |
* Added global constant for plugin text-domain.
|
510 |
* Translations updated.
|
511 |
* Ad banner replaced with new.
|
512 |
|
513 |
+
= 3.2 - Sep 3, 2016 =
|
514 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
515 |
* Added constant for storing the plugin version number.
|
516 |
|
517 |
+
= 3.1 - Aug 30, 2016 =
|
518 |
* Style sheet of settings page improved and better commented.
|
519 |
* The "main.js" file renamed to "admin.js".
|
520 |
* JS code improved.
|
521 |
|
522 |
+
= 3.0.2 - Aug 28, 2016 =
|
523 |
* Added improved section with using explanation to plugin settings page.
|
524 |
* admin.css improved.
|
525 |
|
526 |
+
= 3.0.1 - Aug 23, 2016 =
|
527 |
* POT file updated.
|
528 |
* Russian translation updated.
|
529 |
* Polish translation updated.
|
531 |
* Advertisement replaced by new.
|
532 |
* Added the subject with plugin name to email address on settings page.
|
533 |
|
534 |
+
= 3.0 - Jul 30, 2016 =
|
535 |
* Plugin renamed to "Head and Footer Scripts Inserter".
|
536 |
* Styles of settings page optimized for mobile devices.
|
537 |
* Added the syntax highlighting (by CodeMirror).
|
548 |
* The main.js moved to "js" catalog.
|
549 |
* The page.php file moved to "php" catalog.
|
550 |
|
551 |
+
= 2.0 - Apr 9, 2016 =
|
552 |
* Fixed: "Use of undefined constant header_beginning - assumed 'header_beginning' in page.php".
|
553 |
* Fixed: "Use of undefined constant header_end - assumed 'header_end' in page.php".
|
554 |
* Fixed: "Use of undefined constant footer_beginning - assumed 'footer_beginning' in page.php".
|
563 |
* Added my personal ad about freelance.
|
564 |
* .pot file updated.
|
565 |
|
566 |
+
= 1.2 - Mar 6, 2016 =
|
567 |
* Added Polish translation. (Thanks Paweł K.)
|
568 |
* Localization improved. (Thanks Paweł K.)
|
569 |
* POT file updated. (Thanks Paweł K.)
|
570 |
|
571 |
+
= 1.1 - Mar 6, 2016 =
|
572 |
* Added Russian translation.
|
573 |
* Localization improved.
|
574 |
|
575 |
+
= 1.0 - Mar 6, 2016 =
|
576 |
* Initial release.
|
577 |
* Added ready for translation (.pot file included).
|
578 |
|
579 |
+
= 0.3 =
|
580 |
* Release candidate.
|
581 |
|
582 |
= 0.2 =
|