Version Description
- Mar 31, 2019 =
- Framework updated: Code formatting improved.
- Framework updated: Code commenting improved.
- Framework updated: The change log design is improved.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.53 |
Comparing to | |
See all releases |
Code changes from version 4.52 to 4.53
- inc/php/core.php +1 -1
- inc/php/page.php +12 -11
- inc/php/sidebar.php +10 -0
- inc/php/tabs/settings.php +8 -0
- languages/social-media-buttons-toolbar-de_DE.mo +0 -0
- languages/social-media-buttons-toolbar-de_DE.po +46 -46
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +46 -46
- languages/social-media-buttons-toolbar-fr_FR.mo +0 -0
- languages/social-media-buttons-toolbar-fr_FR.po +46 -46
- languages/social-media-buttons-toolbar-nl_NL.mo +0 -0
- languages/social-media-buttons-toolbar-nl_NL.po +46 -46
- languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
- languages/social-media-buttons-toolbar-ru_RU.po +46 -46
- languages/social-media-buttons-toolbar.pot +45 -45
- readme.txt +92 -87
- social-media-buttons-toolbar.php +1 -1
inc/php/core.php
CHANGED
@@ -63,7 +63,7 @@ function spacexchimp_p005_plugin_row_meta( $links, $file ) {
|
|
63 |
|
64 |
$url_upgrade = "https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html";
|
65 |
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
|
66 |
-
$link_upgrade = '<a href="' . $url_upgrade
|
67 |
|
68 |
$new_links = array(
|
69 |
'donate' => $link_donate,
|
63 |
|
64 |
$url_upgrade = "https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html";
|
65 |
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
|
66 |
+
$link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . $text_upgrade . '</a>';
|
67 |
|
68 |
$new_links = array(
|
69 |
'donate' => $link_donate,
|
inc/php/page.php
CHANGED
@@ -48,38 +48,39 @@ function spacexchimp_p005_render_submenu_page() {
|
|
48 |
</ul>
|
49 |
<!-- END-TABS NAVIGATION MENU -->
|
50 |
|
51 |
-
<!-- TAB
|
52 |
<div class="tab-page fade active in" id="tab-core">
|
|
|
53 |
<!-- INCLUDE SIDEBAR -->
|
54 |
<?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
|
55 |
-
|
56 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
|
57 |
</div>
|
58 |
-
<!-- END-TAB
|
59 |
|
60 |
-
<!-- TAB
|
61 |
<div class="tab-page fade" id="tab-usage">
|
62 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
|
63 |
</div>
|
64 |
-
<!-- END-TAB
|
65 |
|
66 |
-
<!-- TAB
|
67 |
<div class="tab-page fade" id="tab-faq">
|
68 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
|
69 |
</div>
|
70 |
-
<!-- END-TAB
|
71 |
|
72 |
-
<!-- TAB
|
73 |
<div class="tab-page fade" id="tab-support">
|
74 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
|
75 |
</div>
|
76 |
-
<!-- END-TAB
|
77 |
|
78 |
-
<!-- TAB
|
79 |
<div class="tab-page fade" id="tab-store">
|
80 |
<div class="include-tab-store"></div>
|
81 |
</div>
|
82 |
-
<!-- END-TAB
|
83 |
|
84 |
</div>
|
85 |
|
48 |
</ul>
|
49 |
<!-- END-TABS NAVIGATION MENU -->
|
50 |
|
51 |
+
<!-- TAB SETTINGS -->
|
52 |
<div class="tab-page fade active in" id="tab-core">
|
53 |
+
|
54 |
<!-- INCLUDE SIDEBAR -->
|
55 |
<?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
|
56 |
+
|
57 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
|
58 |
</div>
|
59 |
+
<!-- END-TAB SETTINGS -->
|
60 |
|
61 |
+
<!-- TAB USAGE -->
|
62 |
<div class="tab-page fade" id="tab-usage">
|
63 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
|
64 |
</div>
|
65 |
+
<!-- END-TAB USAGE -->
|
66 |
|
67 |
+
<!-- TAB FAQ -->
|
68 |
<div class="tab-page fade" id="tab-faq">
|
69 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
|
70 |
</div>
|
71 |
+
<!-- END-TAB FAQ -->
|
72 |
|
73 |
+
<!-- TAB SUPPORT -->
|
74 |
<div class="tab-page fade" id="tab-support">
|
75 |
<?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
|
76 |
</div>
|
77 |
+
<!-- END-TAB SUPPORT -->
|
78 |
|
79 |
+
<!-- TAB STORE -->
|
80 |
<div class="tab-page fade" id="tab-store">
|
81 |
<div class="include-tab-store"></div>
|
82 |
</div>
|
83 |
+
<!-- END-TAB STORE -->
|
84 |
|
85 |
</div>
|
86 |
|
inc/php/sidebar.php
CHANGED
@@ -12,6 +12,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
|
|
15 |
<div class="postbox banner">
|
16 |
<h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
|
17 |
<div class="inside">
|
@@ -20,7 +21,9 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
20 |
</a>
|
21 |
</div>
|
22 |
</div>
|
|
|
23 |
|
|
|
24 |
<div class="postbox banner">
|
25 |
<div class="inside">
|
26 |
<a href="https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html" target="_blank">
|
@@ -28,21 +31,27 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
28 |
</a>
|
29 |
</div>
|
30 |
</div>
|
|
|
31 |
|
|
|
32 |
<div class="postbox about">
|
33 |
<h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
|
34 |
<div class="inside">
|
35 |
<p><?php _e( 'This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.', $plugin['text'] ); ?></p>
|
36 |
</div>
|
37 |
</div>
|
|
|
38 |
|
|
|
39 |
<div class="postbox help">
|
40 |
<h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
|
41 |
<div class="inside">
|
42 |
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
|
43 |
</div>
|
44 |
</div>
|
|
|
45 |
|
|
|
46 |
<div class="postbox support">
|
47 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
48 |
<div class="inside">
|
@@ -56,6 +65,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
56 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
57 |
</div>
|
58 |
</div>
|
|
|
59 |
|
60 |
</div>
|
61 |
</div>
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
15 |
+
<!-- SPACEXCHIMP -->
|
16 |
<div class="postbox banner">
|
17 |
<h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
|
18 |
<div class="inside">
|
21 |
</a>
|
22 |
</div>
|
23 |
</div>
|
24 |
+
<!-- END SPACEXCHIMP -->
|
25 |
|
26 |
+
<!-- UPGRADE -->
|
27 |
<div class="postbox banner">
|
28 |
<div class="inside">
|
29 |
<a href="https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html" target="_blank">
|
31 |
</a>
|
32 |
</div>
|
33 |
</div>
|
34 |
+
<!-- END UPGRADE -->
|
35 |
|
36 |
+
<!-- ABOUT -->
|
37 |
<div class="postbox about">
|
38 |
<h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
|
39 |
<div class="inside">
|
40 |
<p><?php _e( 'This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.', $plugin['text'] ); ?></p>
|
41 |
</div>
|
42 |
</div>
|
43 |
+
<!-- END ABOUT -->
|
44 |
|
45 |
+
<!-- HELP -->
|
46 |
<div class="postbox help">
|
47 |
<h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
|
48 |
<div class="inside">
|
49 |
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
|
50 |
</div>
|
51 |
</div>
|
52 |
+
<!-- END HELP -->
|
53 |
|
54 |
+
<!-- SUPPORT -->
|
55 |
<div class="postbox support">
|
56 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
57 |
<div class="inside">
|
65 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
66 |
</div>
|
67 |
</div>
|
68 |
+
<!-- END SUPPORT -->
|
69 |
|
70 |
</div>
|
71 |
</div>
|
inc/php/tabs/settings.php
CHANGED
@@ -16,10 +16,12 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
16 |
<form action="options.php" method="post" enctype="multipart/form-data">
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
|
|
19 |
<button type="submit" name="submit" id="submit" class="btn btn-info btn-lg button-save-top">
|
20 |
<i class="fa fa-save" aria-hidden="true"></i>
|
21 |
<span><?php _e( 'Save changes', $plugin['text'] ); ?></span>
|
22 |
</button>
|
|
|
23 |
|
24 |
<div class="postbox" id="buttons">
|
25 |
<h3 class="title"><?php _e( 'Buttons', $plugin['text'] ); ?></h3>
|
@@ -136,8 +138,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
136 |
</div>
|
137 |
</div>
|
138 |
|
|
|
139 |
<input type="submit" name="submit" id="submit" class="btn btn-default btn-lg button-save-main" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
|
|
140 |
|
|
|
141 |
<div class="postbox" id="preview">
|
142 |
<h3 class="title"><?php _e( 'Live Preview', $plugin['text'] ); ?></h3>
|
143 |
<div class="inside">
|
@@ -145,7 +150,9 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
145 |
<?php echo spacexchimp_p005_shortcode(); ?>
|
146 |
</div>
|
147 |
</div>
|
|
|
148 |
|
|
|
149 |
<div class="postbox" id="support-addition">
|
150 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
151 |
<div class="inside">
|
@@ -159,6 +166,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
159 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
160 |
</div>
|
161 |
</div>
|
|
|
162 |
|
163 |
</form>
|
164 |
|
16 |
<form action="options.php" method="post" enctype="multipart/form-data">
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
19 |
+
<!-- SUBMIT -->
|
20 |
<button type="submit" name="submit" id="submit" class="btn btn-info btn-lg button-save-top">
|
21 |
<i class="fa fa-save" aria-hidden="true"></i>
|
22 |
<span><?php _e( 'Save changes', $plugin['text'] ); ?></span>
|
23 |
</button>
|
24 |
+
<!-- END SUBMIT -->
|
25 |
|
26 |
<div class="postbox" id="buttons">
|
27 |
<h3 class="title"><?php _e( 'Buttons', $plugin['text'] ); ?></h3>
|
138 |
</div>
|
139 |
</div>
|
140 |
|
141 |
+
<!-- SUBMIT -->
|
142 |
<input type="submit" name="submit" id="submit" class="btn btn-default btn-lg button-save-main" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
|
143 |
+
<!-- END SUBMIT -->
|
144 |
|
145 |
+
<!-- PREVIEW -->
|
146 |
<div class="postbox" id="preview">
|
147 |
<h3 class="title"><?php _e( 'Live Preview', $plugin['text'] ); ?></h3>
|
148 |
<div class="inside">
|
150 |
<?php echo spacexchimp_p005_shortcode(); ?>
|
151 |
</div>
|
152 |
</div>
|
153 |
+
<!-- END PREVIEW -->
|
154 |
|
155 |
+
<!-- SUPPORT -->
|
156 |
<div class="postbox" id="support-addition">
|
157 |
<h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
|
158 |
<div class="inside">
|
166 |
<p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
|
167 |
</div>
|
168 |
</div>
|
169 |
+
<!-- END SUPPORT -->
|
170 |
|
171 |
</form>
|
172 |
|
languages/social-media-buttons-toolbar-de_DE.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -103,7 +103,7 @@ msgstr "Verwendung"
|
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
107 |
msgid "Support"
|
108 |
msgstr "Unterstützung"
|
109 |
|
@@ -111,36 +111,36 @@ msgstr "Unterstützung"
|
|
111 |
msgid "Store"
|
112 |
msgstr "Geschäft"
|
113 |
|
114 |
-
#: inc/php/sidebar.php:
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Wir sind «Space X-Chimp»"
|
117 |
|
118 |
-
#: inc/php/sidebar.php:
|
119 |
msgid "About"
|
120 |
msgstr "Über"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall (post content, page content, widget, sidebar, header, footer) auf Ihrer Webseite hinzufügen."
|
125 |
|
126 |
-
#: inc/php/sidebar.php:
|
127 |
msgid "Help"
|
128 |
msgstr "Hilfe"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
133 |
|
134 |
-
#: inc/php/sidebar.php:
|
135 |
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."
|
136 |
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."
|
137 |
|
138 |
-
#: inc/php/sidebar.php:
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Spende mit PayPal"
|
142 |
|
143 |
-
#: inc/php/sidebar.php:
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Danke für Ihre Unterstützung!"
|
146 |
|
@@ -523,143 +523,143 @@ msgstr ""
|
|
523 |
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."
|
524 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
525 |
|
526 |
-
#: inc/php/tabs/settings.php:
|
527 |
msgid "Save changes"
|
528 |
msgstr "Änderungen speichern"
|
529 |
|
530 |
-
#: inc/php/tabs/settings.php:
|
531 |
msgid "Buttons"
|
532 |
msgstr "Buttons"
|
533 |
|
534 |
-
#: inc/php/tabs/settings.php:
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Display options"
|
560 |
msgstr "Anzeigeoptionen"
|
561 |
|
562 |
-
#: inc/php/tabs/settings.php:
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/tabs/settings.php:
|
567 |
msgid "Button size"
|
568 |
msgstr "Icon Größe"
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Geben Sie die Größe der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Geben Sie die Größe des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
585 |
|
586 |
-
#: inc/php/tabs/settings.php:
|
587 |
msgid "Left"
|
588 |
msgstr "Links"
|
589 |
|
590 |
-
#: inc/php/tabs/settings.php:
|
591 |
msgid "Center"
|
592 |
msgstr "Mittig"
|
593 |
|
594 |
-
#: inc/php/tabs/settings.php:
|
595 |
msgid "Right"
|
596 |
msgstr "Rechts"
|
597 |
|
598 |
-
#: inc/php/tabs/settings.php:
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/tabs/settings.php:
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/php/tabs/settings.php:
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/tabs/settings.php:
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Öffne in neuem Tab"
|
613 |
|
614 |
-
#: inc/php/tabs/settings.php:
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Links in einem neuen Tab/Fenster öffnen."
|
617 |
|
618 |
-
#: inc/php/tabs/settings.php:
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/tabs/settings.php:
|
623 |
msgid "Caption"
|
624 |
msgstr "Überschrift"
|
625 |
|
626 |
-
#: inc/php/tabs/settings.php:
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
|
629 |
|
630 |
-
#: inc/php/tabs/settings.php:
|
631 |
msgid "Tooltips"
|
632 |
msgstr "Tooltip"
|
633 |
|
634 |
-
#: inc/php/tabs/settings.php:
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
|
637 |
|
638 |
-
#: inc/php/tabs/settings.php:
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/tabs/settings.php:
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "In Posts anzeigen"
|
645 |
|
646 |
-
#: inc/php/tabs/settings.php:
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/tabs/settings.php:
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Auf Seiten anzeigen"
|
653 |
|
654 |
-
#: inc/php/tabs/settings.php:
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/tabs/settings.php:
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Live Vorschau"
|
661 |
|
662 |
-
#: inc/php/tabs/settings.php:
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
665 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:16+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
107 |
msgid "Support"
|
108 |
msgstr "Unterstützung"
|
109 |
|
111 |
msgid "Store"
|
112 |
msgstr "Geschäft"
|
113 |
|
114 |
+
#: inc/php/sidebar.php:17
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Wir sind «Space X-Chimp»"
|
117 |
|
118 |
+
#: inc/php/sidebar.php:38
|
119 |
msgid "About"
|
120 |
msgstr "Über"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:40
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall (post content, page content, widget, sidebar, header, footer) auf Ihrer Webseite hinzufügen."
|
125 |
|
126 |
+
#: inc/php/sidebar.php:47
|
127 |
msgid "Help"
|
128 |
msgstr "Hilfe"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:49
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
133 |
|
134 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
135 |
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."
|
136 |
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."
|
137 |
|
138 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Spende mit PayPal"
|
142 |
|
143 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Danke für Ihre Unterstützung!"
|
146 |
|
523 |
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."
|
524 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
525 |
|
526 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
527 |
msgid "Save changes"
|
528 |
msgstr "Änderungen speichern"
|
529 |
|
530 |
+
#: inc/php/tabs/settings.php:27
|
531 |
msgid "Buttons"
|
532 |
msgstr "Buttons"
|
533 |
|
534 |
+
#: inc/php/tabs/settings.php:29
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:35
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:42
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:51
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:53
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: inc/php/tabs/settings.php:78
|
559 |
msgid "Display options"
|
560 |
msgstr "Anzeigeoptionen"
|
561 |
|
562 |
+
#: inc/php/tabs/settings.php:80
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:84
|
567 |
msgid "Button size"
|
568 |
msgstr "Icon Größe"
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:85
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Geben Sie die Größe der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:89
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:92
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:93
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Geben Sie die Größe des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
585 |
|
586 |
+
#: inc/php/tabs/settings.php:98
|
587 |
msgid "Left"
|
588 |
msgstr "Links"
|
589 |
|
590 |
+
#: inc/php/tabs/settings.php:99
|
591 |
msgid "Center"
|
592 |
msgstr "Mittig"
|
593 |
|
594 |
+
#: inc/php/tabs/settings.php:100
|
595 |
msgid "Right"
|
596 |
msgstr "Rechts"
|
597 |
|
598 |
+
#: inc/php/tabs/settings.php:102
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/settings.php:103
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/settings.php:107
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/settings.php:110
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Öffne in neuem Tab"
|
613 |
|
614 |
+
#: inc/php/tabs/settings.php:111
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Links in einem neuen Tab/Fenster öffnen."
|
617 |
|
618 |
+
#: inc/php/tabs/settings.php:114
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/settings.php:117
|
623 |
msgid "Caption"
|
624 |
msgstr "Überschrift"
|
625 |
|
626 |
+
#: inc/php/tabs/settings.php:118
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
|
629 |
|
630 |
+
#: inc/php/tabs/settings.php:122
|
631 |
msgid "Tooltips"
|
632 |
msgstr "Tooltip"
|
633 |
|
634 |
+
#: inc/php/tabs/settings.php:123
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
|
637 |
|
638 |
+
#: inc/php/tabs/settings.php:126
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/settings.php:129
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "In Posts anzeigen"
|
645 |
|
646 |
+
#: inc/php/tabs/settings.php:130
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: inc/php/tabs/settings.php:133
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Auf Seiten anzeigen"
|
653 |
|
654 |
+
#: inc/php/tabs/settings.php:134
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/php/tabs/settings.php:147
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Live Vorschau"
|
661 |
|
662 |
+
#: inc/php/tabs/settings.php:149
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
665 |
|
languages/social-media-buttons-toolbar-es_ES.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -103,7 +103,7 @@ msgstr "Uso"
|
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "Preguntas ?"
|
105 |
|
106 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
107 |
msgid "Support"
|
108 |
msgstr "Soporte"
|
109 |
|
@@ -111,36 +111,36 @@ msgstr "Soporte"
|
|
111 |
msgid "Store"
|
112 |
msgstr "Tienda"
|
113 |
|
114 |
-
#: inc/php/sidebar.php:
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/sidebar.php:
|
119 |
msgid "About"
|
120 |
msgstr "Acerca de"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
125 |
|
126 |
-
#: inc/php/sidebar.php:
|
127 |
msgid "Help"
|
128 |
msgstr "Ayuda"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
133 |
|
134 |
-
#: inc/php/sidebar.php:
|
135 |
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."
|
136 |
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."
|
137 |
|
138 |
-
#: inc/php/sidebar.php:
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Donar con PayPal"
|
142 |
|
143 |
-
#: inc/php/sidebar.php:
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "¡Gracias por tu apoyo!"
|
146 |
|
@@ -523,143 +523,143 @@ msgstr "Puede hacer su pregunta en %s esta página %s."
|
|
523 |
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."
|
524 |
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."
|
525 |
|
526 |
-
#: inc/php/tabs/settings.php:
|
527 |
msgid "Save changes"
|
528 |
msgstr "Guardar cambios"
|
529 |
|
530 |
-
#: inc/php/tabs/settings.php:
|
531 |
msgid "Buttons"
|
532 |
msgstr "Botones"
|
533 |
|
534 |
-
#: inc/php/tabs/settings.php:
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Display options"
|
560 |
msgstr "Opciones de presentación"
|
561 |
|
562 |
-
#: inc/php/tabs/settings.php:
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/tabs/settings.php:
|
567 |
msgid "Button size"
|
568 |
msgstr "Tamaño de ícono"
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
|
585 |
|
586 |
-
#: inc/php/tabs/settings.php:
|
587 |
msgid "Left"
|
588 |
msgstr "Izquierda"
|
589 |
|
590 |
-
#: inc/php/tabs/settings.php:
|
591 |
msgid "Center"
|
592 |
msgstr "Centro"
|
593 |
|
594 |
-
#: inc/php/tabs/settings.php:
|
595 |
msgid "Right"
|
596 |
msgstr "Derecha"
|
597 |
|
598 |
-
#: inc/php/tabs/settings.php:
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/tabs/settings.php:
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/php/tabs/settings.php:
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/tabs/settings.php:
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Abrir en una nueva pestaña"
|
613 |
|
614 |
-
#: inc/php/tabs/settings.php:
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Abrir enlaces en una nueva pestaña/ventana."
|
617 |
|
618 |
-
#: inc/php/tabs/settings.php:
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/tabs/settings.php:
|
623 |
msgid "Caption"
|
624 |
msgstr "Leyenda"
|
625 |
|
626 |
-
#: inc/php/tabs/settings.php:
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
|
629 |
|
630 |
-
#: inc/php/tabs/settings.php:
|
631 |
msgid "Tooltips"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/php/tabs/settings.php:
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/php/tabs/settings.php:
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/tabs/settings.php:
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "Mostrar en Entradas"
|
645 |
|
646 |
-
#: inc/php/tabs/settings.php:
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/tabs/settings.php:
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Mostrar en Páginas"
|
653 |
|
654 |
-
#: inc/php/tabs/settings.php:
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/tabs/settings.php:
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Vista Previa"
|
661 |
|
662 |
-
#: inc/php/tabs/settings.php:
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Has clic en el botón \"Guardar cambios\" para actualizar esta vista previa."
|
665 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:16+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "Preguntas ?"
|
105 |
|
106 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
107 |
msgid "Support"
|
108 |
msgstr "Soporte"
|
109 |
|
111 |
msgid "Store"
|
112 |
msgstr "Tienda"
|
113 |
|
114 |
+
#: inc/php/sidebar.php:17
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/sidebar.php:38
|
119 |
msgid "About"
|
120 |
msgstr "Acerca de"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:40
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
125 |
|
126 |
+
#: inc/php/sidebar.php:47
|
127 |
msgid "Help"
|
128 |
msgstr "Ayuda"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:49
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
133 |
|
134 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
135 |
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."
|
136 |
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."
|
137 |
|
138 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Donar con PayPal"
|
142 |
|
143 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "¡Gracias por tu apoyo!"
|
146 |
|
523 |
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."
|
524 |
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."
|
525 |
|
526 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
527 |
msgid "Save changes"
|
528 |
msgstr "Guardar cambios"
|
529 |
|
530 |
+
#: inc/php/tabs/settings.php:27
|
531 |
msgid "Buttons"
|
532 |
msgstr "Botones"
|
533 |
|
534 |
+
#: inc/php/tabs/settings.php:29
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:35
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:42
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:51
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:53
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: inc/php/tabs/settings.php:78
|
559 |
msgid "Display options"
|
560 |
msgstr "Opciones de presentación"
|
561 |
|
562 |
+
#: inc/php/tabs/settings.php:80
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:84
|
567 |
msgid "Button size"
|
568 |
msgstr "Tamaño de ícono"
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:85
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:89
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:92
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:93
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
|
585 |
|
586 |
+
#: inc/php/tabs/settings.php:98
|
587 |
msgid "Left"
|
588 |
msgstr "Izquierda"
|
589 |
|
590 |
+
#: inc/php/tabs/settings.php:99
|
591 |
msgid "Center"
|
592 |
msgstr "Centro"
|
593 |
|
594 |
+
#: inc/php/tabs/settings.php:100
|
595 |
msgid "Right"
|
596 |
msgstr "Derecha"
|
597 |
|
598 |
+
#: inc/php/tabs/settings.php:102
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/settings.php:103
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/settings.php:107
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/settings.php:110
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Abrir en una nueva pestaña"
|
613 |
|
614 |
+
#: inc/php/tabs/settings.php:111
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Abrir enlaces en una nueva pestaña/ventana."
|
617 |
|
618 |
+
#: inc/php/tabs/settings.php:114
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/settings.php:117
|
623 |
msgid "Caption"
|
624 |
msgstr "Leyenda"
|
625 |
|
626 |
+
#: inc/php/tabs/settings.php:118
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
|
629 |
|
630 |
+
#: inc/php/tabs/settings.php:122
|
631 |
msgid "Tooltips"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: inc/php/tabs/settings.php:123
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: inc/php/tabs/settings.php:126
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/settings.php:129
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "Mostrar en Entradas"
|
645 |
|
646 |
+
#: inc/php/tabs/settings.php:130
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: inc/php/tabs/settings.php:133
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Mostrar en Páginas"
|
653 |
|
654 |
+
#: inc/php/tabs/settings.php:134
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/php/tabs/settings.php:147
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Vista Previa"
|
661 |
|
662 |
+
#: inc/php/tabs/settings.php:149
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Has clic en el botón \"Guardar cambios\" para actualizar esta vista previa."
|
665 |
|
languages/social-media-buttons-toolbar-fr_FR.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -102,7 +102,7 @@ msgstr "Utilisation"
|
|
102 |
msgid "F.A.Q."
|
103 |
msgstr "FAQ."
|
104 |
|
105 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
106 |
msgid "Support"
|
107 |
msgstr "Support"
|
108 |
|
@@ -110,36 +110,36 @@ msgstr "Support"
|
|
110 |
msgid "Store"
|
111 |
msgstr "Le magasin"
|
112 |
|
113 |
-
#: inc/php/sidebar.php:
|
114 |
msgid "We are «Space X-Chimp»"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/sidebar.php:
|
118 |
msgid "About"
|
119 |
msgstr "A propos"
|
120 |
|
121 |
-
#: inc/php/sidebar.php:
|
122 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc/php/sidebar.php:
|
126 |
msgid "Help"
|
127 |
msgstr "Aide"
|
128 |
|
129 |
-
#: inc/php/sidebar.php:
|
130 |
msgid "If you have a question, please read the information in the FAQ section."
|
131 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
132 |
|
133 |
-
#: inc/php/sidebar.php:
|
134 |
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."
|
135 |
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."
|
136 |
|
137 |
-
#: inc/php/sidebar.php:
|
138 |
#: inc/php/tabs/support.php:21
|
139 |
msgid "Donate with PayPal"
|
140 |
msgstr "Faire un don avec PayPal"
|
141 |
|
142 |
-
#: inc/php/sidebar.php:
|
143 |
msgid "Thanks for your support!"
|
144 |
msgstr "Merci pour votre soutien!"
|
145 |
|
@@ -522,143 +522,143 @@ msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
|
522 |
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."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Enregistrer les modifications"
|
528 |
|
529 |
-
#: inc/php/tabs/settings.php:
|
530 |
msgid "Buttons"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
msgid "Social media buttons"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
msgid "Additional buttons"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/php/tabs/settings.php:
|
550 |
msgid "Buttons URL"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc/php/tabs/settings.php:
|
554 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc/php/tabs/settings.php:
|
558 |
msgid "Display options"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/php/tabs/settings.php:
|
562 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
msgid "Button size"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
msgid "Positioning"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
msgid "Button margin"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/php/tabs/settings.php:
|
582 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/php/tabs/settings.php:
|
586 |
msgid "Left"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/php/tabs/settings.php:
|
590 |
msgid "Center"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
msgid "Right"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
msgid "Buttons bar alignment"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can choose the alignment of the entire buttons bar."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Links open method"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
msgid "Open in new tab"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Open links in a new tab/window."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Additional"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
msgid "Caption"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Tooltips"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Autoload"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
msgid "Show on Posts"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "Automatically display the buttons bar below content on Posts."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Show on Pages"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Automatically display the buttons bar below content on Pages."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Live Preview"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Click the \"Save changes\" button to update this preview."
|
663 |
msgstr "Cliquez sur le bouton \"Enregistrer les modifications\" pour mettre à jour cet aperçu."
|
664 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:16+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
102 |
msgid "F.A.Q."
|
103 |
msgstr "FAQ."
|
104 |
|
105 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
106 |
msgid "Support"
|
107 |
msgstr "Support"
|
108 |
|
110 |
msgid "Store"
|
111 |
msgstr "Le magasin"
|
112 |
|
113 |
+
#: inc/php/sidebar.php:17
|
114 |
msgid "We are «Space X-Chimp»"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/php/sidebar.php:38
|
118 |
msgid "About"
|
119 |
msgstr "A propos"
|
120 |
|
121 |
+
#: inc/php/sidebar.php:40
|
122 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/sidebar.php:47
|
126 |
msgid "Help"
|
127 |
msgstr "Aide"
|
128 |
|
129 |
+
#: inc/php/sidebar.php:49
|
130 |
msgid "If you have a question, please read the information in the FAQ section."
|
131 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
132 |
|
133 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
134 |
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."
|
135 |
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."
|
136 |
|
137 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
138 |
#: inc/php/tabs/support.php:21
|
139 |
msgid "Donate with PayPal"
|
140 |
msgstr "Faire un don avec PayPal"
|
141 |
|
142 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
143 |
msgid "Thanks for your support!"
|
144 |
msgstr "Merci pour votre soutien!"
|
145 |
|
522 |
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."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
526 |
msgid "Save changes"
|
527 |
msgstr "Enregistrer les modifications"
|
528 |
|
529 |
+
#: inc/php/tabs/settings.php:27
|
530 |
msgid "Buttons"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:29
|
534 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/php/tabs/settings.php:35
|
538 |
msgid "Social media buttons"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
542 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/php/tabs/settings.php:42
|
546 |
msgid "Additional buttons"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/php/tabs/settings.php:51
|
550 |
msgid "Buttons URL"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/php/tabs/settings.php:53
|
554 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/php/tabs/settings.php:78
|
558 |
msgid "Display options"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/php/tabs/settings.php:80
|
562 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/settings.php:84
|
566 |
msgid "Button size"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/tabs/settings.php:85
|
570 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:89
|
574 |
msgid "Positioning"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:92
|
578 |
msgid "Button margin"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:93
|
582 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:98
|
586 |
msgid "Left"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:99
|
590 |
msgid "Center"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/php/tabs/settings.php:100
|
594 |
msgid "Right"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:102
|
598 |
msgid "Buttons bar alignment"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:103
|
602 |
msgid "You can choose the alignment of the entire buttons bar."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:107
|
606 |
msgid "Links open method"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:110
|
610 |
msgid "Open in new tab"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/php/tabs/settings.php:111
|
614 |
msgid "Open links in a new tab/window."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:114
|
618 |
msgid "Additional"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:117
|
622 |
msgid "Caption"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:118
|
626 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:122
|
630 |
msgid "Tooltips"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:123
|
634 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:126
|
638 |
msgid "Autoload"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:129
|
642 |
msgid "Show on Posts"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:130
|
646 |
msgid "Automatically display the buttons bar below content on Posts."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:133
|
650 |
msgid "Show on Pages"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:134
|
654 |
msgid "Automatically display the buttons bar below content on Pages."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:147
|
658 |
msgid "Live Preview"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:149
|
662 |
msgid "Click the \"Save changes\" button to update this preview."
|
663 |
msgstr "Cliquez sur le bouton \"Enregistrer les modifications\" pour mettre à jour cet aperçu."
|
664 |
|
languages/social-media-buttons-toolbar-nl_NL.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -103,7 +103,7 @@ msgstr "Gebruik"
|
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
107 |
msgid "Support"
|
108 |
msgstr "Ondersteuning"
|
109 |
|
@@ -111,36 +111,36 @@ msgstr "Ondersteuning"
|
|
111 |
msgid "Store"
|
112 |
msgstr "Winkel"
|
113 |
|
114 |
-
#: inc/php/sidebar.php:
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Wij zijn «Space X-Chimp»"
|
117 |
|
118 |
-
#: inc/php/sidebar.php:
|
119 |
msgid "About"
|
120 |
msgstr "Over"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/sidebar.php:
|
127 |
msgid "Help"
|
128 |
msgstr "Helpen"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
133 |
|
134 |
-
#: inc/php/sidebar.php:
|
135 |
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."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/sidebar.php:
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Doneer via PayPal"
|
142 |
|
143 |
-
#: inc/php/sidebar.php:
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Bedankt voor uw steun!"
|
146 |
|
@@ -523,143 +523,143 @@ msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
|
523 |
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."
|
524 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
525 |
|
526 |
-
#: inc/php/tabs/settings.php:
|
527 |
msgid "Save changes"
|
528 |
msgstr "Wijzigingen opslaan"
|
529 |
|
530 |
-
#: inc/php/tabs/settings.php:
|
531 |
msgid "Buttons"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: inc/php/tabs/settings.php:
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Display options"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/php/tabs/settings.php:
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/tabs/settings.php:
|
567 |
msgid "Button size"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/php/tabs/settings.php:
|
587 |
msgid "Left"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/php/tabs/settings.php:
|
591 |
msgid "Center"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/php/tabs/settings.php:
|
595 |
msgid "Right"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/php/tabs/settings.php:
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/tabs/settings.php:
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/php/tabs/settings.php:
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/tabs/settings.php:
|
611 |
msgid "Open in new tab"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/php/tabs/settings.php:
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/php/tabs/settings.php:
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/tabs/settings.php:
|
623 |
msgid "Caption"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/php/tabs/settings.php:
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/tabs/settings.php:
|
631 |
msgid "Tooltips"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/php/tabs/settings.php:
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/php/tabs/settings.php:
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/tabs/settings.php:
|
643 |
msgid "Show on Posts"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/php/tabs/settings.php:
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/tabs/settings.php:
|
651 |
msgid "Show on Pages"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/php/tabs/settings.php:
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/tabs/settings.php:
|
659 |
msgid "Live Preview"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/tabs/settings.php:
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr ""
|
665 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:16+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
107 |
msgid "Support"
|
108 |
msgstr "Ondersteuning"
|
109 |
|
111 |
msgid "Store"
|
112 |
msgstr "Winkel"
|
113 |
|
114 |
+
#: inc/php/sidebar.php:17
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Wij zijn «Space X-Chimp»"
|
117 |
|
118 |
+
#: inc/php/sidebar.php:38
|
119 |
msgid "About"
|
120 |
msgstr "Over"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:40
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/sidebar.php:47
|
127 |
msgid "Help"
|
128 |
msgstr "Helpen"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:49
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
133 |
|
134 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
135 |
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."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Doneer via PayPal"
|
142 |
|
143 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Bedankt voor uw steun!"
|
146 |
|
523 |
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."
|
524 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
525 |
|
526 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
527 |
msgid "Save changes"
|
528 |
msgstr "Wijzigingen opslaan"
|
529 |
|
530 |
+
#: inc/php/tabs/settings.php:27
|
531 |
msgid "Buttons"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/php/tabs/settings.php:29
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:35
|
539 |
msgid "Social media buttons"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:42
|
547 |
msgid "Additional buttons"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:51
|
551 |
msgid "Buttons URL"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:53
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: inc/php/tabs/settings.php:78
|
559 |
msgid "Display options"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: inc/php/tabs/settings.php:80
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:84
|
567 |
msgid "Button size"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:85
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:89
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:92
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:93
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: inc/php/tabs/settings.php:98
|
587 |
msgid "Left"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc/php/tabs/settings.php:99
|
591 |
msgid "Center"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/php/tabs/settings.php:100
|
595 |
msgid "Right"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/php/tabs/settings.php:102
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/settings.php:103
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/settings.php:107
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/settings.php:110
|
611 |
msgid "Open in new tab"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/php/tabs/settings.php:111
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/php/tabs/settings.php:114
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/settings.php:117
|
623 |
msgid "Caption"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/settings.php:118
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/settings.php:122
|
631 |
msgid "Tooltips"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: inc/php/tabs/settings.php:123
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: inc/php/tabs/settings.php:126
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/settings.php:129
|
643 |
msgid "Show on Posts"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: inc/php/tabs/settings.php:130
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: inc/php/tabs/settings.php:133
|
651 |
msgid "Show on Pages"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: inc/php/tabs/settings.php:134
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/php/tabs/settings.php:147
|
659 |
msgid "Live Preview"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: inc/php/tabs/settings.php:149
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr ""
|
665 |
|
languages/social-media-buttons-toolbar-ru_RU.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -103,7 +103,7 @@ msgstr "Применение"
|
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
107 |
msgid "Support"
|
108 |
msgstr "Поддержка"
|
109 |
|
@@ -111,36 +111,36 @@ msgstr "Поддержка"
|
|
111 |
msgid "Store"
|
112 |
msgstr "Магазин"
|
113 |
|
114 |
-
#: inc/php/sidebar.php:
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Мы «Space X-Chimp»"
|
117 |
|
118 |
-
#: inc/php/sidebar.php:
|
119 |
msgid "About"
|
120 |
msgstr "О плагине"
|
121 |
|
122 |
-
#: inc/php/sidebar.php:
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Этот плагин даёт вам возможность легко добавить блок социальных медиа кнопок в любое место (post content, page content, widget, sidebar, header, footer) вашего WordPress веб-сайта."
|
125 |
|
126 |
-
#: inc/php/sidebar.php:
|
127 |
msgid "Help"
|
128 |
msgstr "Помощь"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
133 |
|
134 |
-
#: inc/php/sidebar.php:
|
135 |
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."
|
136 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
137 |
|
138 |
-
#: inc/php/sidebar.php:
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Пожертвовать через PayPal"
|
142 |
|
143 |
-
#: inc/php/sidebar.php:
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Спасибо за вашу поддержку!"
|
146 |
|
@@ -523,143 +523,143 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
|
|
523 |
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."
|
524 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
525 |
|
526 |
-
#: inc/php/tabs/settings.php:
|
527 |
msgid "Save changes"
|
528 |
msgstr "Сохранить изменения"
|
529 |
|
530 |
-
#: inc/php/tabs/settings.php:
|
531 |
msgid "Buttons"
|
532 |
msgstr "Кнопки"
|
533 |
|
534 |
-
#: inc/php/tabs/settings.php:
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr "Здесь вы можете выбрать кнопки, которые вы хотите показывать в вашей панели социальных медиа кнопок."
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
msgid "Social media buttons"
|
540 |
msgstr "Социальные медиа кнопки"
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr "Отметьте нужные кнопки, чтобы добавить их в панель социальных кнопок."
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
msgid "Additional buttons"
|
548 |
msgstr "Дополнительные кнопки"
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "Buttons URL"
|
552 |
msgstr "Ссылки кнопок"
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/php/tabs/settings.php:
|
559 |
msgid "Display options"
|
560 |
msgstr "Настройки отображения"
|
561 |
|
562 |
-
#: inc/php/tabs/settings.php:
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/tabs/settings.php:
|
567 |
msgid "Button size"
|
568 |
msgstr "Размер иконки"
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
585 |
|
586 |
-
#: inc/php/tabs/settings.php:
|
587 |
msgid "Left"
|
588 |
msgstr "Слева"
|
589 |
|
590 |
-
#: inc/php/tabs/settings.php:
|
591 |
msgid "Center"
|
592 |
msgstr "По центру"
|
593 |
|
594 |
-
#: inc/php/tabs/settings.php:
|
595 |
msgid "Right"
|
596 |
msgstr "Справа"
|
597 |
|
598 |
-
#: inc/php/tabs/settings.php:
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/tabs/settings.php:
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/php/tabs/settings.php:
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/tabs/settings.php:
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Открыть в новой вкладке"
|
613 |
|
614 |
-
#: inc/php/tabs/settings.php:
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Открывать ссылки в новом окне/вкладке."
|
617 |
|
618 |
-
#: inc/php/tabs/settings.php:
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/tabs/settings.php:
|
623 |
msgid "Caption"
|
624 |
msgstr "Заголовок"
|
625 |
|
626 |
-
#: inc/php/tabs/settings.php:
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
|
629 |
|
630 |
-
#: inc/php/tabs/settings.php:
|
631 |
msgid "Tooltips"
|
632 |
msgstr "Подсказки"
|
633 |
|
634 |
-
#: inc/php/tabs/settings.php:
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr "Включить всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
637 |
|
638 |
-
#: inc/php/tabs/settings.php:
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/tabs/settings.php:
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "Показывать в записях"
|
645 |
|
646 |
-
#: inc/php/tabs/settings.php:
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/tabs/settings.php:
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Показывать на страницах"
|
653 |
|
654 |
-
#: inc/php/tabs/settings.php:
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/tabs/settings.php:
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Просмотр в реальном времени"
|
661 |
|
662 |
-
#: inc/php/tabs/settings.php:
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
665 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-31 16:16+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
103 |
msgid "F.A.Q."
|
104 |
msgstr "F.A.Q."
|
105 |
|
106 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
107 |
msgid "Support"
|
108 |
msgstr "Поддержка"
|
109 |
|
111 |
msgid "Store"
|
112 |
msgstr "Магазин"
|
113 |
|
114 |
+
#: inc/php/sidebar.php:17
|
115 |
msgid "We are «Space X-Chimp»"
|
116 |
msgstr "Мы «Space X-Chimp»"
|
117 |
|
118 |
+
#: inc/php/sidebar.php:38
|
119 |
msgid "About"
|
120 |
msgstr "О плагине"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:40
|
123 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
124 |
msgstr "Этот плагин даёт вам возможность легко добавить блок социальных медиа кнопок в любое место (post content, page content, widget, sidebar, header, footer) вашего WordPress веб-сайта."
|
125 |
|
126 |
+
#: inc/php/sidebar.php:47
|
127 |
msgid "Help"
|
128 |
msgstr "Помощь"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:49
|
131 |
msgid "If you have a question, please read the information in the FAQ section."
|
132 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
133 |
|
134 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
135 |
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."
|
136 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
137 |
|
138 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
139 |
#: inc/php/tabs/support.php:21
|
140 |
msgid "Donate with PayPal"
|
141 |
msgstr "Пожертвовать через PayPal"
|
142 |
|
143 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
144 |
msgid "Thanks for your support!"
|
145 |
msgstr "Спасибо за вашу поддержку!"
|
146 |
|
523 |
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."
|
524 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
525 |
|
526 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
527 |
msgid "Save changes"
|
528 |
msgstr "Сохранить изменения"
|
529 |
|
530 |
+
#: inc/php/tabs/settings.php:27
|
531 |
msgid "Buttons"
|
532 |
msgstr "Кнопки"
|
533 |
|
534 |
+
#: inc/php/tabs/settings.php:29
|
535 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
536 |
msgstr "Здесь вы можете выбрать кнопки, которые вы хотите показывать в вашей панели социальных медиа кнопок."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:35
|
539 |
msgid "Social media buttons"
|
540 |
msgstr "Социальные медиа кнопки"
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
543 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
544 |
msgstr "Отметьте нужные кнопки, чтобы добавить их в панель социальных кнопок."
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:42
|
547 |
msgid "Additional buttons"
|
548 |
msgstr "Дополнительные кнопки"
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:51
|
551 |
msgid "Buttons URL"
|
552 |
msgstr "Ссылки кнопок"
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:53
|
555 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: inc/php/tabs/settings.php:78
|
559 |
msgid "Display options"
|
560 |
msgstr "Настройки отображения"
|
561 |
|
562 |
+
#: inc/php/tabs/settings.php:80
|
563 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:84
|
567 |
msgid "Button size"
|
568 |
msgstr "Размер иконки"
|
569 |
|
570 |
+
#: inc/php/tabs/settings.php:85
|
571 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
572 |
msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:89
|
575 |
msgid "Positioning"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:92
|
579 |
msgid "Button margin"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:93
|
583 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
584 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
585 |
|
586 |
+
#: inc/php/tabs/settings.php:98
|
587 |
msgid "Left"
|
588 |
msgstr "Слева"
|
589 |
|
590 |
+
#: inc/php/tabs/settings.php:99
|
591 |
msgid "Center"
|
592 |
msgstr "По центру"
|
593 |
|
594 |
+
#: inc/php/tabs/settings.php:100
|
595 |
msgid "Right"
|
596 |
msgstr "Справа"
|
597 |
|
598 |
+
#: inc/php/tabs/settings.php:102
|
599 |
msgid "Buttons bar alignment"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/settings.php:103
|
603 |
msgid "You can choose the alignment of the entire buttons bar."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/settings.php:107
|
607 |
msgid "Links open method"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/settings.php:110
|
611 |
msgid "Open in new tab"
|
612 |
msgstr "Открыть в новой вкладке"
|
613 |
|
614 |
+
#: inc/php/tabs/settings.php:111
|
615 |
msgid "Open links in a new tab/window."
|
616 |
msgstr "Открывать ссылки в новом окне/вкладке."
|
617 |
|
618 |
+
#: inc/php/tabs/settings.php:114
|
619 |
msgid "Additional"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/settings.php:117
|
623 |
msgid "Caption"
|
624 |
msgstr "Заголовок"
|
625 |
|
626 |
+
#: inc/php/tabs/settings.php:118
|
627 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
628 |
msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
|
629 |
|
630 |
+
#: inc/php/tabs/settings.php:122
|
631 |
msgid "Tooltips"
|
632 |
msgstr "Подсказки"
|
633 |
|
634 |
+
#: inc/php/tabs/settings.php:123
|
635 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
636 |
msgstr "Включить всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
637 |
|
638 |
+
#: inc/php/tabs/settings.php:126
|
639 |
msgid "Autoload"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/settings.php:129
|
643 |
msgid "Show on Posts"
|
644 |
msgstr "Показывать в записях"
|
645 |
|
646 |
+
#: inc/php/tabs/settings.php:130
|
647 |
msgid "Automatically display the buttons bar below content on Posts."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: inc/php/tabs/settings.php:133
|
651 |
msgid "Show on Pages"
|
652 |
msgstr "Показывать на страницах"
|
653 |
|
654 |
+
#: inc/php/tabs/settings.php:134
|
655 |
msgid "Automatically display the buttons bar below content on Pages."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/php/tabs/settings.php:147
|
659 |
msgid "Live Preview"
|
660 |
msgstr "Просмотр в реальном времени"
|
661 |
|
662 |
+
#: inc/php/tabs/settings.php:149
|
663 |
msgid "Click the \"Save changes\" button to update this preview."
|
664 |
msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
665 |
|
languages/social-media-buttons-toolbar.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -101,7 +101,7 @@ msgstr ""
|
|
101 |
msgid "F.A.Q."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:
|
105 |
msgid "Support"
|
106 |
msgstr ""
|
107 |
|
@@ -109,36 +109,36 @@ msgstr ""
|
|
109 |
msgid "Store"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/php/sidebar.php:
|
113 |
msgid "We are «Space X-Chimp»"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/php/sidebar.php:
|
117 |
msgid "About"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/sidebar.php:
|
121 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/php/sidebar.php:
|
125 |
msgid "Help"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/sidebar.php:
|
129 |
msgid "If you have a question, please read the information in the FAQ section."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/sidebar.php:
|
133 |
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."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/sidebar.php:
|
137 |
#: inc/php/tabs/support.php:21
|
138 |
msgid "Donate with PayPal"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: inc/php/sidebar.php:
|
142 |
msgid "Thanks for your support!"
|
143 |
msgstr ""
|
144 |
|
@@ -521,143 +521,143 @@ msgstr ""
|
|
521 |
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."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/tabs/settings.php:
|
525 |
msgid "Save changes"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: inc/php/tabs/settings.php:
|
529 |
msgid "Buttons"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: inc/php/tabs/settings.php:
|
533 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc/php/tabs/settings.php:
|
537 |
msgid "Social media buttons"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc/php/tabs/settings.php:
|
541 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: inc/php/tabs/settings.php:
|
545 |
msgid "Additional buttons"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: inc/php/tabs/settings.php:
|
549 |
msgid "Buttons URL"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: inc/php/tabs/settings.php:
|
553 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: inc/php/tabs/settings.php:
|
557 |
msgid "Display options"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
565 |
msgid "Button size"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
msgid "Positioning"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
msgid "Button margin"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
msgid "Left"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/tabs/settings.php:
|
589 |
msgid "Center"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/tabs/settings.php:
|
593 |
msgid "Right"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/tabs/settings.php:
|
597 |
msgid "Buttons bar alignment"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: inc/php/tabs/settings.php:
|
601 |
msgid "You can choose the alignment of the entire buttons bar."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/tabs/settings.php:
|
605 |
msgid "Links open method"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/tabs/settings.php:
|
609 |
msgid "Open in new tab"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: inc/php/tabs/settings.php:
|
613 |
msgid "Open links in a new tab/window."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/tabs/settings.php:
|
617 |
msgid "Additional"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/tabs/settings.php:
|
621 |
msgid "Caption"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/tabs/settings.php:
|
625 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/tabs/settings.php:
|
629 |
msgid "Tooltips"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: inc/php/tabs/settings.php:
|
633 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: inc/php/tabs/settings.php:
|
637 |
msgid "Autoload"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: inc/php/tabs/settings.php:
|
641 |
msgid "Show on Posts"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/tabs/settings.php:
|
645 |
msgid "Automatically display the buttons bar below content on Posts."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/tabs/settings.php:
|
649 |
msgid "Show on Pages"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: inc/php/tabs/settings.php:
|
653 |
msgid "Automatically display the buttons bar below content on Pages."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: inc/php/tabs/settings.php:
|
657 |
msgid "Live Preview"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/php/tabs/settings.php:
|
661 |
msgid "Click the \"Save changes\" button to update this preview."
|
662 |
msgstr ""
|
663 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-03-31 16:16+0300\n"
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
101 |
msgid "F.A.Q."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:157
|
105 |
msgid "Support"
|
106 |
msgstr ""
|
107 |
|
109 |
msgid "Store"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/php/sidebar.php:17
|
113 |
msgid "We are «Space X-Chimp»"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/php/sidebar.php:38
|
117 |
msgid "About"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/sidebar.php:40
|
121 |
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/php/sidebar.php:47
|
125 |
msgid "Help"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/sidebar.php:49
|
129 |
msgid "If you have a question, please read the information in the FAQ section."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:159
|
133 |
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."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:164
|
137 |
#: inc/php/tabs/support.php:21
|
138 |
msgid "Donate with PayPal"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:166
|
142 |
msgid "Thanks for your support!"
|
143 |
msgstr ""
|
144 |
|
521 |
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."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: inc/php/tabs/settings.php:22 inc/php/tabs/settings.php:142
|
525 |
msgid "Save changes"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: inc/php/tabs/settings.php:27
|
529 |
msgid "Buttons"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/php/tabs/settings.php:29
|
533 |
msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/tabs/settings.php:35
|
537 |
msgid "Social media buttons"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/settings.php:36 inc/php/tabs/settings.php:43
|
541 |
msgid "Mark the desired buttons to add it to your social media follow buttons bar."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/tabs/settings.php:42
|
545 |
msgid "Additional buttons"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/tabs/settings.php:51
|
549 |
msgid "Buttons URL"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/php/tabs/settings.php:53
|
553 |
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/php/tabs/settings.php:78
|
557 |
msgid "Display options"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: inc/php/tabs/settings.php:80
|
561 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:84
|
565 |
msgid "Button size"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:85
|
569 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:89
|
573 |
msgid "Positioning"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:92
|
577 |
msgid "Button margin"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:93
|
581 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:98
|
585 |
msgid "Left"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: inc/php/tabs/settings.php:99
|
589 |
msgid "Center"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: inc/php/tabs/settings.php:100
|
593 |
msgid "Right"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: inc/php/tabs/settings.php:102
|
597 |
msgid "Buttons bar alignment"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/settings.php:103
|
601 |
msgid "You can choose the alignment of the entire buttons bar."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: inc/php/tabs/settings.php:107
|
605 |
msgid "Links open method"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: inc/php/tabs/settings.php:110
|
609 |
msgid "Open in new tab"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: inc/php/tabs/settings.php:111
|
613 |
msgid "Open links in a new tab/window."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: inc/php/tabs/settings.php:114
|
617 |
msgid "Additional"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: inc/php/tabs/settings.php:117
|
621 |
msgid "Caption"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: inc/php/tabs/settings.php:118
|
625 |
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/settings.php:122
|
629 |
msgid "Tooltips"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/php/tabs/settings.php:123
|
633 |
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: inc/php/tabs/settings.php:126
|
637 |
msgid "Autoload"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: inc/php/tabs/settings.php:129
|
641 |
msgid "Show on Posts"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/settings.php:130
|
645 |
msgid "Automatically display the buttons bar below content on Posts."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc/php/tabs/settings.php:133
|
649 |
msgid "Show on Pages"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: inc/php/tabs/settings.php:134
|
653 |
msgid "Automatically display the buttons bar below content on Pages."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: inc/php/tabs/settings.php:147
|
657 |
msgid "Live Preview"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: inc/php/tabs/settings.php:149
|
661 |
msgid "Click the \"Save changes\" button to update this preview."
|
662 |
msgstr ""
|
663 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
|
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -310,7 +310,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
310 |
|
311 |
== Changelog ==
|
312 |
|
313 |
-
= 4.
|
|
|
|
|
|
|
|
|
|
|
314 |
* Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
|
315 |
* Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
|
316 |
* Framework updated: The function "_plugin_row_meta" is improved.
|
@@ -318,25 +323,25 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
318 |
* Framework updated: Code commenting improved.
|
319 |
* Framework updated: All translation files are updated.
|
320 |
|
321 |
-
= 4.51 -
|
322 |
* Improvement: Notification display system updated
|
323 |
* Code commenting improved.
|
324 |
* Style sheet for the back end is optimised.
|
325 |
|
326 |
-
= 4.50 - 2019
|
327 |
* Improved compatibility with third-party themes.
|
328 |
|
329 |
-
= 4.49 - 2019
|
330 |
* Improved compatibility with third-party themes.
|
331 |
|
332 |
-
= 4.48 - 2019
|
333 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
334 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
335 |
|
336 |
-
= 4.47 -
|
337 |
* Added French translation. (Thanks to Hervé Bouzin)
|
338 |
|
339 |
-
= 4.46 =
|
340 |
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
341 |
* Content of the "F.A.Q." section updated.
|
342 |
* Some texts are corrected or replaced with new ones.
|
@@ -346,7 +351,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
346 |
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
347 |
* The "humans.txt" file updated.
|
348 |
|
349 |
-
= 4.45 =
|
350 |
* Added information about the PRO version of the plugin.
|
351 |
* Options on the settings page are resorted.
|
352 |
* Options on the settings page are renamed.
|
@@ -366,7 +371,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
366 |
* The copyright date updated.
|
367 |
* Translation files are updated.
|
368 |
|
369 |
-
= 4.44 =
|
370 |
* Improvement: Design of the plugin settings page is improved.
|
371 |
* Improved code to reset CSS styles to "default" for the buttons bar elements.
|
372 |
* Fix: The "blank" value of the "target" attribute in the links of social media buttons are replaced with "_blank" value.
|
@@ -374,19 +379,19 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
374 |
* Some texts are updated.
|
375 |
* Translation files are updated.
|
376 |
|
377 |
-
= 4.43 =
|
378 |
* Improvement: Design of the plugin settings page is improved.
|
379 |
* Content of the "Usage Instructions" section updated.
|
380 |
* Translation files are updated.
|
381 |
|
382 |
-
= 4.42 =
|
383 |
* Improved code to reset CSS styles to "default" for the buttons bar elements.
|
384 |
* Code commenting improved.
|
385 |
* CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
|
386 |
* Some texts are updated.
|
387 |
* Translation files are updated.
|
388 |
|
389 |
-
= 4.41 =
|
390 |
* Some texts are updated.
|
391 |
* Translation files are updated.
|
392 |
* The translation into Russian has been corrected.
|
@@ -394,7 +399,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
394 |
* The translation into German has been corrected.
|
395 |
* The translation into Spanish has been corrected.
|
396 |
|
397 |
-
= 4.40 =
|
398 |
* Dutch translation added. (Thanks to Peter Leenders)
|
399 |
* The code block that adds dynamic CSS is moved to a separate function '_load_scripts_dynamic_css' within the 'enqueue.php' file.
|
400 |
* The function '_load_scripts_base' is deleted due to uselessness.
|
@@ -404,19 +409,19 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
404 |
* Some texts are updated.
|
405 |
* All translation files are updated.
|
406 |
|
407 |
-
= 4.39 =
|
408 |
* The extra mention of the constant '_SLUG' is removed from the file 'enqueue.php'.
|
409 |
* All translation files are updated.
|
410 |
|
411 |
-
= 4.38 =
|
412 |
* Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
|
413 |
* The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
|
414 |
* The function '_tollbar()' is updated.
|
415 |
|
416 |
-
= 4.37 =
|
417 |
* Fixed a bug due to which the links in buttons are disappeared.
|
418 |
|
419 |
-
= 4.36 =
|
420 |
* The plugin became much faster due to the decrease in the number of requests to the database.
|
421 |
* A new option is added to the plugin settings page, allowing the user to select the desired buttons.
|
422 |
* Added a new control function '_control_checkbox()'. Added CSS code (in the file 'admin.css') for this control. Added JS code (in the file 'admin.js') for this control.
|
@@ -428,14 +433,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
428 |
* The old upgrade function '_upgrade_4_10()' is removed due to uselessness.
|
429 |
* Some texts are corrected.
|
430 |
|
431 |
-
= 4.35 =
|
432 |
* Added new constant "_FILE".
|
433 |
* Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
|
434 |
|
435 |
-
= 4.34 =
|
436 |
* Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
|
437 |
|
438 |
-
= 4.33 =
|
439 |
* The 'list.php' file replaced with the 'items.php'.
|
440 |
* Added callback function for getting a list of all buttons.
|
441 |
* The 'smbt-social-icons' CSS class renamed to 'sxc-follow-buttons'.
|
@@ -443,25 +448,25 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
443 |
* CSS code in the file 'frontend.css' is optimized.
|
444 |
* The '_tollbar()' function is improved.
|
445 |
|
446 |
-
= 4.32 =
|
447 |
* Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
|
448 |
* Fixed information stored in the header of the translation files.
|
449 |
* Translation files updated.
|
450 |
|
451 |
-
= 4.31 =
|
452 |
* Some texts updated, and typos corrected.
|
453 |
* All translation files updated.
|
454 |
* The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
|
455 |
* The "humans.txt" file updated.
|
456 |
|
457 |
-
= 4.30 =
|
458 |
* Added option for the Untappd.
|
459 |
* Added option for the TuneIn.
|
460 |
* Added option for the iHeart.
|
461 |
* Added option for the BlackBerry World.
|
462 |
* Added option for the Livestream.
|
463 |
|
464 |
-
= 4.29 =
|
465 |
* Added option for the Strava.
|
466 |
* Added option for the Stitcher.
|
467 |
* Added option for the WeChat.
|
@@ -469,24 +474,24 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
469 |
* Added option for the about.me.
|
470 |
* Added option for the Facebook Group.
|
471 |
|
472 |
-
= 4.28 =
|
473 |
* Added option for the FeedsFloor.
|
474 |
|
475 |
-
= 4.27 =
|
476 |
* Texts updated.
|
477 |
* The year in the copyright text is updated.
|
478 |
* The sidebar items are rearranged.
|
479 |
* Translation files updated.
|
480 |
|
481 |
-
= 4.26 =
|
482 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
483 |
* CSS code improved.
|
484 |
|
485 |
-
= 4.25 =
|
486 |
* German translation added. (Thanks to Michael)
|
487 |
* Fixed an issue where the "Hello" message could not be hidden.
|
488 |
|
489 |
-
= 4.24 =
|
490 |
* Added option for the Daily Paintworks.
|
491 |
* Added option for the Bitbucket.
|
492 |
* Added option for the Gab.
|
@@ -495,17 +500,17 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
495 |
* Fixed an issue because of which the line was displayed behind of the buttons.
|
496 |
* Spanish translation updated. (Thanks to Patricio Toledo)
|
497 |
|
498 |
-
= 4.23 =
|
499 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
500 |
|
501 |
-
= 4.22 =
|
502 |
* Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
|
503 |
* Added branded footer text on the plugin's settings page.
|
504 |
|
505 |
-
= 4.21 =
|
506 |
* The hard coded HTML radio options are replaced with the PHP function that dynamically creates radio.
|
507 |
|
508 |
-
= 4.20 =
|
509 |
* Added the top level menu item of the brand.
|
510 |
* The submenu item of the plugin has moved to the menu item of the brand.
|
511 |
* The menu item of the plugin is renamed.
|
@@ -515,10 +520,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
515 |
* The "Support" tab renamed to the "Support Me".
|
516 |
* The "Usage" tab renamed to the "Usage Instructions".
|
517 |
|
518 |
-
= 4.19 =
|
519 |
* Plugin data that saved in the database upgraded to version 0001.
|
520 |
|
521 |
-
= 4.18 =
|
522 |
* Added Spanish translation. (Thanks Patricio Toledo)
|
523 |
* Function that render controls on the settings page is moved to a separate file 'controls.php'.
|
524 |
* The '_setting' function divided into two functions: '_control_field' and '_control_switch'.
|
@@ -545,7 +550,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
545 |
* Added option for the Wattpad.
|
546 |
* Added option for the The Knot.
|
547 |
|
548 |
-
= 4.17 =
|
549 |
* Added option for the ASKfm.
|
550 |
* Added option for the eBay.
|
551 |
* Added option for the Hangouts.
|
@@ -555,7 +560,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
555 |
* Added option for the ArtStack.
|
556 |
* Mastodon icon updated with brand new logo.
|
557 |
|
558 |
-
= 4.16 =
|
559 |
* Russian translation updated. (Thanks to Milena Kiseleva)
|
560 |
* The navigation of the tabs is rearranged.
|
561 |
* Fixed an issue due to which the sidebar was not hiding on mobile devices.
|
@@ -565,7 +570,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
565 |
* Banner moved from external source to plugin folder.
|
566 |
* Code of PayPal button updated.
|
567 |
|
568 |
-
= 4.15 =
|
569 |
* Preview section on the settings page changed to live preview.
|
570 |
* Stylesheet in the admin.css file improved.
|
571 |
* The '!important' declarations in the admin.css file removed.
|
@@ -576,7 +581,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
576 |
* The 'Family' page tab renamed to 'Store'.
|
577 |
* Added ad banner of my store website.
|
578 |
|
579 |
-
= 4.14 =
|
580 |
* Added option for the Google Play.
|
581 |
* Added option for the itch.
|
582 |
* Added option for the Mastodon.
|
@@ -585,21 +590,21 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
585 |
* Added option for the VSCO.
|
586 |
* Added additional CSS reset rules.
|
587 |
|
588 |
-
= 4.13 =
|
589 |
* Added option for the Hireology.
|
590 |
* Added option for the Kompoz.
|
591 |
* Added option for the SoundBlend.
|
592 |
|
593 |
-
= 4.12.1 =
|
594 |
* The HTTPS mixed content issue fixed by changing all links to HTTPS.
|
595 |
|
596 |
-
= 4.12 =
|
597 |
* Added option for the Behance.
|
598 |
* Added option for the Polyvore.
|
599 |
* Added option for the Yellow Pages.
|
600 |
* Content of the "FAQ" section updated.
|
601 |
|
602 |
-
= 4.11 =
|
603 |
* Added option for the iTunes social media.
|
604 |
* Added option for the Apple Music social media.
|
605 |
* Added option for the Medium social media.
|
@@ -610,7 +615,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
610 |
* Content of the "Usage" tab updated.
|
611 |
* Content of the "FAQ" tab updated.
|
612 |
|
613 |
-
= 4.10 =
|
614 |
* The Beam icon and name replaced with rebranded.
|
615 |
* Added option for the telephone button.
|
616 |
* To the plugin settings page added information about the plugin version number.
|
@@ -619,16 +624,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
619 |
* The "versioning.php" file updated to new version.
|
620 |
* The "_plugin_version_number" function renamed to the "_versioning".
|
621 |
|
622 |
-
= 4.9 =
|
623 |
* Added option for the StumbleUpon social network.
|
624 |
* Added option for the Bloglovin social network.
|
625 |
* Added option for the WhatsApp social network.
|
626 |
* Added option for the LINE social network.
|
627 |
|
628 |
-
= 4.8 =
|
629 |
* Added option for the Plug.dj social network.
|
630 |
|
631 |
-
= 4.7 =
|
632 |
* Compatibility with PHP version 5.2 improved.
|
633 |
* PHP shorthands improved.
|
634 |
* Added function for generating the plugin constants.
|
@@ -637,10 +642,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
637 |
* The "_plugin_version_number" function improved.
|
638 |
* Added file "upgrade.php" for future upgrades.
|
639 |
|
640 |
-
= 4.6.1 =
|
641 |
* Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
|
642 |
|
643 |
-
= 4.6 =
|
644 |
* Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
|
645 |
* Value of the "_VERSION" constant replaced with information from the plugin header data.
|
646 |
* All references to the plugin name, slug, prefix are replaced with constants.
|
@@ -648,25 +653,25 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
648 |
* The "_load_scripts_base" function improved.
|
649 |
* The "name" attribute removed from the "form" tag.
|
650 |
|
651 |
-
= 4.5 =
|
652 |
* Added option for the Buzzsprout social network.
|
653 |
* Added option for the Periscope social network.
|
654 |
* F.A.Q. section updated.
|
655 |
* Code formatting improved.
|
656 |
|
657 |
-
= 4.4 =
|
658 |
* Added option for the Flickr social network.
|
659 |
* Code formatting improved.
|
660 |
* Extra JS code for Bootstrap tooltips removed from the "admin.js" file.
|
661 |
* Added ID to every field on the settings page.
|
662 |
|
663 |
-
= 4.3.1 =
|
664 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
665 |
|
666 |
-
= 4.3 =
|
667 |
* Added option for the Diaspora social network.
|
668 |
|
669 |
-
= 4.2 =
|
670 |
* The design of the plugin settings page is completely redone.
|
671 |
* Added option for the Beam.pro button.
|
672 |
* Added option for the Amazon button.
|
@@ -701,10 +706,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
701 |
* The POT file updated.
|
702 |
* Translations updated.
|
703 |
|
704 |
-
= 4.1 =
|
705 |
* Added option for the Bandcamp button.
|
706 |
|
707 |
-
= 4.0 =
|
708 |
* Plugin name changed from "Social Media Buttons Toolbar" to "Social Media Follow Buttons Bar".
|
709 |
* The name of the menu item changed from "Social Buttons" to "Social Media Follow Buttons".
|
710 |
* My Unicode signature added to the main file.
|
@@ -725,77 +730,77 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
725 |
* The POT file updated.
|
726 |
* Translations updated.
|
727 |
|
728 |
-
= 3.14 =
|
729 |
* Added option for the Meetup button.
|
730 |
* Added option for the Bootstrap Tooltips.
|
731 |
* The position of the buttons relative to each other has improved. The "Margin right" option renamed to "Margin".
|
732 |
|
733 |
-
= 3.13 =
|
734 |
* Added option for the Yelp button.
|
735 |
|
736 |
-
= 3.12 =
|
737 |
* Added option for the Goodreads button.
|
738 |
* Social media icons more optimized. Weight is reduced by 50%.
|
739 |
* Links on the settings page cleared from http and https.
|
740 |
* Added additional donate link on the plugin settings page.
|
741 |
|
742 |
-
= 3.11 =
|
743 |
* Added option for the Steam button.
|
744 |
* Added option for the Discord button.
|
745 |
|
746 |
-
= 3.10 =
|
747 |
* Added option for the Twitch button.
|
748 |
|
749 |
-
= 3.9 =
|
750 |
* Added option for the Dloky button.
|
751 |
* Image of the donate button changed.
|
752 |
|
753 |
-
= 3.8.2 =
|
754 |
* Added some CSS code in order to fix compatibility issues with some themes.
|
755 |
|
756 |
-
= 3.8.1 =
|
757 |
* Added "!important" declarations to stylesheet in order to fix compatibility issues with some themes.
|
758 |
* Fixed the wrong constant name error.
|
759 |
* Readme for translations updated.
|
760 |
|
761 |
-
= 3.8 =
|
762 |
* Added option for the IMDb button.
|
763 |
* Added CSS fix for compatibility with some themes.
|
764 |
|
765 |
-
= 3.7 =
|
766 |
* Added option for the Vimeo button.
|
767 |
* Translations updated.
|
768 |
* Ad banner replaced with new.
|
769 |
|
770 |
-
= 3.6 =
|
771 |
* Added option for the Snapchat button.
|
772 |
|
773 |
-
= 3.5 =
|
774 |
* Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
775 |
|
776 |
-
= 3.4 =
|
777 |
* Added option for the SoundCloud button.
|
778 |
* Added option for the Spotify button.
|
779 |
* Improved examples in the fields on the settings page.
|
780 |
* POT file updated.
|
781 |
* Russian translation updated.
|
782 |
|
783 |
-
= 3.3 =
|
784 |
* Added option to adjust the alignment of toolbar.
|
785 |
* Added the Readme.txt file for translation contribution.
|
786 |
* Added global constant for plugin text-domain.
|
787 |
|
788 |
-
= 3.2 =
|
789 |
* Added option for the Skype button.
|
790 |
* Ready for translation improved.
|
791 |
* Texts on settings page improved.
|
792 |
* Russian translation improved.
|
793 |
|
794 |
-
= 3.1 =
|
795 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
796 |
* Added constant for storing the plugin version number.
|
797 |
|
798 |
-
= 3.0 =
|
799 |
* The structure of files changed.
|
800 |
* Style sheet of settings page improved and better commented.
|
801 |
* Style sheet of settings page optimized for mobile devices.
|
@@ -803,7 +808,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
803 |
* Added JavaScript function of automatic remove the "successful" message after 3 seconds.
|
804 |
* Checkboxes replaced with cool triggers by using Bootstrap framework and Bootstrap-checkbox component.
|
805 |
|
806 |
-
= 2.3.1 =
|
807 |
* POT file updated.
|
808 |
* Russian translation updated.
|
809 |
* Image "thanks.png" removed.
|
@@ -811,21 +816,21 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
811 |
* Added the subject with plugin name to email address on settings page.
|
812 |
* Function "smbtoolbar_enqueue_scripts" renamed to "smbtoolbar_load_scripts".
|
813 |
|
814 |
-
= 2.3 =
|
815 |
* Added Telegram button.
|
816 |
|
817 |
-
= 2.2.1 =
|
818 |
* Added the `!important` flag to the display property of `<a>` element.
|
819 |
|
820 |
-
= 2.2 =
|
821 |
* Added MeetVibe button.
|
822 |
* Fixed the display property of `<li>` and `<a>` elements.
|
823 |
* Fixed the issue with border that sometimes appeared at bottom of an icons.
|
824 |
|
825 |
-
= 2.1 =
|
826 |
* Added Reddit button.
|
827 |
|
828 |
-
= 2.0 =
|
829 |
* Some changes in design of settings page.
|
830 |
* Constants variables added.
|
831 |
* Text domain changed to "social-media-buttons-toolbar".
|
@@ -837,10 +842,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
837 |
* `.pot` file updated.
|
838 |
* Russian translation updated.
|
839 |
|
840 |
-
= 1.5 =
|
841 |
* Fixed: `Notice: Undefined index: new_tab in .../social-media-buttons-toolbar.php on line 240`.
|
842 |
|
843 |
-
= 1.4 =
|
844 |
* Added 6 new buttons (LiveJournal, Pinterest, Tumblr, VKontakte, Odnoklassniki, Personal website).
|
845 |
* Fixed: "Use of undefined constant media".
|
846 |
* Plugin URI changed to GitHub repository.
|
@@ -850,26 +855,26 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
850 |
* `.pot` file updated.
|
851 |
* Russian translation updated.
|
852 |
|
853 |
-
= 1.3 =
|
854 |
* Some changes in design of settings page.
|
855 |
* On settings page added section "Using" with the using details. (Thanks Hubert O'Brien)
|
856 |
|
857 |
-
= 1.2 =
|
858 |
* Fixed the compatibility issue with some themes. The issue was caused by not a unique class names in the html tags.
|
859 |
* The default caption now is empty. The text "Follow me on social media:" is removed.
|
860 |
* Removed extra settings update message.
|
861 |
* The thanks.png image replaced.
|
862 |
|
863 |
-
= 1.1 =
|
864 |
* Authors URI changed.
|
865 |
* Icons updated.
|
866 |
|
867 |
-
= 1.0 =
|
868 |
* Initial release.
|
869 |
* Added ready for translation (`.pot` file included).
|
870 |
* Added Russian translation.
|
871 |
|
872 |
-
= 0.3 =
|
873 |
* Release candidate.
|
874 |
|
875 |
= 0.2 =
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 4.53
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
310 |
|
311 |
== Changelog ==
|
312 |
|
313 |
+
= 4.53 - Mar 31, 2019 =
|
314 |
+
* Framework updated: Code formatting improved.
|
315 |
+
* Framework updated: Code commenting improved.
|
316 |
+
* Framework updated: The change log design is improved.
|
317 |
+
|
318 |
+
= 4.52 - Mar 24, 2019 =
|
319 |
* Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
|
320 |
* Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
|
321 |
* Framework updated: The function "_plugin_row_meta" is improved.
|
323 |
* Framework updated: Code commenting improved.
|
324 |
* Framework updated: All translation files are updated.
|
325 |
|
326 |
+
= 4.51 - Mar 18, 2019 =
|
327 |
* Improvement: Notification display system updated
|
328 |
* Code commenting improved.
|
329 |
* Style sheet for the back end is optimised.
|
330 |
|
331 |
+
= 4.50 - Mar 4, 2019 =
|
332 |
* Improved compatibility with third-party themes.
|
333 |
|
334 |
+
= 4.49 - Mar 3, 2019 =
|
335 |
* Improved compatibility with third-party themes.
|
336 |
|
337 |
+
= 4.48 - Mar 1, 2019 =
|
338 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
339 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
340 |
|
341 |
+
= 4.47 - Feb 24, 2019 =
|
342 |
* Added French translation. (Thanks to Hervé Bouzin)
|
343 |
|
344 |
+
= 4.46 - Feb 21, 2019 =
|
345 |
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
346 |
* Content of the "F.A.Q." section updated.
|
347 |
* Some texts are corrected or replaced with new ones.
|
351 |
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
352 |
* The "humans.txt" file updated.
|
353 |
|
354 |
+
= 4.45 - Jan 11, 2019 =
|
355 |
* Added information about the PRO version of the plugin.
|
356 |
* Options on the settings page are resorted.
|
357 |
* Options on the settings page are renamed.
|
371 |
* The copyright date updated.
|
372 |
* Translation files are updated.
|
373 |
|
374 |
+
= 4.44 - Nov 2, 2018 =
|
375 |
* Improvement: Design of the plugin settings page is improved.
|
376 |
* Improved code to reset CSS styles to "default" for the buttons bar elements.
|
377 |
* Fix: The "blank" value of the "target" attribute in the links of social media buttons are replaced with "_blank" value.
|
379 |
* Some texts are updated.
|
380 |
* Translation files are updated.
|
381 |
|
382 |
+
= 4.43 - Oct 23, 2018 =
|
383 |
* Improvement: Design of the plugin settings page is improved.
|
384 |
* Content of the "Usage Instructions" section updated.
|
385 |
* Translation files are updated.
|
386 |
|
387 |
+
= 4.42 - Sep 26, 2018 =
|
388 |
* Improved code to reset CSS styles to "default" for the buttons bar elements.
|
389 |
* Code commenting improved.
|
390 |
* CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
|
391 |
* Some texts are updated.
|
392 |
* Translation files are updated.
|
393 |
|
394 |
+
= 4.41 - Aug 7, 2018 =
|
395 |
* Some texts are updated.
|
396 |
* Translation files are updated.
|
397 |
* The translation into Russian has been corrected.
|
399 |
* The translation into German has been corrected.
|
400 |
* The translation into Spanish has been corrected.
|
401 |
|
402 |
+
= 4.40 - Jul 24, 2018 =
|
403 |
* Dutch translation added. (Thanks to Peter Leenders)
|
404 |
* The code block that adds dynamic CSS is moved to a separate function '_load_scripts_dynamic_css' within the 'enqueue.php' file.
|
405 |
* The function '_load_scripts_base' is deleted due to uselessness.
|
409 |
* Some texts are updated.
|
410 |
* All translation files are updated.
|
411 |
|
412 |
+
= 4.39 - Jul 13, 2018 =
|
413 |
* The extra mention of the constant '_SLUG' is removed from the file 'enqueue.php'.
|
414 |
* All translation files are updated.
|
415 |
|
416 |
+
= 4.38 - Jun 4, 2018 =
|
417 |
* Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
|
418 |
* The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
|
419 |
* The function '_tollbar()' is updated.
|
420 |
|
421 |
+
= 4.37 - Jun 3, 2018 =
|
422 |
* Fixed a bug due to which the links in buttons are disappeared.
|
423 |
|
424 |
+
= 4.36 - Jun 3, 2018 =
|
425 |
* The plugin became much faster due to the decrease in the number of requests to the database.
|
426 |
* A new option is added to the plugin settings page, allowing the user to select the desired buttons.
|
427 |
* Added a new control function '_control_checkbox()'. Added CSS code (in the file 'admin.css') for this control. Added JS code (in the file 'admin.js') for this control.
|
433 |
* The old upgrade function '_upgrade_4_10()' is removed due to uselessness.
|
434 |
* Some texts are corrected.
|
435 |
|
436 |
+
= 4.35 - May 20, 2018 =
|
437 |
* Added new constant "_FILE".
|
438 |
* Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
|
439 |
|
440 |
+
= 4.34 - May 7, 2018 =
|
441 |
* Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
|
442 |
|
443 |
+
= 4.33 - May 3, 2018 =
|
444 |
* The 'list.php' file replaced with the 'items.php'.
|
445 |
* Added callback function for getting a list of all buttons.
|
446 |
* The 'smbt-social-icons' CSS class renamed to 'sxc-follow-buttons'.
|
448 |
* CSS code in the file 'frontend.css' is optimized.
|
449 |
* The '_tollbar()' function is improved.
|
450 |
|
451 |
+
= 4.32 - Apr 25, 2018 =
|
452 |
* Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
|
453 |
* Fixed information stored in the header of the translation files.
|
454 |
* Translation files updated.
|
455 |
|
456 |
+
= 4.31 - Apr 20, 2018 =
|
457 |
* Some texts updated, and typos corrected.
|
458 |
* All translation files updated.
|
459 |
* The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
|
460 |
* The "humans.txt" file updated.
|
461 |
|
462 |
+
= 4.30 - Mar 22, 2018 =
|
463 |
* Added option for the Untappd.
|
464 |
* Added option for the TuneIn.
|
465 |
* Added option for the iHeart.
|
466 |
* Added option for the BlackBerry World.
|
467 |
* Added option for the Livestream.
|
468 |
|
469 |
+
= 4.29 - Mar 4, 2018 =
|
470 |
* Added option for the Strava.
|
471 |
* Added option for the Stitcher.
|
472 |
* Added option for the WeChat.
|
474 |
* Added option for the about.me.
|
475 |
* Added option for the Facebook Group.
|
476 |
|
477 |
+
= 4.28 - Feb 28, 2018 =
|
478 |
* Added option for the FeedsFloor.
|
479 |
|
480 |
+
= 4.27 - Jan 22, 2018 =
|
481 |
* Texts updated.
|
482 |
* The year in the copyright text is updated.
|
483 |
* The sidebar items are rearranged.
|
484 |
* Translation files updated.
|
485 |
|
486 |
+
= 4.26 - Nov 13, 2017 =
|
487 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
488 |
* CSS code improved.
|
489 |
|
490 |
+
= 4.25 - Oct 28, 2017 =
|
491 |
* German translation added. (Thanks to Michael)
|
492 |
* Fixed an issue where the "Hello" message could not be hidden.
|
493 |
|
494 |
+
= 4.24 - Oct 2, 2017 =
|
495 |
* Added option for the Daily Paintworks.
|
496 |
* Added option for the Bitbucket.
|
497 |
* Added option for the Gab.
|
500 |
* Fixed an issue because of which the line was displayed behind of the buttons.
|
501 |
* Spanish translation updated. (Thanks to Patricio Toledo)
|
502 |
|
503 |
+
= 4.23 - Sep 23, 2017 =
|
504 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
505 |
|
506 |
+
= 4.22 - Sep 19, 2017 =
|
507 |
* Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
|
508 |
* Added branded footer text on the plugin's settings page.
|
509 |
|
510 |
+
= 4.21 - Sep 17, 2017 =
|
511 |
* The hard coded HTML radio options are replaced with the PHP function that dynamically creates radio.
|
512 |
|
513 |
+
= 4.20 - Sep 15, 2017 =
|
514 |
* Added the top level menu item of the brand.
|
515 |
* The submenu item of the plugin has moved to the menu item of the brand.
|
516 |
* The menu item of the plugin is renamed.
|
520 |
* The "Support" tab renamed to the "Support Me".
|
521 |
* The "Usage" tab renamed to the "Usage Instructions".
|
522 |
|
523 |
+
= 4.19 - Sep 8, 2017 =
|
524 |
* Plugin data that saved in the database upgraded to version 0001.
|
525 |
|
526 |
+
= 4.18 - Sep 8, 2017 =
|
527 |
* Added Spanish translation. (Thanks Patricio Toledo)
|
528 |
* Function that render controls on the settings page is moved to a separate file 'controls.php'.
|
529 |
* The '_setting' function divided into two functions: '_control_field' and '_control_switch'.
|
550 |
* Added option for the Wattpad.
|
551 |
* Added option for the The Knot.
|
552 |
|
553 |
+
= 4.17 - Aug 11, 2017 =
|
554 |
* Added option for the ASKfm.
|
555 |
* Added option for the eBay.
|
556 |
* Added option for the Hangouts.
|
560 |
* Added option for the ArtStack.
|
561 |
* Mastodon icon updated with brand new logo.
|
562 |
|
563 |
+
= 4.16 - Aug 10, 2017 =
|
564 |
* Russian translation updated. (Thanks to Milena Kiseleva)
|
565 |
* The navigation of the tabs is rearranged.
|
566 |
* Fixed an issue due to which the sidebar was not hiding on mobile devices.
|
570 |
* Banner moved from external source to plugin folder.
|
571 |
* Code of PayPal button updated.
|
572 |
|
573 |
+
= 4.15 - Aug 8, 2017 =
|
574 |
* Preview section on the settings page changed to live preview.
|
575 |
* Stylesheet in the admin.css file improved.
|
576 |
* The '!important' declarations in the admin.css file removed.
|
581 |
* The 'Family' page tab renamed to 'Store'.
|
582 |
* Added ad banner of my store website.
|
583 |
|
584 |
+
= 4.14 - Jul 23, 2017 =
|
585 |
* Added option for the Google Play.
|
586 |
* Added option for the itch.
|
587 |
* Added option for the Mastodon.
|
590 |
* Added option for the VSCO.
|
591 |
* Added additional CSS reset rules.
|
592 |
|
593 |
+
= 4.13 - Jul 2, 2017 =
|
594 |
* Added option for the Hireology.
|
595 |
* Added option for the Kompoz.
|
596 |
* Added option for the SoundBlend.
|
597 |
|
598 |
+
= 4.12.1 - Jun 21, 2017 =
|
599 |
* The HTTPS mixed content issue fixed by changing all links to HTTPS.
|
600 |
|
601 |
+
= 4.12 - Jun 19, 2017 =
|
602 |
* Added option for the Behance.
|
603 |
* Added option for the Polyvore.
|
604 |
* Added option for the Yellow Pages.
|
605 |
* Content of the "FAQ" section updated.
|
606 |
|
607 |
+
= 4.11 - Jun 16, 2017 =
|
608 |
* Added option for the iTunes social media.
|
609 |
* Added option for the Apple Music social media.
|
610 |
* Added option for the Medium social media.
|
615 |
* Content of the "Usage" tab updated.
|
616 |
* Content of the "FAQ" tab updated.
|
617 |
|
618 |
+
= 4.10 - Jun 4, 2017 =
|
619 |
* The Beam icon and name replaced with rebranded.
|
620 |
* Added option for the telephone button.
|
621 |
* To the plugin settings page added information about the plugin version number.
|
624 |
* The "versioning.php" file updated to new version.
|
625 |
* The "_plugin_version_number" function renamed to the "_versioning".
|
626 |
|
627 |
+
= 4.9 - May 30, 2017 =
|
628 |
* Added option for the StumbleUpon social network.
|
629 |
* Added option for the Bloglovin social network.
|
630 |
* Added option for the WhatsApp social network.
|
631 |
* Added option for the LINE social network.
|
632 |
|
633 |
+
= 4.8 - May 27, 2017 =
|
634 |
* Added option for the Plug.dj social network.
|
635 |
|
636 |
+
= 4.7 - May 26, 2017 =
|
637 |
* Compatibility with PHP version 5.2 improved.
|
638 |
* PHP shorthands improved.
|
639 |
* Added function for generating the plugin constants.
|
642 |
* The "_plugin_version_number" function improved.
|
643 |
* Added file "upgrade.php" for future upgrades.
|
644 |
|
645 |
+
= 4.6.1 =
|
646 |
* Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
|
647 |
|
648 |
+
= 4.6 - May 24, 2017 =
|
649 |
* Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
|
650 |
* Value of the "_VERSION" constant replaced with information from the plugin header data.
|
651 |
* All references to the plugin name, slug, prefix are replaced with constants.
|
653 |
* The "_load_scripts_base" function improved.
|
654 |
* The "name" attribute removed from the "form" tag.
|
655 |
|
656 |
+
= 4.5 - May 21, 2017 =
|
657 |
* Added option for the Buzzsprout social network.
|
658 |
* Added option for the Periscope social network.
|
659 |
* F.A.Q. section updated.
|
660 |
* Code formatting improved.
|
661 |
|
662 |
+
= 4.4 - May 17, 2017 =
|
663 |
* Added option for the Flickr social network.
|
664 |
* Code formatting improved.
|
665 |
* Extra JS code for Bootstrap tooltips removed from the "admin.js" file.
|
666 |
* Added ID to every field on the settings page.
|
667 |
|
668 |
+
= 4.3.1 - May 12, 2017 =
|
669 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
670 |
|
671 |
+
= 4.3 - May 10, 2017 =
|
672 |
* Added option for the Diaspora social network.
|
673 |
|
674 |
+
= 4.2 - May 8, 2017 =
|
675 |
* The design of the plugin settings page is completely redone.
|
676 |
* Added option for the Beam.pro button.
|
677 |
* Added option for the Amazon button.
|
706 |
* The POT file updated.
|
707 |
* Translations updated.
|
708 |
|
709 |
+
= 4.1 - Mar 28, 2017 =
|
710 |
* Added option for the Bandcamp button.
|
711 |
|
712 |
+
= 4.0 - Mar 24, 2017 =
|
713 |
* Plugin name changed from "Social Media Buttons Toolbar" to "Social Media Follow Buttons Bar".
|
714 |
* The name of the menu item changed from "Social Buttons" to "Social Media Follow Buttons".
|
715 |
* My Unicode signature added to the main file.
|
730 |
* The POT file updated.
|
731 |
* Translations updated.
|
732 |
|
733 |
+
= 3.14 =
|
734 |
* Added option for the Meetup button.
|
735 |
* Added option for the Bootstrap Tooltips.
|
736 |
* The position of the buttons relative to each other has improved. The "Margin right" option renamed to "Margin".
|
737 |
|
738 |
+
= 3.13 - Jan 23, 2017 =
|
739 |
* Added option for the Yelp button.
|
740 |
|
741 |
+
= 3.12 - Jan 23, 2017 =
|
742 |
* Added option for the Goodreads button.
|
743 |
* Social media icons more optimized. Weight is reduced by 50%.
|
744 |
* Links on the settings page cleared from http and https.
|
745 |
* Added additional donate link on the plugin settings page.
|
746 |
|
747 |
+
= 3.11 =
|
748 |
* Added option for the Steam button.
|
749 |
* Added option for the Discord button.
|
750 |
|
751 |
+
= 3.10 - Dec 11, 2016 =
|
752 |
* Added option for the Twitch button.
|
753 |
|
754 |
+
= 3.9 - Nov 22, 2016 =
|
755 |
* Added option for the Dloky button.
|
756 |
* Image of the donate button changed.
|
757 |
|
758 |
+
= 3.8.2 - Nov 13, 2016 =
|
759 |
* Added some CSS code in order to fix compatibility issues with some themes.
|
760 |
|
761 |
+
= 3.8.1 - Nov 11, 2016 =
|
762 |
* Added "!important" declarations to stylesheet in order to fix compatibility issues with some themes.
|
763 |
* Fixed the wrong constant name error.
|
764 |
* Readme for translations updated.
|
765 |
|
766 |
+
= 3.8 - Nov 7, 2016 =
|
767 |
* Added option for the IMDb button.
|
768 |
* Added CSS fix for compatibility with some themes.
|
769 |
|
770 |
+
= 3.7 - Nov 6, 2016 =
|
771 |
* Added option for the Vimeo button.
|
772 |
* Translations updated.
|
773 |
* Ad banner replaced with new.
|
774 |
|
775 |
+
= 3.6 - Oct 9, 2016 =
|
776 |
* Added option for the Snapchat button.
|
777 |
|
778 |
+
= 3.5 - Oct 2, 2016 =
|
779 |
* Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
780 |
|
781 |
+
= 3.4 - Sep 28, 2016 =
|
782 |
* Added option for the SoundCloud button.
|
783 |
* Added option for the Spotify button.
|
784 |
* Improved examples in the fields on the settings page.
|
785 |
* POT file updated.
|
786 |
* Russian translation updated.
|
787 |
|
788 |
+
= 3.3 - Sep 24, 2016 =
|
789 |
* Added option to adjust the alignment of toolbar.
|
790 |
* Added the Readme.txt file for translation contribution.
|
791 |
* Added global constant for plugin text-domain.
|
792 |
|
793 |
+
= 3.2 - Sep 4, 2016 =
|
794 |
* Added option for the Skype button.
|
795 |
* Ready for translation improved.
|
796 |
* Texts on settings page improved.
|
797 |
* Russian translation improved.
|
798 |
|
799 |
+
= 3.1 - Sep 3, 2016 =
|
800 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
801 |
* Added constant for storing the plugin version number.
|
802 |
|
803 |
+
= 3.0 - Aug 30, 2016 =
|
804 |
* The structure of files changed.
|
805 |
* Style sheet of settings page improved and better commented.
|
806 |
* Style sheet of settings page optimized for mobile devices.
|
808 |
* Added JavaScript function of automatic remove the "successful" message after 3 seconds.
|
809 |
* Checkboxes replaced with cool triggers by using Bootstrap framework and Bootstrap-checkbox component.
|
810 |
|
811 |
+
= 2.3.1 - Aug 23, 2016 =
|
812 |
* POT file updated.
|
813 |
* Russian translation updated.
|
814 |
* Image "thanks.png" removed.
|
816 |
* Added the subject with plugin name to email address on settings page.
|
817 |
* Function "smbtoolbar_enqueue_scripts" renamed to "smbtoolbar_load_scripts".
|
818 |
|
819 |
+
= 2.3 - May 28, 2016 =
|
820 |
* Added Telegram button.
|
821 |
|
822 |
+
= 2.2.1 - May 23, 2016 =
|
823 |
* Added the `!important` flag to the display property of `<a>` element.
|
824 |
|
825 |
+
= 2.2 - May 20, 2016 =
|
826 |
* Added MeetVibe button.
|
827 |
* Fixed the display property of `<li>` and `<a>` elements.
|
828 |
* Fixed the issue with border that sometimes appeared at bottom of an icons.
|
829 |
|
830 |
+
= 2.1 - May 20, 2016 =
|
831 |
* Added Reddit button.
|
832 |
|
833 |
+
= 2.0 - Apr 8, 2016 =
|
834 |
* Some changes in design of settings page.
|
835 |
* Constants variables added.
|
836 |
* Text domain changed to "social-media-buttons-toolbar".
|
842 |
* `.pot` file updated.
|
843 |
* Russian translation updated.
|
844 |
|
845 |
+
= 1.5 - Mar 31, 2016 =
|
846 |
* Fixed: `Notice: Undefined index: new_tab in .../social-media-buttons-toolbar.php on line 240`.
|
847 |
|
848 |
+
= 1.4 - Mar 28, 2016 =
|
849 |
* Added 6 new buttons (LiveJournal, Pinterest, Tumblr, VKontakte, Odnoklassniki, Personal website).
|
850 |
* Fixed: "Use of undefined constant media".
|
851 |
* Plugin URI changed to GitHub repository.
|
855 |
* `.pot` file updated.
|
856 |
* Russian translation updated.
|
857 |
|
858 |
+
= 1.3 - Mar 21, 2016 =
|
859 |
* Some changes in design of settings page.
|
860 |
* On settings page added section "Using" with the using details. (Thanks Hubert O'Brien)
|
861 |
|
862 |
+
= 1.2 - Feb 21, 2016 =
|
863 |
* Fixed the compatibility issue with some themes. The issue was caused by not a unique class names in the html tags.
|
864 |
* The default caption now is empty. The text "Follow me on social media:" is removed.
|
865 |
* Removed extra settings update message.
|
866 |
* The thanks.png image replaced.
|
867 |
|
868 |
+
= 1.1 - Jan 30, 2016 =
|
869 |
* Authors URI changed.
|
870 |
* Icons updated.
|
871 |
|
872 |
+
= 1.0 - Jan 30, 2016 =
|
873 |
* Initial release.
|
874 |
* Added ready for translation (`.pot` file included).
|
875 |
* Added Russian translation.
|
876 |
|
877 |
+
= 0.3 =
|
878 |
* Release candidate.
|
879 |
|
880 |
= 0.2 =
|
social-media-buttons-toolbar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.53
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|