Version Description
- Russian translation updated. (Thanks to Milena Kiseleva)
- The navigation of the tabs is rearranged.
- Fixed an issue due to which the sidebar was not hiding on mobile devices.
- Code of sidebar moved to separate file 'sidebar.php'.
- Support page tab moved from external source to plugin code.
- My avatar moved from external source to plugin folder.
- Banner moved from external source to plugin folder.
- Code of PayPal button updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.16 |
Comparing to | |
See all releases |
Code changes from version 4.15 to 4.16
- inc/css/admin.css +68 -25
- inc/img/avatar.png +0 -0
- inc/img/banner.png +0 -0
- inc/img/paypal.svg +7 -0
- inc/img/social-media-icons/yellowpages.png +0 -0
- inc/img/thanks.png +0 -0
- inc/js/admin.js +1 -3
- inc/php/messages.php +2 -2
- inc/php/page.php +22 -12
- inc/php/settings.php +8 -38
- inc/php/sidebar.php +57 -0
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +198 -178
- languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
- languages/social-media-buttons-toolbar-ru_RU.po +284 -190
- languages/social-media-buttons-toolbar.pot +181 -165
- readme.txt +12 -2
- social-media-buttons-toolbar.php +1 -1
inc/css/admin.css
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link https://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
-
* @since 4.
|
9 |
*/
|
10 |
|
11 |
|
@@ -128,45 +128,45 @@ h2 .version {
|
|
128 |
|
129 |
/* Sidebar
|
130 |
-------------------------------------------------------------- */
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
|
|
|
|
|
|
149 |
|
150 |
/* Support - addition section
|
151 |
-------------------------------------------------------------- */
|
152 |
#support-addition {
|
153 |
display: none;
|
154 |
}
|
155 |
-
#support-addition .paypal {
|
156 |
-
font-size: 18px;
|
157 |
-
}
|
158 |
|
159 |
/* Responsive page
|
160 |
-------------------------------------------------------------- */
|
161 |
@media (max-width: 860px) {
|
162 |
.inner-sidebar {
|
163 |
-
display: none;
|
164 |
}
|
165 |
#support-addition {
|
166 |
-
display: block;
|
167 |
}
|
168 |
#post-body-content {
|
169 |
-
margin-right: 0;
|
170 |
}
|
171 |
}
|
172 |
|
@@ -332,6 +332,49 @@ h2 .version {
|
|
332 |
display: inline;
|
333 |
}
|
334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
/* Custom List Numbers
|
336 |
-------------------------------------------------------------- */
|
337 |
.custom-counter {
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link https://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
+
* @since 4.16
|
9 |
*/
|
10 |
|
11 |
|
128 |
|
129 |
/* Sidebar
|
130 |
-------------------------------------------------------------- */
|
131 |
+
#side-sortables {
|
132 |
+
position: relative;
|
133 |
+
}
|
134 |
+
#side-sortables .postbox {
|
135 |
+
text-align: center;
|
136 |
+
}
|
137 |
+
#side-sortables .banner .inside {
|
138 |
+
margin: 0;
|
139 |
+
padding: 5px 0;
|
140 |
+
}
|
141 |
+
#side-sortables .banner img {
|
142 |
+
width: 265px;
|
143 |
+
}
|
144 |
+
|
145 |
+
/* PayPal button
|
146 |
+
-------------------------------------------------------------- */
|
147 |
+
.paypal {
|
148 |
+
max-width: 100%;
|
149 |
+
font-size: 18px;
|
150 |
+
overflow: hidden;
|
151 |
+
}
|
152 |
|
153 |
/* Support - addition section
|
154 |
-------------------------------------------------------------- */
|
155 |
#support-addition {
|
156 |
display: none;
|
157 |
}
|
|
|
|
|
|
|
158 |
|
159 |
/* Responsive page
|
160 |
-------------------------------------------------------------- */
|
161 |
@media (max-width: 860px) {
|
162 |
.inner-sidebar {
|
163 |
+
display: none !important;
|
164 |
}
|
165 |
#support-addition {
|
166 |
+
display: block !important;
|
167 |
}
|
168 |
#post-body-content {
|
169 |
+
margin-right: 0 !important;
|
170 |
}
|
171 |
}
|
172 |
|
332 |
display: inline;
|
333 |
}
|
334 |
|
335 |
+
/* Buttons with label
|
336 |
+
-------------------------------------------------------------- */
|
337 |
+
.btn-labeled {
|
338 |
+
margin: 5px 0 15px 0;
|
339 |
+
padding-top: 0;
|
340 |
+
padding-bottom: 0;
|
341 |
+
max-width: 100%;
|
342 |
+
overflow: hidden;
|
343 |
+
color: #32689a;
|
344 |
+
font-family: "Lucida Grande", Tahoma, sans-serif;
|
345 |
+
font-size: 18px;
|
346 |
+
font-weight: 600;
|
347 |
+
text-shadow: 1px 1px 0 #fff;
|
348 |
+
border-bottom-color: rgba(0, 0, 0, 0.4);
|
349 |
+
border-radius: 3px !important;
|
350 |
+
background-image: -moz-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
|
351 |
+
background-image: -ms-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
|
352 |
+
background-image: -o-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
|
353 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.1)), color-stop(49%, rgba(255,255,255,.05)), color-stop(51%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
|
354 |
+
background-image: -webkit-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
|
355 |
+
background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
|
356 |
+
}
|
357 |
+
.btn-labeled:hover,
|
358 |
+
.btn-labeled:focus {
|
359 |
+
color: #32689a;
|
360 |
+
background-position: 0;
|
361 |
+
background-color: transparent;
|
362 |
+
background-image: -moz-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
|
363 |
+
background-image: -ms-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
|
364 |
+
background-image: -o-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
|
365 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.15)), color-stop(49%, rgba(255,255,255,.15)), color-stop(51%, rgba(0,0,0,.1)), to(rgba(0,0,0,.15)));
|
366 |
+
background-image: -webkit-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
|
367 |
+
background-image: linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
|
368 |
+
}
|
369 |
+
.btn-labeled .btn-label {
|
370 |
+
position: relative;
|
371 |
+
display: inline-block;
|
372 |
+
width: 48px;
|
373 |
+
left: -12px;
|
374 |
+
padding: 6px 12px;
|
375 |
+
border-right: 1px solid #ccc;
|
376 |
+
}
|
377 |
+
|
378 |
/* Custom List Numbers
|
379 |
-------------------------------------------------------------- */
|
380 |
.custom-counter {
|
inc/img/avatar.png
ADDED
Binary file
|
inc/img/banner.png
ADDED
Binary file
|
inc/img/paypal.svg
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 90">
|
2 |
+
<defs>
|
3 |
+
<style>.cls-1{fill:#32689a;}</style>
|
4 |
+
</defs>
|
5 |
+
<path class="cls-1" d="M58.1,0H18.6L1.2,80.1h23.1L30,53.6h16.5c15.8,0,29-9.7,32.6-26.3C83.1,8.5,69.6,0,58.1,0z M40.8,38.2h-7.5 l5-21.9h11.3c3.9,0,6.8,2.3,7.8,5.7c-0.5-0.1-1-0.2-1.5-0.2H44.5L40.8,38.2z M57.3,27.3c-1.4,6-7,10.7-12.8,10.9l2.7-12h10.3 C57.5,26.5,57.4,26.9,57.3,27.3z M85.4,32.8c1.3-6.2,0.7-11.3-1.1-15.3c3.7,4.5,5.7,11,3.8,19.7c-3.5,16.6-16.8,26.3-32.6,26.3 H39L33.3,90H10.2l1-4.4h19.4l5.7-26.6h16.5C68.6,59.1,81.8,49.3,85.4,32.8z" id="PayPal"/>
|
6 |
+
|
7 |
+
</svg>
|
inc/img/social-media-icons/yellowpages.png
CHANGED
Binary file
|
inc/img/thanks.png
ADDED
Binary file
|
inc/js/admin.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link https://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
-
* @since 4.
|
9 |
*/
|
10 |
|
11 |
|
@@ -25,9 +25,7 @@ jQuery(document).ready(function($) {
|
|
25 |
|
26 |
// Add dynamic content to page tabs. Needed for having an up to date content.
|
27 |
$('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
|
28 |
-
$('.include-tab-support').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-support');
|
29 |
$('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
|
30 |
-
$('.include-banner').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-banner');
|
31 |
|
32 |
// Add questions and answers into spoilers and color them in different colors
|
33 |
$('.panel-group .panel').each(function(i) {
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link https://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
+
* @since 4.16
|
9 |
*/
|
10 |
|
11 |
|
25 |
|
26 |
// Add dynamic content to page tabs. Needed for having an up to date content.
|
27 |
$('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
|
|
|
28 |
$('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
|
|
|
29 |
|
30 |
// Add questions and answers into spoilers and color them in different colors
|
31 |
$('.panel-group .panel').each(function(i) {
|
inc/php/messages.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function smbtoolbar_hello_message() {
|
16 |
|
@@ -25,7 +25,7 @@ function smbtoolbar_hello_message() {
|
|
25 |
<div class="modal-dialog">
|
26 |
<div class="modal-content">
|
27 |
<div class="modal-body">
|
28 |
-
<img src="
|
29 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
30 |
<p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', SMEDIABT_TEXT ); ?></p>
|
31 |
<p><?php printf(
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
+
* @since 4.16
|
14 |
*/
|
15 |
function smbtoolbar_hello_message() {
|
16 |
|
25 |
<div class="modal-dialog">
|
26 |
<div class="modal-content">
|
27 |
<div class="modal-body">
|
28 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/avatar.png'; ?>">
|
29 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
30 |
<p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', SMEDIABT_TEXT ); ?></p>
|
31 |
<p><?php printf(
|
inc/php/page.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function smbtoolbar_render_submenu_page() {
|
16 |
|
@@ -47,17 +47,18 @@ function smbtoolbar_render_submenu_page() {
|
|
47 |
<li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
|
48 |
<li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
|
49 |
<li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
|
50 |
-
<li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
|
51 |
<li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
|
|
|
52 |
<li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
|
53 |
</ul>
|
54 |
<!-- END-TABS NAVIGATION MENU -->
|
55 |
|
56 |
<!-- TAB 1 -->
|
57 |
<div class="tab-page fade active in" id="tab-core">
|
58 |
-
|
|
|
|
|
59 |
<?php require_once( SMEDIABT_PATH . 'inc/php/settings.php' ); ?>
|
60 |
-
|
61 |
</div>
|
62 |
<!-- END-TAB 1 -->
|
63 |
|
@@ -187,19 +188,30 @@ function smbtoolbar_render_submenu_page() {
|
|
187 |
<!-- END-TAB 3 -->
|
188 |
|
189 |
<!-- TAB 4 -->
|
190 |
-
<div class="tab-page fade" id="tab-
|
191 |
<div class="postbox">
|
192 |
-
<h3 class="title"><?php _e( '
|
193 |
-
<div class="inside
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
</div>
|
195 |
</div>
|
196 |
<!-- END-TAB 4 -->
|
197 |
|
198 |
<!-- TAB 5 -->
|
199 |
-
<div class="tab-page fade" id="tab-
|
200 |
<div class="postbox">
|
201 |
-
<h3 class="title"><?php _e( '
|
202 |
-
<div class="inside include-tab-
|
203 |
</div>
|
204 |
</div>
|
205 |
<!-- END-TAB 5 -->
|
@@ -210,8 +222,6 @@ function smbtoolbar_render_submenu_page() {
|
|
210 |
</div>
|
211 |
<!-- END-TAB 6 -->
|
212 |
|
213 |
-
<div class="additional-css"></div>
|
214 |
-
|
215 |
</div>
|
216 |
|
217 |
</div>
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 4.16
|
14 |
*/
|
15 |
function smbtoolbar_render_submenu_page() {
|
16 |
|
47 |
<li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
|
48 |
<li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
|
49 |
<li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
|
|
|
50 |
<li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
|
51 |
+
<li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
|
52 |
<li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
|
53 |
</ul>
|
54 |
<!-- END-TABS NAVIGATION MENU -->
|
55 |
|
56 |
<!-- TAB 1 -->
|
57 |
<div class="tab-page fade active in" id="tab-core">
|
58 |
+
<!-- INCLUDE SIDEBAR -->
|
59 |
+
<?php require_once( SMEDIABT_PATH . 'inc/php/sidebar.php' ); ?>
|
60 |
+
<!-- INCLUDE SETTINGS -->
|
61 |
<?php require_once( SMEDIABT_PATH . 'inc/php/settings.php' ); ?>
|
|
|
62 |
</div>
|
63 |
<!-- END-TAB 1 -->
|
64 |
|
188 |
<!-- END-TAB 3 -->
|
189 |
|
190 |
<!-- TAB 4 -->
|
191 |
+
<div class="tab-page fade" id="tab-support">
|
192 |
<div class="postbox">
|
193 |
+
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
194 |
+
<div class="inside">
|
195 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!" class="pull-right">
|
196 |
+
<p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
|
197 |
+
<p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and another things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
198 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
|
199 |
+
<span class="btn-label">
|
200 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
201 |
+
</span>
|
202 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
203 |
+
</a>
|
204 |
+
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
205 |
+
</div>
|
206 |
</div>
|
207 |
</div>
|
208 |
<!-- END-TAB 4 -->
|
209 |
|
210 |
<!-- TAB 5 -->
|
211 |
+
<div class="tab-page fade" id="tab-author">
|
212 |
<div class="postbox">
|
213 |
+
<h3 class="title"><?php _e( 'Author', $text ); ?></h3>
|
214 |
+
<div class="inside include-tab-author"></div>
|
215 |
</div>
|
216 |
</div>
|
217 |
<!-- END-TAB 5 -->
|
222 |
</div>
|
223 |
<!-- END-TAB 6 -->
|
224 |
|
|
|
|
|
225 |
</div>
|
226 |
|
227 |
</div>
|
inc/php/settings.php
CHANGED
@@ -8,45 +8,11 @@
|
|
8 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
-
* Render Settings Tab
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
?>
|
16 |
-
<!-- SIDEBAR -->
|
17 |
-
<div class="inner-sidebar">
|
18 |
-
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
19 |
-
|
20 |
-
<div class="postbox about">
|
21 |
-
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
22 |
-
<div class="inside">
|
23 |
-
<p><?php _e( 'This plugin allows you to easily add the social media follow buttons bar to any place of your website.', $text ); ?></p>
|
24 |
-
</div>
|
25 |
-
</div>
|
26 |
-
|
27 |
-
<div class="postbox support">
|
28 |
-
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
29 |
-
<div class="inside">
|
30 |
-
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
31 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
|
32 |
-
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
33 |
-
</div>
|
34 |
-
</div>
|
35 |
-
|
36 |
-
<div class="postbox help">
|
37 |
-
<h3 class="title"><?php _e( 'Help', $text ); ?></h3>
|
38 |
-
<div class="inside">
|
39 |
-
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
|
40 |
-
</div>
|
41 |
-
</div>
|
42 |
-
|
43 |
-
<div class="include-banner"></div>
|
44 |
-
|
45 |
-
</div>
|
46 |
-
</div>
|
47 |
-
<!-- END-SIDEBAR -->
|
48 |
-
|
49 |
-
<!-- FORM -->
|
50 |
<div class="has-sidebar sm-padded">
|
51 |
<div id="post-body-content" class="has-sidebar-content">
|
52 |
<div class="meta-box-sortabless">
|
@@ -653,7 +619,12 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
653 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
654 |
<div class="inside">
|
655 |
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
656 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="
|
|
|
|
|
|
|
|
|
|
|
657 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
658 |
</div>
|
659 |
</div>
|
@@ -663,5 +634,4 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
663 |
</div>
|
664 |
</div>
|
665 |
</div>
|
666 |
-
<!-- END-FORM -->
|
667 |
<?php
|
8 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
+
* Render Settings Tab Content
|
12 |
*
|
13 |
+
* @since 4.16
|
14 |
*/
|
15 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<div class="has-sidebar sm-padded">
|
17 |
<div id="post-body-content" class="has-sidebar-content">
|
18 |
<div class="meta-box-sortabless">
|
619 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
620 |
<div class="inside">
|
621 |
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
622 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
|
623 |
+
<span class="btn-label">
|
624 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
625 |
+
</span>
|
626 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
627 |
+
</a>
|
628 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
629 |
</div>
|
630 |
</div>
|
634 |
</div>
|
635 |
</div>
|
636 |
</div>
|
|
|
637 |
<?php
|
inc/php/sidebar.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Render Sidebar
|
12 |
+
*
|
13 |
+
* @since 4.16
|
14 |
+
*/
|
15 |
+
?>
|
16 |
+
<div class="inner-sidebar">
|
17 |
+
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
18 |
+
|
19 |
+
<div class="postbox about">
|
20 |
+
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
21 |
+
<div class="inside">
|
22 |
+
<p><?php _e( 'This plugin allows you to easily add the social media follow buttons bar to any place of your website.', $text ); ?></p>
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
|
26 |
+
<div class="postbox support">
|
27 |
+
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
28 |
+
<div class="inside">
|
29 |
+
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
30 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
|
31 |
+
<span class="btn-label">
|
32 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
33 |
+
</span>
|
34 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
35 |
+
</a>
|
36 |
+
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
37 |
+
</div>
|
38 |
+
</div>
|
39 |
+
|
40 |
+
<div class="postbox help">
|
41 |
+
<h3 class="title"><?php _e( 'Help', $text ); ?></h3>
|
42 |
+
<div class="inside">
|
43 |
+
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
|
47 |
+
<div class="postbox banner">
|
48 |
+
<div class="inside">
|
49 |
+
<a href="https://www.spacexchimp.com/" target="_blank">
|
50 |
+
<img src="<?php echo SMEDIABT_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp Studio">
|
51 |
+
</a>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
|
55 |
+
</div>
|
56 |
+
</div>
|
57 |
+
<?php
|
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: Development (trunk)\n"
|
6 |
-
"POT-Creation-Date: 2017-
|
7 |
-
"PO-Revision-Date: 2017-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -60,7 +60,7 @@ msgstr "por %s Arthur Gareginyan %s"
|
|
60 |
msgid "Version"
|
61 |
msgstr "Versión"
|
62 |
|
63 |
-
#: inc/php/page.php:48 inc/php/page.php:
|
64 |
msgid "Usage"
|
65 |
msgstr "Uso"
|
66 |
|
@@ -68,56 +68,56 @@ msgstr "Uso"
|
|
68 |
msgid "F.A.Q."
|
69 |
msgstr "F.A.Q."
|
70 |
|
71 |
-
#: inc/php/page.php:50 inc/php/page.php:
|
72 |
-
|
73 |
-
msgstr "Autor"
|
74 |
-
|
75 |
-
#: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
|
76 |
-
#: inc/php/settings.php:651
|
77 |
msgid "Support"
|
78 |
msgstr "Soporte"
|
79 |
|
|
|
|
|
|
|
|
|
80 |
#: inc/php/page.php:52
|
81 |
msgid "Store"
|
82 |
msgstr "Familia"
|
83 |
|
84 |
-
#: inc/php/page.php:
|
85 |
msgid ""
|
86 |
"To display the social media follow buttons bar on the front end of your website, "
|
87 |
"simply follow these steps:"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Go to the \"Settings\" tab."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "Fill in the required fields."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Select the desired settings."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Click the \"Save changes\" button."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid ""
|
108 |
"Now you have several methods for display the social media follow buttons bar "
|
109 |
"(further just \"buttons\"). Just choose the one that is more suitable for your "
|
110 |
"case."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:
|
114 |
msgid ""
|
115 |
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
|
116 |
"just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
|
117 |
"\"Display options\", then click the \"Save changes\" button."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid ""
|
122 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
|
123 |
"following shortcode:"
|
@@ -125,7 +125,7 @@ msgstr ""
|
|
125 |
"<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
|
126 |
"Páginas de Wordpress usa el siguiente shortcode:"
|
127 |
|
128 |
-
#: inc/php/page.php:
|
129 |
msgid ""
|
130 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
|
131 |
"\"Text\" widget and add inside it the following shortcode:"
|
@@ -133,59 +133,59 @@ msgstr ""
|
|
133 |
"<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
|
134 |
"u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
msgid ""
|
138 |
"<b>D)</b> For add the buttons directly to a theme files, just add the following "
|
139 |
"code to needed place (where you want to display the buttons) in your theme files:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "Enjoy your fancy social media follow buttons."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "It's that simple!"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Note!"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid "If you want more options then tell me and I will be happy to add it."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
msgid "Frequently Asked Questions"
|
160 |
msgstr "Preguntas Frecuentes"
|
161 |
|
162 |
-
#: inc/php/page.php:
|
163 |
msgid ""
|
164 |
"If you have a question, please read the Frequently Asked Questions below to see if "
|
165 |
"the answer is here."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/page.php:
|
169 |
msgid "Will this plugin work on my WordPress.COM website?"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/page.php:
|
173 |
msgid ""
|
174 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
175 |
"websites."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: inc/php/page.php:
|
179 |
msgid "Can I use this plugin on my language?"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/php/page.php:
|
183 |
msgid ""
|
184 |
"Yes. This plugin is ready for translation and has already been translated into "
|
185 |
"several languages."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"If you want to help translate this plugin then please visit the %s. You can also "
|
@@ -194,65 +194,65 @@ msgid ""
|
|
194 |
"will include this translation within the next plugin update."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
198 |
msgid ""
|
199 |
"Maybe not all existed translations are up to date. You are welcome to contribute "
|
200 |
"corrections!"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
msgid ""
|
205 |
"Many of plugin users would be delighted if you share your translation with the "
|
206 |
"community. Thanks for your contribution!"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/page.php:
|
210 |
msgid "How does it work?"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/page.php:
|
214 |
msgid ""
|
215 |
"On the \"Settings\" tab, select the desired settings and click the \"Save changes"
|
216 |
"\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
msgid "Does this plugin requires any modification of the theme?"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
msgid ""
|
225 |
"Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "Does this require any knowledge of HTML or CSS?"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
msgid ""
|
234 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
|
235 |
"using an easy-to-use plugin settings page."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/page.php:
|
239 |
msgid ""
|
240 |
"What I need to do if the Google PageSpeed test says that this plugin images must "
|
241 |
"be compressed?"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid ""
|
246 |
"The images that uses in this plugin are already compressed, but I will do my best "
|
247 |
"to find out what else can be done with the images in order to compress them even "
|
248 |
"better."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid "It's not working. What could be wrong?"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/php/page.php:
|
256 |
msgid ""
|
257 |
"As with every plugin, it's possible that things don't work. The most common reason "
|
258 |
"for this is a web browser's cache. Every web browser stores a cache of the "
|
@@ -261,7 +261,7 @@ msgid ""
|
|
261 |
"the problem."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid ""
|
266 |
"It's impossible to tell what could be wrong exactly, but if you post a support "
|
267 |
"request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
|
@@ -269,13 +269,13 @@ msgid ""
|
|
269 |
"including a link to your website where the problem can be seen."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
msgid ""
|
274 |
"The last WordPress update is preventing me from editing my website that is using "
|
275 |
"this plugin. Why is this?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
msgid ""
|
280 |
"This plugin can not cause such problem. More likely, the problem are related to "
|
281 |
"the settings of the website. It could just be a cache, so please try to clear your "
|
@@ -284,40 +284,40 @@ msgid ""
|
|
284 |
"login to the website, this too can help."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/page.php:
|
288 |
msgid "Where to report bug if found?"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
#, php-format
|
293 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
#, php-format
|
302 |
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "I love this plugin! Can I help somehow?"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
#, php-format
|
311 |
msgid ""
|
312 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click "
|
313 |
"on the donate button, and thank you!"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
msgid "My question wasn't answered here."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
"You can ask your question on the plugin support page %s. But please keep in mind "
|
@@ -325,49 +325,32 @@ msgid ""
|
|
325 |
"to answer everyone."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: inc/php/
|
329 |
-
msgid "
|
330 |
-
msgstr "Acerca de"
|
331 |
-
|
332 |
-
#: inc/php/settings.php:23
|
333 |
-
msgid ""
|
334 |
-
"This plugin allows you to easily add the social media follow buttons bar to any "
|
335 |
-
"place of your website."
|
336 |
msgstr ""
|
337 |
-
"Este plugin te permite añadir fácilmente una barra de botones de social media en "
|
338 |
-
"cualquier parte de tu sitio web."
|
339 |
|
340 |
-
#: inc/php/
|
341 |
msgid ""
|
342 |
-
"I
|
343 |
-
"
|
344 |
-
"
|
|
|
|
|
345 |
msgstr ""
|
346 |
-
"Soy un desarrollador independiente, sin ingresos fijos, por tanto cualquier "
|
347 |
-
"pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
|
348 |
-
"tiempo a hacer cosas que puedan disfrutar personas como tú."
|
349 |
|
350 |
-
#: inc/php/
|
351 |
msgid "Donate with PayPal"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: inc/php/
|
355 |
-
msgid "
|
356 |
-
msgstr "
|
357 |
-
|
358 |
-
#: inc/php/settings.php:37
|
359 |
-
msgid "Help"
|
360 |
-
msgstr "Ayuda"
|
361 |
-
|
362 |
-
#: inc/php/settings.php:39
|
363 |
-
msgid "If you have a question, please read the information in the FAQ section."
|
364 |
-
msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
|
365 |
|
366 |
-
#: inc/php/settings.php:
|
367 |
msgid "Buttons"
|
368 |
msgstr "Botones"
|
369 |
|
370 |
-
#: inc/php/settings.php:
|
371 |
msgid ""
|
372 |
"Just fill in the required fields to make a buttons. The social networking buttons "
|
373 |
"will lead directly to your profile pages. If you don't want to use any of the "
|
@@ -377,259 +360,259 @@ msgstr ""
|
|
377 |
"social conducirán directamente a tu página de perfil en esa red. Si no quieres "
|
378 |
"usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
381 |
msgid "Enter the link to your Facebook profile page"
|
382 |
msgstr "Ingresa el enlace a tu página de perfil de Facebook"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "Enter the link to your Twitter profile page"
|
386 |
msgstr "Ingresa el enlace a tu página de perfil de Twitter"
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Enter the link to your Instagram profile page"
|
390 |
msgstr "Ingresa el enlace a tu página de perfil de Instagram"
|
391 |
|
392 |
-
#: inc/php/settings.php:
|
393 |
msgid "Enter the link to your Google+ profile page"
|
394 |
msgstr "Ingresa el enlace a tu página de perfil de Google+"
|
395 |
|
396 |
-
#: inc/php/settings.php:
|
397 |
msgid "Enter the link to your YouTube profile page"
|
398 |
msgstr "Ingresa el enlace a tu página de perfil de Youtube"
|
399 |
|
400 |
-
#: inc/php/settings.php:
|
401 |
msgid "Enter the link to your YouTube Gaming profile page"
|
402 |
msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
|
403 |
|
404 |
-
#: inc/php/settings.php:
|
405 |
msgid "Enter the link to your Google Play profile page"
|
406 |
msgstr "Ingresa el enlace a tu página de perfil de Google Play"
|
407 |
|
408 |
-
#: inc/php/settings.php:
|
409 |
msgid "Enter the link to your iTunes profile page"
|
410 |
msgstr "Ingresa el enlace a tu página de perfil de iTunes"
|
411 |
|
412 |
-
#: inc/php/settings.php:
|
413 |
msgid "Enter the link to your Apple Music profile page"
|
414 |
msgstr "Ingresa el enlace a tu página de perfil de Apple Music"
|
415 |
|
416 |
-
#: inc/php/settings.php:
|
417 |
msgid "Enter the link to your Periscope profile page"
|
418 |
msgstr "Ingresa el enlace a tu página de perfil de Periscope"
|
419 |
|
420 |
-
#: inc/php/settings.php:
|
421 |
msgid "Enter the link to your Vimeo profile page"
|
422 |
msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
|
423 |
|
424 |
-
#: inc/php/settings.php:
|
425 |
msgid "Enter the link to your Blogger profile page"
|
426 |
msgstr "Ingresa el enlace a tu página de perfil de Blogger"
|
427 |
|
428 |
-
#: inc/php/settings.php:
|
429 |
msgid "Enter the link to your Buzzsprout profile page"
|
430 |
msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
|
431 |
|
432 |
-
#: inc/php/settings.php:
|
433 |
msgid "Enter the link to your LiveJournal profile page"
|
434 |
msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
|
435 |
|
436 |
-
#: inc/php/settings.php:
|
437 |
msgid "Enter the link to your Reddit profile page"
|
438 |
msgstr "Ingresa el enlace a tu página de perfil de Reddit"
|
439 |
|
440 |
-
#: inc/php/settings.php:
|
441 |
msgid "Enter the link to your LinkedIn profile page"
|
442 |
msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
|
443 |
|
444 |
-
#: inc/php/settings.php:
|
445 |
msgid "Enter the link to your Diaspora profile page"
|
446 |
msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
|
447 |
|
448 |
-
#: inc/php/settings.php:
|
449 |
msgid "Enter the link to your DeviantArt profile page"
|
450 |
msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
|
451 |
|
452 |
-
#: inc/php/settings.php:
|
453 |
msgid "Enter the link to your XING profile page"
|
454 |
msgstr "Ingresa el enlace a tu página de perfil de XING"
|
455 |
|
456 |
-
#: inc/php/settings.php:
|
457 |
msgid "Enter the link to your Pinterest profile page"
|
458 |
msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
|
459 |
|
460 |
-
#: inc/php/settings.php:
|
461 |
msgid "Enter the link to your Flickr profile page"
|
462 |
msgstr "Ingresa el enlace a tu página de perfil de Flickr"
|
463 |
|
464 |
-
#: inc/php/settings.php:
|
465 |
msgid "Enter the link to your Tumblr profile page"
|
466 |
msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
|
467 |
|
468 |
-
#: inc/php/settings.php:
|
469 |
msgid "Enter the link to your Snapchat profile page"
|
470 |
msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
|
471 |
|
472 |
-
#: inc/php/settings.php:
|
473 |
msgid "Enter the link to your Twitch profile page"
|
474 |
msgstr "Ingresa el enlace a tu página de perfil de Twitch"
|
475 |
|
476 |
-
#: inc/php/settings.php:
|
477 |
msgid "Enter the link to your Patreon profile page"
|
478 |
msgstr "Ingresa el enlace a tu página de perfil de Patreon"
|
479 |
|
480 |
-
#: inc/php/settings.php:
|
481 |
msgid "Enter the link to your IMDb profile page"
|
482 |
msgstr "Ingresa el enlace a tu página de perfil de IMDb"
|
483 |
|
484 |
-
#: inc/php/settings.php:
|
485 |
msgid "Enter the link to your SoundCloud profile page"
|
486 |
msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
|
487 |
|
488 |
-
#: inc/php/settings.php:
|
489 |
msgid "Enter the link to your Plug.dj profile page"
|
490 |
msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
|
491 |
|
492 |
-
#: inc/php/settings.php:
|
493 |
msgid "Enter the link to your Spotify profile page"
|
494 |
msgstr "Ingresa el enlace a tu página de perfil de Spotify"
|
495 |
|
496 |
-
#: inc/php/settings.php:
|
497 |
msgid "Enter the link to your Bandcamp profile page"
|
498 |
msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
|
499 |
|
500 |
-
#: inc/php/settings.php:
|
501 |
msgid "Enter the link to your Dloky profile page"
|
502 |
msgstr "Ingresa el enlace a tu página de perfil de Dloky"
|
503 |
|
504 |
-
#: inc/php/settings.php:
|
505 |
msgid "Enter the link to your Amazon profile page"
|
506 |
msgstr "Ingresa el enlace a tu página de perfil de Amazon"
|
507 |
|
508 |
-
#: inc/php/settings.php:
|
509 |
msgid "Enter the link to your BookBub profile page"
|
510 |
msgstr "Ingresa el enlace a tu página de perfil de BookBub"
|
511 |
|
512 |
-
#: inc/php/settings.php:
|
513 |
msgid "Enter the link to your Goodreads profile page"
|
514 |
msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
|
515 |
|
516 |
-
#: inc/php/settings.php:
|
517 |
msgid "Enter the link to your MeetVibe profile page"
|
518 |
msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
|
519 |
|
520 |
-
#: inc/php/settings.php:
|
521 |
msgid "Enter the link to your Meetup profile page"
|
522 |
msgstr "Ingresa el enlace a tu página de perfil de Meetup"
|
523 |
|
524 |
-
#: inc/php/settings.php:
|
525 |
msgid "Enter the link to your Steam profile page"
|
526 |
msgstr "Ingresa el enlace a tu página de perfil de Steam"
|
527 |
|
528 |
-
#: inc/php/settings.php:
|
529 |
msgid "Enter the link to your Mixer profile page"
|
530 |
msgstr "Ingresa el enlace a tu página de perfil de Mixer"
|
531 |
|
532 |
-
#: inc/php/settings.php:
|
533 |
msgid "Enter the link to your Discord profile page"
|
534 |
msgstr "Ingresa el enlace a tu página de perfil de Discord"
|
535 |
|
536 |
-
#: inc/php/settings.php:
|
537 |
msgid "Enter the link to your Yelp profile page"
|
538 |
msgstr "Ingresa el enlace a tu página de perfil de Yelp"
|
539 |
|
540 |
-
#: inc/php/settings.php:
|
541 |
msgid "Enter the link to your StumbleUpon profile page"
|
542 |
msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
|
543 |
|
544 |
-
#: inc/php/settings.php:
|
545 |
msgid "Enter the link to your Bloglovin profile page"
|
546 |
msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
|
547 |
|
548 |
-
#: inc/php/settings.php:
|
549 |
msgid "Enter the link to your WhatsApp profile page"
|
550 |
msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
|
551 |
|
552 |
-
#: inc/php/settings.php:
|
553 |
msgid "Enter the link to your Medium profile page"
|
554 |
msgstr "Ingresa el enlace a tu página de perfil de Medium"
|
555 |
|
556 |
-
#: inc/php/settings.php:
|
557 |
msgid "Enter the link to your 500px profile page"
|
558 |
msgstr "Ingresa el enlace a tu página de perfil de 500px"
|
559 |
|
560 |
-
#: inc/php/settings.php:
|
561 |
msgid "Enter the link to your Behance profile page"
|
562 |
msgstr "Ingresa el enlace a tu página de perfil de Behance"
|
563 |
|
564 |
-
#: inc/php/settings.php:
|
565 |
msgid "Enter the link to your Polyvore profile page"
|
566 |
msgstr "Ingresa el enlace a tu página de perfil de Polyvore"
|
567 |
|
568 |
-
#: inc/php/settings.php:
|
569 |
msgid "Enter the link to your Yellow Pages profile page"
|
570 |
msgstr "Ingresa el enlace a tu página de perfil de Yellow Pages"
|
571 |
|
572 |
-
#: inc/php/settings.php:
|
573 |
msgid "Enter the link to your LINE profile page"
|
574 |
msgstr "Ingresa el enlace a tu página de perfil de LINE"
|
575 |
|
576 |
-
#: inc/php/settings.php:
|
577 |
msgid "Enter the link to your itch profile page"
|
578 |
msgstr "Ingresa el enlace a tu página de perfil de itch"
|
579 |
|
580 |
-
#: inc/php/settings.php:
|
581 |
msgid "Enter the link to your Mastodon profile page"
|
582 |
msgstr "Ingresa el enlace a tu página de perfil de Mastodon"
|
583 |
|
584 |
-
#: inc/php/settings.php:
|
585 |
msgid "Enter the link to your Remind profile page"
|
586 |
msgstr "Ingresa el enlace a tu página de perfil de Remind"
|
587 |
|
588 |
-
#: inc/php/settings.php:
|
589 |
msgid "Enter the link to your Trade Me profile page"
|
590 |
msgstr "Ingresa el enlace a tu página de perfil de Trade Me"
|
591 |
|
592 |
-
#: inc/php/settings.php:
|
593 |
msgid "Enter the link to your VSCO profile page"
|
594 |
msgstr "Ingresa el enlace a tu página de perfil de VSCO"
|
595 |
|
596 |
-
#: inc/php/settings.php:
|
597 |
msgid "Enter the link to your Hireology profile page"
|
598 |
msgstr "Ingresa el enlace a tu página de perfil de Hireology"
|
599 |
|
600 |
-
#: inc/php/settings.php:
|
601 |
msgid "Enter the link to your Kompoz profile page"
|
602 |
msgstr "Ingresa el enlace a tu página de perfil de Kompoz"
|
603 |
|
604 |
-
#: inc/php/settings.php:
|
605 |
msgid "Enter the link to your SoundBlend profile page"
|
606 |
msgstr "Ingresa el enlace a tu página de perfil de SoundBlend"
|
607 |
|
608 |
-
#: inc/php/settings.php:
|
609 |
msgid "Enter the link to your VKontakte profile page"
|
610 |
msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
|
611 |
|
612 |
-
#: inc/php/settings.php:
|
613 |
msgid "Enter the link to your Odnoklassniki profile page"
|
614 |
msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
|
615 |
|
616 |
-
#: inc/php/settings.php:
|
617 |
msgid "Enter the link to your Telegram profile page"
|
618 |
msgstr "Ingresa el enlace a tu página de perfil de Telegram"
|
619 |
|
620 |
-
#: inc/php/settings.php:
|
621 |
msgid "Enter the link to your GitHub profile page"
|
622 |
msgstr "Ingresa el enlace a tu página de perfil de GitHub"
|
623 |
|
624 |
-
#: inc/php/settings.php:
|
625 |
msgid "Enter the link to your WordPress profile page"
|
626 |
msgstr "Ingresa el enlace a tu página de perfil de WordPress"
|
627 |
|
628 |
-
#: inc/php/settings.php:
|
629 |
msgid "Enter the link to your CodePen profile page"
|
630 |
msgstr "Ingresa el enlace a tu página de perfil de CodePen"
|
631 |
|
632 |
-
#: inc/php/settings.php:
|
633 |
msgid ""
|
634 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
|
635 |
"add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
@@ -637,113 +620,113 @@ msgstr ""
|
|
637 |
"Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
|
638 |
"add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
|
639 |
|
640 |
-
#: inc/php/settings.php:
|
641 |
msgid "Enter the link to your personal website"
|
642 |
msgstr "Ingresa el enlace a tu sitio web personal"
|
643 |
|
644 |
-
#: inc/php/settings.php:
|
645 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
646 |
msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
|
647 |
|
648 |
-
#: inc/php/settings.php:
|
649 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: inc/php/settings.php:
|
653 |
msgid "Enter the link to your RSS Feed"
|
654 |
msgstr "Ingresa el enlace a tu Feed de RSS"
|
655 |
|
656 |
-
#: inc/php/settings.php:
|
657 |
#, php-format
|
658 |
msgid ""
|
659 |
"If you did not find the button you need, then %s and I will gladly add it for you."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/settings.php:
|
663 |
msgid "Save changes"
|
664 |
msgstr "Guardar las modificaciones"
|
665 |
|
666 |
-
#: inc/php/settings.php:
|
667 |
msgid "Display options"
|
668 |
msgstr "Opciones de presentación"
|
669 |
|
670 |
-
#: inc/php/settings.php:
|
671 |
msgid "There you can configure this plugin."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/php/settings.php:
|
675 |
msgid "Show on Posts"
|
676 |
msgstr "Mostrar en Entradas"
|
677 |
|
678 |
-
#: inc/php/settings.php:
|
679 |
msgid "Automatically display toolbar below content on Posts."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/php/settings.php:
|
683 |
msgid "Show on Pages"
|
684 |
msgstr "Mostrar en Páginas"
|
685 |
|
686 |
-
#: inc/php/settings.php:
|
687 |
msgid "Automatically display toolbar below content on Pages."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/php/settings.php:
|
691 |
msgid "Open in new tab"
|
692 |
msgstr "Abrir en una nueva pestaña"
|
693 |
|
694 |
-
#: inc/php/settings.php:
|
695 |
msgid "Open link in a new tab/window."
|
696 |
msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
|
697 |
|
698 |
-
#: inc/php/settings.php:
|
699 |
msgid "Tooltips"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/php/settings.php:
|
703 |
msgid "Enable a tooltips with name of the social media above every button."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/php/settings.php:
|
707 |
msgid "Icon size"
|
708 |
msgstr "Tamaño de ícono"
|
709 |
|
710 |
-
#: inc/php/settings.php:
|
711 |
msgid "Enter the size of icons (in px) in your social media follow buttons bar."
|
712 |
msgstr ""
|
713 |
"Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
|
714 |
|
715 |
-
#: inc/php/settings.php:
|
716 |
msgid "Margin"
|
717 |
msgstr "Margen"
|
718 |
|
719 |
-
#: inc/php/settings.php:
|
720 |
msgid ""
|
721 |
"Enter the size of space (in px) between icons in your social media follow buttons "
|
722 |
"bar."
|
723 |
msgstr ""
|
724 |
"Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
|
725 |
|
726 |
-
#: inc/php/settings.php:
|
727 |
msgid "Alignment"
|
728 |
msgstr "Alineación"
|
729 |
|
730 |
-
#: inc/php/settings.php:
|
731 |
msgid "Left"
|
732 |
msgstr "Izquierda"
|
733 |
|
734 |
-
#: inc/php/settings.php:
|
735 |
msgid "Center"
|
736 |
msgstr "Centro"
|
737 |
|
738 |
-
#: inc/php/settings.php:
|
739 |
msgid "Right"
|
740 |
msgstr "Derecha"
|
741 |
|
742 |
-
#: inc/php/settings.php:
|
743 |
msgid "Caption"
|
744 |
msgstr "Leyenda"
|
745 |
|
746 |
-
#: inc/php/settings.php:
|
747 |
msgid ""
|
748 |
"Enter the caption to your social media follow buttons bar. It will be displays "
|
749 |
"before the toolbar."
|
@@ -751,14 +734,48 @@ msgstr ""
|
|
751 |
"Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
|
752 |
"la barra de botones."
|
753 |
|
754 |
-
#: inc/php/settings.php:
|
755 |
-
msgid "Preview"
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#: inc/php/settings.php:
|
759 |
msgid "Click the \"Save changes\" button to update this preview."
|
760 |
msgstr ""
|
761 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
762 |
#. Plugin Name of the plugin/theme
|
763 |
msgid "Social Media Follow Buttons Bar"
|
764 |
msgstr "Social Media Follow Buttons Bar"
|
@@ -784,6 +801,9 @@ msgstr "Arthur Gareginyan"
|
|
784 |
msgid "https://www.arthurgareginyan.com"
|
785 |
msgstr "https://www.arthurgareginyan.com"
|
786 |
|
|
|
|
|
|
|
787 |
#~ msgid "Display toolbar below content on Posts."
|
788 |
#~ msgstr "Mostrar la barra abajo del contenido en Entradas"
|
789 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2017-08-10 16:03+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-08-10 16:03+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
60 |
msgid "Version"
|
61 |
msgstr "Versión"
|
62 |
|
63 |
+
#: inc/php/page.php:48 inc/php/page.php:68
|
64 |
msgid "Usage"
|
65 |
msgstr "Uso"
|
66 |
|
68 |
msgid "F.A.Q."
|
69 |
msgstr "F.A.Q."
|
70 |
|
71 |
+
#: inc/php/page.php:50 inc/php/page.php:193 inc/php/settings.php:619
|
72 |
+
#: inc/php/sidebar.php:27
|
|
|
|
|
|
|
|
|
73 |
msgid "Support"
|
74 |
msgstr "Soporte"
|
75 |
|
76 |
+
#: inc/php/page.php:51 inc/php/page.php:213
|
77 |
+
msgid "Author"
|
78 |
+
msgstr "Autor"
|
79 |
+
|
80 |
#: inc/php/page.php:52
|
81 |
msgid "Store"
|
82 |
msgstr "Familia"
|
83 |
|
84 |
+
#: inc/php/page.php:70
|
85 |
msgid ""
|
86 |
"To display the social media follow buttons bar on the front end of your website, "
|
87 |
"simply follow these steps:"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:72
|
91 |
msgid "Go to the \"Settings\" tab."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:73
|
95 |
msgid "Fill in the required fields."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:74
|
99 |
msgid "Select the desired settings."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/page.php:75
|
103 |
msgid "Click the \"Save changes\" button."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:76
|
107 |
msgid ""
|
108 |
"Now you have several methods for display the social media follow buttons bar "
|
109 |
"(further just \"buttons\"). Just choose the one that is more suitable for your "
|
110 |
"case."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:77
|
114 |
msgid ""
|
115 |
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
|
116 |
"just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
|
117 |
"\"Display options\", then click the \"Save changes\" button."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/page.php:78
|
121 |
msgid ""
|
122 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
|
123 |
"following shortcode:"
|
125 |
"<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
|
126 |
"Páginas de Wordpress usa el siguiente shortcode:"
|
127 |
|
128 |
+
#: inc/php/page.php:80
|
129 |
msgid ""
|
130 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
|
131 |
"\"Text\" widget and add inside it the following shortcode:"
|
133 |
"<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
|
134 |
"u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
135 |
|
136 |
+
#: inc/php/page.php:82
|
137 |
msgid ""
|
138 |
"<b>D)</b> For add the buttons directly to a theme files, just add the following "
|
139 |
"code to needed place (where you want to display the buttons) in your theme files:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:85
|
143 |
msgid "Enjoy your fancy social media follow buttons."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/page.php:85
|
147 |
msgid "It's that simple!"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/php/page.php:87 inc/php/settings.php:516
|
151 |
msgid "Note!"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/php/page.php:87
|
155 |
msgid "If you want more options then tell me and I will be happy to add it."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/php/page.php:96
|
159 |
msgid "Frequently Asked Questions"
|
160 |
msgstr "Preguntas Frecuentes"
|
161 |
|
162 |
+
#: inc/php/page.php:100
|
163 |
msgid ""
|
164 |
"If you have a question, please read the Frequently Asked Questions below to see if "
|
165 |
"the answer is here."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/page.php:122
|
169 |
msgid "Will this plugin work on my WordPress.COM website?"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:123
|
173 |
msgid ""
|
174 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
175 |
"websites."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/page.php:125
|
179 |
msgid "Can I use this plugin on my language?"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/php/page.php:126
|
183 |
msgid ""
|
184 |
"Yes. This plugin is ready for translation and has already been translated into "
|
185 |
"several languages."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:128
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"If you want to help translate this plugin then please visit the %s. You can also "
|
194 |
"will include this translation within the next plugin update."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc/php/page.php:133
|
198 |
msgid ""
|
199 |
"Maybe not all existed translations are up to date. You are welcome to contribute "
|
200 |
"corrections!"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: inc/php/page.php:134
|
204 |
msgid ""
|
205 |
"Many of plugin users would be delighted if you share your translation with the "
|
206 |
"community. Thanks for your contribution!"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/php/page.php:136
|
210 |
msgid "How does it work?"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc/php/page.php:137
|
214 |
msgid ""
|
215 |
"On the \"Settings\" tab, select the desired settings and click the \"Save changes"
|
216 |
"\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: inc/php/page.php:139
|
220 |
msgid "Does this plugin requires any modification of the theme?"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc/php/page.php:140
|
224 |
msgid ""
|
225 |
"Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/page.php:142
|
229 |
msgid "Does this require any knowledge of HTML or CSS?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:143
|
233 |
msgid ""
|
234 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
|
235 |
"using an easy-to-use plugin settings page."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/page.php:145
|
239 |
msgid ""
|
240 |
"What I need to do if the Google PageSpeed test says that this plugin images must "
|
241 |
"be compressed?"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:146
|
245 |
msgid ""
|
246 |
"The images that uses in this plugin are already compressed, but I will do my best "
|
247 |
"to find out what else can be done with the images in order to compress them even "
|
248 |
"better."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/page.php:148
|
252 |
msgid "It's not working. What could be wrong?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc/php/page.php:149
|
256 |
msgid ""
|
257 |
"As with every plugin, it's possible that things don't work. The most common reason "
|
258 |
"for this is a web browser's cache. Every web browser stores a cache of the "
|
261 |
"the problem."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: inc/php/page.php:150
|
265 |
msgid ""
|
266 |
"It's impossible to tell what could be wrong exactly, but if you post a support "
|
267 |
"request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
|
269 |
"including a link to your website where the problem can be seen."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: inc/php/page.php:152
|
273 |
msgid ""
|
274 |
"The last WordPress update is preventing me from editing my website that is using "
|
275 |
"this plugin. Why is this?"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:153
|
279 |
msgid ""
|
280 |
"This plugin can not cause such problem. More likely, the problem are related to "
|
281 |
"the settings of the website. It could just be a cache, so please try to clear your "
|
284 |
"login to the website, this too can help."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/php/page.php:155
|
288 |
msgid "Where to report bug if found?"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/php/page.php:157
|
292 |
#, php-format
|
293 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: inc/php/page.php:163
|
297 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/page.php:165
|
301 |
#, php-format
|
302 |
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:170
|
306 |
msgid "I love this plugin! Can I help somehow?"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:172
|
310 |
#, php-format
|
311 |
msgid ""
|
312 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click "
|
313 |
"on the donate button, and thank you!"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:178
|
317 |
msgid "My question wasn't answered here."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:180
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
"You can ask your question on the plugin support page %s. But please keep in mind "
|
325 |
"to answer everyone."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/page.php:196
|
329 |
+
msgid "If you appreciate my work, you can buy me a coffee!"
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
msgstr ""
|
|
|
|
|
331 |
|
332 |
+
#: inc/php/page.php:197
|
333 |
msgid ""
|
334 |
+
"I spend a lot of time and effort trying to make sure that the themes, plugins and "
|
335 |
+
"another things I build are useful, and the ultimate proof of that for me is that "
|
336 |
+
"you actually want to use them. But, I’m an independent developer, without a "
|
337 |
+
"regular income, so every little contribution helps cover my costs and lets me "
|
338 |
+
"spend more time building things for people like you to enjoy."
|
339 |
msgstr ""
|
|
|
|
|
|
|
340 |
|
341 |
+
#: inc/php/page.php:202 inc/php/settings.php:626 inc/php/sidebar.php:34
|
342 |
msgid "Donate with PayPal"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/php/page.php:204
|
346 |
+
msgid "Thank you for your support!"
|
347 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
+
#: inc/php/settings.php:32
|
350 |
msgid "Buttons"
|
351 |
msgstr "Botones"
|
352 |
|
353 |
+
#: inc/php/settings.php:34
|
354 |
msgid ""
|
355 |
"Just fill in the required fields to make a buttons. The social networking buttons "
|
356 |
"will lead directly to your profile pages. If you don't want to use any of the "
|
360 |
"social conducirán directamente a tu página de perfil en esa red. Si no quieres "
|
361 |
"usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
362 |
|
363 |
+
#: inc/php/settings.php:41
|
364 |
msgid "Enter the link to your Facebook profile page"
|
365 |
msgstr "Ingresa el enlace a tu página de perfil de Facebook"
|
366 |
|
367 |
+
#: inc/php/settings.php:48
|
368 |
msgid "Enter the link to your Twitter profile page"
|
369 |
msgstr "Ingresa el enlace a tu página de perfil de Twitter"
|
370 |
|
371 |
+
#: inc/php/settings.php:55
|
372 |
msgid "Enter the link to your Instagram profile page"
|
373 |
msgstr "Ingresa el enlace a tu página de perfil de Instagram"
|
374 |
|
375 |
+
#: inc/php/settings.php:62
|
376 |
msgid "Enter the link to your Google+ profile page"
|
377 |
msgstr "Ingresa el enlace a tu página de perfil de Google+"
|
378 |
|
379 |
+
#: inc/php/settings.php:69
|
380 |
msgid "Enter the link to your YouTube profile page"
|
381 |
msgstr "Ingresa el enlace a tu página de perfil de Youtube"
|
382 |
|
383 |
+
#: inc/php/settings.php:76
|
384 |
msgid "Enter the link to your YouTube Gaming profile page"
|
385 |
msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
|
386 |
|
387 |
+
#: inc/php/settings.php:83
|
388 |
msgid "Enter the link to your Google Play profile page"
|
389 |
msgstr "Ingresa el enlace a tu página de perfil de Google Play"
|
390 |
|
391 |
+
#: inc/php/settings.php:90
|
392 |
msgid "Enter the link to your iTunes profile page"
|
393 |
msgstr "Ingresa el enlace a tu página de perfil de iTunes"
|
394 |
|
395 |
+
#: inc/php/settings.php:97
|
396 |
msgid "Enter the link to your Apple Music profile page"
|
397 |
msgstr "Ingresa el enlace a tu página de perfil de Apple Music"
|
398 |
|
399 |
+
#: inc/php/settings.php:104
|
400 |
msgid "Enter the link to your Periscope profile page"
|
401 |
msgstr "Ingresa el enlace a tu página de perfil de Periscope"
|
402 |
|
403 |
+
#: inc/php/settings.php:111
|
404 |
msgid "Enter the link to your Vimeo profile page"
|
405 |
msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
|
406 |
|
407 |
+
#: inc/php/settings.php:118
|
408 |
msgid "Enter the link to your Blogger profile page"
|
409 |
msgstr "Ingresa el enlace a tu página de perfil de Blogger"
|
410 |
|
411 |
+
#: inc/php/settings.php:125
|
412 |
msgid "Enter the link to your Buzzsprout profile page"
|
413 |
msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
|
414 |
|
415 |
+
#: inc/php/settings.php:132
|
416 |
msgid "Enter the link to your LiveJournal profile page"
|
417 |
msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
|
418 |
|
419 |
+
#: inc/php/settings.php:139
|
420 |
msgid "Enter the link to your Reddit profile page"
|
421 |
msgstr "Ingresa el enlace a tu página de perfil de Reddit"
|
422 |
|
423 |
+
#: inc/php/settings.php:146
|
424 |
msgid "Enter the link to your LinkedIn profile page"
|
425 |
msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
|
426 |
|
427 |
+
#: inc/php/settings.php:153
|
428 |
msgid "Enter the link to your Diaspora profile page"
|
429 |
msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
|
430 |
|
431 |
+
#: inc/php/settings.php:160
|
432 |
msgid "Enter the link to your DeviantArt profile page"
|
433 |
msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
|
434 |
|
435 |
+
#: inc/php/settings.php:167
|
436 |
msgid "Enter the link to your XING profile page"
|
437 |
msgstr "Ingresa el enlace a tu página de perfil de XING"
|
438 |
|
439 |
+
#: inc/php/settings.php:174
|
440 |
msgid "Enter the link to your Pinterest profile page"
|
441 |
msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
|
442 |
|
443 |
+
#: inc/php/settings.php:181
|
444 |
msgid "Enter the link to your Flickr profile page"
|
445 |
msgstr "Ingresa el enlace a tu página de perfil de Flickr"
|
446 |
|
447 |
+
#: inc/php/settings.php:188
|
448 |
msgid "Enter the link to your Tumblr profile page"
|
449 |
msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
|
450 |
|
451 |
+
#: inc/php/settings.php:195
|
452 |
msgid "Enter the link to your Snapchat profile page"
|
453 |
msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
|
454 |
|
455 |
+
#: inc/php/settings.php:202
|
456 |
msgid "Enter the link to your Twitch profile page"
|
457 |
msgstr "Ingresa el enlace a tu página de perfil de Twitch"
|
458 |
|
459 |
+
#: inc/php/settings.php:209
|
460 |
msgid "Enter the link to your Patreon profile page"
|
461 |
msgstr "Ingresa el enlace a tu página de perfil de Patreon"
|
462 |
|
463 |
+
#: inc/php/settings.php:216
|
464 |
msgid "Enter the link to your IMDb profile page"
|
465 |
msgstr "Ingresa el enlace a tu página de perfil de IMDb"
|
466 |
|
467 |
+
#: inc/php/settings.php:223
|
468 |
msgid "Enter the link to your SoundCloud profile page"
|
469 |
msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
|
470 |
|
471 |
+
#: inc/php/settings.php:230
|
472 |
msgid "Enter the link to your Plug.dj profile page"
|
473 |
msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
|
474 |
|
475 |
+
#: inc/php/settings.php:237
|
476 |
msgid "Enter the link to your Spotify profile page"
|
477 |
msgstr "Ingresa el enlace a tu página de perfil de Spotify"
|
478 |
|
479 |
+
#: inc/php/settings.php:244
|
480 |
msgid "Enter the link to your Bandcamp profile page"
|
481 |
msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
|
482 |
|
483 |
+
#: inc/php/settings.php:251
|
484 |
msgid "Enter the link to your Dloky profile page"
|
485 |
msgstr "Ingresa el enlace a tu página de perfil de Dloky"
|
486 |
|
487 |
+
#: inc/php/settings.php:258
|
488 |
msgid "Enter the link to your Amazon profile page"
|
489 |
msgstr "Ingresa el enlace a tu página de perfil de Amazon"
|
490 |
|
491 |
+
#: inc/php/settings.php:265
|
492 |
msgid "Enter the link to your BookBub profile page"
|
493 |
msgstr "Ingresa el enlace a tu página de perfil de BookBub"
|
494 |
|
495 |
+
#: inc/php/settings.php:272
|
496 |
msgid "Enter the link to your Goodreads profile page"
|
497 |
msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
|
498 |
|
499 |
+
#: inc/php/settings.php:279
|
500 |
msgid "Enter the link to your MeetVibe profile page"
|
501 |
msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
|
502 |
|
503 |
+
#: inc/php/settings.php:286
|
504 |
msgid "Enter the link to your Meetup profile page"
|
505 |
msgstr "Ingresa el enlace a tu página de perfil de Meetup"
|
506 |
|
507 |
+
#: inc/php/settings.php:293
|
508 |
msgid "Enter the link to your Steam profile page"
|
509 |
msgstr "Ingresa el enlace a tu página de perfil de Steam"
|
510 |
|
511 |
+
#: inc/php/settings.php:300
|
512 |
msgid "Enter the link to your Mixer profile page"
|
513 |
msgstr "Ingresa el enlace a tu página de perfil de Mixer"
|
514 |
|
515 |
+
#: inc/php/settings.php:307
|
516 |
msgid "Enter the link to your Discord profile page"
|
517 |
msgstr "Ingresa el enlace a tu página de perfil de Discord"
|
518 |
|
519 |
+
#: inc/php/settings.php:314
|
520 |
msgid "Enter the link to your Yelp profile page"
|
521 |
msgstr "Ingresa el enlace a tu página de perfil de Yelp"
|
522 |
|
523 |
+
#: inc/php/settings.php:321
|
524 |
msgid "Enter the link to your StumbleUpon profile page"
|
525 |
msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
|
526 |
|
527 |
+
#: inc/php/settings.php:328
|
528 |
msgid "Enter the link to your Bloglovin profile page"
|
529 |
msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
|
530 |
|
531 |
+
#: inc/php/settings.php:335
|
532 |
msgid "Enter the link to your WhatsApp profile page"
|
533 |
msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
|
534 |
|
535 |
+
#: inc/php/settings.php:342
|
536 |
msgid "Enter the link to your Medium profile page"
|
537 |
msgstr "Ingresa el enlace a tu página de perfil de Medium"
|
538 |
|
539 |
+
#: inc/php/settings.php:349
|
540 |
msgid "Enter the link to your 500px profile page"
|
541 |
msgstr "Ingresa el enlace a tu página de perfil de 500px"
|
542 |
|
543 |
+
#: inc/php/settings.php:356
|
544 |
msgid "Enter the link to your Behance profile page"
|
545 |
msgstr "Ingresa el enlace a tu página de perfil de Behance"
|
546 |
|
547 |
+
#: inc/php/settings.php:363
|
548 |
msgid "Enter the link to your Polyvore profile page"
|
549 |
msgstr "Ingresa el enlace a tu página de perfil de Polyvore"
|
550 |
|
551 |
+
#: inc/php/settings.php:370
|
552 |
msgid "Enter the link to your Yellow Pages profile page"
|
553 |
msgstr "Ingresa el enlace a tu página de perfil de Yellow Pages"
|
554 |
|
555 |
+
#: inc/php/settings.php:377
|
556 |
msgid "Enter the link to your LINE profile page"
|
557 |
msgstr "Ingresa el enlace a tu página de perfil de LINE"
|
558 |
|
559 |
+
#: inc/php/settings.php:384
|
560 |
msgid "Enter the link to your itch profile page"
|
561 |
msgstr "Ingresa el enlace a tu página de perfil de itch"
|
562 |
|
563 |
+
#: inc/php/settings.php:391
|
564 |
msgid "Enter the link to your Mastodon profile page"
|
565 |
msgstr "Ingresa el enlace a tu página de perfil de Mastodon"
|
566 |
|
567 |
+
#: inc/php/settings.php:398
|
568 |
msgid "Enter the link to your Remind profile page"
|
569 |
msgstr "Ingresa el enlace a tu página de perfil de Remind"
|
570 |
|
571 |
+
#: inc/php/settings.php:405
|
572 |
msgid "Enter the link to your Trade Me profile page"
|
573 |
msgstr "Ingresa el enlace a tu página de perfil de Trade Me"
|
574 |
|
575 |
+
#: inc/php/settings.php:412
|
576 |
msgid "Enter the link to your VSCO profile page"
|
577 |
msgstr "Ingresa el enlace a tu página de perfil de VSCO"
|
578 |
|
579 |
+
#: inc/php/settings.php:419
|
580 |
msgid "Enter the link to your Hireology profile page"
|
581 |
msgstr "Ingresa el enlace a tu página de perfil de Hireology"
|
582 |
|
583 |
+
#: inc/php/settings.php:426
|
584 |
msgid "Enter the link to your Kompoz profile page"
|
585 |
msgstr "Ingresa el enlace a tu página de perfil de Kompoz"
|
586 |
|
587 |
+
#: inc/php/settings.php:433
|
588 |
msgid "Enter the link to your SoundBlend profile page"
|
589 |
msgstr "Ingresa el enlace a tu página de perfil de SoundBlend"
|
590 |
|
591 |
+
#: inc/php/settings.php:440
|
592 |
msgid "Enter the link to your VKontakte profile page"
|
593 |
msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
|
594 |
|
595 |
+
#: inc/php/settings.php:447
|
596 |
msgid "Enter the link to your Odnoklassniki profile page"
|
597 |
msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
|
598 |
|
599 |
+
#: inc/php/settings.php:454
|
600 |
msgid "Enter the link to your Telegram profile page"
|
601 |
msgstr "Ingresa el enlace a tu página de perfil de Telegram"
|
602 |
|
603 |
+
#: inc/php/settings.php:461
|
604 |
msgid "Enter the link to your GitHub profile page"
|
605 |
msgstr "Ingresa el enlace a tu página de perfil de GitHub"
|
606 |
|
607 |
+
#: inc/php/settings.php:468
|
608 |
msgid "Enter the link to your WordPress profile page"
|
609 |
msgstr "Ingresa el enlace a tu página de perfil de WordPress"
|
610 |
|
611 |
+
#: inc/php/settings.php:475
|
612 |
msgid "Enter the link to your CodePen profile page"
|
613 |
msgstr "Ingresa el enlace a tu página de perfil de CodePen"
|
614 |
|
615 |
+
#: inc/php/settings.php:482
|
616 |
msgid ""
|
617 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
|
618 |
"add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
620 |
"Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
|
621 |
"add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
|
622 |
|
623 |
+
#: inc/php/settings.php:489
|
624 |
msgid "Enter the link to your personal website"
|
625 |
msgstr "Ingresa el enlace a tu sitio web personal"
|
626 |
|
627 |
+
#: inc/php/settings.php:496
|
628 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
629 |
msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
|
630 |
|
631 |
+
#: inc/php/settings.php:503
|
632 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/settings.php:510
|
636 |
msgid "Enter the link to your RSS Feed"
|
637 |
msgstr "Ingresa el enlace a tu Feed de RSS"
|
638 |
|
639 |
+
#: inc/php/settings.php:517
|
640 |
#, php-format
|
641 |
msgid ""
|
642 |
"If you did not find the button you need, then %s and I will gladly add it for you."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/php/settings.php:521 inc/php/settings.php:605
|
646 |
msgid "Save changes"
|
647 |
msgstr "Guardar las modificaciones"
|
648 |
|
649 |
+
#: inc/php/settings.php:527
|
650 |
msgid "Display options"
|
651 |
msgstr "Opciones de presentación"
|
652 |
|
653 |
+
#: inc/php/settings.php:529
|
654 |
msgid "There you can configure this plugin."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/settings.php:533
|
658 |
msgid "Show on Posts"
|
659 |
msgstr "Mostrar en Entradas"
|
660 |
|
661 |
+
#: inc/php/settings.php:534
|
662 |
msgid "Automatically display toolbar below content on Posts."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/settings.php:539
|
666 |
msgid "Show on Pages"
|
667 |
msgstr "Mostrar en Páginas"
|
668 |
|
669 |
+
#: inc/php/settings.php:540
|
670 |
msgid "Automatically display toolbar below content on Pages."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: inc/php/settings.php:545
|
674 |
msgid "Open in new tab"
|
675 |
msgstr "Abrir en una nueva pestaña"
|
676 |
|
677 |
+
#: inc/php/settings.php:546
|
678 |
msgid "Open link in a new tab/window."
|
679 |
msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
|
680 |
|
681 |
+
#: inc/php/settings.php:551
|
682 |
msgid "Tooltips"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: inc/php/settings.php:552
|
686 |
msgid "Enable a tooltips with name of the social media above every button."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: inc/php/settings.php:557
|
690 |
msgid "Icon size"
|
691 |
msgstr "Tamaño de ícono"
|
692 |
|
693 |
+
#: inc/php/settings.php:558
|
694 |
msgid "Enter the size of icons (in px) in your social media follow buttons bar."
|
695 |
msgstr ""
|
696 |
"Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
|
697 |
|
698 |
+
#: inc/php/settings.php:565
|
699 |
msgid "Margin"
|
700 |
msgstr "Margen"
|
701 |
|
702 |
+
#: inc/php/settings.php:566
|
703 |
msgid ""
|
704 |
"Enter the size of space (in px) between icons in your social media follow buttons "
|
705 |
"bar."
|
706 |
msgstr ""
|
707 |
"Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
|
708 |
|
709 |
+
#: inc/php/settings.php:575
|
710 |
msgid "Alignment"
|
711 |
msgstr "Alineación"
|
712 |
|
713 |
+
#: inc/php/settings.php:581
|
714 |
msgid "Left"
|
715 |
msgstr "Izquierda"
|
716 |
|
717 |
+
#: inc/php/settings.php:585
|
718 |
msgid "Center"
|
719 |
msgstr "Centro"
|
720 |
|
721 |
+
#: inc/php/settings.php:589
|
722 |
msgid "Right"
|
723 |
msgstr "Derecha"
|
724 |
|
725 |
+
#: inc/php/settings.php:596
|
726 |
msgid "Caption"
|
727 |
msgstr "Leyenda"
|
728 |
|
729 |
+
#: inc/php/settings.php:597
|
730 |
msgid ""
|
731 |
"Enter the caption to your social media follow buttons bar. It will be displays "
|
732 |
"before the toolbar."
|
734 |
"Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
|
735 |
"la barra de botones."
|
736 |
|
737 |
+
#: inc/php/settings.php:611
|
738 |
+
msgid "Live Preview"
|
739 |
+
msgstr ""
|
740 |
|
741 |
+
#: inc/php/settings.php:613
|
742 |
msgid "Click the \"Save changes\" button to update this preview."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/php/settings.php:621 inc/php/sidebar.php:29
|
746 |
+
msgid ""
|
747 |
+
"I'm an independent developer, without a regular income, so every little "
|
748 |
+
"contribution helps cover my costs and lets me spend more time building things for "
|
749 |
+
"people like you to enjoy."
|
750 |
+
msgstr ""
|
751 |
+
"Soy un desarrollador independiente, sin ingresos fijos, por tanto cualquier "
|
752 |
+
"pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
|
753 |
+
"tiempo a hacer cosas que puedan disfrutar personas como tú."
|
754 |
+
|
755 |
+
#: inc/php/settings.php:628 inc/php/sidebar.php:36
|
756 |
+
msgid "Thanks for your support!"
|
757 |
+
msgstr "¡Gracias por su colaboración!"
|
758 |
+
|
759 |
+
#: inc/php/sidebar.php:20
|
760 |
+
msgid "About"
|
761 |
+
msgstr "Acerca de"
|
762 |
+
|
763 |
+
#: inc/php/sidebar.php:22
|
764 |
+
msgid ""
|
765 |
+
"This plugin allows you to easily add the social media follow buttons bar to any "
|
766 |
+
"place of your website."
|
767 |
+
msgstr ""
|
768 |
+
"Este plugin te permite añadir fácilmente una barra de botones de social media en "
|
769 |
+
"cualquier parte de tu sitio web."
|
770 |
+
|
771 |
+
#: inc/php/sidebar.php:41
|
772 |
+
msgid "Help"
|
773 |
+
msgstr "Ayuda"
|
774 |
+
|
775 |
+
#: inc/php/sidebar.php:43
|
776 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
777 |
+
msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
|
778 |
+
|
779 |
#. Plugin Name of the plugin/theme
|
780 |
msgid "Social Media Follow Buttons Bar"
|
781 |
msgstr "Social Media Follow Buttons Bar"
|
801 |
msgid "https://www.arthurgareginyan.com"
|
802 |
msgstr "https://www.arthurgareginyan.com"
|
803 |
|
804 |
+
#~ msgid "Preview"
|
805 |
+
#~ msgstr "Vista previa"
|
806 |
+
|
807 |
#~ msgid "Display toolbar below content on Posts."
|
808 |
#~ msgstr "Mostrar la barra abajo del contenido en Entradas"
|
809 |
|
languages/social-media-buttons-toolbar-ru_RU.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -27,11 +27,11 @@ msgstr "Настройки"
|
|
27 |
|
28 |
#: inc/php/core.php:47
|
29 |
msgid "Donate"
|
30 |
-
msgstr "Поддержать
|
31 |
|
32 |
#: inc/php/core.php:62
|
33 |
msgid "Social Media Follow Buttons"
|
34 |
-
msgstr "
|
35 |
|
36 |
#: inc/php/messages.php:30
|
37 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
@@ -59,7 +59,7 @@ msgstr "от %s Артура Гарегинян %s"
|
|
59 |
msgid "Version"
|
60 |
msgstr "Версия"
|
61 |
|
62 |
-
#: inc/php/page.php:48 inc/php/page.php:
|
63 |
msgid "Usage"
|
64 |
msgstr "Применение"
|
65 |
|
@@ -67,107 +67,124 @@ msgstr "Применение"
|
|
67 |
msgid "F.A.Q."
|
68 |
msgstr "F.A.Q."
|
69 |
|
70 |
-
#: inc/php/page.php:50 inc/php/page.php:
|
71 |
-
|
72 |
-
msgstr "Автор"
|
73 |
-
|
74 |
-
#: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
|
75 |
-
#: inc/php/settings.php:651
|
76 |
msgid "Support"
|
77 |
msgstr "Поддержка"
|
78 |
|
|
|
|
|
|
|
|
|
79 |
#: inc/php/page.php:52
|
80 |
msgid "Store"
|
81 |
-
msgstr "
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid ""
|
85 |
"To display the social media follow buttons bar on the front end of your "
|
86 |
"website, simply follow these steps:"
|
87 |
msgstr ""
|
|
|
|
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Go to the \"Settings\" tab."
|
91 |
msgstr "Перейдите на вкладку «Настройки»."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr "Заполните необходимые поля."
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Select the desired settings."
|
99 |
msgstr "Выберите нужные настройки."
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "Click the \"Save changes\" button."
|
103 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
msgid ""
|
107 |
"Now you have several methods for display the social media follow buttons bar "
|
108 |
"(further just \"buttons\"). Just choose the one that is more suitable for "
|
109 |
"your case."
|
110 |
msgstr ""
|
|
|
|
|
|
|
111 |
|
112 |
-
#: inc/php/page.php:
|
113 |
msgid ""
|
114 |
"<b>A)</b> For display the buttons below a content on every Posts or/and "
|
115 |
"Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
|
116 |
"the section \"Display options\", then click the \"Save changes\" button."
|
117 |
msgstr ""
|
|
|
|
|
|
|
|
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
msgid ""
|
121 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
|
122 |
"following shortcode:"
|
123 |
msgstr ""
|
|
|
|
|
124 |
|
125 |
-
#: inc/php/page.php:
|
126 |
msgid ""
|
127 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
|
128 |
"use the \"Text\" widget and add inside it the following shortcode:"
|
129 |
msgstr ""
|
|
|
|
|
|
|
130 |
|
131 |
-
#: inc/php/page.php:
|
132 |
msgid ""
|
133 |
"<b>D)</b> For add the buttons directly to a theme files, just add the "
|
134 |
"following code to needed place (where you want to display the buttons) in "
|
135 |
"your theme files:"
|
136 |
msgstr ""
|
|
|
|
|
|
|
137 |
|
138 |
-
#: inc/php/page.php:
|
139 |
msgid "Enjoy your fancy social media follow buttons."
|
140 |
-
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "It's that simple!"
|
144 |
msgstr "Вот так просто!"
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "Note!"
|
148 |
msgstr "Примечание!"
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "If you want more options then tell me and I will be happy to add it."
|
152 |
msgstr ""
|
153 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
154 |
"добавить их."
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
msgid "Frequently Asked Questions"
|
158 |
msgstr "Частые вопросы"
|
159 |
|
160 |
-
#: inc/php/page.php:
|
161 |
msgid ""
|
162 |
"If you have a question, please read the Frequently Asked Questions below to "
|
163 |
"see if the answer is here."
|
164 |
-
msgstr ""
|
165 |
|
166 |
-
#: inc/php/page.php:
|
167 |
msgid "Will this plugin work on my WordPress.COM website?"
|
168 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
169 |
|
170 |
-
#: inc/php/page.php:
|
171 |
msgid ""
|
172 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
173 |
"websites."
|
@@ -175,17 +192,17 @@ msgstr ""
|
|
175 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
176 |
"размещённых веб-сайтах (WordPress.ORG)."
|
177 |
|
178 |
-
#: inc/php/page.php:
|
179 |
msgid "Can I use this plugin on my language?"
|
180 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
181 |
|
182 |
-
#: inc/php/page.php:
|
183 |
msgid ""
|
184 |
"Yes. This plugin is ready for translation and has already been translated "
|
185 |
"into several languages."
|
186 |
-
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"If you want to help translate this plugin then please visit the %s. You can "
|
@@ -194,35 +211,44 @@ msgid ""
|
|
194 |
"me at the %s and I will include this translation within the next plugin "
|
195 |
"update."
|
196 |
msgstr ""
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid ""
|
200 |
"Maybe not all existed translations are up to date. You are welcome to "
|
201 |
"contribute corrections!"
|
202 |
-
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid ""
|
206 |
"Many of plugin users would be delighted if you share your translation with "
|
207 |
"the community. Thanks for your contribution!"
|
208 |
msgstr ""
|
|
|
|
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
msgid "How does it work?"
|
212 |
msgstr "Как оно работает?"
|
213 |
|
214 |
-
#: inc/php/page.php:
|
215 |
msgid ""
|
216 |
"On the \"Settings\" tab, select the desired settings and click the \"Save "
|
217 |
"changes\" button. Enjoy your fancy social media follow buttons. It's that "
|
218 |
"simple!"
|
219 |
msgstr ""
|
|
|
|
|
|
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
msgid "Does this plugin requires any modification of the theme?"
|
223 |
msgstr "Этот плагин требует изменения темы?"
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
msgid ""
|
227 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
228 |
"settings page."
|
@@ -230,11 +256,11 @@ msgstr ""
|
|
230 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
231 |
"плагина."
|
232 |
|
233 |
-
#: inc/php/page.php:
|
234 |
msgid "Does this require any knowledge of HTML or CSS?"
|
235 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
236 |
|
237 |
-
#: inc/php/page.php:
|
238 |
msgid ""
|
239 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
240 |
"CSS, using an easy-to-use plugin settings page."
|
@@ -242,24 +268,29 @@ msgstr ""
|
|
242 |
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
243 |
"помощью простой в использовании страницы настройки плагина."
|
244 |
|
245 |
-
#: inc/php/page.php:
|
246 |
msgid ""
|
247 |
"What I need to do if the Google PageSpeed test says that this plugin images "
|
248 |
"must be compressed?"
|
249 |
msgstr ""
|
|
|
|
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid ""
|
253 |
"The images that uses in this plugin are already compressed, but I will do my "
|
254 |
"best to find out what else can be done with the images in order to compress "
|
255 |
"them even better."
|
256 |
msgstr ""
|
|
|
|
|
|
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
msgid "It's not working. What could be wrong?"
|
260 |
msgstr "Оно не работает. Что может быть не так?"
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid ""
|
264 |
"As with every plugin, it's possible that things don't work. The most common "
|
265 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -267,22 +298,35 @@ msgid ""
|
|
267 |
"usage and server load. This is called the browser's cache. Clearing your "
|
268 |
"browser's cache may solve the problem."
|
269 |
msgstr ""
|
270 |
-
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid ""
|
273 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
274 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
275 |
"to give it a look and try to help out. Please include as much information as "
|
276 |
"possible, including a link to your website where the problem can be seen."
|
277 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
msgid ""
|
281 |
"The last WordPress update is preventing me from editing my website that is "
|
282 |
"using this plugin. Why is this?"
|
283 |
msgstr ""
|
|
|
|
|
284 |
|
285 |
-
#: inc/php/page.php:
|
286 |
msgid ""
|
287 |
"This plugin can not cause such problem. More likely, the problem are related "
|
288 |
"to the settings of the website. It could just be a cache, so please try to "
|
@@ -290,94 +334,96 @@ msgid ""
|
|
290 |
"service such as the CloudFlare) and then the cache of your web browser. Also "
|
291 |
"please try to re-login to the website, this too can help."
|
292 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
msgid "Where to report bug if found?"
|
296 |
msgstr "Где можно сообщить об ошибке?"
|
297 |
|
298 |
-
#: inc/php/page.php:
|
299 |
#, php-format
|
300 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
301 |
msgstr ""
|
302 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
306 |
msgstr ""
|
307 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
#, php-format
|
311 |
msgid ""
|
312 |
"Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
313 |
msgstr ""
|
|
|
|
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
msgid "I love this plugin! Can I help somehow?"
|
317 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
318 |
|
319 |
-
#: inc/php/page.php:
|
320 |
#, php-format
|
321 |
msgid ""
|
322 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
323 |
"click on the donate button, and thank you!"
|
324 |
msgstr ""
|
|
|
|
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr "Моего вопроса здесь нет."
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
msgid ""
|
333 |
"You can ask your question on the plugin support page %s. But please keep in "
|
334 |
"mind that this plugin is free, and there is no a special support team, so I "
|
335 |
"have no way to answer everyone."
|
336 |
msgstr ""
|
|
|
|
|
|
|
337 |
|
338 |
-
#: inc/php/
|
339 |
-
msgid "
|
340 |
-
msgstr "
|
341 |
|
342 |
-
#: inc/php/
|
343 |
msgid ""
|
344 |
-
"
|
345 |
-
"
|
346 |
-
|
347 |
-
"
|
348 |
-
"
|
349 |
-
|
350 |
-
#: inc/php/settings.php:30 inc/php/settings.php:653
|
351 |
-
msgid ""
|
352 |
-
"I'm an independent developer, without a regular income, so every little "
|
353 |
-
"contribution helps cover my costs and lets me spend more time building "
|
354 |
-
"things for people like you to enjoy."
|
355 |
msgstr ""
|
356 |
-
"Я
|
357 |
-
"
|
|
|
|
|
|
|
358 |
"создание программ для людей как вы."
|
359 |
|
360 |
-
#: inc/php/
|
361 |
msgid "Donate with PayPal"
|
362 |
-
msgstr ""
|
363 |
|
364 |
-
#: inc/php/
|
365 |
-
msgid "
|
366 |
msgstr "Спасибо за вашу поддержку!"
|
367 |
|
368 |
-
#: inc/php/settings.php:
|
369 |
-
msgid "Help"
|
370 |
-
msgstr "Помощь"
|
371 |
-
|
372 |
-
#: inc/php/settings.php:39
|
373 |
-
msgid "If you have a question, please read the information in the FAQ section."
|
374 |
-
msgstr "Есть что сказать? Нужна помощь?"
|
375 |
-
|
376 |
-
#: inc/php/settings.php:64
|
377 |
msgid "Buttons"
|
378 |
msgstr "Кнопки"
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
381 |
msgid ""
|
382 |
"Just fill in the required fields to make a buttons. The social networking "
|
383 |
"buttons will lead directly to your profile pages. If you don't want to use "
|
@@ -389,259 +435,259 @@ msgstr ""
|
|
389 |
"хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
|
390 |
"и тогда они не появятся."
|
391 |
|
392 |
-
#: inc/php/settings.php:
|
393 |
msgid "Enter the link to your Facebook profile page"
|
394 |
msgstr "Введите ссылку на вашу страницу профиля Facebook"
|
395 |
|
396 |
-
#: inc/php/settings.php:
|
397 |
msgid "Enter the link to your Twitter profile page"
|
398 |
msgstr "Введите ссылку на вашу страницу профиля Twitter"
|
399 |
|
400 |
-
#: inc/php/settings.php:
|
401 |
msgid "Enter the link to your Instagram profile page"
|
402 |
msgstr "Введите ссылку на вашу страницу профиля Instagram"
|
403 |
|
404 |
-
#: inc/php/settings.php:
|
405 |
msgid "Enter the link to your Google+ profile page"
|
406 |
msgstr "Введите ссылку на вашу страницу профиля Google+"
|
407 |
|
408 |
-
#: inc/php/settings.php:
|
409 |
msgid "Enter the link to your YouTube profile page"
|
410 |
msgstr "Введите ссылку на вашу страницу профиля YouTube"
|
411 |
|
412 |
-
#: inc/php/settings.php:
|
413 |
msgid "Enter the link to your YouTube Gaming profile page"
|
414 |
msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
|
415 |
|
416 |
-
#: inc/php/settings.php:
|
417 |
msgid "Enter the link to your Google Play profile page"
|
418 |
msgstr "Введите ссылку на вашу страницу профиля Google Play"
|
419 |
|
420 |
-
#: inc/php/settings.php:
|
421 |
msgid "Enter the link to your iTunes profile page"
|
422 |
msgstr "Введите ссылку на вашу страницу профиля iTunes"
|
423 |
|
424 |
-
#: inc/php/settings.php:
|
425 |
msgid "Enter the link to your Apple Music profile page"
|
426 |
msgstr "Введите ссылку на вашу страницу профиля Apple Music"
|
427 |
|
428 |
-
#: inc/php/settings.php:
|
429 |
msgid "Enter the link to your Periscope profile page"
|
430 |
msgstr "Введите ссылку на вашу страницу профиля Periscope"
|
431 |
|
432 |
-
#: inc/php/settings.php:
|
433 |
msgid "Enter the link to your Vimeo profile page"
|
434 |
msgstr "Введите ссылку на вашу страницу профиля Vimeo"
|
435 |
|
436 |
-
#: inc/php/settings.php:
|
437 |
msgid "Enter the link to your Blogger profile page"
|
438 |
msgstr "Введите ссылку на вашу страницу профиля Blogger"
|
439 |
|
440 |
-
#: inc/php/settings.php:
|
441 |
msgid "Enter the link to your Buzzsprout profile page"
|
442 |
msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
|
443 |
|
444 |
-
#: inc/php/settings.php:
|
445 |
msgid "Enter the link to your LiveJournal profile page"
|
446 |
msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
|
447 |
|
448 |
-
#: inc/php/settings.php:
|
449 |
msgid "Enter the link to your Reddit profile page"
|
450 |
msgstr "Введите ссылку на вашу страницу профиля Reddit"
|
451 |
|
452 |
-
#: inc/php/settings.php:
|
453 |
msgid "Enter the link to your LinkedIn profile page"
|
454 |
msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
|
455 |
|
456 |
-
#: inc/php/settings.php:
|
457 |
msgid "Enter the link to your Diaspora profile page"
|
458 |
msgstr "Введите ссылку на вашу страницу профиля Diaspora"
|
459 |
|
460 |
-
#: inc/php/settings.php:
|
461 |
msgid "Enter the link to your DeviantArt profile page"
|
462 |
msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
|
463 |
|
464 |
-
#: inc/php/settings.php:
|
465 |
msgid "Enter the link to your XING profile page"
|
466 |
msgstr "Введите ссылку на вашу страницу профиля XING"
|
467 |
|
468 |
-
#: inc/php/settings.php:
|
469 |
msgid "Enter the link to your Pinterest profile page"
|
470 |
msgstr "Введите ссылку на вашу страницу профиля Pinterest"
|
471 |
|
472 |
-
#: inc/php/settings.php:
|
473 |
msgid "Enter the link to your Flickr profile page"
|
474 |
msgstr "Введите ссылку на вашу страницу профиля Flickr"
|
475 |
|
476 |
-
#: inc/php/settings.php:
|
477 |
msgid "Enter the link to your Tumblr profile page"
|
478 |
msgstr "Введите ссылку на вашу страницу профиля Tumblr"
|
479 |
|
480 |
-
#: inc/php/settings.php:
|
481 |
msgid "Enter the link to your Snapchat profile page"
|
482 |
msgstr "Введите ссылку на вашу страницу профиля Snapchat"
|
483 |
|
484 |
-
#: inc/php/settings.php:
|
485 |
msgid "Enter the link to your Twitch profile page"
|
486 |
msgstr "Введите ссылку на вашу страницу профиля Twitch"
|
487 |
|
488 |
-
#: inc/php/settings.php:
|
489 |
msgid "Enter the link to your Patreon profile page"
|
490 |
msgstr "Введите ссылку на вашу страницу профиля Patreon"
|
491 |
|
492 |
-
#: inc/php/settings.php:
|
493 |
msgid "Enter the link to your IMDb profile page"
|
494 |
msgstr "Введите ссылку на вашу страницу профиля IMDb"
|
495 |
|
496 |
-
#: inc/php/settings.php:
|
497 |
msgid "Enter the link to your SoundCloud profile page"
|
498 |
msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
|
499 |
|
500 |
-
#: inc/php/settings.php:
|
501 |
msgid "Enter the link to your Plug.dj profile page"
|
502 |
msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
|
503 |
|
504 |
-
#: inc/php/settings.php:
|
505 |
msgid "Enter the link to your Spotify profile page"
|
506 |
msgstr "Введите ссылку на вашу страницу профиля Spotify"
|
507 |
|
508 |
-
#: inc/php/settings.php:
|
509 |
msgid "Enter the link to your Bandcamp profile page"
|
510 |
msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
|
511 |
|
512 |
-
#: inc/php/settings.php:
|
513 |
msgid "Enter the link to your Dloky profile page"
|
514 |
msgstr "Введите ссылку на вашу страницу профиля Dloky"
|
515 |
|
516 |
-
#: inc/php/settings.php:
|
517 |
msgid "Enter the link to your Amazon profile page"
|
518 |
msgstr "Введите ссылку на вашу страницу профиля Amazon"
|
519 |
|
520 |
-
#: inc/php/settings.php:
|
521 |
msgid "Enter the link to your BookBub profile page"
|
522 |
msgstr "Введите ссылку на вашу страницу профиля BookBub"
|
523 |
|
524 |
-
#: inc/php/settings.php:
|
525 |
msgid "Enter the link to your Goodreads profile page"
|
526 |
msgstr "Введите ссылку на вашу страницу профиля Goodreads"
|
527 |
|
528 |
-
#: inc/php/settings.php:
|
529 |
msgid "Enter the link to your MeetVibe profile page"
|
530 |
msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
|
531 |
|
532 |
-
#: inc/php/settings.php:
|
533 |
msgid "Enter the link to your Meetup profile page"
|
534 |
msgstr "Введите ссылку на вашу страницу профиля Meetup"
|
535 |
|
536 |
-
#: inc/php/settings.php:
|
537 |
msgid "Enter the link to your Steam profile page"
|
538 |
msgstr "Введите ссылку на вашу страницу профиля Steam"
|
539 |
|
540 |
-
#: inc/php/settings.php:
|
541 |
msgid "Enter the link to your Mixer profile page"
|
542 |
msgstr "Введите ссылку на вашу страницу профиля Mixer"
|
543 |
|
544 |
-
#: inc/php/settings.php:
|
545 |
msgid "Enter the link to your Discord profile page"
|
546 |
msgstr "Введите ссылку на вашу страницу профиля Discord"
|
547 |
|
548 |
-
#: inc/php/settings.php:
|
549 |
msgid "Enter the link to your Yelp profile page"
|
550 |
msgstr "Введите ссылку на вашу страницу профиля Yelp"
|
551 |
|
552 |
-
#: inc/php/settings.php:
|
553 |
msgid "Enter the link to your StumbleUpon profile page"
|
554 |
msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
|
555 |
|
556 |
-
#: inc/php/settings.php:
|
557 |
msgid "Enter the link to your Bloglovin profile page"
|
558 |
msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
|
559 |
|
560 |
-
#: inc/php/settings.php:
|
561 |
msgid "Enter the link to your WhatsApp profile page"
|
562 |
msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
|
563 |
|
564 |
-
#: inc/php/settings.php:
|
565 |
msgid "Enter the link to your Medium profile page"
|
566 |
msgstr "Введите ссылку на вашу страницу профиля Medium"
|
567 |
|
568 |
-
#: inc/php/settings.php:
|
569 |
msgid "Enter the link to your 500px profile page"
|
570 |
msgstr "Введите ссылку на вашу страницу профиля 500px"
|
571 |
|
572 |
-
#: inc/php/settings.php:
|
573 |
msgid "Enter the link to your Behance profile page"
|
574 |
msgstr "Введите ссылку на вашу страницу профиля Behance"
|
575 |
|
576 |
-
#: inc/php/settings.php:
|
577 |
msgid "Enter the link to your Polyvore profile page"
|
578 |
msgstr "Введите ссылку на вашу страницу профиля Polyvore"
|
579 |
|
580 |
-
#: inc/php/settings.php:
|
581 |
msgid "Enter the link to your Yellow Pages profile page"
|
582 |
msgstr "Введите ссылку на вашу страницу профиля Yellow Pages"
|
583 |
|
584 |
-
#: inc/php/settings.php:
|
585 |
msgid "Enter the link to your LINE profile page"
|
586 |
msgstr "Введите ссылку на вашу страницу профиля LINE"
|
587 |
|
588 |
-
#: inc/php/settings.php:
|
589 |
msgid "Enter the link to your itch profile page"
|
590 |
msgstr "Введите ссылку на вашу страницу профиля itch"
|
591 |
|
592 |
-
#: inc/php/settings.php:
|
593 |
msgid "Enter the link to your Mastodon profile page"
|
594 |
msgstr "Введите ссылку на вашу страницу профиля Mastodon"
|
595 |
|
596 |
-
#: inc/php/settings.php:
|
597 |
msgid "Enter the link to your Remind profile page"
|
598 |
msgstr "Введите ссылку на вашу страницу профиля Remind"
|
599 |
|
600 |
-
#: inc/php/settings.php:
|
601 |
msgid "Enter the link to your Trade Me profile page"
|
602 |
msgstr "Введите ссылку на вашу страницу профиля Trade Me"
|
603 |
|
604 |
-
#: inc/php/settings.php:
|
605 |
msgid "Enter the link to your VSCO profile page"
|
606 |
msgstr "Введите ссылку на вашу страницу профиля VSCO"
|
607 |
|
608 |
-
#: inc/php/settings.php:
|
609 |
msgid "Enter the link to your Hireology profile page"
|
610 |
msgstr "Введите ссылку на вашу страницу профиля Hireology"
|
611 |
|
612 |
-
#: inc/php/settings.php:
|
613 |
msgid "Enter the link to your Kompoz profile page"
|
614 |
msgstr "Введите ссылку на вашу страницу профиля Kompoz"
|
615 |
|
616 |
-
#: inc/php/settings.php:
|
617 |
msgid "Enter the link to your SoundBlend profile page"
|
618 |
msgstr "Введите ссылку на вашу страницу профиля SoundBlend"
|
619 |
|
620 |
-
#: inc/php/settings.php:
|
621 |
msgid "Enter the link to your VKontakte profile page"
|
622 |
msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
|
623 |
|
624 |
-
#: inc/php/settings.php:
|
625 |
msgid "Enter the link to your Odnoklassniki profile page"
|
626 |
msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
|
627 |
|
628 |
-
#: inc/php/settings.php:
|
629 |
msgid "Enter the link to your Telegram profile page"
|
630 |
msgstr "Введите ссылку на вашу страницу профиля Telegram"
|
631 |
|
632 |
-
#: inc/php/settings.php:
|
633 |
msgid "Enter the link to your GitHub profile page"
|
634 |
msgstr "Введите ссылку на вашу страницу профиля GitHub"
|
635 |
|
636 |
-
#: inc/php/settings.php:
|
637 |
msgid "Enter the link to your WordPress profile page"
|
638 |
msgstr "Введите ссылку на вашу страницу профиля WordPress"
|
639 |
|
640 |
-
#: inc/php/settings.php:
|
641 |
msgid "Enter the link to your CodePen profile page"
|
642 |
msgstr "Введите ссылку на вашу страницу профиля CodePen"
|
643 |
|
644 |
-
#: inc/php/settings.php:
|
645 |
msgid ""
|
646 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
|
647 |
"<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
@@ -650,114 +696,118 @@ msgstr ""
|
|
650 |
"b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
|
651 |
"профиля"
|
652 |
|
653 |
-
#: inc/php/settings.php:
|
654 |
msgid "Enter the link to your personal website"
|
655 |
msgstr "Введите ссылку на ваш персональный сайт"
|
656 |
|
657 |
-
#: inc/php/settings.php:
|
658 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
659 |
msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
|
660 |
|
661 |
-
#: inc/php/settings.php:
|
662 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
663 |
msgstr "Введите номер телефона с префиксом <b>tel://</b>"
|
664 |
|
665 |
-
#: inc/php/settings.php:
|
666 |
msgid "Enter the link to your RSS Feed"
|
667 |
msgstr "Введите ссылку на ваш RSS поток"
|
668 |
|
669 |
-
#: inc/php/settings.php:
|
670 |
#, php-format
|
671 |
msgid ""
|
672 |
"If you did not find the button you need, then %s and I will gladly add it "
|
673 |
"for you."
|
674 |
msgstr ""
|
|
|
|
|
675 |
|
676 |
-
#: inc/php/settings.php:
|
677 |
msgid "Save changes"
|
678 |
msgstr "Сохранить изменения"
|
679 |
|
680 |
-
#: inc/php/settings.php:
|
681 |
msgid "Display options"
|
682 |
msgstr "Настройки отображения"
|
683 |
|
684 |
-
#: inc/php/settings.php:
|
685 |
msgid "There you can configure this plugin."
|
686 |
msgstr "Здесь вы можете настроить этот плагин."
|
687 |
|
688 |
-
#: inc/php/settings.php:
|
689 |
msgid "Show on Posts"
|
690 |
-
msgstr "
|
691 |
|
692 |
-
#: inc/php/settings.php:
|
693 |
msgid "Automatically display toolbar below content on Posts."
|
694 |
-
msgstr ""
|
695 |
|
696 |
-
#: inc/php/settings.php:
|
697 |
msgid "Show on Pages"
|
698 |
msgstr "Показывать на страницах"
|
699 |
|
700 |
-
#: inc/php/settings.php:
|
701 |
msgid "Automatically display toolbar below content on Pages."
|
702 |
msgstr ""
|
|
|
703 |
|
704 |
-
#: inc/php/settings.php:
|
705 |
msgid "Open in new tab"
|
706 |
msgstr "Открыть в новой вкладке"
|
707 |
|
708 |
-
#: inc/php/settings.php:
|
709 |
msgid "Open link in a new tab/window."
|
710 |
-
msgstr "Открыть ссылку в новом
|
711 |
|
712 |
-
#: inc/php/settings.php:
|
713 |
msgid "Tooltips"
|
714 |
msgstr "Подсказки"
|
715 |
|
716 |
-
#: inc/php/settings.php:
|
717 |
msgid "Enable a tooltips with name of the social media above every button."
|
718 |
msgstr ""
|
|
|
719 |
|
720 |
-
#: inc/php/settings.php:
|
721 |
msgid "Icon size"
|
722 |
msgstr "Размер иконки"
|
723 |
|
724 |
-
#: inc/php/settings.php:
|
725 |
msgid ""
|
726 |
"Enter the size of icons (in px) in your social media follow buttons bar."
|
727 |
msgstr ""
|
728 |
"Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
729 |
|
730 |
-
#: inc/php/settings.php:
|
731 |
msgid "Margin"
|
732 |
msgstr "Отступ"
|
733 |
|
734 |
-
#: inc/php/settings.php:
|
735 |
msgid ""
|
736 |
"Enter the size of space (in px) between icons in your social media follow "
|
737 |
"buttons bar."
|
738 |
-
msgstr ""
|
739 |
|
740 |
-
#: inc/php/settings.php:
|
741 |
msgid "Alignment"
|
742 |
msgstr "Выравнивание"
|
743 |
|
744 |
-
#: inc/php/settings.php:
|
745 |
msgid "Left"
|
746 |
msgstr "Слева"
|
747 |
|
748 |
-
#: inc/php/settings.php:
|
749 |
msgid "Center"
|
750 |
msgstr "По центру"
|
751 |
|
752 |
-
#: inc/php/settings.php:
|
753 |
msgid "Right"
|
754 |
msgstr "Справа"
|
755 |
|
756 |
-
#: inc/php/settings.php:
|
757 |
msgid "Caption"
|
758 |
msgstr "Заголовок"
|
759 |
|
760 |
-
#: inc/php/settings.php:
|
761 |
msgid ""
|
762 |
"Enter the caption to your social media follow buttons bar. It will be "
|
763 |
"displays before the toolbar."
|
@@ -765,15 +815,50 @@ msgstr ""
|
|
765 |
"Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
|
766 |
"над панелью."
|
767 |
|
768 |
-
#: inc/php/settings.php:
|
769 |
-
msgid "Preview"
|
770 |
-
msgstr "
|
771 |
|
772 |
-
#: inc/php/settings.php:
|
773 |
msgid "Click the \"Save changes\" button to update this preview."
|
774 |
msgstr ""
|
775 |
"Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
776 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
#. Plugin Name of the plugin/theme
|
778 |
msgid "Social Media Follow Buttons Bar"
|
779 |
msgstr "Social Media Follow Buttons Bar"
|
@@ -787,6 +872,9 @@ msgid ""
|
|
787 |
"Easily add the smart bar with social media follow buttons (not share, only "
|
788 |
"link to your profiles) to any place of your WordPress website."
|
789 |
msgstr ""
|
|
|
|
|
|
|
790 |
|
791 |
#. Author of the plugin/theme
|
792 |
msgid "Arthur Gareginyan"
|
@@ -796,6 +884,12 @@ msgstr "Артур Гарегинян"
|
|
796 |
msgid "https://www.arthurgareginyan.com"
|
797 |
msgstr "https://www.arthurgareginyan.com"
|
798 |
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
#~ msgid "Display toolbar below content on Posts."
|
800 |
#~ msgstr "Показывать кнопки под содержанием в записях"
|
801 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
4 |
+
"POT-Creation-Date: 2017-08-10 16:03+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-08-10 16:03+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
27 |
|
28 |
#: inc/php/core.php:47
|
29 |
msgid "Donate"
|
30 |
+
msgstr "Поддержать"
|
31 |
|
32 |
#: inc/php/core.php:62
|
33 |
msgid "Social Media Follow Buttons"
|
34 |
+
msgstr "Социальные Медиа Кнопки Следования"
|
35 |
|
36 |
#: inc/php/messages.php:30
|
37 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
59 |
msgid "Version"
|
60 |
msgstr "Версия"
|
61 |
|
62 |
+
#: inc/php/page.php:48 inc/php/page.php:68
|
63 |
msgid "Usage"
|
64 |
msgstr "Применение"
|
65 |
|
67 |
msgid "F.A.Q."
|
68 |
msgstr "F.A.Q."
|
69 |
|
70 |
+
#: inc/php/page.php:50 inc/php/page.php:193 inc/php/settings.php:619
|
71 |
+
#: inc/php/sidebar.php:27
|
|
|
|
|
|
|
|
|
72 |
msgid "Support"
|
73 |
msgstr "Поддержка"
|
74 |
|
75 |
+
#: inc/php/page.php:51 inc/php/page.php:213
|
76 |
+
msgid "Author"
|
77 |
+
msgstr "Автор"
|
78 |
+
|
79 |
#: inc/php/page.php:52
|
80 |
msgid "Store"
|
81 |
+
msgstr "Магазин"
|
82 |
|
83 |
+
#: inc/php/page.php:70
|
84 |
msgid ""
|
85 |
"To display the social media follow buttons bar on the front end of your "
|
86 |
"website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
+
"Чтобы отобразить панель социальных кнопок на передней панели вашего веб-"
|
89 |
+
"сайта, просто выполните следующие действия:"
|
90 |
|
91 |
+
#: inc/php/page.php:72
|
92 |
msgid "Go to the \"Settings\" tab."
|
93 |
msgstr "Перейдите на вкладку «Настройки»."
|
94 |
|
95 |
+
#: inc/php/page.php:73
|
96 |
msgid "Fill in the required fields."
|
97 |
msgstr "Заполните необходимые поля."
|
98 |
|
99 |
+
#: inc/php/page.php:74
|
100 |
msgid "Select the desired settings."
|
101 |
msgstr "Выберите нужные настройки."
|
102 |
|
103 |
+
#: inc/php/page.php:75
|
104 |
msgid "Click the \"Save changes\" button."
|
105 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
106 |
|
107 |
+
#: inc/php/page.php:76
|
108 |
msgid ""
|
109 |
"Now you have several methods for display the social media follow buttons bar "
|
110 |
"(further just \"buttons\"). Just choose the one that is more suitable for "
|
111 |
"your case."
|
112 |
msgstr ""
|
113 |
+
"Теперь у вас есть несколько способов отображения панели социальных сетей "
|
114 |
+
"(далее просто «кнопки»). Просто выберите ту, которая больше подходит для "
|
115 |
+
"вашего дела."
|
116 |
|
117 |
+
#: inc/php/page.php:77
|
118 |
msgid ""
|
119 |
"<b>A)</b> For display the buttons below a content on every Posts or/and "
|
120 |
"Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
|
121 |
"the section \"Display options\", then click the \"Save changes\" button."
|
122 |
msgstr ""
|
123 |
+
"<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и "
|
124 |
+
"страницах, просто установите флажок “Показывать в записях” или/и “Показывать "
|
125 |
+
"на страницах” в разделе “Настройки отображения”, затем нажмите кнопку "
|
126 |
+
"“Сохранить изменения”."
|
127 |
|
128 |
+
#: inc/php/page.php:78
|
129 |
msgid ""
|
130 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
|
131 |
"following shortcode:"
|
132 |
msgstr ""
|
133 |
+
"<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WP Post/Page "
|
134 |
+
"используйте следующий короткий код:"
|
135 |
|
136 |
+
#: inc/php/page.php:80
|
137 |
msgid ""
|
138 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
|
139 |
"use the \"Text\" widget and add inside it the following shortcode:"
|
140 |
msgstr ""
|
141 |
+
"<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем "
|
142 |
+
"колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий "
|
143 |
+
"короткий код:"
|
144 |
|
145 |
+
#: inc/php/page.php:82
|
146 |
msgid ""
|
147 |
"<b>D)</b> For add the buttons directly to a theme files, just add the "
|
148 |
"following code to needed place (where you want to display the buttons) in "
|
149 |
"your theme files:"
|
150 |
msgstr ""
|
151 |
+
"<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто "
|
152 |
+
"добавьте следующий код в нужное место (где вы хотите отображать кнопки) в "
|
153 |
+
"файлах темы:"
|
154 |
|
155 |
+
#: inc/php/page.php:85
|
156 |
msgid "Enjoy your fancy social media follow buttons."
|
157 |
+
msgstr "Наслаждайтесь своими модными социальными медиа кнопками следования."
|
158 |
|
159 |
+
#: inc/php/page.php:85
|
160 |
msgid "It's that simple!"
|
161 |
msgstr "Вот так просто!"
|
162 |
|
163 |
+
#: inc/php/page.php:87 inc/php/settings.php:516
|
164 |
msgid "Note!"
|
165 |
msgstr "Примечание!"
|
166 |
|
167 |
+
#: inc/php/page.php:87
|
168 |
msgid "If you want more options then tell me and I will be happy to add it."
|
169 |
msgstr ""
|
170 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
171 |
"добавить их."
|
172 |
|
173 |
+
#: inc/php/page.php:96
|
174 |
msgid "Frequently Asked Questions"
|
175 |
msgstr "Частые вопросы"
|
176 |
|
177 |
+
#: inc/php/page.php:100
|
178 |
msgid ""
|
179 |
"If you have a question, please read the Frequently Asked Questions below to "
|
180 |
"see if the answer is here."
|
181 |
+
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
182 |
|
183 |
+
#: inc/php/page.php:122
|
184 |
msgid "Will this plugin work on my WordPress.COM website?"
|
185 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
186 |
|
187 |
+
#: inc/php/page.php:123
|
188 |
msgid ""
|
189 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
190 |
"websites."
|
192 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
193 |
"размещённых веб-сайтах (WordPress.ORG)."
|
194 |
|
195 |
+
#: inc/php/page.php:125
|
196 |
msgid "Can I use this plugin on my language?"
|
197 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
198 |
|
199 |
+
#: inc/php/page.php:126
|
200 |
msgid ""
|
201 |
"Yes. This plugin is ready for translation and has already been translated "
|
202 |
"into several languages."
|
203 |
+
msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
|
204 |
|
205 |
+
#: inc/php/page.php:128
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"If you want to help translate this plugin then please visit the %s. You can "
|
211 |
"me at the %s and I will include this translation within the next plugin "
|
212 |
"update."
|
213 |
msgstr ""
|
214 |
+
"Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы "
|
215 |
+
"также можете использовать файл POT, который включён в плагин и помещён в "
|
216 |
+
"папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
|
217 |
+
"PO на %s и Я включу этот перевод в следующее обновление плагина."
|
218 |
|
219 |
+
#: inc/php/page.php:133
|
220 |
msgid ""
|
221 |
"Maybe not all existed translations are up to date. You are welcome to "
|
222 |
"contribute corrections!"
|
223 |
+
msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
|
224 |
|
225 |
+
#: inc/php/page.php:134
|
226 |
msgid ""
|
227 |
"Many of plugin users would be delighted if you share your translation with "
|
228 |
"the community. Thanks for your contribution!"
|
229 |
msgstr ""
|
230 |
+
"Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
|
231 |
+
"с сообществом. Спасибо за ваш вклад!"
|
232 |
|
233 |
+
#: inc/php/page.php:136
|
234 |
msgid "How does it work?"
|
235 |
msgstr "Как оно работает?"
|
236 |
|
237 |
+
#: inc/php/page.php:137
|
238 |
msgid ""
|
239 |
"On the \"Settings\" tab, select the desired settings and click the \"Save "
|
240 |
"changes\" button. Enjoy your fancy social media follow buttons. It's that "
|
241 |
"simple!"
|
242 |
msgstr ""
|
243 |
+
"На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить "
|
244 |
+
"изменения». Наслаждайтесь вашими модными Социальными медиа кнопками "
|
245 |
+
"следования. Это так просто!"
|
246 |
|
247 |
+
#: inc/php/page.php:139
|
248 |
msgid "Does this plugin requires any modification of the theme?"
|
249 |
msgstr "Этот плагин требует изменения темы?"
|
250 |
|
251 |
+
#: inc/php/page.php:140
|
252 |
msgid ""
|
253 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
254 |
"settings page."
|
256 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
257 |
"плагина."
|
258 |
|
259 |
+
#: inc/php/page.php:142
|
260 |
msgid "Does this require any knowledge of HTML or CSS?"
|
261 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
262 |
|
263 |
+
#: inc/php/page.php:143
|
264 |
msgid ""
|
265 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
266 |
"CSS, using an easy-to-use plugin settings page."
|
268 |
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
269 |
"помощью простой в использовании страницы настройки плагина."
|
270 |
|
271 |
+
#: inc/php/page.php:145
|
272 |
msgid ""
|
273 |
"What I need to do if the Google PageSpeed test says that this plugin images "
|
274 |
"must be compressed?"
|
275 |
msgstr ""
|
276 |
+
"Что делать, если в тесте Google Page Speed сказано, что изображения этого "
|
277 |
+
"плагина должны быть сжаты?"
|
278 |
|
279 |
+
#: inc/php/page.php:146
|
280 |
msgid ""
|
281 |
"The images that uses in this plugin are already compressed, but I will do my "
|
282 |
"best to find out what else can be done with the images in order to compress "
|
283 |
"them even better."
|
284 |
msgstr ""
|
285 |
+
"Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все "
|
286 |
+
"возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать "
|
287 |
+
"их ещё лучше."
|
288 |
|
289 |
+
#: inc/php/page.php:148
|
290 |
msgid "It's not working. What could be wrong?"
|
291 |
msgstr "Оно не работает. Что может быть не так?"
|
292 |
|
293 |
+
#: inc/php/page.php:149
|
294 |
msgid ""
|
295 |
"As with every plugin, it's possible that things don't work. The most common "
|
296 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
298 |
"usage and server load. This is called the browser's cache. Clearing your "
|
299 |
"browser's cache may solve the problem."
|
300 |
msgstr ""
|
301 |
+
"Как и в случае с любым другим плагином, что-то может не работать. Наиболее "
|
302 |
+
"распространенной причиной этого является кеш веб-браузера. Каждый веб-"
|
303 |
+
"браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и "
|
304 |
+
"т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на "
|
305 |
+
"сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
|
306 |
+
"проблему."
|
307 |
+
|
308 |
+
#: inc/php/page.php:150
|
309 |
msgid ""
|
310 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
311 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
312 |
"to give it a look and try to help out. Please include as much information as "
|
313 |
"possible, including a link to your website where the problem can be seen."
|
314 |
msgstr ""
|
315 |
+
"Невозможно точно сказать, что может быть неправильно, но если вы разместите "
|
316 |
+
"запрос поддержки на форуме поддержки плагинов на WordPress.org, Я с "
|
317 |
+
"удовольствием посмотрю его и попытаюсь помочь. Пожалуйста, укажите как можно "
|
318 |
+
"больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
|
319 |
+
"проблему."
|
320 |
|
321 |
+
#: inc/php/page.php:152
|
322 |
msgid ""
|
323 |
"The last WordPress update is preventing me from editing my website that is "
|
324 |
"using this plugin. Why is this?"
|
325 |
msgstr ""
|
326 |
+
"Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
|
327 |
+
"который использует этот плагин. Почему так?"
|
328 |
|
329 |
+
#: inc/php/page.php:153
|
330 |
msgid ""
|
331 |
"This plugin can not cause such problem. More likely, the problem are related "
|
332 |
"to the settings of the website. It could just be a cache, so please try to "
|
334 |
"service such as the CloudFlare) and then the cache of your web browser. Also "
|
335 |
"please try to re-login to the website, this too can help."
|
336 |
msgstr ""
|
337 |
+
"Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана "
|
338 |
+
"с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш "
|
339 |
+
"вашего сайта (возможно, вы используете плагин для кеширования или какой-либо "
|
340 |
+
"веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
|
341 |
+
"попробуйте повторно войти на сайт, это тоже может помочь."
|
342 |
|
343 |
+
#: inc/php/page.php:155
|
344 |
msgid "Where to report bug if found?"
|
345 |
msgstr "Где можно сообщить об ошибке?"
|
346 |
|
347 |
+
#: inc/php/page.php:157
|
348 |
#, php-format
|
349 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
350 |
msgstr ""
|
351 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
352 |
|
353 |
+
#: inc/php/page.php:163
|
354 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
355 |
msgstr ""
|
356 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
357 |
|
358 |
+
#: inc/php/page.php:165
|
359 |
#, php-format
|
360 |
msgid ""
|
361 |
"Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
362 |
msgstr ""
|
363 |
+
"Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
|
364 |
+
"письмо на адрес %s. Спасибо!"
|
365 |
|
366 |
+
#: inc/php/page.php:170
|
367 |
msgid "I love this plugin! Can I help somehow?"
|
368 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
369 |
|
370 |
+
#: inc/php/page.php:172
|
371 |
#, php-format
|
372 |
msgid ""
|
373 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
374 |
"click on the donate button, and thank you!"
|
375 |
msgstr ""
|
376 |
+
"Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
|
377 |
+
"нажмите на кнопку пожертвования. Спасибо!"
|
378 |
|
379 |
+
#: inc/php/page.php:178
|
380 |
msgid "My question wasn't answered here."
|
381 |
msgstr "Моего вопроса здесь нет."
|
382 |
|
383 |
+
#: inc/php/page.php:180
|
384 |
#, php-format
|
385 |
msgid ""
|
386 |
"You can ask your question on the plugin support page %s. But please keep in "
|
387 |
"mind that this plugin is free, and there is no a special support team, so I "
|
388 |
"have no way to answer everyone."
|
389 |
msgstr ""
|
390 |
+
"Вы можете задать ваш вопрос на странице поддержки плагина %s. Но имейте в "
|
391 |
+
"виду, что этот плагин является бесплатным и без специальной поддержки, "
|
392 |
+
"поэтому у меня нет возможности ответить на все вопросы."
|
393 |
|
394 |
+
#: inc/php/page.php:196
|
395 |
+
msgid "If you appreciate my work, you can buy me a coffee!"
|
396 |
+
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
397 |
|
398 |
+
#: inc/php/page.php:197
|
399 |
msgid ""
|
400 |
+
"I spend a lot of time and effort trying to make sure that the themes, "
|
401 |
+
"plugins and another things I build are useful, and the ultimate proof of "
|
402 |
+
"that for me is that you actually want to use them. But, I’m an independent "
|
403 |
+
"developer, without a regular income, so every little contribution helps "
|
404 |
+
"cover my costs and lets me spend more time building things for people like "
|
405 |
+
"you to enjoy."
|
|
|
|
|
|
|
|
|
|
|
406 |
msgstr ""
|
407 |
+
"Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и "
|
408 |
+
"другие вещи, которые я создаю, полезны и окончательное доказательство этого "
|
409 |
+
"для меня состоит в том, что вы на самом деле хотите их использовать. Но Я "
|
410 |
+
"независимый разработчик, без регулярного дохода, поэтому каждый небольшой "
|
411 |
+
"вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
|
412 |
"создание программ для людей как вы."
|
413 |
|
414 |
+
#: inc/php/page.php:202 inc/php/settings.php:626 inc/php/sidebar.php:34
|
415 |
msgid "Donate with PayPal"
|
416 |
+
msgstr "Пожертвовать через PayPal"
|
417 |
|
418 |
+
#: inc/php/page.php:204
|
419 |
+
msgid "Thank you for your support!"
|
420 |
msgstr "Спасибо за вашу поддержку!"
|
421 |
|
422 |
+
#: inc/php/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
msgid "Buttons"
|
424 |
msgstr "Кнопки"
|
425 |
|
426 |
+
#: inc/php/settings.php:34
|
427 |
msgid ""
|
428 |
"Just fill in the required fields to make a buttons. The social networking "
|
429 |
"buttons will lead directly to your profile pages. If you don't want to use "
|
435 |
"хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
|
436 |
"и тогда они не появятся."
|
437 |
|
438 |
+
#: inc/php/settings.php:41
|
439 |
msgid "Enter the link to your Facebook profile page"
|
440 |
msgstr "Введите ссылку на вашу страницу профиля Facebook"
|
441 |
|
442 |
+
#: inc/php/settings.php:48
|
443 |
msgid "Enter the link to your Twitter profile page"
|
444 |
msgstr "Введите ссылку на вашу страницу профиля Twitter"
|
445 |
|
446 |
+
#: inc/php/settings.php:55
|
447 |
msgid "Enter the link to your Instagram profile page"
|
448 |
msgstr "Введите ссылку на вашу страницу профиля Instagram"
|
449 |
|
450 |
+
#: inc/php/settings.php:62
|
451 |
msgid "Enter the link to your Google+ profile page"
|
452 |
msgstr "Введите ссылку на вашу страницу профиля Google+"
|
453 |
|
454 |
+
#: inc/php/settings.php:69
|
455 |
msgid "Enter the link to your YouTube profile page"
|
456 |
msgstr "Введите ссылку на вашу страницу профиля YouTube"
|
457 |
|
458 |
+
#: inc/php/settings.php:76
|
459 |
msgid "Enter the link to your YouTube Gaming profile page"
|
460 |
msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
|
461 |
|
462 |
+
#: inc/php/settings.php:83
|
463 |
msgid "Enter the link to your Google Play profile page"
|
464 |
msgstr "Введите ссылку на вашу страницу профиля Google Play"
|
465 |
|
466 |
+
#: inc/php/settings.php:90
|
467 |
msgid "Enter the link to your iTunes profile page"
|
468 |
msgstr "Введите ссылку на вашу страницу профиля iTunes"
|
469 |
|
470 |
+
#: inc/php/settings.php:97
|
471 |
msgid "Enter the link to your Apple Music profile page"
|
472 |
msgstr "Введите ссылку на вашу страницу профиля Apple Music"
|
473 |
|
474 |
+
#: inc/php/settings.php:104
|
475 |
msgid "Enter the link to your Periscope profile page"
|
476 |
msgstr "Введите ссылку на вашу страницу профиля Periscope"
|
477 |
|
478 |
+
#: inc/php/settings.php:111
|
479 |
msgid "Enter the link to your Vimeo profile page"
|
480 |
msgstr "Введите ссылку на вашу страницу профиля Vimeo"
|
481 |
|
482 |
+
#: inc/php/settings.php:118
|
483 |
msgid "Enter the link to your Blogger profile page"
|
484 |
msgstr "Введите ссылку на вашу страницу профиля Blogger"
|
485 |
|
486 |
+
#: inc/php/settings.php:125
|
487 |
msgid "Enter the link to your Buzzsprout profile page"
|
488 |
msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
|
489 |
|
490 |
+
#: inc/php/settings.php:132
|
491 |
msgid "Enter the link to your LiveJournal profile page"
|
492 |
msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
|
493 |
|
494 |
+
#: inc/php/settings.php:139
|
495 |
msgid "Enter the link to your Reddit profile page"
|
496 |
msgstr "Введите ссылку на вашу страницу профиля Reddit"
|
497 |
|
498 |
+
#: inc/php/settings.php:146
|
499 |
msgid "Enter the link to your LinkedIn profile page"
|
500 |
msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
|
501 |
|
502 |
+
#: inc/php/settings.php:153
|
503 |
msgid "Enter the link to your Diaspora profile page"
|
504 |
msgstr "Введите ссылку на вашу страницу профиля Diaspora"
|
505 |
|
506 |
+
#: inc/php/settings.php:160
|
507 |
msgid "Enter the link to your DeviantArt profile page"
|
508 |
msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
|
509 |
|
510 |
+
#: inc/php/settings.php:167
|
511 |
msgid "Enter the link to your XING profile page"
|
512 |
msgstr "Введите ссылку на вашу страницу профиля XING"
|
513 |
|
514 |
+
#: inc/php/settings.php:174
|
515 |
msgid "Enter the link to your Pinterest profile page"
|
516 |
msgstr "Введите ссылку на вашу страницу профиля Pinterest"
|
517 |
|
518 |
+
#: inc/php/settings.php:181
|
519 |
msgid "Enter the link to your Flickr profile page"
|
520 |
msgstr "Введите ссылку на вашу страницу профиля Flickr"
|
521 |
|
522 |
+
#: inc/php/settings.php:188
|
523 |
msgid "Enter the link to your Tumblr profile page"
|
524 |
msgstr "Введите ссылку на вашу страницу профиля Tumblr"
|
525 |
|
526 |
+
#: inc/php/settings.php:195
|
527 |
msgid "Enter the link to your Snapchat profile page"
|
528 |
msgstr "Введите ссылку на вашу страницу профиля Snapchat"
|
529 |
|
530 |
+
#: inc/php/settings.php:202
|
531 |
msgid "Enter the link to your Twitch profile page"
|
532 |
msgstr "Введите ссылку на вашу страницу профиля Twitch"
|
533 |
|
534 |
+
#: inc/php/settings.php:209
|
535 |
msgid "Enter the link to your Patreon profile page"
|
536 |
msgstr "Введите ссылку на вашу страницу профиля Patreon"
|
537 |
|
538 |
+
#: inc/php/settings.php:216
|
539 |
msgid "Enter the link to your IMDb profile page"
|
540 |
msgstr "Введите ссылку на вашу страницу профиля IMDb"
|
541 |
|
542 |
+
#: inc/php/settings.php:223
|
543 |
msgid "Enter the link to your SoundCloud profile page"
|
544 |
msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
|
545 |
|
546 |
+
#: inc/php/settings.php:230
|
547 |
msgid "Enter the link to your Plug.dj profile page"
|
548 |
msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
|
549 |
|
550 |
+
#: inc/php/settings.php:237
|
551 |
msgid "Enter the link to your Spotify profile page"
|
552 |
msgstr "Введите ссылку на вашу страницу профиля Spotify"
|
553 |
|
554 |
+
#: inc/php/settings.php:244
|
555 |
msgid "Enter the link to your Bandcamp profile page"
|
556 |
msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
|
557 |
|
558 |
+
#: inc/php/settings.php:251
|
559 |
msgid "Enter the link to your Dloky profile page"
|
560 |
msgstr "Введите ссылку на вашу страницу профиля Dloky"
|
561 |
|
562 |
+
#: inc/php/settings.php:258
|
563 |
msgid "Enter the link to your Amazon profile page"
|
564 |
msgstr "Введите ссылку на вашу страницу профиля Amazon"
|
565 |
|
566 |
+
#: inc/php/settings.php:265
|
567 |
msgid "Enter the link to your BookBub profile page"
|
568 |
msgstr "Введите ссылку на вашу страницу профиля BookBub"
|
569 |
|
570 |
+
#: inc/php/settings.php:272
|
571 |
msgid "Enter the link to your Goodreads profile page"
|
572 |
msgstr "Введите ссылку на вашу страницу профиля Goodreads"
|
573 |
|
574 |
+
#: inc/php/settings.php:279
|
575 |
msgid "Enter the link to your MeetVibe profile page"
|
576 |
msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
|
577 |
|
578 |
+
#: inc/php/settings.php:286
|
579 |
msgid "Enter the link to your Meetup profile page"
|
580 |
msgstr "Введите ссылку на вашу страницу профиля Meetup"
|
581 |
|
582 |
+
#: inc/php/settings.php:293
|
583 |
msgid "Enter the link to your Steam profile page"
|
584 |
msgstr "Введите ссылку на вашу страницу профиля Steam"
|
585 |
|
586 |
+
#: inc/php/settings.php:300
|
587 |
msgid "Enter the link to your Mixer profile page"
|
588 |
msgstr "Введите ссылку на вашу страницу профиля Mixer"
|
589 |
|
590 |
+
#: inc/php/settings.php:307
|
591 |
msgid "Enter the link to your Discord profile page"
|
592 |
msgstr "Введите ссылку на вашу страницу профиля Discord"
|
593 |
|
594 |
+
#: inc/php/settings.php:314
|
595 |
msgid "Enter the link to your Yelp profile page"
|
596 |
msgstr "Введите ссылку на вашу страницу профиля Yelp"
|
597 |
|
598 |
+
#: inc/php/settings.php:321
|
599 |
msgid "Enter the link to your StumbleUpon profile page"
|
600 |
msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
|
601 |
|
602 |
+
#: inc/php/settings.php:328
|
603 |
msgid "Enter the link to your Bloglovin profile page"
|
604 |
msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
|
605 |
|
606 |
+
#: inc/php/settings.php:335
|
607 |
msgid "Enter the link to your WhatsApp profile page"
|
608 |
msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
|
609 |
|
610 |
+
#: inc/php/settings.php:342
|
611 |
msgid "Enter the link to your Medium profile page"
|
612 |
msgstr "Введите ссылку на вашу страницу профиля Medium"
|
613 |
|
614 |
+
#: inc/php/settings.php:349
|
615 |
msgid "Enter the link to your 500px profile page"
|
616 |
msgstr "Введите ссылку на вашу страницу профиля 500px"
|
617 |
|
618 |
+
#: inc/php/settings.php:356
|
619 |
msgid "Enter the link to your Behance profile page"
|
620 |
msgstr "Введите ссылку на вашу страницу профиля Behance"
|
621 |
|
622 |
+
#: inc/php/settings.php:363
|
623 |
msgid "Enter the link to your Polyvore profile page"
|
624 |
msgstr "Введите ссылку на вашу страницу профиля Polyvore"
|
625 |
|
626 |
+
#: inc/php/settings.php:370
|
627 |
msgid "Enter the link to your Yellow Pages profile page"
|
628 |
msgstr "Введите ссылку на вашу страницу профиля Yellow Pages"
|
629 |
|
630 |
+
#: inc/php/settings.php:377
|
631 |
msgid "Enter the link to your LINE profile page"
|
632 |
msgstr "Введите ссылку на вашу страницу профиля LINE"
|
633 |
|
634 |
+
#: inc/php/settings.php:384
|
635 |
msgid "Enter the link to your itch profile page"
|
636 |
msgstr "Введите ссылку на вашу страницу профиля itch"
|
637 |
|
638 |
+
#: inc/php/settings.php:391
|
639 |
msgid "Enter the link to your Mastodon profile page"
|
640 |
msgstr "Введите ссылку на вашу страницу профиля Mastodon"
|
641 |
|
642 |
+
#: inc/php/settings.php:398
|
643 |
msgid "Enter the link to your Remind profile page"
|
644 |
msgstr "Введите ссылку на вашу страницу профиля Remind"
|
645 |
|
646 |
+
#: inc/php/settings.php:405
|
647 |
msgid "Enter the link to your Trade Me profile page"
|
648 |
msgstr "Введите ссылку на вашу страницу профиля Trade Me"
|
649 |
|
650 |
+
#: inc/php/settings.php:412
|
651 |
msgid "Enter the link to your VSCO profile page"
|
652 |
msgstr "Введите ссылку на вашу страницу профиля VSCO"
|
653 |
|
654 |
+
#: inc/php/settings.php:419
|
655 |
msgid "Enter the link to your Hireology profile page"
|
656 |
msgstr "Введите ссылку на вашу страницу профиля Hireology"
|
657 |
|
658 |
+
#: inc/php/settings.php:426
|
659 |
msgid "Enter the link to your Kompoz profile page"
|
660 |
msgstr "Введите ссылку на вашу страницу профиля Kompoz"
|
661 |
|
662 |
+
#: inc/php/settings.php:433
|
663 |
msgid "Enter the link to your SoundBlend profile page"
|
664 |
msgstr "Введите ссылку на вашу страницу профиля SoundBlend"
|
665 |
|
666 |
+
#: inc/php/settings.php:440
|
667 |
msgid "Enter the link to your VKontakte profile page"
|
668 |
msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
|
669 |
|
670 |
+
#: inc/php/settings.php:447
|
671 |
msgid "Enter the link to your Odnoklassniki profile page"
|
672 |
msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
|
673 |
|
674 |
+
#: inc/php/settings.php:454
|
675 |
msgid "Enter the link to your Telegram profile page"
|
676 |
msgstr "Введите ссылку на вашу страницу профиля Telegram"
|
677 |
|
678 |
+
#: inc/php/settings.php:461
|
679 |
msgid "Enter the link to your GitHub profile page"
|
680 |
msgstr "Введите ссылку на вашу страницу профиля GitHub"
|
681 |
|
682 |
+
#: inc/php/settings.php:468
|
683 |
msgid "Enter the link to your WordPress profile page"
|
684 |
msgstr "Введите ссылку на вашу страницу профиля WordPress"
|
685 |
|
686 |
+
#: inc/php/settings.php:475
|
687 |
msgid "Enter the link to your CodePen profile page"
|
688 |
msgstr "Введите ссылку на вашу страницу профиля CodePen"
|
689 |
|
690 |
+
#: inc/php/settings.php:482
|
691 |
msgid ""
|
692 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
|
693 |
"<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
696 |
"b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
|
697 |
"профиля"
|
698 |
|
699 |
+
#: inc/php/settings.php:489
|
700 |
msgid "Enter the link to your personal website"
|
701 |
msgstr "Введите ссылку на ваш персональный сайт"
|
702 |
|
703 |
+
#: inc/php/settings.php:496
|
704 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
705 |
msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
|
706 |
|
707 |
+
#: inc/php/settings.php:503
|
708 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
709 |
msgstr "Введите номер телефона с префиксом <b>tel://</b>"
|
710 |
|
711 |
+
#: inc/php/settings.php:510
|
712 |
msgid "Enter the link to your RSS Feed"
|
713 |
msgstr "Введите ссылку на ваш RSS поток"
|
714 |
|
715 |
+
#: inc/php/settings.php:517
|
716 |
#, php-format
|
717 |
msgid ""
|
718 |
"If you did not find the button you need, then %s and I will gladly add it "
|
719 |
"for you."
|
720 |
msgstr ""
|
721 |
+
"Если вы не нашли нужную кнопку, тогда %s и Я с удовольствием добавлю её для "
|
722 |
+
"вас."
|
723 |
|
724 |
+
#: inc/php/settings.php:521 inc/php/settings.php:605
|
725 |
msgid "Save changes"
|
726 |
msgstr "Сохранить изменения"
|
727 |
|
728 |
+
#: inc/php/settings.php:527
|
729 |
msgid "Display options"
|
730 |
msgstr "Настройки отображения"
|
731 |
|
732 |
+
#: inc/php/settings.php:529
|
733 |
msgid "There you can configure this plugin."
|
734 |
msgstr "Здесь вы можете настроить этот плагин."
|
735 |
|
736 |
+
#: inc/php/settings.php:533
|
737 |
msgid "Show on Posts"
|
738 |
+
msgstr "Показывать в записях"
|
739 |
|
740 |
+
#: inc/php/settings.php:534
|
741 |
msgid "Automatically display toolbar below content on Posts."
|
742 |
+
msgstr "Автоматически отображать панель инструментов под содержимым сообщений."
|
743 |
|
744 |
+
#: inc/php/settings.php:539
|
745 |
msgid "Show on Pages"
|
746 |
msgstr "Показывать на страницах"
|
747 |
|
748 |
+
#: inc/php/settings.php:540
|
749 |
msgid "Automatically display toolbar below content on Pages."
|
750 |
msgstr ""
|
751 |
+
"Автоматически отображать панель инструментов ниже содержимого на страницах."
|
752 |
|
753 |
+
#: inc/php/settings.php:545
|
754 |
msgid "Open in new tab"
|
755 |
msgstr "Открыть в новой вкладке"
|
756 |
|
757 |
+
#: inc/php/settings.php:546
|
758 |
msgid "Open link in a new tab/window."
|
759 |
+
msgstr "Открыть ссылку в новом окне/вкладке."
|
760 |
|
761 |
+
#: inc/php/settings.php:551
|
762 |
msgid "Tooltips"
|
763 |
msgstr "Подсказки"
|
764 |
|
765 |
+
#: inc/php/settings.php:552
|
766 |
msgid "Enable a tooltips with name of the social media above every button."
|
767 |
msgstr ""
|
768 |
+
"Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
769 |
|
770 |
+
#: inc/php/settings.php:557
|
771 |
msgid "Icon size"
|
772 |
msgstr "Размер иконки"
|
773 |
|
774 |
+
#: inc/php/settings.php:558
|
775 |
msgid ""
|
776 |
"Enter the size of icons (in px) in your social media follow buttons bar."
|
777 |
msgstr ""
|
778 |
"Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
779 |
|
780 |
+
#: inc/php/settings.php:565
|
781 |
msgid "Margin"
|
782 |
msgstr "Отступ"
|
783 |
|
784 |
+
#: inc/php/settings.php:566
|
785 |
msgid ""
|
786 |
"Enter the size of space (in px) between icons in your social media follow "
|
787 |
"buttons bar."
|
788 |
+
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
789 |
|
790 |
+
#: inc/php/settings.php:575
|
791 |
msgid "Alignment"
|
792 |
msgstr "Выравнивание"
|
793 |
|
794 |
+
#: inc/php/settings.php:581
|
795 |
msgid "Left"
|
796 |
msgstr "Слева"
|
797 |
|
798 |
+
#: inc/php/settings.php:585
|
799 |
msgid "Center"
|
800 |
msgstr "По центру"
|
801 |
|
802 |
+
#: inc/php/settings.php:589
|
803 |
msgid "Right"
|
804 |
msgstr "Справа"
|
805 |
|
806 |
+
#: inc/php/settings.php:596
|
807 |
msgid "Caption"
|
808 |
msgstr "Заголовок"
|
809 |
|
810 |
+
#: inc/php/settings.php:597
|
811 |
msgid ""
|
812 |
"Enter the caption to your social media follow buttons bar. It will be "
|
813 |
"displays before the toolbar."
|
815 |
"Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
|
816 |
"над панелью."
|
817 |
|
818 |
+
#: inc/php/settings.php:611
|
819 |
+
msgid "Live Preview"
|
820 |
+
msgstr "Просмотр в реальном времени"
|
821 |
|
822 |
+
#: inc/php/settings.php:613
|
823 |
msgid "Click the \"Save changes\" button to update this preview."
|
824 |
msgstr ""
|
825 |
"Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
826 |
|
827 |
+
#: inc/php/settings.php:621 inc/php/sidebar.php:29
|
828 |
+
msgid ""
|
829 |
+
"I'm an independent developer, without a regular income, so every little "
|
830 |
+
"contribution helps cover my costs and lets me spend more time building "
|
831 |
+
"things for people like you to enjoy."
|
832 |
+
msgstr ""
|
833 |
+
"Я независимый разработчик, без регулярного дохода, так что каждый маленький "
|
834 |
+
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
835 |
+
"создание программ для людей как вы."
|
836 |
+
|
837 |
+
#: inc/php/settings.php:628 inc/php/sidebar.php:36
|
838 |
+
msgid "Thanks for your support!"
|
839 |
+
msgstr "Спасибо за вашу поддержку!"
|
840 |
+
|
841 |
+
#: inc/php/sidebar.php:20
|
842 |
+
msgid "About"
|
843 |
+
msgstr "О плагине"
|
844 |
+
|
845 |
+
#: inc/php/sidebar.php:22
|
846 |
+
msgid ""
|
847 |
+
"This plugin allows you to easily add the social media follow buttons bar to "
|
848 |
+
"any place of your website."
|
849 |
+
msgstr ""
|
850 |
+
"Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
|
851 |
+
"место на вашем веб-сайте."
|
852 |
+
|
853 |
+
#: inc/php/sidebar.php:41
|
854 |
+
msgid "Help"
|
855 |
+
msgstr "Помощь"
|
856 |
+
|
857 |
+
#: inc/php/sidebar.php:43
|
858 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
859 |
+
msgstr ""
|
860 |
+
"Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
861 |
+
|
862 |
#. Plugin Name of the plugin/theme
|
863 |
msgid "Social Media Follow Buttons Bar"
|
864 |
msgstr "Social Media Follow Buttons Bar"
|
872 |
"Easily add the smart bar with social media follow buttons (not share, only "
|
873 |
"link to your profiles) to any place of your WordPress website."
|
874 |
msgstr ""
|
875 |
+
"Легко добавить умную панель с социальными медиа кнопками следования (не "
|
876 |
+
"расшаривания, только ссылка на ваши профили) в любое место вашего веб-сайта "
|
877 |
+
"WordPress."
|
878 |
|
879 |
#. Author of the plugin/theme
|
880 |
msgid "Arthur Gareginyan"
|
884 |
msgid "https://www.arthurgareginyan.com"
|
885 |
msgstr "https://www.arthurgareginyan.com"
|
886 |
|
887 |
+
#~ msgid "Family"
|
888 |
+
#~ msgstr "Семья"
|
889 |
+
|
890 |
+
#~ msgid "Preview"
|
891 |
+
#~ msgstr "Предварительный просмотр"
|
892 |
+
|
893 |
#~ msgid "Display toolbar below content on Posts."
|
894 |
#~ msgstr "Показывать кнопки под содержанием в записях"
|
895 |
|
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 Buttons Toolbar\n"
|
6 |
-
"POT-Creation-Date: 2017-
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
msgid "Version"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/php/page.php:48 inc/php/page.php:
|
61 |
msgid "Usage"
|
62 |
msgstr ""
|
63 |
|
@@ -65,113 +65,113 @@ msgstr ""
|
|
65 |
msgid "F.A.Q."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/php/page.php:50 inc/php/page.php:
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/php/page.php:51 inc/php/page.php:
|
73 |
-
msgid "
|
74 |
msgstr ""
|
75 |
|
76 |
#: inc/php/page.php:52
|
77 |
msgid "Store"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: inc/php/page.php:
|
81 |
msgid ""
|
82 |
"To display the social media follow buttons bar on the front end of your website, simply follow these "
|
83 |
"steps:"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Go to the \"Settings\" tab."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Fill in the required fields."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "Select the desired settings."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Click the \"Save changes\" button."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid ""
|
104 |
"Now you have several methods for display the social media follow buttons bar (further just \"buttons"
|
105 |
"\"). Just choose the one that is more suitable for your case."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/php/page.php:
|
109 |
msgid ""
|
110 |
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
|
111 |
"checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
|
112 |
"the \"Save changes\" button."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid ""
|
117 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid ""
|
122 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
|
123 |
"and add inside it the following shortcode:"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/page.php:
|
127 |
msgid ""
|
128 |
"<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
|
129 |
"(where you want to display the buttons) in your theme files:"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
msgid "Enjoy your fancy social media follow buttons."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
msgid "It's that simple!"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
msgid "Note!"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/page.php:
|
145 |
msgid "If you want more options then tell me and I will be happy to add it."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/page.php:
|
149 |
msgid "Frequently Asked Questions"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
msgid ""
|
154 |
"If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/page.php:
|
158 |
msgid "Will this plugin work on my WordPress.COM website?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/page.php:
|
162 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/page.php:
|
166 |
msgid "Can I use this plugin on my language?"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/php/page.php:
|
170 |
msgid ""
|
171 |
"Yes. This plugin is ready for translation and has already been translated into several languages."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/php/page.php:
|
175 |
#, php-format
|
176 |
msgid ""
|
177 |
"If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
|
@@ -180,59 +180,59 @@ msgid ""
|
|
180 |
"update."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
msgid ""
|
189 |
"Many of plugin users would be delighted if you share your translation with the community. Thanks for "
|
190 |
"your contribution!"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/page.php:
|
194 |
msgid "How does it work?"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
198 |
msgid ""
|
199 |
"On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
|
200 |
"your fancy social media follow buttons. It's that simple!"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
msgid "Does this plugin requires any modification of the theme?"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
msgid "Does this require any knowledge of HTML or CSS?"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
msgid ""
|
217 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
|
218 |
"plugin settings page."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
msgid ""
|
227 |
"The images that uses in this plugin are already compressed, but I will do my best to find out what "
|
228 |
"else can be done with the images in order to compress them even better."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
msgid "It's not working. What could be wrong?"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
msgid ""
|
237 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web "
|
238 |
"browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
|
@@ -240,7 +240,7 @@ msgid ""
|
|
240 |
"browser's cache may solve the problem."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: inc/php/page.php:
|
244 |
msgid ""
|
245 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
246 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
@@ -248,13 +248,13 @@ msgid ""
|
|
248 |
"seen."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid ""
|
253 |
"The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
|
254 |
"this?"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
msgid ""
|
259 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
260 |
"website. It could just be a cache, so please try to clear your website's cache (may be you using a "
|
@@ -262,460 +262,476 @@ msgid ""
|
|
262 |
"Also please try to re-login to the website, this too can help."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
msgid "Where to report bug if found?"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: inc/php/page.php:
|
270 |
#, php-format
|
271 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
#, php-format
|
280 |
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/php/page.php:
|
284 |
msgid "I love this plugin! Can I help somehow?"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/page.php:
|
288 |
#, php-format
|
289 |
msgid ""
|
290 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
291 |
"button, and thank you!"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
msgid "My question wasn't answered here."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: inc/php/page.php:
|
299 |
#, php-format
|
300 |
msgid ""
|
301 |
"You can ask your question on the plugin support page %s. But please keep in mind that this plugin is "
|
302 |
"free, and there is no a special support team, so I have no way to answer everyone."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/
|
306 |
-
msgid "
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: inc/php/settings.php:23
|
310 |
-
msgid ""
|
311 |
-
"This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid ""
|
316 |
-
"I
|
|
|
|
|
317 |
"costs and lets me spend more time building things for people like you to enjoy."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/
|
321 |
msgid "Donate with PayPal"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/
|
325 |
-
msgid "
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: inc/php/settings.php:37
|
329 |
-
msgid "Help"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/settings.php:
|
333 |
-
msgid "If you have a question, please read the information in the FAQ section."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: inc/php/settings.php:64
|
337 |
msgid "Buttons"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/settings.php:
|
341 |
msgid ""
|
342 |
"Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
|
343 |
"to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
|
344 |
"and then they do not appear."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/settings.php:
|
348 |
msgid "Enter the link to your Facebook profile page"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/settings.php:
|
352 |
msgid "Enter the link to your Twitter profile page"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/settings.php:
|
356 |
msgid "Enter the link to your Instagram profile page"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: inc/php/settings.php:
|
360 |
msgid "Enter the link to your Google+ profile page"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: inc/php/settings.php:
|
364 |
msgid "Enter the link to your YouTube profile page"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: inc/php/settings.php:
|
368 |
msgid "Enter the link to your YouTube Gaming profile page"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: inc/php/settings.php:
|
372 |
msgid "Enter the link to your Google Play profile page"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/settings.php:
|
376 |
msgid "Enter the link to your iTunes profile page"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/settings.php:
|
380 |
msgid "Enter the link to your Apple Music profile page"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/settings.php:
|
384 |
msgid "Enter the link to your Periscope profile page"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/settings.php:
|
388 |
msgid "Enter the link to your Vimeo profile page"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/settings.php:
|
392 |
msgid "Enter the link to your Blogger profile page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/settings.php:
|
396 |
msgid "Enter the link to your Buzzsprout profile page"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/php/settings.php:
|
400 |
msgid "Enter the link to your LiveJournal profile page"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/php/settings.php:
|
404 |
msgid "Enter the link to your Reddit profile page"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/php/settings.php:
|
408 |
msgid "Enter the link to your LinkedIn profile page"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/php/settings.php:
|
412 |
msgid "Enter the link to your Diaspora profile page"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/settings.php:
|
416 |
msgid "Enter the link to your DeviantArt profile page"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: inc/php/settings.php:
|
420 |
msgid "Enter the link to your XING profile page"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/php/settings.php:
|
424 |
msgid "Enter the link to your Pinterest profile page"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/settings.php:
|
428 |
msgid "Enter the link to your Flickr profile page"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/settings.php:
|
432 |
msgid "Enter the link to your Tumblr profile page"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/php/settings.php:
|
436 |
msgid "Enter the link to your Snapchat profile page"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/settings.php:
|
440 |
msgid "Enter the link to your Twitch profile page"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/settings.php:
|
444 |
msgid "Enter the link to your Patreon profile page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/settings.php:
|
448 |
msgid "Enter the link to your IMDb profile page"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: inc/php/settings.php:
|
452 |
msgid "Enter the link to your SoundCloud profile page"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/settings.php:
|
456 |
msgid "Enter the link to your Plug.dj profile page"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/settings.php:
|
460 |
msgid "Enter the link to your Spotify profile page"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/settings.php:
|
464 |
msgid "Enter the link to your Bandcamp profile page"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: inc/php/settings.php:
|
468 |
msgid "Enter the link to your Dloky profile page"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: inc/php/settings.php:
|
472 |
msgid "Enter the link to your Amazon profile page"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/settings.php:
|
476 |
msgid "Enter the link to your BookBub profile page"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: inc/php/settings.php:
|
480 |
msgid "Enter the link to your Goodreads profile page"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/settings.php:
|
484 |
msgid "Enter the link to your MeetVibe profile page"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: inc/php/settings.php:
|
488 |
msgid "Enter the link to your Meetup profile page"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: inc/php/settings.php:
|
492 |
msgid "Enter the link to your Steam profile page"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/settings.php:
|
496 |
msgid "Enter the link to your Mixer profile page"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: inc/php/settings.php:
|
500 |
msgid "Enter the link to your Discord profile page"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/settings.php:
|
504 |
msgid "Enter the link to your Yelp profile page"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/settings.php:
|
508 |
msgid "Enter the link to your StumbleUpon profile page"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/settings.php:
|
512 |
msgid "Enter the link to your Bloglovin profile page"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/settings.php:
|
516 |
msgid "Enter the link to your WhatsApp profile page"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/php/settings.php:
|
520 |
msgid "Enter the link to your Medium profile page"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: inc/php/settings.php:
|
524 |
msgid "Enter the link to your 500px profile page"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc/php/settings.php:
|
528 |
msgid "Enter the link to your Behance profile page"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/php/settings.php:
|
532 |
msgid "Enter the link to your Polyvore profile page"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: inc/php/settings.php:
|
536 |
msgid "Enter the link to your Yellow Pages profile page"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/php/settings.php:
|
540 |
msgid "Enter the link to your LINE profile page"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/php/settings.php:
|
544 |
msgid "Enter the link to your itch profile page"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: inc/php/settings.php:
|
548 |
msgid "Enter the link to your Mastodon profile page"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/php/settings.php:
|
552 |
msgid "Enter the link to your Remind profile page"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: inc/php/settings.php:
|
556 |
msgid "Enter the link to your Trade Me profile page"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/settings.php:
|
560 |
msgid "Enter the link to your VSCO profile page"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: inc/php/settings.php:
|
564 |
msgid "Enter the link to your Hireology profile page"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: inc/php/settings.php:
|
568 |
msgid "Enter the link to your Kompoz profile page"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: inc/php/settings.php:
|
572 |
msgid "Enter the link to your SoundBlend profile page"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: inc/php/settings.php:
|
576 |
msgid "Enter the link to your VKontakte profile page"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: inc/php/settings.php:
|
580 |
msgid "Enter the link to your Odnoklassniki profile page"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: inc/php/settings.php:
|
584 |
msgid "Enter the link to your Telegram profile page"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/settings.php:
|
588 |
msgid "Enter the link to your GitHub profile page"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/settings.php:
|
592 |
msgid "Enter the link to your WordPress profile page"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/settings.php:
|
596 |
msgid "Enter the link to your CodePen profile page"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/settings.php:
|
600 |
msgid ""
|
601 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
|
602 |
"b>, or <b>?userinfo</b> for view profile"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/php/settings.php:
|
606 |
msgid "Enter the link to your personal website"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/settings.php:
|
610 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/php/settings.php:
|
614 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/php/settings.php:
|
618 |
msgid "Enter the link to your RSS Feed"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/php/settings.php:
|
622 |
#, php-format
|
623 |
msgid "If you did not find the button you need, then %s and I will gladly add it for you."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/php/settings.php:
|
627 |
msgid "Save changes"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/settings.php:
|
631 |
msgid "Display options"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/php/settings.php:
|
635 |
msgid "There you can configure this plugin."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/php/settings.php:
|
639 |
msgid "Show on Posts"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/settings.php:
|
643 |
msgid "Automatically display toolbar below content on Posts."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/php/settings.php:
|
647 |
msgid "Show on Pages"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/settings.php:
|
651 |
msgid "Automatically display toolbar below content on Pages."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/php/settings.php:
|
655 |
msgid "Open in new tab"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/settings.php:
|
659 |
msgid "Open link in a new tab/window."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/settings.php:
|
663 |
msgid "Tooltips"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/php/settings.php:
|
667 |
msgid "Enable a tooltips with name of the social media above every button."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/php/settings.php:
|
671 |
msgid "Icon size"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/php/settings.php:
|
675 |
msgid "Enter the size of icons (in px) in your social media follow buttons bar."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/php/settings.php:
|
679 |
msgid "Margin"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/php/settings.php:
|
683 |
msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/php/settings.php:
|
687 |
msgid "Alignment"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/php/settings.php:
|
691 |
msgid "Left"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/php/settings.php:
|
695 |
msgid "Center"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/php/settings.php:
|
699 |
msgid "Right"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/php/settings.php:
|
703 |
msgid "Caption"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/php/settings.php:
|
707 |
msgid ""
|
708 |
"Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: inc/php/settings.php:
|
712 |
-
msgid "Preview"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/php/settings.php:
|
716 |
msgid "Click the \"Save changes\" button to update this preview."
|
717 |
msgstr ""
|
718 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
719 |
#. Plugin Name of the plugin/theme
|
720 |
msgid "Social Media Follow Buttons Bar"
|
721 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
6 |
+
"POT-Creation-Date: 2017-08-10 16:03+0300\n"
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
57 |
msgid "Version"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: inc/php/page.php:48 inc/php/page.php:68
|
61 |
msgid "Usage"
|
62 |
msgstr ""
|
63 |
|
65 |
msgid "F.A.Q."
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: inc/php/page.php:50 inc/php/page.php:193 inc/php/settings.php:619 inc/php/sidebar.php:27
|
69 |
+
msgid "Support"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: inc/php/page.php:51 inc/php/page.php:213
|
73 |
+
msgid "Author"
|
74 |
msgstr ""
|
75 |
|
76 |
#: inc/php/page.php:52
|
77 |
msgid "Store"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: inc/php/page.php:70
|
81 |
msgid ""
|
82 |
"To display the social media follow buttons bar on the front end of your website, simply follow these "
|
83 |
"steps:"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:72
|
87 |
msgid "Go to the \"Settings\" tab."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:73
|
91 |
msgid "Fill in the required fields."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:74
|
95 |
msgid "Select the desired settings."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:75
|
99 |
msgid "Click the \"Save changes\" button."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/page.php:76
|
103 |
msgid ""
|
104 |
"Now you have several methods for display the social media follow buttons bar (further just \"buttons"
|
105 |
"\"). Just choose the one that is more suitable for your case."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/php/page.php:77
|
109 |
msgid ""
|
110 |
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
|
111 |
"checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
|
112 |
"the \"Save changes\" button."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/page.php:78
|
116 |
msgid ""
|
117 |
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/page.php:80
|
121 |
msgid ""
|
122 |
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
|
123 |
"and add inside it the following shortcode:"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:82
|
127 |
msgid ""
|
128 |
"<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
|
129 |
"(where you want to display the buttons) in your theme files:"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:85
|
133 |
msgid "Enjoy your fancy social media follow buttons."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/page.php:85
|
137 |
msgid "It's that simple!"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: inc/php/page.php:87 inc/php/settings.php:516
|
141 |
msgid "Note!"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: inc/php/page.php:87
|
145 |
msgid "If you want more options then tell me and I will be happy to add it."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/page.php:96
|
149 |
msgid "Frequently Asked Questions"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/page.php:100
|
153 |
msgid ""
|
154 |
"If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: inc/php/page.php:122
|
158 |
msgid "Will this plugin work on my WordPress.COM website?"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: inc/php/page.php:123
|
162 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: inc/php/page.php:125
|
166 |
msgid "Can I use this plugin on my language?"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: inc/php/page.php:126
|
170 |
msgid ""
|
171 |
"Yes. This plugin is ready for translation and has already been translated into several languages."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/php/page.php:128
|
175 |
#, php-format
|
176 |
msgid ""
|
177 |
"If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
|
180 |
"update."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: inc/php/page.php:133
|
184 |
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: inc/php/page.php:134
|
188 |
msgid ""
|
189 |
"Many of plugin users would be delighted if you share your translation with the community. Thanks for "
|
190 |
"your contribution!"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/page.php:136
|
194 |
msgid "How does it work?"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc/php/page.php:137
|
198 |
msgid ""
|
199 |
"On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
|
200 |
"your fancy social media follow buttons. It's that simple!"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: inc/php/page.php:139
|
204 |
msgid "Does this plugin requires any modification of the theme?"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: inc/php/page.php:140
|
208 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: inc/php/page.php:142
|
212 |
msgid "Does this require any knowledge of HTML or CSS?"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: inc/php/page.php:143
|
216 |
msgid ""
|
217 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
|
218 |
"plugin settings page."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: inc/php/page.php:145
|
222 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: inc/php/page.php:146
|
226 |
msgid ""
|
227 |
"The images that uses in this plugin are already compressed, but I will do my best to find out what "
|
228 |
"else can be done with the images in order to compress them even better."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: inc/php/page.php:148
|
232 |
msgid "It's not working. What could be wrong?"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: inc/php/page.php:149
|
236 |
msgid ""
|
237 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web "
|
238 |
"browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
|
240 |
"browser's cache may solve the problem."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: inc/php/page.php:150
|
244 |
msgid ""
|
245 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
246 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
248 |
"seen."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/page.php:152
|
252 |
msgid ""
|
253 |
"The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
|
254 |
"this?"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: inc/php/page.php:153
|
258 |
msgid ""
|
259 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
260 |
"website. It could just be a cache, so please try to clear your website's cache (may be you using a "
|
262 |
"Also please try to re-login to the website, this too can help."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:155
|
266 |
msgid "Where to report bug if found?"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/php/page.php:157
|
270 |
#, php-format
|
271 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:163
|
275 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:165
|
279 |
#, php-format
|
280 |
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/php/page.php:170
|
284 |
msgid "I love this plugin! Can I help somehow?"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/php/page.php:172
|
288 |
#, php-format
|
289 |
msgid ""
|
290 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
291 |
"button, and thank you!"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:178
|
295 |
msgid "My question wasn't answered here."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/page.php:180
|
299 |
#, php-format
|
300 |
msgid ""
|
301 |
"You can ask your question on the plugin support page %s. But please keep in mind that this plugin is "
|
302 |
"free, and there is no a special support team, so I have no way to answer everyone."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:196
|
306 |
+
msgid "If you appreciate my work, you can buy me a coffee!"
|
|
|
|
|
|
|
|
|
|
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:197
|
310 |
msgid ""
|
311 |
+
"I spend a lot of time and effort trying to make sure that the themes, plugins and another things I "
|
312 |
+
"build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
|
313 |
+
"I’m an independent developer, without a regular income, so every little contribution helps cover my "
|
314 |
"costs and lets me spend more time building things for people like you to enjoy."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/page.php:202 inc/php/settings.php:626 inc/php/sidebar.php:34
|
318 |
msgid "Donate with PayPal"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:204
|
322 |
+
msgid "Thank you for your support!"
|
|
|
|
|
|
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/settings.php:32
|
|
|
|
|
|
|
|
|
326 |
msgid "Buttons"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/settings.php:34
|
330 |
msgid ""
|
331 |
"Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
|
332 |
"to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
|
333 |
"and then they do not appear."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/settings.php:41
|
337 |
msgid "Enter the link to your Facebook profile page"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/settings.php:48
|
341 |
msgid "Enter the link to your Twitter profile page"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/settings.php:55
|
345 |
msgid "Enter the link to your Instagram profile page"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/php/settings.php:62
|
349 |
msgid "Enter the link to your Google+ profile page"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/settings.php:69
|
353 |
msgid "Enter the link to your YouTube profile page"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/settings.php:76
|
357 |
msgid "Enter the link to your YouTube Gaming profile page"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/php/settings.php:83
|
361 |
msgid "Enter the link to your Google Play profile page"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/php/settings.php:90
|
365 |
msgid "Enter the link to your iTunes profile page"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/settings.php:97
|
369 |
msgid "Enter the link to your Apple Music profile page"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/settings.php:104
|
373 |
msgid "Enter the link to your Periscope profile page"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/settings.php:111
|
377 |
msgid "Enter the link to your Vimeo profile page"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/settings.php:118
|
381 |
msgid "Enter the link to your Blogger profile page"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/settings.php:125
|
385 |
msgid "Enter the link to your Buzzsprout profile page"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/php/settings.php:132
|
389 |
msgid "Enter the link to your LiveJournal profile page"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/settings.php:139
|
393 |
msgid "Enter the link to your Reddit profile page"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/settings.php:146
|
397 |
msgid "Enter the link to your LinkedIn profile page"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/php/settings.php:153
|
401 |
msgid "Enter the link to your Diaspora profile page"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/php/settings.php:160
|
405 |
msgid "Enter the link to your DeviantArt profile page"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: inc/php/settings.php:167
|
409 |
msgid "Enter the link to your XING profile page"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/settings.php:174
|
413 |
msgid "Enter the link to your Pinterest profile page"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: inc/php/settings.php:181
|
417 |
msgid "Enter the link to your Flickr profile page"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: inc/php/settings.php:188
|
421 |
msgid "Enter the link to your Tumblr profile page"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: inc/php/settings.php:195
|
425 |
msgid "Enter the link to your Snapchat profile page"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/php/settings.php:202
|
429 |
msgid "Enter the link to your Twitch profile page"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: inc/php/settings.php:209
|
433 |
msgid "Enter the link to your Patreon profile page"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: inc/php/settings.php:216
|
437 |
msgid "Enter the link to your IMDb profile page"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/settings.php:223
|
441 |
msgid "Enter the link to your SoundCloud profile page"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/settings.php:230
|
445 |
msgid "Enter the link to your Plug.dj profile page"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/settings.php:237
|
449 |
msgid "Enter the link to your Spotify profile page"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/settings.php:244
|
453 |
msgid "Enter the link to your Bandcamp profile page"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/settings.php:251
|
457 |
msgid "Enter the link to your Dloky profile page"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/settings.php:258
|
461 |
msgid "Enter the link to your Amazon profile page"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/settings.php:265
|
465 |
msgid "Enter the link to your BookBub profile page"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/settings.php:272
|
469 |
msgid "Enter the link to your Goodreads profile page"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: inc/php/settings.php:279
|
473 |
msgid "Enter the link to your MeetVibe profile page"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: inc/php/settings.php:286
|
477 |
msgid "Enter the link to your Meetup profile page"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc/php/settings.php:293
|
481 |
msgid "Enter the link to your Steam profile page"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: inc/php/settings.php:300
|
485 |
msgid "Enter the link to your Mixer profile page"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: inc/php/settings.php:307
|
489 |
msgid "Enter the link to your Discord profile page"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: inc/php/settings.php:314
|
493 |
msgid "Enter the link to your Yelp profile page"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: inc/php/settings.php:321
|
497 |
msgid "Enter the link to your StumbleUpon profile page"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: inc/php/settings.php:328
|
501 |
msgid "Enter the link to your Bloglovin profile page"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: inc/php/settings.php:335
|
505 |
msgid "Enter the link to your WhatsApp profile page"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: inc/php/settings.php:342
|
509 |
msgid "Enter the link to your Medium profile page"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: inc/php/settings.php:349
|
513 |
msgid "Enter the link to your 500px profile page"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/settings.php:356
|
517 |
msgid "Enter the link to your Behance profile page"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/settings.php:363
|
521 |
msgid "Enter the link to your Polyvore profile page"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: inc/php/settings.php:370
|
525 |
msgid "Enter the link to your Yellow Pages profile page"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: inc/php/settings.php:377
|
529 |
msgid "Enter the link to your LINE profile page"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/php/settings.php:384
|
533 |
msgid "Enter the link to your itch profile page"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/settings.php:391
|
537 |
msgid "Enter the link to your Mastodon profile page"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/settings.php:398
|
541 |
msgid "Enter the link to your Remind profile page"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/settings.php:405
|
545 |
msgid "Enter the link to your Trade Me profile page"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/settings.php:412
|
549 |
msgid "Enter the link to your VSCO profile page"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/php/settings.php:419
|
553 |
msgid "Enter the link to your Hireology profile page"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/php/settings.php:426
|
557 |
msgid "Enter the link to your Kompoz profile page"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: inc/php/settings.php:433
|
561 |
msgid "Enter the link to your SoundBlend profile page"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/settings.php:440
|
565 |
msgid "Enter the link to your VKontakte profile page"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/settings.php:447
|
569 |
msgid "Enter the link to your Odnoklassniki profile page"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc/php/settings.php:454
|
573 |
msgid "Enter the link to your Telegram profile page"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/settings.php:461
|
577 |
msgid "Enter the link to your GitHub profile page"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/settings.php:468
|
581 |
msgid "Enter the link to your WordPress profile page"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/settings.php:475
|
585 |
msgid "Enter the link to your CodePen profile page"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: inc/php/settings.php:482
|
589 |
msgid ""
|
590 |
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
|
591 |
"b>, or <b>?userinfo</b> for view profile"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/php/settings.php:489
|
595 |
msgid "Enter the link to your personal website"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/php/settings.php:496
|
599 |
msgid "Enter your email address with prefix <b>mailto:</b>"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/settings.php:503
|
603 |
msgid "Enter your telephone number with prefix <b>tel://</b>"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/settings.php:510
|
607 |
msgid "Enter the link to your RSS Feed"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/settings.php:517
|
611 |
#, php-format
|
612 |
msgid "If you did not find the button you need, then %s and I will gladly add it for you."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: inc/php/settings.php:521 inc/php/settings.php:605
|
616 |
msgid "Save changes"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/php/settings.php:527
|
620 |
msgid "Display options"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/php/settings.php:529
|
624 |
msgid "There you can configure this plugin."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: inc/php/settings.php:533
|
628 |
msgid "Show on Posts"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: inc/php/settings.php:534
|
632 |
msgid "Automatically display toolbar below content on Posts."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/settings.php:539
|
636 |
msgid "Show on Pages"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/settings.php:540
|
640 |
msgid "Automatically display toolbar below content on Pages."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/php/settings.php:545
|
644 |
msgid "Open in new tab"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: inc/php/settings.php:546
|
648 |
msgid "Open link in a new tab/window."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: inc/php/settings.php:551
|
652 |
msgid "Tooltips"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/php/settings.php:552
|
656 |
msgid "Enable a tooltips with name of the social media above every button."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/php/settings.php:557
|
660 |
msgid "Icon size"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/php/settings.php:558
|
664 |
msgid "Enter the size of icons (in px) in your social media follow buttons bar."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/php/settings.php:565
|
668 |
msgid "Margin"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/php/settings.php:566
|
672 |
msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: inc/php/settings.php:575
|
676 |
msgid "Alignment"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: inc/php/settings.php:581
|
680 |
msgid "Left"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc/php/settings.php:585
|
684 |
msgid "Center"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: inc/php/settings.php:589
|
688 |
msgid "Right"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: inc/php/settings.php:596
|
692 |
msgid "Caption"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: inc/php/settings.php:597
|
696 |
msgid ""
|
697 |
"Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/php/settings.php:611
|
701 |
+
msgid "Live Preview"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/php/settings.php:613
|
705 |
msgid "Click the \"Save changes\" button to update this preview."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/php/settings.php:621 inc/php/sidebar.php:29
|
709 |
+
msgid ""
|
710 |
+
"I'm an independent developer, without a regular income, so every little contribution helps cover my "
|
711 |
+
"costs and lets me spend more time building things for people like you to enjoy."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: inc/php/settings.php:628 inc/php/sidebar.php:36
|
715 |
+
msgid "Thanks for your support!"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: inc/php/sidebar.php:20
|
719 |
+
msgid "About"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: inc/php/sidebar.php:22
|
723 |
+
msgid ""
|
724 |
+
"This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: inc/php/sidebar.php:41
|
728 |
+
msgid "Help"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: inc/php/sidebar.php:43
|
732 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
#. Plugin Name of the plugin/theme
|
736 |
msgid "Social Media Follow Buttons Bar"
|
737 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -118,7 +118,7 @@ It give you finer control over buttons. You can configure they on plugins settin
|
|
118 |
This plugin is ready for translation and has already been translated into several languages.
|
119 |
|
120 |
* English (default)
|
121 |
-
* Russian
|
122 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
123 |
|
124 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
|
@@ -236,6 +236,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
236 |
|
237 |
== Changelog ==
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
= 4.15 =
|
240 |
* Preview section on the settings page changed to live preview.
|
241 |
* Stylesheet in the admin.css file improved.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 4.16
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
118 |
This plugin is ready for translation and has already been translated into several languages.
|
119 |
|
120 |
* English (default)
|
121 |
+
* Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
|
122 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
123 |
|
124 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
|
236 |
|
237 |
== Changelog ==
|
238 |
|
239 |
+
= 4.16 =
|
240 |
+
* Russian translation updated. (Thanks to Milena Kiseleva)
|
241 |
+
* The navigation of the tabs is rearranged.
|
242 |
+
* Fixed an issue due to which the sidebar was not hiding on mobile devices.
|
243 |
+
* Code of sidebar moved to separate file 'sidebar.php'.
|
244 |
+
* Support page tab moved from external source to plugin code.
|
245 |
+
* My avatar moved from external source to plugin folder.
|
246 |
+
* Banner moved from external source to plugin folder.
|
247 |
+
* Code of PayPal button updated.
|
248 |
+
|
249 |
= 4.15 =
|
250 |
* Preview section on the settings page changed to live preview.
|
251 |
* Stylesheet in the admin.css file improved.
|
social-media-buttons-toolbar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
+
* Version: 4.16
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|