Version Description
- Fixed: "Use of undefined constant header_beginning - assumed 'header_beginning' in settings_page.php".
- Fixed: "Use of undefined constant header_end - assumed 'header_end' in settings_page.php".
- Fixed: "Use of undefined constant footer_beginning - assumed 'footer_beginning' in settings_page.php".
- Fixed: "Use of undefined constant footer_end - assumed 'footer_end' in settings_page.php".
- Some changes in design of settings page.
- Constants variables added.
- Text domain changed to "header-and-footer-scripts-inserter".
- Added compatibility with the translate.wordpress.org.
- All images are moved to the directory "images".
- Image "btn_donateCC_LG.gif" is now located in the "images" directory.
- Plugin URI changed to GitHub repository.
- Added my personal ad about freelance.
- .pot file updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Head and Footer Scripts Inserter |
Version | 2.0 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 2.0
- header-and-footer-scripts-inserter.php +28 -18
- inc/images/author.png +0 -0
- inc/images/btn_donateCC_LG.gif +0 -0
- inc/images/thanks.png +0 -0
- inc/settings_page.php +52 -44
- inc/style.css +16 -4
- inc/thanks.png +0 -0
- languages/HFScriptsIns-pl_PL.mo +0 -0
- languages/HFScriptsIns-ru_RU.mo +0 -0
- languages/header-and-footer-scripts-inserter-pl_PL.mo +0 -0
- languages/{HFScriptsIns-pl_PL.po → header-and-footer-scripts-inserter-pl_PL.po} +200 -175
- languages/header-and-footer-scripts-inserter-ru_RU.mo +0 -0
- languages/{HFScriptsIns-ru_RU.po → header-and-footer-scripts-inserter-ru_RU.po} +90 -28
- languages/{HFScriptsIns.pot → header-and-footer-scripts-inserter.pot} +52 -44
- readme.txt +36 -38
header-and-footer-scripts-inserter.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Header and Footer Scripts Inserter
|
4 |
-
* Plugin URI:
|
5 |
* Description: Easily add your scripts to the WordPress website's head or/and footer section. This is a must have tool for authors and website's owners.
|
6 |
-
* Author: Arthur
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version:
|
9 |
* License: GPL3
|
10 |
-
* Text Domain:
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
-
* Copyright 2016
|
14 |
*
|
15 |
* This file is part of "Header and Footer Scripts Inserter".
|
16 |
*
|
@@ -31,16 +31,28 @@
|
|
31 |
|
32 |
/**
|
33 |
* Prevent Direct Access
|
|
|
|
|
34 |
*/
|
35 |
defined('ABSPATH') or die("Restricted access!");
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
/**
|
38 |
* Register text domain
|
39 |
*
|
40 |
-
* @since 0
|
41 |
*/
|
42 |
function HFScriptsIns_textdomain() {
|
43 |
-
load_plugin_textdomain( '
|
44 |
}
|
45 |
add_action( 'init', 'HFScriptsIns_textdomain' );
|
46 |
|
@@ -50,39 +62,38 @@ add_action( 'init', 'HFScriptsIns_textdomain' );
|
|
50 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
51 |
* and inserts a link to the Header and Footer Scripts Inserter admin page
|
52 |
*
|
53 |
-
* @since 0
|
54 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
55 |
* @return array Array of links to be output on Plugin Admin page.
|
56 |
*/
|
57 |
function HFScriptsIns_settings_link( $links ) {
|
58 |
-
$settings_page = '<a href="' . admin_url( 'options-general.php?page=header-and-footer-scripts-inserter.php' ) .'">' . __( 'Settings', '
|
59 |
array_unshift( $links, $settings_page );
|
60 |
return $links;
|
61 |
}
|
62 |
-
|
63 |
-
add_filter( "plugin_action_links_$plugin", 'HFScriptsIns_settings_link' );
|
64 |
|
65 |
/**
|
66 |
* Register "Header and Footer Scripts Inserter" submenu in "Settings" Admin Menu
|
67 |
*
|
68 |
-
* @since 0
|
69 |
*/
|
70 |
function HFScriptsIns_register_submenu_page() {
|
71 |
-
add_options_page( __( 'Header and Footer Scripts Inserter', '
|
72 |
}
|
73 |
add_action( 'admin_menu', 'HFScriptsIns_register_submenu_page' );
|
74 |
|
75 |
/**
|
76 |
* Attach Settings Page
|
77 |
*
|
78 |
-
* @since 0
|
79 |
*/
|
80 |
-
require_once(
|
81 |
|
82 |
/**
|
83 |
* Enqueue style sheet for setting's page
|
84 |
*
|
85 |
-
* @since 0
|
86 |
*/
|
87 |
function HFScriptsIns_enqueue_scripts($hook) {
|
88 |
|
@@ -91,7 +102,7 @@ function HFScriptsIns_enqueue_scripts($hook) {
|
|
91 |
return;
|
92 |
}
|
93 |
|
94 |
-
wp_enqueue_style('styles',
|
95 |
}
|
96 |
add_action('admin_enqueue_scripts', 'HFScriptsIns_enqueue_scripts');
|
97 |
|
@@ -166,5 +177,4 @@ function HFScriptsIns_uninstall() {
|
|
166 |
}
|
167 |
register_uninstall_hook( __FILE__, 'HFScriptsIns_uninstall' );
|
168 |
|
169 |
-
/* That's all folks! */
|
170 |
?>
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Header and Footer Scripts Inserter
|
4 |
+
* Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
|
5 |
* Description: Easily add your scripts to the WordPress website's head or/and footer section. This is a must have tool for authors and website's owners.
|
6 |
+
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
+
* Version: 2.0
|
9 |
* License: GPL3
|
10 |
+
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2016 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
|
14 |
*
|
15 |
* This file is part of "Header and Footer Scripts Inserter".
|
16 |
*
|
31 |
|
32 |
/**
|
33 |
* Prevent Direct Access
|
34 |
+
*
|
35 |
+
* @since 0.1
|
36 |
*/
|
37 |
defined('ABSPATH') or die("Restricted access!");
|
38 |
|
39 |
+
/**
|
40 |
+
* Plugin constants
|
41 |
+
*
|
42 |
+
* @since 2.0
|
43 |
+
*/
|
44 |
+
defined('HFSINS_DIR') or define('HFSINS_DIR', dirname(plugin_basename(__FILE__)));
|
45 |
+
defined('HFSINS_BASE') or define('HFSINS_BASE', plugin_basename(__FILE__));
|
46 |
+
defined('HFSINS_URL') or define('HFSINS_URL', plugin_dir_url(__FILE__));
|
47 |
+
defined('HFSINS_PATH') or define('HFSINS_PATH', plugin_dir_path(__FILE__));
|
48 |
+
|
49 |
/**
|
50 |
* Register text domain
|
51 |
*
|
52 |
+
* @since 2.0
|
53 |
*/
|
54 |
function HFScriptsIns_textdomain() {
|
55 |
+
load_plugin_textdomain( 'header-and-footer-scripts-inserter', false, HFSINS_DIR . '/languages/' );
|
56 |
}
|
57 |
add_action( 'init', 'HFScriptsIns_textdomain' );
|
58 |
|
62 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
63 |
* and inserts a link to the Header and Footer Scripts Inserter admin page
|
64 |
*
|
65 |
+
* @since 2.0
|
66 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
67 |
* @return array Array of links to be output on Plugin Admin page.
|
68 |
*/
|
69 |
function HFScriptsIns_settings_link( $links ) {
|
70 |
+
$settings_page = '<a href="' . admin_url( 'options-general.php?page=header-and-footer-scripts-inserter.php' ) .'">' . __( 'Settings', 'header-and-footer-scripts-inserter' ) . '</a>';
|
71 |
array_unshift( $links, $settings_page );
|
72 |
return $links;
|
73 |
}
|
74 |
+
add_filter( "plugin_action_links_".HFSINS_BASE, 'HFScriptsIns_settings_link' );
|
|
|
75 |
|
76 |
/**
|
77 |
* Register "Header and Footer Scripts Inserter" submenu in "Settings" Admin Menu
|
78 |
*
|
79 |
+
* @since 2.0
|
80 |
*/
|
81 |
function HFScriptsIns_register_submenu_page() {
|
82 |
+
add_options_page( __( 'Header and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ), __( 'Header and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ), 'manage_options', basename( __FILE__ ), 'HFScriptsIns_render_submenu_page' );
|
83 |
}
|
84 |
add_action( 'admin_menu', 'HFScriptsIns_register_submenu_page' );
|
85 |
|
86 |
/**
|
87 |
* Attach Settings Page
|
88 |
*
|
89 |
+
* @since 2.0
|
90 |
*/
|
91 |
+
require_once( HFSINS_PATH . 'inc/settings_page.php' );
|
92 |
|
93 |
/**
|
94 |
* Enqueue style sheet for setting's page
|
95 |
*
|
96 |
+
* @since 2.0
|
97 |
*/
|
98 |
function HFScriptsIns_enqueue_scripts($hook) {
|
99 |
|
102 |
return;
|
103 |
}
|
104 |
|
105 |
+
wp_enqueue_style('styles', HFSINS_URL . 'inc/style.css');
|
106 |
}
|
107 |
add_action('admin_enqueue_scripts', 'HFScriptsIns_enqueue_scripts');
|
108 |
|
177 |
}
|
178 |
register_uninstall_hook( __FILE__, 'HFScriptsIns_uninstall' );
|
179 |
|
|
|
180 |
?>
|
inc/images/author.png
ADDED
Binary file
|
inc/images/btn_donateCC_LG.gif
ADDED
Binary file
|
inc/images/thanks.png
ADDED
Binary file
|
inc/settings_page.php
CHANGED
@@ -2,13 +2,15 @@
|
|
2 |
|
3 |
/**
|
4 |
* Prevent Direct Access
|
|
|
|
|
5 |
*/
|
6 |
defined('ABSPATH') or die("Restricted access!");
|
7 |
|
8 |
/**
|
9 |
* Render Settings Page
|
10 |
*
|
11 |
-
* @since
|
12 |
*/
|
13 |
function HFScriptsIns_render_submenu_page() {
|
14 |
|
@@ -19,10 +21,10 @@ function HFScriptsIns_render_submenu_page() {
|
|
19 |
?>
|
20 |
<div class="wrap">
|
21 |
<h2>
|
22 |
-
<?php _e( 'Header and Footer Scripts Inserter', '
|
23 |
<br/>
|
24 |
<span>
|
25 |
-
<?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur "Berserkr" Gareginyan</a>', '
|
26 |
<span/>
|
27 |
</h2>
|
28 |
|
@@ -33,39 +35,46 @@ function HFScriptsIns_render_submenu_page() {
|
|
33 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
34 |
|
35 |
<div id="about" class="postbox">
|
36 |
-
<h3 class="title"><?php _e( 'About', '
|
37 |
<div class="inside">
|
38 |
-
<p
|
39 |
-
<img src="<?php echo plugins_url('thanks.png', __FILE__); ?>">
|
40 |
-
</p>
|
41 |
-
<p>
|
42 |
-
<?php _e( 'This plugin allows you to easily insert scripts in your website.', 'HFScriptsIns' ) ?>
|
43 |
-
</p>
|
44 |
-
<p>
|
45 |
-
<?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', 'HFScriptsIns' ) ?>
|
46 |
-
</p>
|
47 |
</div>
|
48 |
</div>
|
49 |
|
50 |
-
<div id="
|
51 |
-
<h3 class="title"><?php _e( '
|
52 |
<div class="inside">
|
53 |
-
<p
|
54 |
-
<div class="aligncenter">
|
55 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
|
56 |
-
<img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Make a donation">
|
57 |
-
</a>
|
58 |
-
</div>
|
59 |
-
<p class="donate"><?php _e( 'Thanks for your support!', 'HFScriptsIns' ) ?></p>
|
60 |
</div>
|
61 |
</div>
|
62 |
|
63 |
<div id="help" class="postbox">
|
64 |
-
<h3 class="title"><?php _e( 'Help', '
|
65 |
<div class="inside">
|
66 |
-
<
|
67 |
-
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
</div>
|
70 |
</div>
|
71 |
|
@@ -82,35 +91,34 @@ function HFScriptsIns_render_submenu_page() {
|
|
82 |
<?php settings_fields( 'HFScriptsIns_settings_group' ); ?>
|
83 |
|
84 |
<div class="postbox" id="Header">
|
85 |
-
<h3 class="title"><?php _e( 'Header Section', '
|
86 |
<div class="inside">
|
87 |
-
<p><?php _e( 'You can use the field below to add scripts to Header of your website.', '
|
88 |
-
<textarea cols='50' rows='10' name='HFScriptsIns_settings[header_beginning]' placeholder="<?php _e( '<!-- Beginning of the <head> tag -->', '
|
89 |
-
<p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', '
|
90 |
-
<textarea cols='50' rows='10' name='HFScriptsIns_settings[header_end]' placeholder="<?php _e( '<!-- End of the <head> tag -->', '
|
91 |
-
<p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', '
|
92 |
-
<?php submit_button( __( 'Save Changes', '
|
93 |
</div>
|
94 |
</div>
|
95 |
|
96 |
<div class="postbox" id="Footer">
|
97 |
-
<h3 class="title"><?php _e( 'Footer Section', '
|
98 |
<div class="inside">
|
99 |
-
<p><?php _e( 'You can use the field below to add scripts to Footer of your website.', '
|
100 |
-
<textarea cols='50' rows='10' name='HFScriptsIns_settings[footer_beginning]' placeholder="<?php _e( '<!-- Before a footers scripts -->', '
|
101 |
-
<p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', '
|
102 |
-
<textarea cols='50' rows='10' name='HFScriptsIns_settings[footer_end]' placeholder="<?php _e( '<!-- After all footers scripts -->', '
|
103 |
-
<p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', '
|
104 |
-
<?php submit_button( __( 'Save Changes', '
|
105 |
</div>
|
106 |
</div>
|
107 |
|
108 |
-
</
|
109 |
</div>
|
110 |
</div>
|
111 |
-
|
112 |
-
|
113 |
-
</form>
|
114 |
|
115 |
</div>
|
116 |
|
2 |
|
3 |
/**
|
4 |
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
*/
|
8 |
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 2.0
|
14 |
*/
|
15 |
function HFScriptsIns_render_submenu_page() {
|
16 |
|
21 |
?>
|
22 |
<div class="wrap">
|
23 |
<h2>
|
24 |
+
<?php _e( 'Header and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ); ?>
|
25 |
<br/>
|
26 |
<span>
|
27 |
+
<?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur "Berserkr" Gareginyan</a>', 'header-and-footer-scripts-inserter' ); ?>
|
28 |
<span/>
|
29 |
</h2>
|
30 |
|
35 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
36 |
|
37 |
<div id="about" class="postbox">
|
38 |
+
<h3 class="title"><?php _e( 'About', 'header-and-footer-scripts-inserter' ) ?></a></h3>
|
39 |
<div class="inside">
|
40 |
+
<p><?php _e( 'This plugin allows you to easily insert scripts in your website.', 'header-and-footer-scripts-inserter' ) ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
</div>
|
42 |
</div>
|
43 |
|
44 |
+
<div id="using" class="postbox">
|
45 |
+
<h3 class="title"><?php _e( 'Using', 'header-and-footer-scripts-inserter' ) ?></a></h3>
|
46 |
<div class="inside">
|
47 |
+
<p><?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', 'header-and-footer-scripts-inserter' ) ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
</div>
|
49 |
</div>
|
50 |
|
51 |
<div id="help" class="postbox">
|
52 |
+
<h3 class="title"><?php _e( 'Help', 'header-and-footer-scripts-inserter' ); ?></h3>
|
53 |
<div class="inside">
|
54 |
+
<p><?php _e( 'If you want more options then tell me and I will be happy to add it.', 'header-and-footer-scripts-inserter' ); ?></p>
|
55 |
+
<p><a href="mailto:arthurgareginyan@gmail.com">arthurgareginyan@gmail.com</a></p>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
|
59 |
+
<div id="donate" class="postbox">
|
60 |
+
<h3 class="title"><?php _e( 'Donate', 'header-and-footer-scripts-inserter' ) ?></h3>
|
61 |
+
<div class="inside">
|
62 |
+
<img src="<?php echo plugins_url('images/thanks.png', __FILE__); ?>">
|
63 |
+
<p><?php _e( 'If you like this plugin and find it useful, help me to make this plugin even better and keep it up-to-date.', 'header-and-footer-scripts-inserter' ) ?></p>
|
64 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
|
65 |
+
<img src="<?php echo plugins_url('images/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
|
66 |
+
</a>
|
67 |
+
<p><?php _e( 'Thanks for your support!', 'header-and-footer-scripts-inserter' ) ?></p>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
|
71 |
+
<div id="freelance" class="postbox">
|
72 |
+
<h3 class="title"><?php _e( 'Freelance', 'header-and-footer-scripts-inserter' ) ?></h3>
|
73 |
+
<div class="inside">
|
74 |
+
<img src="<?php echo plugins_url('images/author.png', __FILE__); ?>">
|
75 |
+
<p><?php _e( 'Hello, my name is Arthur and I\'m a freelance web designer and developer.', 'header-and-footer-scripts-inserter' ) ?></p>
|
76 |
+
<p><?php _e( 'Share your thoughts with me. You may have a brilliant idea in your mind and I can make it happen, so let’s get started!', 'header-and-footer-scripts-inserter' ) ?></p>
|
77 |
+
<p><a href="http://www.arthurgareginyan.com/" target="_blank">www.arthurgareginyan.com</a></p>
|
78 |
</div>
|
79 |
</div>
|
80 |
|
91 |
<?php settings_fields( 'HFScriptsIns_settings_group' ); ?>
|
92 |
|
93 |
<div class="postbox" id="Header">
|
94 |
+
<h3 class="title"><?php _e( 'Header Section', 'header-and-footer-scripts-inserter' ) ?></h3>
|
95 |
<div class="inside">
|
96 |
+
<p><?php _e( 'You can use the field below to add scripts to Header of your website.', 'header-and-footer-scripts-inserter' ) ?></p>
|
97 |
+
<textarea cols='50' rows='10' name='HFScriptsIns_settings[header_beginning]' placeholder="<?php _e( '<!-- Beginning of the <head> tag -->', 'header-and-footer-scripts-inserter' ) ?>"><?php echo esc_attr( $options['header_beginning'] ); ?></textarea>
|
98 |
+
<p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ) ?></p>
|
99 |
+
<textarea cols='50' rows='10' name='HFScriptsIns_settings[header_end]' placeholder="<?php _e( '<!-- End of the <head> tag -->', 'header-and-footer-scripts-inserter' ) ?>"><?php echo esc_attr( $options['header_end'] ); ?></textarea>
|
100 |
+
<p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ) ?></p>
|
101 |
+
<?php submit_button( __( 'Save Changes', 'header-and-footer-scripts-inserter' ), 'primary', 'submit', true ); ?>
|
102 |
</div>
|
103 |
</div>
|
104 |
|
105 |
<div class="postbox" id="Footer">
|
106 |
+
<h3 class="title"><?php _e( 'Footer Section', 'header-and-footer-scripts-inserter' ) ?></h3>
|
107 |
<div class="inside">
|
108 |
+
<p><?php _e( 'You can use the field below to add scripts to Footer of your website.', 'header-and-footer-scripts-inserter' ) ?></p>
|
109 |
+
<textarea cols='50' rows='10' name='HFScriptsIns_settings[footer_beginning]' placeholder="<?php _e( '<!-- Before a footers scripts -->', 'header-and-footer-scripts-inserter' ) ?>"><?php echo esc_attr( $options['footer_beginning'] ); ?></textarea>
|
110 |
+
<p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ) ?></p>
|
111 |
+
<textarea cols='50' rows='10' name='HFScriptsIns_settings[footer_end]' placeholder="<?php _e( '<!-- After all footers scripts -->', 'header-and-footer-scripts-inserter' ) ?>"><?php echo esc_attr( $options['footer_end'] ); ?></textarea>
|
112 |
+
<p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ) ?></p>
|
113 |
+
<?php submit_button( __( 'Save Changes', 'header-and-footer-scripts-inserter' ), 'primary', 'submit', true ); ?>
|
114 |
</div>
|
115 |
</div>
|
116 |
|
117 |
+
</form>
|
118 |
</div>
|
119 |
</div>
|
120 |
+
</div>
|
121 |
+
<!-- END-FORM -->
|
|
|
122 |
|
123 |
</div>
|
124 |
|
inc/style.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/*
|
2 |
* Header and Footer Scripts Inserter
|
3 |
* Style sheet for plugin's page
|
4 |
-
* @since
|
5 |
* @agareginyan
|
6 |
*/
|
7 |
|
@@ -70,10 +70,22 @@ p.help-text {
|
|
70 |
position: relative;
|
71 |
}
|
72 |
|
73 |
-
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
|
77 |
-
|
78 |
text-align: center;
|
79 |
}
|
1 |
/*
|
2 |
* Header and Footer Scripts Inserter
|
3 |
* Style sheet for plugin's page
|
4 |
+
* @since 2.0
|
5 |
* @agareginyan
|
6 |
*/
|
7 |
|
70 |
position: relative;
|
71 |
}
|
72 |
|
73 |
+
#about {
|
74 |
+
text-align: center;
|
75 |
+
}
|
76 |
+
|
77 |
+
#using {
|
78 |
+
text-align: center;
|
79 |
+
}
|
80 |
+
|
81 |
+
#help {
|
82 |
+
text-align: center;
|
83 |
+
}
|
84 |
+
|
85 |
+
#donate {
|
86 |
+
text-align: center;
|
87 |
}
|
88 |
|
89 |
+
#freelance {
|
90 |
text-align: center;
|
91 |
}
|
inc/thanks.png
DELETED
Binary file
|
languages/HFScriptsIns-pl_PL.mo
DELETED
Binary file
|
languages/HFScriptsIns-ru_RU.mo
DELETED
Binary file
|
languages/header-and-footer-scripts-inserter-pl_PL.mo
ADDED
Binary file
|
languages/{HFScriptsIns-pl_PL.po → header-and-footer-scripts-inserter-pl_PL.po}
RENAMED
@@ -1,175 +1,200 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: psouu <koko887@wp.pl>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language:
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator:
|
17 |
-
"X-Poedit-Basepath: ..\n"
|
18 |
-
"X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
|
19 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
-
"X-
|
25 |
-
"X-Poedit-
|
26 |
-
"X-
|
27 |
-
|
28 |
-
#: header-and-footer-scripts-inserter.php:
|
29 |
-
msgid "Settings"
|
30 |
-
msgstr "Ustawienia"
|
31 |
-
|
32 |
-
#. Plugin Name of the plugin/theme
|
33 |
-
#: header-and-footer-scripts-inserter.php:
|
34 |
-
msgid "Header and Footer Scripts Inserter"
|
35 |
-
msgstr "Wstawianie kodu do nagłówka i stopki"
|
36 |
-
|
37 |
-
#: inc/settings_page.php:
|
38 |
-
msgid ""
|
39 |
-
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
40 |
-
"\"Berserkr\" Gareginyan</a>"
|
41 |
-
msgstr ""
|
42 |
-
"wykonana przez <a href=\"http://www.arthurgareginyan.com\" "
|
43 |
-
"
|
44 |
-
|
45 |
-
#: inc/settings_page.php:
|
46 |
-
msgid "About"
|
47 |
-
msgstr "O wtyczce"
|
48 |
-
|
49 |
-
#: inc/settings_page.php:
|
50 |
-
msgid "This plugin allows you to easily insert scripts in your website."
|
51 |
-
msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
|
52 |
-
|
53 |
-
#: inc/settings_page.php:45
|
54 |
-
msgid ""
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
"
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
#: inc/settings_page.php:
|
66 |
-
msgid ""
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
"
|
71 |
-
"
|
72 |
-
|
73 |
-
#: inc/settings_page.php:
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
-
|
77 |
-
#: inc/settings_page.php:
|
78 |
-
msgid "
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
#: inc/settings_page.php:
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
-
|
89 |
-
#: inc/settings_page.php:
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
-
|
93 |
-
#: inc/settings_page.php:
|
94 |
-
msgid "
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
"
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
"
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
"
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
"
|
156 |
-
"
|
157 |
-
|
158 |
-
"
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
"
|
167 |
-
"
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-04-09 14:01+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-04-09 14:01+0300\n"
|
7 |
+
"Last-Translator: psouu <koko887@wp.pl>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: pl\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 &&(n"
|
14 |
+
"%100<10||n%100 >= 20)? 1 : 2);\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: pl_PL\n"
|
25 |
+
"X-Poedit-SearchPath-0: .\n"
|
26 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
27 |
+
|
28 |
+
#: header-and-footer-scripts-inserter.php:70
|
29 |
+
msgid "Settings"
|
30 |
+
msgstr "Ustawienia"
|
31 |
+
|
32 |
+
#. Plugin Name of the plugin/theme
|
33 |
+
#: header-and-footer-scripts-inserter.php:82 inc/settings_page.php:24
|
34 |
+
msgid "Header and Footer Scripts Inserter"
|
35 |
+
msgstr "Wstawianie kodu do nagłówka i stopki"
|
36 |
+
|
37 |
+
#: inc/settings_page.php:27
|
38 |
+
msgid ""
|
39 |
+
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
40 |
+
"\"Berserkr\" Gareginyan</a>"
|
41 |
+
msgstr ""
|
42 |
+
"wykonana przez <a href=\"http://www.arthurgareginyan.com\" target=\"_blank"
|
43 |
+
"\">Arthura \"Berserkra\" Gareginyana</a>"
|
44 |
+
|
45 |
+
#: inc/settings_page.php:38
|
46 |
+
msgid "About"
|
47 |
+
msgstr "O wtyczce"
|
48 |
+
|
49 |
+
#: inc/settings_page.php:40
|
50 |
+
msgid "This plugin allows you to easily insert scripts in your website."
|
51 |
+
msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
|
52 |
+
|
53 |
+
#: inc/settings_page.php:45
|
54 |
+
msgid "Using"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: inc/settings_page.php:47
|
58 |
+
msgid ""
|
59 |
+
"To use, enter your custom scripts, then click \"Save Changes\". It's that "
|
60 |
+
"simple!"
|
61 |
+
msgstr ""
|
62 |
+
"Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". To "
|
63 |
+
"takie proste!"
|
64 |
+
|
65 |
+
#: inc/settings_page.php:52
|
66 |
+
msgid "Help"
|
67 |
+
msgstr "Pomoc"
|
68 |
+
|
69 |
+
#: inc/settings_page.php:54
|
70 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
71 |
+
msgstr "Jeśli potrzebujesz więcej opcji napisz mi o tym. Chętnie je dodam."
|
72 |
+
|
73 |
+
#: inc/settings_page.php:60
|
74 |
+
msgid "Donate"
|
75 |
+
msgstr "Wesprzyj"
|
76 |
+
|
77 |
+
#: inc/settings_page.php:63
|
78 |
+
msgid ""
|
79 |
+
"If you like this plugin and find it useful, help me to make this plugin even "
|
80 |
+
"better and keep it up-to-date."
|
81 |
+
msgstr ""
|
82 |
+
"Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
|
83 |
+
"lepsza i bądź na bieżąco z aktualizacjami."
|
84 |
+
|
85 |
+
#: inc/settings_page.php:67
|
86 |
+
msgid "Thanks for your support!"
|
87 |
+
msgstr "Dziękujemy za wsparcie!"
|
88 |
+
|
89 |
+
#: inc/settings_page.php:72
|
90 |
+
msgid "Freelance"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: inc/settings_page.php:75
|
94 |
+
msgid ""
|
95 |
+
"Hello, my name is Arthur and I'm a freelance web designer and developer."
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: inc/settings_page.php:76
|
99 |
+
msgid ""
|
100 |
+
"Share your thoughts with me. You may have a brilliant idea in your mind and "
|
101 |
+
"I can make it happen, so let’s get started!"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: inc/settings_page.php:94
|
105 |
+
msgid "Header Section"
|
106 |
+
msgstr "Sekcja: Nagłówek"
|
107 |
+
|
108 |
+
#: inc/settings_page.php:96
|
109 |
+
msgid "You can use the field below to add scripts to Header of your website."
|
110 |
+
msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
|
111 |
+
|
112 |
+
#: inc/settings_page.php:97
|
113 |
+
msgid "<!-- Beginning of the <head> tag -->"
|
114 |
+
msgstr "<!-- Początek sekcji <head> -->"
|
115 |
+
|
116 |
+
#: inc/settings_page.php:98
|
117 |
+
msgid ""
|
118 |
+
"Scripts from this field will be printed in the beginning of <b>HEAD</b> "
|
119 |
+
"section. Do not place plain text in this!"
|
120 |
+
msgstr ""
|
121 |
+
"Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie "
|
122 |
+
"należy tu umieszczać zwykłego tekstu!"
|
123 |
+
|
124 |
+
#: inc/settings_page.php:99
|
125 |
+
msgid "<!-- End of the <head> tag -->"
|
126 |
+
msgstr "<!-- Koniec sekcji <head> -->"
|
127 |
+
|
128 |
+
#: inc/settings_page.php:100
|
129 |
+
msgid ""
|
130 |
+
"Scripts from this field will be printed in the end of <b>HEAD</b> section. "
|
131 |
+
"Do not place plain text in this!"
|
132 |
+
msgstr ""
|
133 |
+
"Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy "
|
134 |
+
"tu umieszczać zwykłego tekstu!"
|
135 |
+
|
136 |
+
#: inc/settings_page.php:101 inc/settings_page.php:113
|
137 |
+
msgid "Save Changes"
|
138 |
+
msgstr "Zapisz"
|
139 |
+
|
140 |
+
#: inc/settings_page.php:106
|
141 |
+
msgid "Footer Section"
|
142 |
+
msgstr "Sekcja: Stopka"
|
143 |
+
|
144 |
+
#: inc/settings_page.php:108
|
145 |
+
msgid "You can use the field below to add scripts to Footer of your website."
|
146 |
+
msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
|
147 |
+
|
148 |
+
#: inc/settings_page.php:109
|
149 |
+
msgid "<!-- Before a footers scripts -->"
|
150 |
+
msgstr "<!-- Początek stopki -->"
|
151 |
+
|
152 |
+
#: inc/settings_page.php:110
|
153 |
+
msgid ""
|
154 |
+
"Scripts from this field will be printed before a footers scripts. Do not "
|
155 |
+
"place plain text in this!"
|
156 |
+
msgstr ""
|
157 |
+
"Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu "
|
158 |
+
"umieszczać zwykłego tekstu!"
|
159 |
+
|
160 |
+
#: inc/settings_page.php:111
|
161 |
+
msgid "<!-- After all footers scripts -->"
|
162 |
+
msgstr "<!-- Koniec stopki -->"
|
163 |
+
|
164 |
+
#: inc/settings_page.php:112
|
165 |
+
msgid ""
|
166 |
+
"Scripts from this field will be printed after all footers scripts. Do not "
|
167 |
+
"place plain text in this!"
|
168 |
+
msgstr ""
|
169 |
+
"Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu "
|
170 |
+
"umieszczać zwykłego tekstu!"
|
171 |
+
|
172 |
+
#. Plugin URI of the plugin/theme
|
173 |
+
msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
174 |
+
msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
175 |
+
|
176 |
+
#. Description of the plugin/theme
|
177 |
+
msgid ""
|
178 |
+
"Easily add your scripts to the WordPress website's head or/and footer "
|
179 |
+
"section. This is a must have tool for authors and website's owners."
|
180 |
+
msgstr ""
|
181 |
+
"Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na "
|
182 |
+
"WordPressie."
|
183 |
+
|
184 |
+
#. Author of the plugin/theme
|
185 |
+
msgid "Arthur Gareginyan"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#. Author URI of the plugin/theme
|
189 |
+
msgid "http://www.arthurgareginyan.com"
|
190 |
+
msgstr "http://www.arthurgareginyan.com"
|
191 |
+
|
192 |
+
#~ msgid "Arthur \"Berserkr\" Gareginyan"
|
193 |
+
#~ msgstr "Arthur \"Berserkr\" Gareginyan"
|
194 |
+
|
195 |
+
#~ msgid ""
|
196 |
+
#~ "http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
|
197 |
+
#~ "scripts-inserter.html"
|
198 |
+
#~ msgstr ""
|
199 |
+
#~ "http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
|
200 |
+
#~ "scripts-inserter.html"
|
languages/header-and-footer-scripts-inserter-ru_RU.mo
ADDED
Binary file
|
languages/{HFScriptsIns-ru_RU.po → header-and-footer-scripts-inserter-ru_RU.po}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -21,16 +21,16 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#: header-and-footer-scripts-inserter.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
-
#: header-and-footer-scripts-inserter.php:
|
30 |
msgid "Header and Footer Scripts Inserter"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/settings_page.php:
|
34 |
msgid ""
|
35 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
36 |
"\"Berserkr\" Gareginyan</a>"
|
@@ -38,15 +38,19 @@ msgstr ""
|
|
38 |
"от <a href=“http://www.arthurgareginyan.com” target=“_blank”>Артур "
|
39 |
"“Berserkr” Гарегинян</a>"
|
40 |
|
41 |
-
#: inc/settings_page.php:
|
42 |
msgid "About"
|
43 |
-
msgstr ""
|
44 |
|
45 |
-
#: inc/settings_page.php:
|
46 |
msgid "This plugin allows you to easily insert scripts in your website."
|
47 |
msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
|
48 |
|
49 |
#: inc/settings_page.php:45
|
|
|
|
|
|
|
|
|
50 |
msgid ""
|
51 |
"To use, enter your custom scripts, then click \"Save Changes\". It's that "
|
52 |
"simple!"
|
@@ -54,11 +58,21 @@ msgstr ""
|
|
54 |
"Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
|
55 |
"кнопку “Сохранить изменения”. Это так просто!"
|
56 |
|
57 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Donate"
|
59 |
msgstr "Пожертвование"
|
60 |
|
61 |
-
#: inc/settings_page.php:
|
62 |
msgid ""
|
63 |
"If you like this plugin and find it useful, help me to make this plugin even "
|
64 |
"better and keep it up-to-date."
|
@@ -66,48 +80,93 @@ msgstr ""
|
|
66 |
"Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
|
67 |
"сделать его ещё лучше."
|
68 |
|
69 |
-
#: inc/settings_page.php:
|
70 |
msgid "Thanks for your support!"
|
71 |
msgstr "Спасибо за вашу поддержку!"
|
72 |
|
73 |
-
#: inc/settings_page.php:
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: inc/settings_page.php:
|
78 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgstr ""
|
80 |
-
"
|
81 |
-
"
|
82 |
|
83 |
-
#: inc/settings_page.php:
|
84 |
msgid "Header Section"
|
85 |
msgstr "Раздел HEADER"
|
86 |
|
87 |
-
#: inc/settings_page.php:
|
88 |
msgid "You can use the field below to add scripts to Header of your website."
|
89 |
msgstr ""
|
90 |
"Используйте поле расположение ниже для того, чтобы добавить скрипты в "
|
91 |
"верхний колонтитул вашего сайта."
|
92 |
|
93 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
msgid "Save Changes"
|
95 |
msgstr "Сохранить изменения"
|
96 |
|
97 |
-
#: inc/settings_page.php:
|
98 |
msgid "Footer Section"
|
99 |
msgstr "Раздел FOOTER"
|
100 |
|
101 |
-
#: inc/settings_page.php:
|
102 |
msgid "You can use the field below to add scripts to Footer of your website."
|
103 |
msgstr ""
|
104 |
"Используйте поле расположение ниже для того, чтобы добавить скрипты в нижний "
|
105 |
"колонтитул вашего сайта."
|
106 |
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
msgid ""
|
109 |
-
"
|
110 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
#. Description of the plugin/theme
|
@@ -119,9 +178,12 @@ msgstr ""
|
|
119 |
"сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
|
120 |
|
121 |
#. Author of the plugin/theme
|
122 |
-
msgid "Arthur
|
123 |
-
msgstr "Артур
|
124 |
|
125 |
#. Author URI of the plugin/theme
|
126 |
msgid "http://www.arthurgareginyan.com"
|
127 |
msgstr ""
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
4 |
+
"POT-Creation-Date: 2016-04-09 14:00+0300\n"
|
5 |
+
"PO-Revision-Date: 2016-04-09 14:00+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: header-and-footer-scripts-inserter.php:70
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
+
#: header-and-footer-scripts-inserter.php:82 inc/settings_page.php:24
|
30 |
msgid "Header and Footer Scripts Inserter"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/settings_page.php:27
|
34 |
msgid ""
|
35 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
36 |
"\"Berserkr\" Gareginyan</a>"
|
38 |
"от <a href=“http://www.arthurgareginyan.com” target=“_blank”>Артур "
|
39 |
"“Berserkr” Гарегинян</a>"
|
40 |
|
41 |
+
#: inc/settings_page.php:38
|
42 |
msgid "About"
|
43 |
+
msgstr "О платине"
|
44 |
|
45 |
+
#: inc/settings_page.php:40
|
46 |
msgid "This plugin allows you to easily insert scripts in your website."
|
47 |
msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
|
48 |
|
49 |
#: inc/settings_page.php:45
|
50 |
+
msgid "Using"
|
51 |
+
msgstr "Использование:"
|
52 |
+
|
53 |
+
#: inc/settings_page.php:47
|
54 |
msgid ""
|
55 |
"To use, enter your custom scripts, then click \"Save Changes\". It's that "
|
56 |
"simple!"
|
58 |
"Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
|
59 |
"кнопку “Сохранить изменения”. Это так просто!"
|
60 |
|
61 |
+
#: inc/settings_page.php:52
|
62 |
+
msgid "Help"
|
63 |
+
msgstr "Помощь"
|
64 |
+
|
65 |
+
#: inc/settings_page.php:54
|
66 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
67 |
+
msgstr ""
|
68 |
+
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
69 |
+
"добавить их."
|
70 |
+
|
71 |
+
#: inc/settings_page.php:60
|
72 |
msgid "Donate"
|
73 |
msgstr "Пожертвование"
|
74 |
|
75 |
+
#: inc/settings_page.php:63
|
76 |
msgid ""
|
77 |
"If you like this plugin and find it useful, help me to make this plugin even "
|
78 |
"better and keep it up-to-date."
|
80 |
"Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
|
81 |
"сделать его ещё лучше."
|
82 |
|
83 |
+
#: inc/settings_page.php:67
|
84 |
msgid "Thanks for your support!"
|
85 |
msgstr "Спасибо за вашу поддержку!"
|
86 |
|
87 |
+
#: inc/settings_page.php:72
|
88 |
+
msgid "Freelance"
|
89 |
+
msgstr "Фриланс"
|
90 |
|
91 |
+
#: inc/settings_page.php:75
|
92 |
+
msgid ""
|
93 |
+
"Hello, my name is Arthur and I'm a freelance web designer and developer."
|
94 |
+
msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
|
95 |
+
|
96 |
+
#: inc/settings_page.php:76
|
97 |
+
msgid ""
|
98 |
+
"Share your thoughts with me. You may have a brilliant idea in your mind and "
|
99 |
+
"I can make it happen, so let’s get started!"
|
100 |
msgstr ""
|
101 |
+
"Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, а "
|
102 |
+
"я могу сделать её явью, так что давайте начнём!"
|
103 |
|
104 |
+
#: inc/settings_page.php:94
|
105 |
msgid "Header Section"
|
106 |
msgstr "Раздел HEADER"
|
107 |
|
108 |
+
#: inc/settings_page.php:96
|
109 |
msgid "You can use the field below to add scripts to Header of your website."
|
110 |
msgstr ""
|
111 |
"Используйте поле расположение ниже для того, чтобы добавить скрипты в "
|
112 |
"верхний колонтитул вашего сайта."
|
113 |
|
114 |
+
#: inc/settings_page.php:97
|
115 |
+
msgid "<!-- Beginning of the <head> tag -->"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: inc/settings_page.php:98
|
119 |
+
msgid ""
|
120 |
+
"Scripts from this field will be printed in the beginning of <b>HEAD</b> "
|
121 |
+
"section. Do not place plain text in this!"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: inc/settings_page.php:99
|
125 |
+
msgid "<!-- End of the <head> tag -->"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: inc/settings_page.php:100
|
129 |
+
msgid ""
|
130 |
+
"Scripts from this field will be printed in the end of <b>HEAD</b> section. "
|
131 |
+
"Do not place plain text in this!"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: inc/settings_page.php:101 inc/settings_page.php:113
|
135 |
msgid "Save Changes"
|
136 |
msgstr "Сохранить изменения"
|
137 |
|
138 |
+
#: inc/settings_page.php:106
|
139 |
msgid "Footer Section"
|
140 |
msgstr "Раздел FOOTER"
|
141 |
|
142 |
+
#: inc/settings_page.php:108
|
143 |
msgid "You can use the field below to add scripts to Footer of your website."
|
144 |
msgstr ""
|
145 |
"Используйте поле расположение ниже для того, чтобы добавить скрипты в нижний "
|
146 |
"колонтитул вашего сайта."
|
147 |
|
148 |
+
#: inc/settings_page.php:109
|
149 |
+
msgid "<!-- Before a footers scripts -->"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/settings_page.php:110
|
153 |
msgid ""
|
154 |
+
"Scripts from this field will be printed before a footers scripts. Do not "
|
155 |
+
"place plain text in this!"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: inc/settings_page.php:111
|
159 |
+
msgid "<!-- After all footers scripts -->"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: inc/settings_page.php:112
|
163 |
+
msgid ""
|
164 |
+
"Scripts from this field will be printed after all footers scripts. Do not "
|
165 |
+
"place plain text in this!"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#. Plugin URI of the plugin/theme
|
169 |
+
msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
170 |
msgstr ""
|
171 |
|
172 |
#. Description of the plugin/theme
|
178 |
"сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
|
179 |
|
180 |
#. Author of the plugin/theme
|
181 |
+
msgid "Arthur Gareginyan"
|
182 |
+
msgstr "Артур Гарегинян"
|
183 |
|
184 |
#. Author URI of the plugin/theme
|
185 |
msgid "http://www.arthurgareginyan.com"
|
186 |
msgstr ""
|
187 |
+
|
188 |
+
#~ msgid "Arthur \"Berserkr\" Gareginyan"
|
189 |
+
#~ msgstr "Артур “Берсеркр” Гарегинян"
|
languages/{HFScriptsIns.pot → header-and-footer-scripts-inserter.pot}
RENAMED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2016-
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -14,129 +14,137 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
-
"
|
19 |
-
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: header-and-footer-scripts-inserter.php:
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
-
#: header-and-footer-scripts-inserter.php:
|
29 |
msgid "Header and Footer Scripts Inserter"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/settings_page.php:
|
33 |
-
msgid ""
|
34 |
-
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
35 |
-
"\"Berserkr\" Gareginyan</a>"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/settings_page.php:
|
39 |
msgid "About"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/settings_page.php:
|
43 |
msgid "This plugin allows you to easily insert scripts in your website."
|
44 |
msgstr ""
|
45 |
|
46 |
#: inc/settings_page.php:45
|
47 |
-
msgid ""
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
53 |
msgid "Donate"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: inc/settings_page.php:
|
57 |
-
msgid ""
|
58 |
-
"If you like this plugin and find it useful, help me to make this plugin "
|
59 |
-
"even better and keep it up-to-date."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: inc/settings_page.php:
|
63 |
msgid "Thanks for your support!"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: inc/settings_page.php:
|
67 |
-
msgid "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/settings_page.php:
|
71 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: inc/settings_page.php:
|
75 |
msgid "Header Section"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/settings_page.php:
|
79 |
msgid "You can use the field below to add scripts to Header of your website."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: inc/settings_page.php:
|
83 |
msgid "<!-- Beginning of the <head> tag -->"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: inc/settings_page.php:
|
87 |
msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/settings_page.php:
|
91 |
msgid "<!-- End of the <head> tag -->"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/settings_page.php:
|
95 |
msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/settings_page.php:
|
99 |
msgid "Save Changes"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/settings_page.php:
|
103 |
msgid "Footer Section"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/settings_page.php:
|
107 |
msgid "You can use the field below to add scripts to Footer of your website."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/settings_page.php:
|
111 |
msgid "<!-- Before a footers scripts -->"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/settings_page.php:
|
115 |
msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/settings_page.php:
|
119 |
msgid "<!-- After all footers scripts -->"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/settings_page.php:
|
123 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
124 |
msgstr ""
|
125 |
|
126 |
#. Plugin URI of the plugin/theme
|
127 |
-
msgid ""
|
128 |
-
"http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-scripts-"
|
129 |
-
"inserter.html"
|
130 |
msgstr ""
|
131 |
|
132 |
#. Description of the plugin/theme
|
133 |
msgid ""
|
134 |
-
"Easily add your scripts to the WordPress website's head or/and footer "
|
135 |
-
"
|
136 |
msgstr ""
|
137 |
|
138 |
#. Author of the plugin/theme
|
139 |
-
msgid "Arthur
|
140 |
msgstr ""
|
141 |
|
142 |
#. Author URI of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2016-04-09 14:00+0300\n"
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
18 |
+
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
+
#: header-and-footer-scripts-inserter.php:70
|
23 |
msgid "Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
#. Plugin Name of the plugin/theme
|
27 |
+
#: header-and-footer-scripts-inserter.php:82 inc/settings_page.php:24
|
28 |
msgid "Header and Footer Scripts Inserter"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: inc/settings_page.php:27
|
32 |
+
msgid "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur \"Berserkr\" Gareginyan</a>"
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: inc/settings_page.php:38
|
36 |
msgid "About"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: inc/settings_page.php:40
|
40 |
msgid "This plugin allows you to easily insert scripts in your website."
|
41 |
msgstr ""
|
42 |
|
43 |
#: inc/settings_page.php:45
|
44 |
+
msgid "Using"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: inc/settings_page.php:47
|
48 |
+
msgid "To use, enter your custom scripts, then click \"Save Changes\". It's that simple!"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: inc/settings_page.php:52
|
52 |
+
msgid "Help"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: inc/settings_page.php:54
|
56 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: inc/settings_page.php:60
|
60 |
msgid "Donate"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: inc/settings_page.php:63
|
64 |
+
msgid "If you like this plugin and find it useful, help me to make this plugin even better and keep it up-to-date."
|
|
|
|
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/settings_page.php:67
|
68 |
msgid "Thanks for your support!"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: inc/settings_page.php:72
|
72 |
+
msgid "Freelance"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/settings_page.php:75
|
76 |
+
msgid "Hello, my name is Arthur and I'm a freelance web designer and developer."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: inc/settings_page.php:76
|
80 |
+
msgid ""
|
81 |
+
"Share your thoughts with me. You may have a brilliant idea in your mind and I can make it happen, so let’s get started!"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: inc/settings_page.php:94
|
85 |
msgid "Header Section"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: inc/settings_page.php:96
|
89 |
msgid "You can use the field below to add scripts to Header of your website."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: inc/settings_page.php:97
|
93 |
msgid "<!-- Beginning of the <head> tag -->"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: inc/settings_page.php:98
|
97 |
msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: inc/settings_page.php:99
|
101 |
msgid "<!-- End of the <head> tag -->"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/settings_page.php:100
|
105 |
msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/settings_page.php:101 inc/settings_page.php:113
|
109 |
msgid "Save Changes"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/settings_page.php:106
|
113 |
msgid "Footer Section"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/settings_page.php:108
|
117 |
msgid "You can use the field below to add scripts to Footer of your website."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/settings_page.php:109
|
121 |
msgid "<!-- Before a footers scripts -->"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/settings_page.php:110
|
125 |
msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/settings_page.php:111
|
129 |
msgid "<!-- After all footers scripts -->"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/settings_page.php:112
|
133 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Plugin URI of the plugin/theme
|
137 |
+
msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
|
|
|
|
138 |
msgstr ""
|
139 |
|
140 |
#. Description of the plugin/theme
|
141 |
msgid ""
|
142 |
+
"Easily add your scripts to the WordPress website's head or/and footer section. This is a must have tool for authors "
|
143 |
+
"and website's owners."
|
144 |
msgstr ""
|
145 |
|
146 |
#. Author of the plugin/theme
|
147 |
+
msgid "Arthur Gareginyan"
|
148 |
msgstr ""
|
149 |
|
150 |
#. Author URI of the plugin/theme
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: inject, insert, insert scripts, insert javascript, insert js, insert html, insert css, insert custom scripts, insert custom code, html, javascript, php, 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.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -17,29 +17,26 @@ An easy to use and lightweight WordPress plugin that gives you the ability to ea
|
|
17 |
No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on plugin's page. Just add your scripts in the field on the plugin's page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
|
18 |
|
19 |
Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Header and Footer Scripts Inserter" is a simple but effective SEO plugin.
|
20 |
-
|
21 |
|
22 |
= Features =
|
23 |
|
24 |
-
**Current features:**
|
25 |
-
|
26 |
* Light weight
|
27 |
* User-friendly
|
28 |
* No configuration required
|
29 |
* Inserts scripts in beginning or/and end of header
|
30 |
* Inserts scripts in beginning or/and end of footer
|
31 |
-
* Ready for translation (.pot file included)
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
|
44 |
== Installation ==
|
45 |
Install "Header and Footer Scripts Inserter" just as you would any other WordPress Plugin.
|
@@ -88,13 +85,15 @@ A. As with every plugin, it's possible that things don't work. The most common r
|
|
88 |
A. Please visit [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter) and report.
|
89 |
|
90 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
91 |
-
A. Please
|
|
|
|
|
|
|
92 |
|
93 |
|
94 |
== Screenshots ==
|
95 |
-
1. Plugin’s page.
|
96 |
-
2. Plugin’s page
|
97 |
-
3. Plugin’s page with Google Tag Manager code added and saved.
|
98 |
|
99 |
== Other Notes ==
|
100 |
|
@@ -105,22 +104,26 @@ A. Please visit [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/w
|
|
105 |
This plugin is open-sourced software licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
106 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
107 |
|
108 |
-
**Support**
|
109 |
-
|
110 |
-
* Did you enjoy this plugin? Please [donate to support ongoing development](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS). Your contribution would be greatly appreciated.
|
111 |
-
* Do you have any ideas or suggestions to make the plugin better? I can’t wait to hear them! Please share! [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-scripts-inserter.html)
|
112 |
-
|
113 |
-
**Please Vote and Enjoy**
|
114 |
-
|
115 |
-
* Your votes really make a difference! Thanks.
|
116 |
-
|
117 |
**Links**
|
118 |
|
119 |
* [Developer Website](http://www.arthurgareginyan.com)
|
120 |
-
* [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-scripts-inserter.html)
|
121 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
|
122 |
|
123 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
= 1.2 =
|
125 |
* Added Polish translation. (Thanks Paweł K.)
|
126 |
* Localization improved. (Thanks Paweł K.)
|
@@ -138,14 +141,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
138 |
|
139 |
|
140 |
== Upgrade Notice ==
|
141 |
-
=
|
142 |
-
|
143 |
-
* Localization improved. (Thanks Paweł K.)
|
144 |
-
* POT file updated. (Thanks Paweł K.)
|
145 |
-
= 1.1 =
|
146 |
-
Please update to new version! * Added Russian translation. * Localization improved.
|
147 |
= 1.0 =
|
148 |
Please update to first stable release!
|
149 |
-
* Added ready for translation (.pot file included).
|
150 |
= 0.2 =
|
151 |
Please update to beta version.
|
3 |
Tags: inject, insert, insert scripts, insert javascript, insert js, insert html, insert css, insert custom scripts, insert custom code, html, javascript, php, 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.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 1.2
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
17 |
No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on plugin's page. Just add your scripts in the field on the plugin's page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
|
18 |
|
19 |
Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Header and Footer Scripts Inserter" is a simple but effective SEO plugin.
|
|
|
20 |
|
21 |
= Features =
|
22 |
|
|
|
|
|
23 |
* Light weight
|
24 |
* User-friendly
|
25 |
* No configuration required
|
26 |
* Inserts scripts in beginning or/and end of header
|
27 |
* Inserts scripts in beginning or/and end of footer
|
28 |
+
* Ready for translation (.pot file included)
|
29 |
+
* Russian translation
|
30 |
+
* Polish translation
|
31 |
+
|
32 |
+
>**Contribution**
|
33 |
+
>
|
34 |
+
>Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
|
35 |
+
>
|
36 |
+
>* Please [donate](http://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
|
37 |
+
>* Please take the time to [rate and review](https://wordpress.org/support/view/plugin-reviews/header-and-footer-scripts-inserter?rate=5#postform) this plugin.
|
38 |
+
>* Please [share with me](mailto:arthurgareginyan@gmail.com) if you have any ideas or suggestions to make this plugin better.
|
39 |
+
|
40 |
|
41 |
== Installation ==
|
42 |
Install "Header and Footer Scripts Inserter" just as you would any other WordPress Plugin.
|
85 |
A. Please visit [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter) and report.
|
86 |
|
87 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
88 |
+
A. Please send me email [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com).
|
89 |
+
|
90 |
+
= Q. I love this plugin! Can I help somehow? =
|
91 |
+
A. Yes, any financial contributions are welcome! Just visit my website and click on the donate link, and thank you! [My website](http://www.arthurgareginyan.com/donate.html)
|
92 |
|
93 |
|
94 |
== Screenshots ==
|
95 |
+
1. Plugin’s page.
|
96 |
+
2. Plugin’s page with Google Tag Manager code added.
|
|
|
97 |
|
98 |
== Other Notes ==
|
99 |
|
104 |
This plugin is open-sourced software licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
105 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
**Links**
|
108 |
|
109 |
* [Developer Website](http://www.arthurgareginyan.com)
|
|
|
110 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
|
111 |
|
112 |
== Changelog ==
|
113 |
+
= 2.0 =
|
114 |
+
* Fixed: "Use of undefined constant header_beginning - assumed 'header_beginning' in settings_page.php".
|
115 |
+
* Fixed: "Use of undefined constant header_end - assumed 'header_end' in settings_page.php".
|
116 |
+
* Fixed: "Use of undefined constant footer_beginning - assumed 'footer_beginning' in settings_page.php".
|
117 |
+
* Fixed: "Use of undefined constant footer_end - assumed 'footer_end' in settings_page.php".
|
118 |
+
* Some changes in design of settings page.
|
119 |
+
* Constants variables added.
|
120 |
+
* Text domain changed to "header-and-footer-scripts-inserter".
|
121 |
+
* Added compatibility with the translate.wordpress.org.
|
122 |
+
* All images are moved to the directory "images".
|
123 |
+
* Image "btn_donateCC_LG.gif" is now located in the "images" directory.
|
124 |
+
* Plugin URI changed to GitHub repository.
|
125 |
+
* Added my personal ad about freelance.
|
126 |
+
* .pot file updated.
|
127 |
= 1.2 =
|
128 |
* Added Polish translation. (Thanks Paweł K.)
|
129 |
* Localization improved. (Thanks Paweł K.)
|
141 |
|
142 |
|
143 |
== Upgrade Notice ==
|
144 |
+
= 2.0 =
|
145 |
+
Please update to new release!
|
|
|
|
|
|
|
|
|
146 |
= 1.0 =
|
147 |
Please update to first stable release!
|
|
|
148 |
= 0.2 =
|
149 |
Please update to beta version.
|