Version Description
- Mar 8, 2021 =
- Maintenance: Ensure compatibility with upcoming WordPress 5.7.
- Maintenance: Processing of options has been improved. Direct retrieving of options from the database is replaced by the "options" callback. The "options.php" file with the "options" function added.
- Maintenance: The contents of PHP files have been optimised; Code formatting and commenting improved.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Head and Footer Scripts Inserter |
Version | 4.51 |
Comparing to | |
See all releases |
Code changes from version 4.50 to 4.51
- header-and-footer-scripts-inserter.php +3 -2
- inc/php/enqueue.php +0 -1
- inc/php/functional.php +6 -6
- inc/php/inline-js.php +4 -11
- inc/php/messages.php +2 -2
- inc/php/options.php +43 -0
- inc/php/tabs/settings.php +6 -12
- languages/header-and-footer-scripts-inserter-de_DE.mo +0 -0
- languages/header-and-footer-scripts-inserter-de_DE.po +20 -20
- languages/header-and-footer-scripts-inserter-es_ES.mo +0 -0
- languages/header-and-footer-scripts-inserter-es_ES.po +20 -20
- languages/header-and-footer-scripts-inserter-fr_FR.mo +0 -0
- languages/header-and-footer-scripts-inserter-fr_FR.po +20 -20
- languages/header-and-footer-scripts-inserter-nl_NL.mo +0 -0
- languages/header-and-footer-scripts-inserter-nl_NL.po +20 -20
- languages/header-and-footer-scripts-inserter-pl_PL.mo +0 -0
- languages/header-and-footer-scripts-inserter-pl_PL.po +20 -20
- languages/header-and-footer-scripts-inserter-ru_RU.mo +0 -0
- languages/header-and-footer-scripts-inserter-ru_RU.po +20 -20
- languages/header-and-footer-scripts-inserter.pot +19 -19
- readme.txt +10 -4
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/
|
@@ -68,7 +68,7 @@ spacexchimp_p006_define_constants( 'PREFIX', 'spacexchimp_p006' );
|
|
68 |
spacexchimp_p006_define_constants( 'SETTINGS', 'spacexchimp_p006' );
|
69 |
|
70 |
/**
|
71 |
-
* A useful function that returns an array with the contents of plugin constants
|
72 |
*/
|
73 |
function spacexchimp_p006_plugin() {
|
74 |
$array = array(
|
@@ -96,6 +96,7 @@ $plugin = spacexchimp_p006_plugin();
|
|
96 |
* Load the plugin modules
|
97 |
*/
|
98 |
require_once( $plugin['path'] . 'inc/php/core.php' );
|
|
|
99 |
require_once( $plugin['path'] . 'inc/php/upgrade.php' );
|
100 |
require_once( $plugin['path'] . 'inc/php/versioning.php' );
|
101 |
require_once( $plugin['path'] . 'inc/php/enqueue.php' );
|
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.51
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
68 |
spacexchimp_p006_define_constants( 'SETTINGS', 'spacexchimp_p006' );
|
69 |
|
70 |
/**
|
71 |
+
* A useful function that returns an array with the contents of the plugin constants
|
72 |
*/
|
73 |
function spacexchimp_p006_plugin() {
|
74 |
$array = array(
|
96 |
* Load the plugin modules
|
97 |
*/
|
98 |
require_once( $plugin['path'] . 'inc/php/core.php' );
|
99 |
+
require_once( $plugin['path'] . 'inc/php/options.php' );
|
100 |
require_once( $plugin['path'] . 'inc/php/upgrade.php' );
|
101 |
require_once( $plugin['path'] . 'inc/php/versioning.php' );
|
102 |
require_once( $plugin['path'] . 'inc/php/enqueue.php' );
|
inc/php/enqueue.php
CHANGED
@@ -77,6 +77,5 @@ function spacexchimp_p006_load_scripts_admin( $hook ) {
|
|
77 |
|
78 |
// Call the function that enqueue the CodeMirror library
|
79 |
spacexchimp_p006_load_scripts_codemirror();
|
80 |
-
|
81 |
}
|
82 |
add_action( 'admin_enqueue_scripts', $plugin['prefix'] . '_load_scripts_admin' );
|
77 |
|
78 |
// Call the function that enqueue the CodeMirror library
|
79 |
spacexchimp_p006_load_scripts_codemirror();
|
|
|
80 |
}
|
81 |
add_action( 'admin_enqueue_scripts', $plugin['prefix'] . '_load_scripts_admin' );
|
inc/php/functional.php
CHANGED
@@ -7,6 +7,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
7 |
|
8 |
/**
|
9 |
* Prepare the custom code
|
|
|
10 |
*/
|
11 |
function spacexchimp_p006_prepare( $option ) {
|
12 |
|
@@ -18,17 +19,16 @@ function spacexchimp_p006_prepare( $option ) {
|
|
18 |
// Put value of plugin constants into an array for easier access
|
19 |
$plugin = spacexchimp_p006_plugin();
|
20 |
|
21 |
-
//
|
22 |
-
$options =
|
23 |
-
$data = !empty( $options[$option] ) ? $options[$option] : '';
|
24 |
|
25 |
// Prepare a variable for storing the processed data
|
26 |
$data_out = "";
|
27 |
|
28 |
// If data is not empty...
|
29 |
-
if ( ! empty( $
|
30 |
|
31 |
-
$data_out .= $
|
32 |
|
33 |
}
|
34 |
|
@@ -45,7 +45,7 @@ function spacexchimp_p006_exec_footer_0() { spacexchimp_p006_prepare('footer_beg
|
|
45 |
function spacexchimp_p006_exec_footer_1() { spacexchimp_p006_prepare('footer_end'); }
|
46 |
|
47 |
/**
|
48 |
-
* Inject the custom code into the website's frontend
|
49 |
*/
|
50 |
add_action( 'wp_head', 'spacexchimp_p006_exec_head_0', 0 );
|
51 |
add_action( 'wp_head', 'spacexchimp_p006_exec_head_1', 1000 );
|
7 |
|
8 |
/**
|
9 |
* Prepare the custom code
|
10 |
+
* @return string by using "echo"
|
11 |
*/
|
12 |
function spacexchimp_p006_prepare( $option ) {
|
13 |
|
19 |
// Put value of plugin constants into an array for easier access
|
20 |
$plugin = spacexchimp_p006_plugin();
|
21 |
|
22 |
+
// Put the value of the plugin options into an array for easier access
|
23 |
+
$options = spacexchimp_p006_options();
|
|
|
24 |
|
25 |
// Prepare a variable for storing the processed data
|
26 |
$data_out = "";
|
27 |
|
28 |
// If data is not empty...
|
29 |
+
if ( ! empty( $options[$option] ) ) {
|
30 |
|
31 |
+
$data_out .= $options[$option];
|
32 |
|
33 |
}
|
34 |
|
45 |
function spacexchimp_p006_exec_footer_1() { spacexchimp_p006_prepare('footer_end'); }
|
46 |
|
47 |
/**
|
48 |
+
* Inject the custom code into the website's frontend (head and footer sections)
|
49 |
*/
|
50 |
add_action( 'wp_head', 'spacexchimp_p006_exec_head_0', 0 );
|
51 |
add_action( 'wp_head', 'spacexchimp_p006_exec_head_1', 1000 );
|
inc/php/inline-js.php
CHANGED
@@ -5,22 +5,15 @@
|
|
5 |
*/
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
-
//
|
9 |
-
$options =
|
10 |
-
|
11 |
-
// Make the "$options" array if the plugin options data in the database is not exist
|
12 |
-
if ( ! is_array( $options ) ) {
|
13 |
-
$options = array();
|
14 |
-
}
|
15 |
-
|
16 |
-
$hidden_scrollto = !empty( $options['hidden_scrollto'] ) ? $options['hidden_scrollto'] : '0';
|
17 |
|
18 |
?>
|
19 |
<script type="text/javascript">
|
20 |
jQuery(document).ready(function($) {
|
21 |
|
22 |
// Scroll to previouse position
|
23 |
-
var hidden_scrollto = <?php echo $hidden_scrollto; ?>;
|
24 |
$(document).scrollTop(hidden_scrollto);
|
25 |
|
26 |
// Update the value of the scroll position option
|
@@ -32,7 +25,7 @@ $hidden_scrollto = !empty( $options['hidden_scrollto'] ) ? $options['hidden_scro
|
|
32 |
<?php
|
33 |
|
34 |
// Update the plugin options data in the database
|
35 |
-
if ( $hidden_scrollto != '0' ) {
|
36 |
$options['hidden_scrollto'] = '0';
|
37 |
update_option( $plugin['settings'] . '_settings', $options );
|
38 |
}
|
5 |
*/
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
+
// Put the value of the plugin options into an array for easier access
|
9 |
+
$options = spacexchimp_p006_options();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
?>
|
12 |
<script type="text/javascript">
|
13 |
jQuery(document).ready(function($) {
|
14 |
|
15 |
// Scroll to previouse position
|
16 |
+
var hidden_scrollto = <?php echo $options['hidden_scrollto']; ?>;
|
17 |
$(document).scrollTop(hidden_scrollto);
|
18 |
|
19 |
// Update the value of the scroll position option
|
25 |
<?php
|
26 |
|
27 |
// Update the plugin options data in the database
|
28 |
+
if ( $options['hidden_scrollto'] != '0' ) {
|
29 |
$options['hidden_scrollto'] = '0';
|
30 |
update_option( $plugin['settings'] . '_settings', $options );
|
31 |
}
|
inc/php/messages.php
CHANGED
@@ -13,8 +13,8 @@ function spacexchimp_p006_message_hello() {
|
|
13 |
// Put value of plugin constants into an array for easier access
|
14 |
$plugin = spacexchimp_p006_plugin();
|
15 |
|
16 |
-
//
|
17 |
-
$options =
|
18 |
|
19 |
// Exit if options are already set in database
|
20 |
if ( ! empty( $options ) ) {
|
13 |
// Put value of plugin constants into an array for easier access
|
14 |
$plugin = spacexchimp_p006_plugin();
|
15 |
|
16 |
+
// Put the value of the plugin options into an array for easier access
|
17 |
+
$options = spacexchimp_p006_options();
|
18 |
|
19 |
// Exit if options are already set in database
|
20 |
if ( ! empty( $options ) ) {
|
inc/php/options.php
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Callback function that returns an array with the value of the plugin options
|
5 |
+
* @return array
|
6 |
+
*/
|
7 |
+
function spacexchimp_p006_options() {
|
8 |
+
|
9 |
+
// Put value of plugin constants into an array for easier access
|
10 |
+
$plugin = spacexchimp_p006_plugin();
|
11 |
+
|
12 |
+
// Retrieve options from database
|
13 |
+
$options = get_option( $plugin['settings'] . '_settings' );
|
14 |
+
|
15 |
+
// Make the "$options" array if the plugin options data in the database is not exist
|
16 |
+
if ( ! is_array( $options ) ) {
|
17 |
+
$options = array();
|
18 |
+
}
|
19 |
+
|
20 |
+
// Create an array with options
|
21 |
+
$array = $options;
|
22 |
+
|
23 |
+
// Set default value if option is empty
|
24 |
+
$list = array(
|
25 |
+
'footer_beginning' => '',
|
26 |
+
'footer_end' => '',
|
27 |
+
'header_beginning' => '',
|
28 |
+
'header_end' => '',
|
29 |
+
'hidden_scrollto' => '0',
|
30 |
+
);
|
31 |
+
foreach ( $list as $name => $default ) {
|
32 |
+
$array[$name] = !empty( $options[$name] ) ? $options[$name] : $default;
|
33 |
+
}
|
34 |
+
|
35 |
+
// Sanitize data
|
36 |
+
|
37 |
+
|
38 |
+
// Modify data
|
39 |
+
|
40 |
+
|
41 |
+
// Return the processed data
|
42 |
+
return $array;
|
43 |
+
}
|
inc/php/tabs/settings.php
CHANGED
@@ -17,14 +17,8 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
-
//
|
21 |
-
$options =
|
22 |
-
|
23 |
-
// Set default value if option is empty
|
24 |
-
$header_beginning = !empty( $options['header_beginning'] ) ? esc_attr( $options['header_beginning'] ) : '';
|
25 |
-
$header_end = !empty( $options['header_end'] ) ? esc_attr( $options['header_end'] ) : '';
|
26 |
-
$footer_beginning = !empty( $options['footer_beginning'] ) ? esc_attr( $options['footer_beginning'] ) : '';
|
27 |
-
$footer_end = !empty( $options['footer_end'] ) ? esc_attr( $options['footer_end'] ) : '';
|
28 |
?>
|
29 |
|
30 |
<div class="postbox" id="head">
|
@@ -45,7 +39,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
45 |
name="spacexchimp_p006_settings[header_beginning]"
|
46 |
id="spacexchimp_p006_settings[header_beginning]"
|
47 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
48 |
-
><?php echo $header_beginning; ?></textarea>
|
49 |
|
50 |
<p class='help-text'>
|
51 |
<?php _e( 'The HTML code from this field will be printed at the end of the HEAD section.', $plugin['text'] ); ?>
|
@@ -55,7 +49,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
55 |
name="spacexchimp_p006_settings[header_end]"
|
56 |
id="spacexchimp_p006_settings[header_end]"
|
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'] ); ?>">
|
@@ -82,7 +76,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
82 |
name="spacexchimp_p006_settings[footer_beginning]"
|
83 |
id="spacexchimp_p006_settings[footer_beginning]"
|
84 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
85 |
-
><?php echo $footer_beginning; ?></textarea>
|
86 |
|
87 |
<p class='help-text'>
|
88 |
<?php _e( 'The HTML code from this field will be printed at the end of the FOOTER section.', $plugin['text'] ); ?>
|
@@ -92,7 +86,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
92 |
name="spacexchimp_p006_settings[footer_end]"
|
93 |
id="spacexchimp_p006_settings[footer_end]"
|
94 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
95 |
-
><?php echo $footer_end; ?></textarea>
|
96 |
|
97 |
<!-- HIDDEN -->
|
98 |
<?php
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
+
// Put the value of the plugin options into an array for easier access
|
21 |
+
$options = spacexchimp_p006_options();
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
?>
|
23 |
|
24 |
<div class="postbox" id="head">
|
39 |
name="spacexchimp_p006_settings[header_beginning]"
|
40 |
id="spacexchimp_p006_settings[header_beginning]"
|
41 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
42 |
+
><?php echo esc_attr( $options['header_beginning'] ); ?></textarea>
|
43 |
|
44 |
<p class='help-text'>
|
45 |
<?php _e( 'The HTML code from this field will be printed at the end of the HEAD section.', $plugin['text'] ); ?>
|
49 |
name="spacexchimp_p006_settings[header_end]"
|
50 |
id="spacexchimp_p006_settings[header_end]"
|
51 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
52 |
+
><?php echo esc_attr( $options['header_end'] ); ?></textarea>
|
53 |
|
54 |
<!-- SUBMIT -->
|
55 |
<input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
76 |
name="spacexchimp_p006_settings[footer_beginning]"
|
77 |
id="spacexchimp_p006_settings[footer_beginning]"
|
78 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
79 |
+
><?php echo esc_attr( $options['footer_beginning'] ); ?></textarea>
|
80 |
|
81 |
<p class='help-text'>
|
82 |
<?php _e( 'The HTML code from this field will be printed at the end of the FOOTER section.', $plugin['text'] ); ?>
|
86 |
name="spacexchimp_p006_settings[footer_end]"
|
87 |
id="spacexchimp_p006_settings[footer_end]"
|
88 |
placeholder="<?php _e( 'Enter your custom HTML code here', $plugin['text'] ); ?>"
|
89 |
+
><?php echo esc_attr( $options['footer_end'] ); ?></textarea>
|
90 |
|
91 |
<!-- HIDDEN -->
|
92 |
<?php
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
@@ -110,16 +110,16 @@ msgstr "Hilfe"
|
|
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:
|
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:
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Spende mit PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Danke für Ihre Unterstützung!"
|
125 |
|
@@ -535,53 +535,53 @@ msgstr ""
|
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
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:110
|
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:115
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Spende mit PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Danke für Ihre Unterstützung!"
|
125 |
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:26
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:32
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:35
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
555 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
560 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
569 |
msgid "Save changes"
|
570 |
msgstr "Änderungen speichern"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:63
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
@@ -110,16 +110,16 @@ msgstr "Ayuda"
|
|
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:
|
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:
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Donar con PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "¡Gracias por tu apoyo!"
|
125 |
|
@@ -535,53 +535,53 @@ msgstr "Puede hacer su pregunta en %s esta página %s."
|
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
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:110
|
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:115
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Donar con PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "¡Gracias por tu apoyo!"
|
125 |
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:26
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:32
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:35
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
555 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
560 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
569 |
msgid "Save changes"
|
570 |
msgstr "Guardar cambios"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:63
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Soutien"
|
88 |
|
@@ -110,16 +110,16 @@ msgstr "Aide"
|
|
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:
|
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:
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Faire un don avec PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Merci pour votre soutien!"
|
125 |
|
@@ -535,53 +535,53 @@ msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr "N'EST PAS SAUVÉ!"
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Entrez votre extrait de code HTML ici"
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
86 |
msgid "Support"
|
87 |
msgstr "Soutien"
|
88 |
|
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:110
|
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:115
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Faire un don avec PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Merci pour votre soutien!"
|
125 |
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:26
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr "N'EST PAS SAUVÉ!"
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:32
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:35
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
555 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
560 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Entrez votre extrait de code HTML ici"
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
569 |
msgid "Save changes"
|
570 |
msgstr "Enregistrer les modifications"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:63
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
@@ -110,16 +110,16 @@ msgstr "Helpen"
|
|
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:
|
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:
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Doneer via PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Bedankt voor uw steun!"
|
125 |
|
@@ -535,53 +535,53 @@ msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
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:110
|
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:115
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Doneer via PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Bedankt voor uw steun!"
|
125 |
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:26
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:32
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:35
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
555 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
560 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
569 |
msgid "Save changes"
|
570 |
msgstr "Wijzigingen opslaan"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:63
|
573 |
msgid "Footer Section"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
@@ -111,16 +111,16 @@ msgstr "Pomoc"
|
|
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:
|
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:
|
119 |
#: inc/php/tabs/support.php:25
|
120 |
msgid "Donate with PayPal"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
124 |
msgid "Thanks for your support!"
|
125 |
msgstr "Dziękujemy za wsparcie!"
|
126 |
|
@@ -536,53 +536,53 @@ msgstr ""
|
|
536 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/php/tabs/settings.php:
|
540 |
msgid "Head Section"
|
541 |
msgstr "Sekcja: Nagłówek"
|
542 |
|
543 |
-
#: inc/php/tabs/settings.php:
|
544 |
msgid "NOT SAVED!"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: inc/php/tabs/settings.php:
|
548 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
549 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do nagłówka witryny."
|
550 |
|
551 |
-
#: inc/php/tabs/settings.php:
|
552 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
553 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD."
|
554 |
|
555 |
-
#: inc/php/tabs/settings.php:
|
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:
|
561 |
-
#: inc/php/tabs/settings.php:
|
562 |
msgid "Enter your custom HTML code here"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
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:110
|
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:115
|
119 |
#: inc/php/tabs/support.php:25
|
120 |
msgid "Donate with PayPal"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
124 |
msgid "Thanks for your support!"
|
125 |
msgstr "Dziękujemy za wsparcie!"
|
126 |
|
536 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: inc/php/tabs/settings.php:26
|
540 |
msgid "Head Section"
|
541 |
msgstr "Sekcja: Nagłówek"
|
542 |
|
543 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
544 |
msgid "NOT SAVED!"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/tabs/settings.php:32
|
548 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
549 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do nagłówka witryny."
|
550 |
|
551 |
+
#: inc/php/tabs/settings.php:35
|
552 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
553 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD."
|
554 |
|
555 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
556 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
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:41 inc/php/tabs/settings.php:51
|
561 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
562 |
msgid "Enter your custom HTML code here"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
570 |
msgid "Save changes"
|
571 |
msgstr "Zapisz"
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:63
|
574 |
msgid "Footer Section"
|
575 |
msgstr "Sekcja: Stopka"
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
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:56 inc/php/tabs/settings.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
@@ -110,16 +110,16 @@ msgstr "Помощь"
|
|
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:
|
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:
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Пожертвовать через PayPal"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Спасибо за вашу поддержку!"
|
125 |
|
@@ -535,53 +535,53 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
|
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Head Section"
|
540 |
msgstr "Верхний колонтитул (HEAD)"
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в верхний колонтитул вашего веб-сайта."
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD)."
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
-
#: inc/php/tabs/settings.php:
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr "Не помещайте сюда обычный текст!"
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:10+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:108
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
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:110
|
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:115
|
118 |
#: inc/php/tabs/support.php:25
|
119 |
msgid "Donate with PayPal"
|
120 |
msgstr "Пожертвовать через PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
123 |
msgid "Thanks for your support!"
|
124 |
msgstr "Спасибо за вашу поддержку!"
|
125 |
|
535 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
536 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:26
|
539 |
msgid "Head Section"
|
540 |
msgstr "Верхний колонтитул (HEAD)"
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:32
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в верхний колонтитул вашего веб-сайта."
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:35
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
552 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD)."
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
555 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
556 |
msgid "Do not place plain text in this!"
|
557 |
msgstr "Не помещайте сюда обычный текст!"
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
560 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
561 |
msgid "Enter your custom HTML code here"
|
562 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
569 |
msgid "Save changes"
|
570 |
msgstr "Сохранить изменения"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:63
|
573 |
msgid "Footer Section"
|
574 |
msgstr "Нижний колонтитул (FOOTER)"
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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: 2021-
|
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:56 inc/php/tabs/settings.php:
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
@@ -108,16 +108,16 @@ msgstr ""
|
|
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:
|
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:
|
116 |
#: inc/php/tabs/support.php:25
|
117 |
msgid "Donate with PayPal"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
121 |
msgid "Thanks for your support!"
|
122 |
msgstr ""
|
123 |
|
@@ -533,53 +533,53 @@ msgstr ""
|
|
533 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc/php/tabs/settings.php:
|
537 |
msgid "Head Section"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc/php/tabs/settings.php:
|
541 |
msgid "NOT SAVED!"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: inc/php/tabs/settings.php:
|
545 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: inc/php/tabs/settings.php:
|
549 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: inc/php/tabs/settings.php:
|
553 |
-
#: inc/php/tabs/settings.php:
|
554 |
msgid "Do not place plain text in this!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc/php/tabs/settings.php:
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Enter your custom HTML code here"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/php/tabs/settings.php:
|
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: 2021-03-09 01:10+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:108
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
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:110
|
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:115
|
116 |
#: inc/php/tabs/support.php:25
|
117 |
msgid "Donate with PayPal"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:117
|
121 |
msgid "Thanks for your support!"
|
122 |
msgstr ""
|
123 |
|
533 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/tabs/settings.php:26
|
537 |
msgid "Head Section"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/settings.php:28 inc/php/tabs/settings.php:65
|
541 |
msgid "NOT SAVED!"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/tabs/settings.php:32
|
545 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/tabs/settings.php:35
|
549 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:46
|
553 |
+
#: inc/php/tabs/settings.php:73 inc/php/tabs/settings.php:83
|
554 |
msgid "Do not place plain text in this!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/php/tabs/settings.php:41 inc/php/tabs/settings.php:51
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:88
|
559 |
msgid "Enter your custom HTML code here"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: inc/php/tabs/settings.php:45
|
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:55 inc/php/tabs/settings.php:100
|
567 |
msgid "Save changes"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:63
|
571 |
msgid "Footer Section"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:69
|
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:72
|
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:82
|
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,9 +3,9 @@ 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: 4.9
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.
|
9 |
License: GPL3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -208,8 +208,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
208 |
|
209 |
**Credits**
|
210 |
|
211 |
-
* The icon of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
212 |
-
* The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
|
|
213 |
* [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
|
214 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
215 |
* [Font Awesome](https://fontawesome.com) is an open source-project created by Dave Gandy. Font released under the [SIL OFL 1.1 license](http://scripts.sil.org/OFL). Code released under the [MIT License](http://opensource.org/licenses/mit-license.html).
|
@@ -224,6 +225,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
|
|
|
|
227 |
= 4.50 - Jan 1, 2021 =
|
228 |
* Maintenance: The copyright date updated to support the 2021 year.
|
229 |
|
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: 4.9
|
6 |
+
Tested up to: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.51
|
9 |
License: GPL3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
208 |
|
209 |
**Credits**
|
210 |
|
211 |
+
* The icon of this plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
212 |
+
* The banner of this plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
213 |
+
* Unless otherwise stated, all images are created by the [Space X-Chimp](https://www.spacexchimp.com) team and are copyrighted. (C) All rights reserved.
|
214 |
* [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
|
215 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
216 |
* [Font Awesome](https://fontawesome.com) is an open source-project created by Dave Gandy. Font released under the [SIL OFL 1.1 license](http://scripts.sil.org/OFL). Code released under the [MIT License](http://opensource.org/licenses/mit-license.html).
|
225 |
|
226 |
== Changelog ==
|
227 |
|
228 |
+
= 4.51 - Mar 8, 2021 =
|
229 |
+
* Maintenance: Ensure compatibility with upcoming WordPress 5.7.
|
230 |
+
* Maintenance: Processing of options has been improved. Direct retrieving of options from the database is replaced by the "_options" callback. The "options.php" file with the "_options" function added.
|
231 |
+
* Maintenance: The contents of PHP files have been optimised; Code formatting and commenting improved.
|
232 |
+
|
233 |
= 4.50 - Jan 1, 2021 =
|
234 |
* Maintenance: The copyright date updated to support the 2021 year.
|
235 |
|