Version Description
- The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
- Content of the "F.A.Q." section updated.
- Some texts are corrected or replaced with new ones.
- All translation files are updated.
- Code formatting improved.
- The code relating to "Live preview", in the "admin.js" file, is improved.
- Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
- The human.txt file updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.46 |
Comparing to | |
See all releases |
Code changes from version 4.45 to 4.46
- humans.txt +4 -2
- inc/css/admin.css +27 -0
- inc/js/admin.js +7 -7
- inc/php/messages.php +12 -6
- inc/php/page.php +321 -101
- inc/php/settings.php +5 -5
- inc/php/sidebar.php +1 -1
- languages/Readme.txt +2 -8
- languages/social-media-buttons-toolbar-de_DE.mo +0 -0
- languages/social-media-buttons-toolbar-de_DE.po +378 -156
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +369 -142
- languages/social-media-buttons-toolbar-nl_NL.mo +0 -0
- languages/social-media-buttons-toolbar-nl_NL.po +370 -133
- languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
- languages/social-media-buttons-toolbar-ru_RU.po +376 -157
- languages/social-media-buttons-toolbar.pot +344 -98
- readme.txt +35 -15
- social-media-buttons-toolbar.php +2 -2
humans.txt
CHANGED
@@ -19,12 +19,14 @@
|
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
22 |
-
Site: www.arthurgareginyan.com
|
23 |
Instagram: arthur_gareginyan
|
24 |
|
25 |
|
26 |
/* THANKS */
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
/* META */
|
30 |
Last update: 2018/04/14
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
|
|
22 |
Instagram: arthur_gareginyan
|
23 |
|
24 |
|
25 |
/* THANKS */
|
26 |
+
Isabella M.
|
27 |
+
Bożena L.
|
28 |
+
Thomas T.
|
29 |
+
Monica K.
|
30 |
|
31 |
/* META */
|
32 |
Last update: 2018/04/14
|
inc/css/admin.css
CHANGED
@@ -441,6 +441,33 @@ p {
|
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
/* Custom List Numbers
|
445 |
-------------------------------------------------------------- */
|
446 |
.custom-counter {
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
444 |
+
/* Custom List
|
445 |
+
-------------------------------------------------------------- */
|
446 |
+
.custom-list {
|
447 |
+
margin-top: 15px;
|
448 |
+
margin-left: 50px;
|
449 |
+
margin-bottom: 30px;
|
450 |
+
list-style-type: none;
|
451 |
+
}
|
452 |
+
.custom-list li {
|
453 |
+
counter-increment: step-counter;
|
454 |
+
margin-bottom: 15px;
|
455 |
+
font-family: Verdana, Geneva, sans-serif;
|
456 |
+
}
|
457 |
+
.custom-list li::before {
|
458 |
+
content: '+';
|
459 |
+
margin-left: -30px;
|
460 |
+
margin-right: 8px;
|
461 |
+
padding: 4px 7px;
|
462 |
+
font-size: 90%;
|
463 |
+
font-weight: bold;
|
464 |
+
background-color: #00c8c8;
|
465 |
+
color: white;
|
466 |
+
-webkit-border-radius: 50%;
|
467 |
+
-moz-border-radius: 50%;
|
468 |
+
border-radius: 50%;
|
469 |
+
}
|
470 |
+
|
471 |
/* Custom List Numbers
|
472 |
-------------------------------------------------------------- */
|
473 |
.custom-counter {
|
inc/js/admin.js
CHANGED
@@ -61,7 +61,7 @@ jQuery(document).ready(function($) {
|
|
61 |
$('.new_tab').on('change', function() {
|
62 |
var val = $(this).val();
|
63 |
var position = $(this).next().children().hasClass('btn-success');
|
64 |
-
$('#preview .sxc-follow-buttons a').each(function( index ) {
|
65 |
if (position === true) {
|
66 |
$(this).attr('target','_blank');
|
67 |
} else {
|
@@ -72,7 +72,7 @@ jQuery(document).ready(function($) {
|
|
72 |
$('.tooltips').on('change', function() {
|
73 |
var val = $(this).val();
|
74 |
var position = $(this).next().children().hasClass('btn-success');
|
75 |
-
$('#preview .sxc-follow-buttons a').each(function( index ) {
|
76 |
var text = '';
|
77 |
if (position === true) {
|
78 |
text = $(this).attr('title');
|
@@ -87,11 +87,11 @@ jQuery(document).ready(function($) {
|
|
87 |
});
|
88 |
});
|
89 |
function LiveInlineStyles() {
|
90 |
-
var
|
91 |
-
var
|
92 |
-
|
93 |
-
|
94 |
-
$('#preview .sxc-follow-buttons img').attr('style',
|
95 |
}
|
96 |
$('.icon-size input').change(function() {
|
97 |
LiveInlineStyles();
|
61 |
$('.new_tab').on('change', function() {
|
62 |
var val = $(this).val();
|
63 |
var position = $(this).next().children().hasClass('btn-success');
|
64 |
+
$('#preview .sxc-follow-buttons .sxc-follow-button a').each(function( index ) {
|
65 |
if (position === true) {
|
66 |
$(this).attr('target','_blank');
|
67 |
} else {
|
72 |
$('.tooltips').on('change', function() {
|
73 |
var val = $(this).val();
|
74 |
var position = $(this).next().children().hasClass('btn-success');
|
75 |
+
$('#preview .sxc-follow-buttons .sxc-follow-button a').each(function( index ) {
|
76 |
var text = '';
|
77 |
if (position === true) {
|
78 |
text = $(this).attr('title');
|
87 |
});
|
88 |
});
|
89 |
function LiveInlineStyles() {
|
90 |
+
var button_size = $('.icon-size input').val() || '64';
|
91 |
+
var button_margin = $('.margin-right input').val() / 2 || '5';
|
92 |
+
button_size = 'width:' + button_size + 'px !important; height:' + button_size + 'px !important;';
|
93 |
+
button_margin = 'margin:' + button_margin + 'px !important;';
|
94 |
+
$('#preview .sxc-follow-buttons .sxc-follow-button a img').attr('style',button_size + button_margin);
|
95 |
}
|
96 |
$('.icon-size input').change(function() {
|
97 |
LiveInlineStyles();
|
inc/php/messages.php
CHANGED
@@ -23,12 +23,18 @@ function spacexchimp_p005_hello_message() {
|
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
-
<p
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
</div>
|
33 |
</div>
|
34 |
</div>
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
+
<p>
|
27 |
+
<?php _e( 'Hello!', SPACEXCHIMP_P005_TEXT ); ?>
|
28 |
+
<?php _e( 'We are the team of Space X-Chimp.', SPACEXCHIMP_P005_TEXT ); ?>
|
29 |
+
</p>
|
30 |
+
<p>
|
31 |
+
<?php
|
32 |
+
printf(
|
33 |
+
__( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P005_TEXT ),
|
34 |
+
'😃'
|
35 |
+
);
|
36 |
+
?>
|
37 |
+
</p>
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
inc/php/page.php
CHANGED
@@ -26,11 +26,12 @@ function spacexchimp_p005_render_submenu_page() {
|
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
-
<?php
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
34 |
?>
|
35 |
</span>
|
36 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
@@ -68,8 +69,11 @@ function spacexchimp_p005_render_submenu_page() {
|
|
68 |
<li><?php _e( 'Select the desired buttons and fill in the required URL fields.', $text ); ?></li>
|
69 |
<li><?php _e( 'Select the desired settings.', $text ); ?></li>
|
70 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
71 |
-
<li
|
72 |
-
|
|
|
|
|
|
|
73 |
<p><?php _e( '<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:', $text ); ?></p>
|
74 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
75 |
<p><?php _e( '<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the "Text" widget and add inside it the following shortcode:', $text ); ?></p>
|
@@ -79,12 +83,14 @@ function spacexchimp_p005_render_submenu_page() {
|
|
79 |
</li>
|
80 |
<li><?php _e( 'Enjoy your fancy social media follow buttons.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
81 |
</ol>
|
82 |
-
<p class="note"
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
|
|
88 |
</p>
|
89 |
</div>
|
90 |
</div>
|
@@ -103,7 +109,7 @@ function spacexchimp_p005_render_submenu_page() {
|
|
103 |
|
104 |
<div class="panel-group" id="collapse-group">
|
105 |
<?php
|
106 |
-
$loopvalue = '
|
107 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
108 |
echo '<div class="panel panel-default">
|
109 |
<div class="panel-heading">
|
@@ -120,77 +126,278 @@ function spacexchimp_p005_render_submenu_page() {
|
|
120 |
?>
|
121 |
</div>
|
122 |
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
<div class="
|
139 |
-
|
140 |
-
|
141 |
-
<div class="answer
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
<div class="
|
155 |
-
|
156 |
-
|
157 |
-
<div class="answer
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
</div>
|
196 |
</div>
|
@@ -205,26 +412,39 @@ function spacexchimp_p005_render_submenu_page() {
|
|
205 |
<span class="image-with-button pull-left">
|
206 |
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
207 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
</a>
|
213 |
</span>
|
214 |
-
<p
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
|
|
|
|
222 |
?>
|
223 |
</p>
|
224 |
-
<p
|
225 |
-
|
226 |
-
|
227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
</div>
|
229 |
</div>
|
230 |
</div>
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
+
<?php
|
30 |
+
printf(
|
31 |
+
__( 'by %s Space X-Chimp %s', $text ),
|
32 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
33 |
+
'</a>'
|
34 |
+
);
|
35 |
?>
|
36 |
</span>
|
37 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
69 |
<li><?php _e( 'Select the desired buttons and fill in the required URL fields.', $text ); ?></li>
|
70 |
<li><?php _e( 'Select the desired settings.', $text ); ?></li>
|
71 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
72 |
+
<li>
|
73 |
+
<?php _e( 'Now you have several methods for display the social media follow buttons bar (further just "buttons").', $text ); ?>
|
74 |
+
<?php _e( 'Just choose the one that is more suitable for your case.', $text ); ?>
|
75 |
+
<br><br>
|
76 |
+
<p><?php _e( '<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the "Autoload" section, then click the "Save changes" button.', $text ); ?></p>
|
77 |
<p><?php _e( '<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:', $text ); ?></p>
|
78 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
79 |
<p><?php _e( '<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the "Text" widget and add inside it the following shortcode:', $text ); ?></p>
|
83 |
</li>
|
84 |
<li><?php _e( 'Enjoy your fancy social media follow buttons.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
85 |
</ol>
|
86 |
+
<p class="note">
|
87 |
+
<?php
|
88 |
+
printf(
|
89 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
90 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
91 |
+
'</a>'
|
92 |
+
);
|
93 |
+
?>
|
94 |
</p>
|
95 |
</div>
|
96 |
</div>
|
109 |
|
110 |
<div class="panel-group" id="collapse-group">
|
111 |
<?php
|
112 |
+
$loopvalue = '20';
|
113 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
114 |
echo '<div class="panel panel-default">
|
115 |
<div class="panel-heading">
|
126 |
?>
|
127 |
</div>
|
128 |
|
129 |
+
<?php $i = 1; ?>
|
130 |
+
|
131 |
+
<div class="question-<?php echo $i; ?>">
|
132 |
+
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
133 |
+
</div>
|
134 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
135 |
+
<?php
|
136 |
+
printf(
|
137 |
+
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
138 |
+
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
139 |
+
'</a>'
|
140 |
+
);
|
141 |
+
?>
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<div class="question-<?php echo $i; ?>">
|
145 |
+
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
146 |
+
</div>
|
147 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
148 |
+
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
149 |
+
<br><br>
|
150 |
+
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
151 |
+
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
152 |
+
<?php
|
153 |
+
printf(
|
154 |
+
__( 'You can learn more about the difference here: %s .', $text ),
|
155 |
+
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
156 |
+
);
|
157 |
+
?>
|
158 |
+
</div>
|
159 |
+
|
160 |
+
<div class="question-<?php echo $i; ?>">
|
161 |
+
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
162 |
+
</div>
|
163 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
164 |
+
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
165 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme.', $text ); ?>
|
166 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
167 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
168 |
+
<br><br>
|
169 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
170 |
+
</div>
|
171 |
+
|
172 |
+
<div class="question-<?php echo $i; ?>">
|
173 |
+
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
174 |
+
</div>
|
175 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
176 |
+
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
177 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin.', $text ); ?>
|
178 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
179 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
180 |
+
<br><br>
|
181 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
182 |
+
</div>
|
183 |
+
|
184 |
+
<div class="question-<?php echo $i; ?>">
|
185 |
+
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
186 |
+
</div>
|
187 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
188 |
+
<?php _e( 'Yes.', $text ); ?>
|
189 |
+
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
190 |
+
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
191 |
+
<?php _e( 'It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections.', $text ); ?>
|
192 |
+
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
193 |
+
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
194 |
+
<br><br>
|
195 |
+
<?php
|
196 |
+
printf(
|
197 |
+
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
198 |
+
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
199 |
+
);
|
200 |
+
?>
|
201 |
+
<?php _e( 'You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file.', $text ); ?>
|
202 |
+
<?php
|
203 |
+
printf(
|
204 |
+
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
205 |
+
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
206 |
+
);
|
207 |
+
?>
|
208 |
+
</div>
|
209 |
+
|
210 |
+
<div class="question-<?php echo $i; ?>">
|
211 |
+
<?php _e( 'How does it work?', $text ); ?>
|
212 |
+
</div>
|
213 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
214 |
+
<?php _e( 'On the "Settings" tab, select the desired settings and click the "Save changes" button.', $text ); ?>
|
215 |
+
<?php _e( 'Enjoy your fancy social media follow buttons.', $text ); ?>
|
216 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
217 |
+
</div>
|
218 |
+
|
219 |
+
<div class="question-<?php echo $i; ?>">
|
220 |
+
<?php _e( 'Can I configure my buttons bar instance?', $text ); ?>
|
221 |
+
</div>
|
222 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
223 |
+
<?php _e( 'Yes.', $text ); ?>
|
224 |
+
<?php _e( 'On the "Settings" tab, select the desired settings and click the "Save changes" button.', $text ); ?>
|
225 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
226 |
+
</div>
|
227 |
+
|
228 |
+
<div class="question-<?php echo $i; ?>">
|
229 |
+
<?php _e( 'How many buttons bar instances can I create?', $text ); ?>
|
230 |
+
</div>
|
231 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
232 |
+
<?php _e( 'The free version of this plugin supports only 1 instance of the buttons bar.', $text ); ?>
|
233 |
+
<br><br>
|
234 |
+
<?php _e( 'In the premium version of this plugin you can create up to 10 of buttons bar instances.', $text ); ?>
|
235 |
+
<?php _e( 'This is very useful, because that way you can manage your buttons bar instances separately.', $text ); ?>
|
236 |
+
<?php _e( 'Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances.', $text ); ?>
|
237 |
+
</div>
|
238 |
+
|
239 |
+
<div class="question-<?php echo $i; ?>">
|
240 |
+
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
241 |
+
</div>
|
242 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
243 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
244 |
+
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
245 |
+
</div>
|
246 |
+
|
247 |
+
<div class="question-<?php echo $i; ?>">
|
248 |
+
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
249 |
+
</div>
|
250 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
251 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
252 |
+
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
253 |
+
</div>
|
254 |
+
|
255 |
+
<div class="question-<?php echo $i; ?>">
|
256 |
+
<?php _e( 'What I need to do if the Google PageSpeed test says that this plugin images must be compressed?', $text ); ?>
|
257 |
+
</div>
|
258 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
259 |
+
<?php _e( 'The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better.', $text ); ?>
|
260 |
+
</div>
|
261 |
+
|
262 |
+
<div class="question-<?php echo $i; ?> question-red">
|
263 |
+
<?php _e( 'It\'s not working.', $text ); ?>
|
264 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
265 |
+
</div>
|
266 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
267 |
+
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
268 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
269 |
+
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
270 |
+
<?php _e( 'Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load.', $text ); ?>
|
271 |
+
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
272 |
+
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
273 |
+
<br><br>
|
274 |
+
<?php _e( 'If you post a support request in the plugin\'s support forum on WordPress.org, we\'d be happy to give it a look and try to help out.', $text ); ?>
|
275 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
276 |
+
</div>
|
277 |
+
|
278 |
+
<div class="question-<?php echo $i; ?> question-red">
|
279 |
+
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
280 |
+
<?php _e( 'Why is this?', $text ); ?>
|
281 |
+
</div>
|
282 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
283 |
+
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
284 |
+
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
285 |
+
<?php _e( 'It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser.', $text ); ?>
|
286 |
+
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<div class="question-<?php echo $i; ?> question-red">
|
290 |
+
<?php _e( 'Where to report bug if found?', $text ); ?>
|
291 |
+
</div>
|
292 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
293 |
+
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
294 |
+
<?php
|
295 |
+
printf(
|
296 |
+
__( 'Please visit our %s contact page %s and report.', $text ),
|
297 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
298 |
+
'</a>'
|
299 |
+
);
|
300 |
+
?>
|
301 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
302 |
+
<?php _e( 'Thank you!', $text ); ?>
|
303 |
+
<br><br>
|
304 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
305 |
+
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
306 |
+
<?php _e( 'Here are some examples:', $text ); ?>
|
307 |
+
<br><br>
|
308 |
+
<ul class="custom-list">
|
309 |
+
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
310 |
+
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
311 |
+
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
312 |
+
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
313 |
+
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
314 |
+
</ul>
|
315 |
+
</div>
|
316 |
+
|
317 |
+
<div class="question-<?php echo $i; ?>">
|
318 |
+
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
319 |
+
</div>
|
320 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
321 |
+
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
322 |
+
<?php
|
323 |
+
printf(
|
324 |
+
__( 'Please visit our %s contact page %s.', $text ),
|
325 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
326 |
+
'</a>'
|
327 |
+
);
|
328 |
+
?>
|
329 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
330 |
+
<?php _e( 'Thank you!', $text ); ?>
|
331 |
+
</div>
|
332 |
+
|
333 |
+
<div class="question-<?php echo $i; ?>">
|
334 |
+
<?php _e( 'I love this plugin!', $text ); ?>
|
335 |
+
<?php _e( 'Can I help somehow?', $text ); ?>
|
336 |
+
</div>
|
337 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
338 |
+
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
339 |
+
<?php
|
340 |
+
printf(
|
341 |
+
__( 'Please visit our %s Support Us %s page.', $text ),
|
342 |
+
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
343 |
+
'</a>'
|
344 |
+
);
|
345 |
+
?>
|
346 |
+
<?php _e( 'Thank you!', $text ); ?>
|
347 |
+
</div>
|
348 |
+
|
349 |
+
<div class="question-<?php echo $i; ?>">
|
350 |
+
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
351 |
+
</div>
|
352 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
353 |
+
<?php
|
354 |
+
printf(
|
355 |
+
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
356 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
357 |
+
'</a>'
|
358 |
+
);
|
359 |
+
?>
|
360 |
+
</div>
|
361 |
+
|
362 |
+
<div class="question-<?php echo $i; ?>">
|
363 |
+
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
364 |
+
</div>
|
365 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
366 |
+
<?php
|
367 |
+
printf(
|
368 |
+
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
369 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
370 |
+
'</a>'
|
371 |
+
);
|
372 |
+
?>
|
373 |
+
</div>
|
374 |
+
|
375 |
+
<div class="question-<?php echo $i; ?>">
|
376 |
+
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
377 |
+
</div>
|
378 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
379 |
+
<?php
|
380 |
+
printf(
|
381 |
+
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
382 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
383 |
+
'</a>'
|
384 |
+
);
|
385 |
+
?>
|
386 |
+
</div>
|
387 |
+
|
388 |
+
<div class="question-<?php echo $i; ?>">
|
389 |
+
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
390 |
+
</div>
|
391 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
392 |
+
<?php
|
393 |
+
printf(
|
394 |
+
__( 'You can ask your question on %s this page %s.', $text ),
|
395 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
396 |
+
'</a>'
|
397 |
+
);
|
398 |
+
?>
|
399 |
+
<?php _e( 'But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ); ?>
|
400 |
+
</div>
|
401 |
|
402 |
</div>
|
403 |
</div>
|
412 |
<span class="image-with-button pull-left">
|
413 |
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
414 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
415 |
+
<span class="btn-label">
|
416 |
+
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
417 |
+
</span>
|
418 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
419 |
</a>
|
420 |
</span>
|
421 |
+
<p>
|
422 |
+
<?php _e( 'Hello!', $text ); ?>
|
423 |
+
<?php
|
424 |
+
printf(
|
425 |
+
__( 'My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
|
426 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
427 |
+
'</a>',
|
428 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
429 |
+
'</a>'
|
430 |
+
);
|
431 |
?>
|
432 |
</p>
|
433 |
+
<p>
|
434 |
+
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
435 |
+
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
436 |
+
<?php _e( 'We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?>
|
437 |
+
</p>
|
438 |
+
<p>
|
439 |
+
<?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.', $text ); ?>
|
440 |
+
<?php _e( 'But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?>
|
441 |
+
</p>
|
442 |
+
<p>
|
443 |
+
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
444 |
+
</p>
|
445 |
+
<p>
|
446 |
+
<?php _e( 'Thank you for your support!', $text ); ?>
|
447 |
+
</p>
|
448 |
</div>
|
449 |
</div>
|
450 |
</div>
|
inc/php/settings.php
CHANGED
@@ -151,11 +151,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
151 |
<div class="inside">
|
152 |
<p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
|
153 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
160 |
</div>
|
161 |
</div>
|
151 |
<div class="inside">
|
152 |
<p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
|
153 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
154 |
+
<span class="btn-label">
|
155 |
+
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
156 |
+
</span>
|
157 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
158 |
+
</a>
|
159 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
160 |
</div>
|
161 |
</div>
|
inc/php/sidebar.php
CHANGED
@@ -32,7 +32,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
32 |
<div class="postbox about">
|
33 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
34 |
<div class="inside">
|
35 |
-
<p><?php _e( 'This plugin
|
36 |
</div>
|
37 |
</div>
|
38 |
|
32 |
<div class="postbox about">
|
33 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
34 |
<div class="inside">
|
35 |
+
<p><?php _e( 'This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.', $text ); ?></p>
|
36 |
</div>
|
37 |
</div>
|
38 |
|
languages/Readme.txt
CHANGED
@@ -2,12 +2,6 @@
|
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
-
This plugin is ready for translation and has already been translated into several languages.
|
6 |
|
7 |
-
If you want to help translate this plugin
|
8 |
-
|
9 |
-
You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
10 |
-
|
11 |
-
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
12 |
-
|
13 |
-
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
+
This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
6 |
|
7 |
+
If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar). You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-de_DE.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
@@ -47,11 +47,11 @@ msgstr "Geben Sie Ihren Skype Namen mit Prefix <b>skype:</b> und suffix <b>?call
|
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
-
msgstr "Geben Sie Ihre Telefonnummer mit dem Prefix
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
-
msgstr "Geben Sie Ihre Email Adresse mit dem Prefix
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
msgid "Enter the URL of your personal website."
|
@@ -61,277 +61,522 @@ msgstr "Link zu Ihrer persönlichen Webseite."
|
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Geben Sie den Link zu Ihrem RSS Feed ein."
|
63 |
|
64 |
-
#: inc/php/messages.php:
|
65 |
-
msgid "Hello
|
66 |
-
msgstr "Hallo!
|
67 |
|
68 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
69 |
#, php-format
|
70 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
71 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
72 |
|
73 |
-
#: inc/php/messages.php:
|
74 |
msgid "You have installed an old version of this plugin."
|
75 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
76 |
|
77 |
-
#: inc/php/messages.php:
|
78 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
79 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
#, php-format
|
83 |
msgid "by %s Space X-Chimp %s"
|
84 |
msgstr "by %s Space X-Chimp %s"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Version"
|
88 |
msgstr "Version"
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Usage"
|
92 |
msgstr "Verwendung"
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Support"
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Store"
|
104 |
-
msgstr "
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Usage Instructions"
|
108 |
msgstr "Anleitung"
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
112 |
msgstr "Um die \"social media follow buttons bar\" am Front-End Ihrer Webseite anzuzeigen, befolgen Sie die folgenden Schritte:"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Go to the \"Settings\" tab on this page."
|
116 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid "Select the desired settings."
|
124 |
msgstr "Wählen Sie die gewünschten Einstellungen aus."
|
125 |
|
126 |
-
#: inc/php/page.php:
|
127 |
msgid "Click the \"Save changes\" button."
|
128 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\").
|
132 |
-
msgstr "Jetzt haben Sie unterschiedliche Möglichkeiten um die \"social media follow buttons bar\" (im Folgenden \"buttons\") anzuzeigen.
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply
|
136 |
msgstr "<b>A)</b> Um die Buttons unterhalb eines Contents bei jedem Post und/oder Seite anzuzeigen, wählen Sie die Checkbox \"Zeige in Posts\" und/oder \"Zeige auf Seiten im Bereich \"Anzeigeoptionen\", dann klicken Sie den Button \"Änderungen speichern\"."
|
137 |
|
138 |
-
#: inc/php/page.php:
|
139 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>B)</b> Um die Buttons innerhalb eines Posts/einer Seite anzuzeigen, benutzen Sie den folgenden Shortcode:"
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>C)</b> Um die Buttons in einem Widget-Bereich (Sidebar, Fusszeile, etc.) anzuzeigen, benutzen Sie das \"Text\" Widget und fügen Sie den folgenden Shortcode ein:"
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr "<b>D)</b> Um die Buttons direkt zu einem Theme hinzuzufügen, fügen Sie den folgenden Code an der gewünschten Stelle (wo Sie die Buttons angezeigt haben wollen) in Ihrem Theme ein:"
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Enjoy your fancy social media follow buttons."
|
152 |
msgstr "Viel Spaß mit den social media follow buttons."
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "Es ist ganz einfach!"
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
161 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
169 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
178 |
|
179 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Can I use this plugin on my language?"
|
181 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "Yes.
|
185 |
-
msgstr "Ja
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
|
189 |
-
|
|
|
|
|
|
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
-
msgid "
|
194 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
198 |
-
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen.
|
199 |
|
200 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgid "How does it work?"
|
202 |
msgstr "Wie arbeitet das Plugin?"
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
-
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button.
|
206 |
-
msgstr "Am Tab \"Einstellungen\" wählen Sie die gewünschten Einstellungen aus und klicken den Button \"Änderungen speichern\".
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid "Can I configure my buttons bar instance?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
-
#| msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
214 |
-
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: inc/php/page.php:143
|
218 |
msgid "How many buttons bar instances can I create?"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
-
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/page.php:
|
230 |
msgid "Does this plugin requires any modification of the theme?"
|
231 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
232 |
|
233 |
-
#: inc/php/page.php:
|
234 |
-
msgid "Absolutely not.
|
235 |
-
msgstr "Absolut nicht.
|
236 |
|
237 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
238 |
msgid "Does this require any knowledge of HTML or CSS?"
|
239 |
-
msgstr "Brauche ich HTML oder
|
240 |
|
241 |
-
#: inc/php/page.php:
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: inc/php/page.php:
|
246 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
247 |
msgstr "Was muss ich machen, wenn der Google PageSpeed Test sagt, dass Grafiken das Plugin komprimiert werden müssen?"
|
248 |
|
249 |
-
#: inc/php/page.php:
|
250 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
251 |
msgstr "Die Grafiken, die innerhalb des Plugins verwendet werden, sind bereits komprimiert. Gerne suche ich auch nach einer besseren Komprimierung, wenn es benötigt wird."
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "It's not working.
|
255 |
-
msgstr "Es funktioniert nicht.
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: inc/php/page.php:
|
262 |
-
msgid "
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: inc/php/page.php:
|
270 |
-
msgid "
|
271 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
|
273 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Where to report bug if found?"
|
275 |
msgstr "Wo kann ich eine Fehler melden?"
|
276 |
|
277 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
278 |
#, php-format
|
279 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
284 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
285 |
|
286 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
#, php-format
|
288 |
-
msgid "
|
|
|
|
|
|
|
|
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
-
|
293 |
-
|
|
|
294 |
|
295 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
296 |
#, php-format
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid "My question wasn't answered here."
|
302 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
#, php-format
|
306 |
-
msgid "You can ask your question on %s this page %s.
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
310 |
msgid "Support Us"
|
311 |
msgstr "Unterstütze uns"
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid "Donate with PayPal"
|
315 |
msgstr "Spende mit PayPal"
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
#, php-format
|
319 |
-
msgid "
|
320 |
-
msgstr ""
|
321 |
|
322 |
-
#: inc/php/page.php:
|
323 |
-
msgid "Our intention is to create projects that will make this world a better place.
|
|
|
|
|
|
|
|
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
-
msgid "We
|
328 |
-
msgstr "
|
|
|
|
|
|
|
|
|
329 |
|
330 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
331 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
332 |
-
msgstr "Wenn Ihnen
|
333 |
|
334 |
-
#: inc/php/page.php:
|
335 |
msgid "Thank you for your support!"
|
336 |
msgstr "Danke für Ihre Unterstützung!"
|
337 |
|
@@ -372,30 +617,28 @@ msgid "Display options"
|
|
372 |
msgstr "Anzeigeoptionen"
|
373 |
|
374 |
#: inc/php/settings.php:78
|
375 |
-
#| msgid "Enjoy your fancy social media follow buttons."
|
376 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
377 |
msgstr ""
|
378 |
|
379 |
#: inc/php/settings.php:82
|
380 |
msgid "Button size"
|
381 |
-
msgstr "Icon
|
382 |
|
383 |
#: inc/php/settings.php:83
|
384 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
385 |
-
msgstr "Geben Sie die
|
386 |
|
387 |
#: inc/php/settings.php:87
|
388 |
msgid "Positioning"
|
389 |
msgstr ""
|
390 |
|
391 |
#: inc/php/settings.php:90
|
392 |
-
#| msgid "Button size"
|
393 |
msgid "Button margin"
|
394 |
msgstr ""
|
395 |
|
396 |
#: inc/php/settings.php:91
|
397 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
398 |
-
msgstr "Geben Sie die
|
399 |
|
400 |
#: inc/php/settings.php:96
|
401 |
msgid "Left"
|
@@ -414,7 +657,6 @@ msgid "Buttons bar alignment"
|
|
414 |
msgstr ""
|
415 |
|
416 |
#: inc/php/settings.php:101
|
417 |
-
#| msgid "You can choose the alignment of the entire buttons bar."
|
418 |
msgid "You can choose the alignment of the entire buttons bar."
|
419 |
msgstr ""
|
420 |
|
@@ -428,7 +670,7 @@ msgstr "Öffne in neuem Tab"
|
|
428 |
|
429 |
#: inc/php/settings.php:109
|
430 |
msgid "Open links in a new tab/window."
|
431 |
-
msgstr "
|
432 |
|
433 |
#: inc/php/settings.php:112
|
434 |
msgid "Additional"
|
@@ -459,7 +701,6 @@ msgid "Show on Posts"
|
|
459 |
msgstr "In Posts anzeigen"
|
460 |
|
461 |
#: inc/php/settings.php:128
|
462 |
-
#| msgid "Automatically display the social media follow buttons below content on Posts."
|
463 |
msgid "Automatically display the buttons bar below content on Posts."
|
464 |
msgstr ""
|
465 |
|
@@ -468,7 +709,6 @@ msgid "Show on Pages"
|
|
468 |
msgstr "Auf Seiten anzeigen"
|
469 |
|
470 |
#: inc/php/settings.php:132
|
471 |
-
#| msgid "Automatically display the social media follow buttons below content on Pages."
|
472 |
msgid "Automatically display the buttons bar below content on Pages."
|
473 |
msgstr ""
|
474 |
|
@@ -490,15 +730,15 @@ msgstr "Danke für Ihre Unterstützung!"
|
|
490 |
|
491 |
#: inc/php/sidebar.php:16
|
492 |
msgid "We are «Space X-Chimp»"
|
493 |
-
msgstr ""
|
494 |
|
495 |
#: inc/php/sidebar.php:33
|
496 |
msgid "About"
|
497 |
msgstr "Über"
|
498 |
|
499 |
#: inc/php/sidebar.php:35
|
500 |
-
msgid "This plugin
|
501 |
-
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
|
502 |
|
503 |
#: inc/php/sidebar.php:40
|
504 |
msgid "Help"
|
@@ -517,8 +757,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
517 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
518 |
|
519 |
#. Description of the plugin/theme
|
520 |
-
msgid "Easily add
|
521 |
-
msgstr "Fügt eine Smart Bar mit social media follow buttons an eine beliebige Stelle auf Ihrer WordPress Webseite."
|
522 |
|
523 |
#. Author of the plugin/theme
|
524 |
msgid "Space X-Chimp"
|
@@ -527,21 +767,3 @@ msgstr "Space X-Chimp"
|
|
527 |
#. Author URI of the plugin/theme
|
528 |
msgid "https://www.spacexchimp.com"
|
529 |
msgstr "https://www.spacexchimp.com"
|
530 |
-
|
531 |
-
#~ msgid "Note!"
|
532 |
-
#~ msgstr "Achtung!"
|
533 |
-
|
534 |
-
#~ msgid "Margin"
|
535 |
-
#~ msgstr "Rand"
|
536 |
-
|
537 |
-
#~ msgid "Alignment"
|
538 |
-
#~ msgstr "Ausrichtung"
|
539 |
-
|
540 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
541 |
-
#~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
|
542 |
-
|
543 |
-
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
544 |
-
#~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
|
545 |
-
|
546 |
-
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
547 |
-
#~ msgstr "Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:23+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:23+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
+
msgstr "Geben Sie Ihre Telefonnummer mit dem Prefix <b>tel://</b> ein."
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
+
msgstr "Geben Sie Ihre Email Adresse mit dem Prefix <b>mailto:</b> ein."
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
msgid "Enter the URL of your personal website."
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Geben Sie den Link zu Ihrem RSS Feed ein."
|
63 |
|
64 |
+
#: inc/php/messages.php:27 inc/php/page.php:422
|
65 |
+
msgid "Hello!"
|
66 |
+
msgstr "Hallo!"
|
67 |
|
68 |
#: inc/php/messages.php:28
|
69 |
+
msgid "We are the team of Space X-Chimp."
|
70 |
+
msgstr "Wir sind das Team von Space X-Chimp."
|
71 |
+
|
72 |
+
#: inc/php/messages.php:33
|
73 |
#, php-format
|
74 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
75 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
76 |
|
77 |
+
#: inc/php/messages.php:74
|
78 |
msgid "You have installed an old version of this plugin."
|
79 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
80 |
|
81 |
+
#: inc/php/messages.php:75
|
82 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
83 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
84 |
|
85 |
+
#: inc/php/page.php:31
|
86 |
#, php-format
|
87 |
msgid "by %s Space X-Chimp %s"
|
88 |
msgstr "by %s Space X-Chimp %s"
|
89 |
|
90 |
+
#: inc/php/page.php:37
|
91 |
msgid "Version"
|
92 |
msgstr "Version"
|
93 |
|
94 |
+
#: inc/php/page.php:45
|
95 |
msgid "Usage"
|
96 |
msgstr "Verwendung"
|
97 |
|
98 |
+
#: inc/php/page.php:46
|
99 |
msgid "F.A.Q."
|
100 |
msgstr "F.A.Q."
|
101 |
|
102 |
+
#: inc/php/page.php:47 inc/php/settings.php:150 inc/php/sidebar.php:47
|
103 |
msgid "Support"
|
104 |
+
msgstr "Unterstützung"
|
105 |
|
106 |
+
#: inc/php/page.php:48
|
107 |
msgid "Store"
|
108 |
+
msgstr "Geschäft"
|
109 |
|
110 |
+
#: inc/php/page.php:64
|
111 |
msgid "Usage Instructions"
|
112 |
msgstr "Anleitung"
|
113 |
|
114 |
+
#: inc/php/page.php:66
|
115 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
116 |
msgstr "Um die \"social media follow buttons bar\" am Front-End Ihrer Webseite anzuzeigen, befolgen Sie die folgenden Schritte:"
|
117 |
|
118 |
+
#: inc/php/page.php:68
|
119 |
msgid "Go to the \"Settings\" tab on this page."
|
120 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
121 |
|
122 |
+
#: inc/php/page.php:69
|
123 |
msgid "Select the desired buttons and fill in the required URL fields."
|
124 |
+
msgstr "Wählen Sie die gewünschten Schaltflächen aus und füllen die benötigten URL-Felder aus."
|
125 |
|
126 |
+
#: inc/php/page.php:70
|
127 |
msgid "Select the desired settings."
|
128 |
msgstr "Wählen Sie die gewünschten Einstellungen aus."
|
129 |
|
130 |
+
#: inc/php/page.php:71
|
131 |
msgid "Click the \"Save changes\" button."
|
132 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
133 |
|
134 |
+
#: inc/php/page.php:73
|
135 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\")."
|
136 |
+
msgstr "Jetzt haben Sie unterschiedliche Möglichkeiten um die \"social media follow buttons bar\" (im Folgenden \"buttons\") anzuzeigen."
|
137 |
+
|
138 |
+
#: inc/php/page.php:74
|
139 |
+
msgid "Just choose the one that is more suitable for your case."
|
140 |
+
msgstr "Wählen Sie die, die für Sie am Besten passt."
|
141 |
|
142 |
+
#: inc/php/page.php:76
|
143 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the \"Autoload\" section, then click the \"Save changes\" button."
|
144 |
msgstr "<b>A)</b> Um die Buttons unterhalb eines Contents bei jedem Post und/oder Seite anzuzeigen, wählen Sie die Checkbox \"Zeige in Posts\" und/oder \"Zeige auf Seiten im Bereich \"Anzeigeoptionen\", dann klicken Sie den Button \"Änderungen speichern\"."
|
145 |
|
146 |
+
#: inc/php/page.php:77
|
147 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
148 |
msgstr "<b>B)</b> Um die Buttons innerhalb eines Posts/einer Seite anzuzeigen, benutzen Sie den folgenden Shortcode:"
|
149 |
|
150 |
+
#: inc/php/page.php:79
|
151 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
152 |
msgstr "<b>C)</b> Um die Buttons in einem Widget-Bereich (Sidebar, Fusszeile, etc.) anzuzeigen, benutzen Sie das \"Text\" Widget und fügen Sie den folgenden Shortcode ein:"
|
153 |
|
154 |
+
#: inc/php/page.php:81
|
155 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
156 |
msgstr "<b>D)</b> Um die Buttons direkt zu einem Theme hinzuzufügen, fügen Sie den folgenden Code an der gewünschten Stelle (wo Sie die Buttons angezeigt haben wollen) in Ihrem Theme ein:"
|
157 |
|
158 |
+
#: inc/php/page.php:84 inc/php/page.php:215
|
159 |
msgid "Enjoy your fancy social media follow buttons."
|
160 |
msgstr "Viel Spaß mit den social media follow buttons."
|
161 |
|
162 |
+
#: inc/php/page.php:84 inc/php/page.php:216 inc/php/page.php:225
|
163 |
msgid "It's that simple!"
|
164 |
msgstr "Es ist ganz einfach!"
|
165 |
|
166 |
+
#: inc/php/page.php:89
|
167 |
#, php-format
|
168 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
169 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
170 |
|
171 |
+
#: inc/php/page.php:103
|
172 |
msgid "Frequently Asked Questions"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: inc/php/page.php:107
|
176 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
177 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
178 |
|
179 |
+
#: inc/php/page.php:132
|
180 |
+
msgid "Where can I find a documentation for this plugin?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/page.php:137
|
184 |
+
#, php-format
|
185 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:145
|
189 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
190 |
+
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
191 |
+
|
192 |
+
#: inc/php/page.php:148
|
193 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
194 |
+
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
195 |
|
196 |
+
#: inc/php/page.php:150
|
197 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
198 |
+
msgstr ""
|
199 |
|
200 |
+
#: inc/php/page.php:151
|
201 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:154
|
205 |
+
#, php-format
|
206 |
+
msgid "You can learn more about the difference here: %s ."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/page.php:161
|
210 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: inc/php/page.php:164
|
214 |
+
msgid "This plugin is compatible with most themes."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: inc/php/page.php:165
|
218 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:166
|
222 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:167
|
226 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/php/page.php:169
|
230 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/page.php:173
|
234 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: inc/php/page.php:176
|
238 |
+
msgid "This plugin is compatible with most plugins."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: inc/php/page.php:177
|
242 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: inc/php/page.php:178
|
246 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: inc/php/page.php:179
|
250 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: inc/php/page.php:181
|
254 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: inc/php/page.php:185
|
258 |
msgid "Can I use this plugin on my language?"
|
259 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
260 |
|
261 |
+
#: inc/php/page.php:188 inc/php/page.php:223
|
262 |
+
msgid "Yes."
|
263 |
+
msgstr "Ja."
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
267 |
+
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
268 |
+
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "But If your language is not available then you can make one."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
275 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
276 |
|
277 |
+
#: inc/php/page.php:192
|
278 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
279 |
+
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
280 |
|
281 |
+
#: inc/php/page.php:193
|
282 |
+
msgid "Thanks for your contribution!"
|
283 |
+
msgstr "Danke für Ihre Mithilfe!"
|
284 |
+
|
285 |
+
#: inc/php/page.php:197
|
286 |
+
#, php-format
|
287 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
288 |
+
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
289 |
+
|
290 |
+
#: inc/php/page.php:201
|
291 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
292 |
+
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
293 |
+
|
294 |
+
#: inc/php/page.php:204
|
295 |
+
#, php-format
|
296 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
297 |
+
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
298 |
+
|
299 |
+
#: inc/php/page.php:211
|
300 |
msgid "How does it work?"
|
301 |
msgstr "Wie arbeitet das Plugin?"
|
302 |
|
303 |
+
#: inc/php/page.php:214 inc/php/page.php:224
|
304 |
+
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button."
|
305 |
+
msgstr "Am Tab \"Einstellungen\" wählen Sie die gewünschten Einstellungen aus und klicken den Button \"Änderungen speichern\"."
|
306 |
|
307 |
+
#: inc/php/page.php:220
|
308 |
msgid "Can I configure my buttons bar instance?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:229
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "How many buttons bar instances can I create?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:232
|
316 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:234
|
320 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: inc/php/page.php:235
|
324 |
+
msgid "This is very useful, because that way you can manage your buttons bar instances separately."
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: inc/php/page.php:236
|
328 |
+
msgid "Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:240
|
332 |
msgid "Does this plugin requires any modification of the theme?"
|
333 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
334 |
|
335 |
+
#: inc/php/page.php:243 inc/php/page.php:251
|
336 |
+
msgid "Absolutely not."
|
337 |
+
msgstr "Absolut nicht."
|
338 |
|
339 |
+
#: inc/php/page.php:244
|
340 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
341 |
+
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
342 |
+
|
343 |
+
#: inc/php/page.php:248
|
344 |
msgid "Does this require any knowledge of HTML or CSS?"
|
345 |
+
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
346 |
|
347 |
+
#: inc/php/page.php:252
|
348 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
349 |
+
msgstr "Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden, using an easy-to-use plugin settings page."
|
350 |
|
351 |
+
#: inc/php/page.php:256
|
352 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
353 |
msgstr "Was muss ich machen, wenn der Google PageSpeed Test sagt, dass Grafiken das Plugin komprimiert werden müssen?"
|
354 |
|
355 |
+
#: inc/php/page.php:259
|
356 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
357 |
msgstr "Die Grafiken, die innerhalb des Plugins verwendet werden, sind bereits komprimiert. Gerne suche ich auch nach einer besseren Komprimierung, wenn es benötigt wird."
|
358 |
|
359 |
+
#: inc/php/page.php:263
|
360 |
+
msgid "It's not working."
|
361 |
+
msgstr "Es funktioniert nicht."
|
362 |
|
363 |
+
#: inc/php/page.php:264
|
364 |
+
msgid "What could be wrong?"
|
365 |
+
msgstr "Was könnte falsch sein?"
|
366 |
|
367 |
+
#: inc/php/page.php:267
|
368 |
+
msgid "As with every plugin, it's possible that things don't work."
|
369 |
+
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
370 |
|
371 |
+
#: inc/php/page.php:268
|
372 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
373 |
+
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
374 |
|
375 |
+
#: inc/php/page.php:269
|
376 |
+
msgid "The most common reason for this is a web browser's cache."
|
377 |
+
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
378 |
+
|
379 |
+
#: inc/php/page.php:270
|
380 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
381 |
+
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
382 |
+
|
383 |
+
#: inc/php/page.php:271
|
384 |
+
msgid "This is called the browser's cache."
|
385 |
+
msgstr "Das nennt man den Browser Cache."
|
386 |
+
|
387 |
+
#: inc/php/page.php:272
|
388 |
+
msgid "Clearing your browser's cache may solve the problem."
|
389 |
+
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
390 |
+
|
391 |
+
#: inc/php/page.php:274
|
392 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
393 |
+
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
394 |
+
|
395 |
+
#: inc/php/page.php:275 inc/php/page.php:304
|
396 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
397 |
+
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
398 |
+
|
399 |
+
#: inc/php/page.php:279
|
400 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
401 |
+
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
402 |
+
|
403 |
+
#: inc/php/page.php:280
|
404 |
+
msgid "Why is this?"
|
405 |
+
msgstr "Warum ist das so?"
|
406 |
|
407 |
+
#: inc/php/page.php:283
|
408 |
+
msgid "This plugin can not cause such problem."
|
409 |
+
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
410 |
+
|
411 |
+
#: inc/php/page.php:284
|
412 |
+
msgid "More likely, the problem are related to the settings of the website."
|
413 |
+
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
414 |
+
|
415 |
+
#: inc/php/page.php:285
|
416 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
417 |
+
msgstr "Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers."
|
418 |
+
|
419 |
+
#: inc/php/page.php:286
|
420 |
+
msgid "Also please try to re-login to the website, this too can help."
|
421 |
+
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
422 |
+
|
423 |
+
#: inc/php/page.php:290
|
424 |
msgid "Where to report bug if found?"
|
425 |
msgstr "Wo kann ich eine Fehler melden?"
|
426 |
|
427 |
+
#: inc/php/page.php:293
|
428 |
+
msgid "Bug reports are very welcome!"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:296
|
432 |
#, php-format
|
433 |
+
msgid "Please visit our %s contact page %s and report."
|
434 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
435 |
+
|
436 |
+
#: inc/php/page.php:301 inc/php/page.php:329
|
437 |
+
msgid "Please do not forget to specify the name of the plugin."
|
438 |
+
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
439 |
+
|
440 |
+
#: inc/php/page.php:302 inc/php/page.php:330 inc/php/page.php:346
|
441 |
+
msgid "Thank you!"
|
442 |
+
msgstr "Danke!"
|
443 |
+
|
444 |
+
#: inc/php/page.php:305
|
445 |
+
msgid "Describe in more detail what exactly you are seeing."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/page.php:306
|
449 |
+
msgid "Here are some examples:"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/php/page.php:309
|
453 |
+
msgid "Elements of the plugin settings page are not working."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/php/page.php:310
|
457 |
+
msgid "An error message is displayed on the plugin settings page."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/php/page.php:311
|
461 |
+
msgid "An error message is displayed on the front end of website."
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: inc/php/page.php:312
|
465 |
+
msgid "An error message is displayed on the back end of website."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/php/page.php:313
|
469 |
+
msgid "Website is crashed."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: inc/php/page.php:318
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
475 |
|
476 |
+
#: inc/php/page.php:321
|
477 |
+
msgid "Any suggestions are very welcome!"
|
478 |
+
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
479 |
+
|
480 |
+
#: inc/php/page.php:324
|
481 |
+
#, php-format
|
482 |
+
msgid "Please visit our %s contact page %s."
|
483 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
484 |
+
|
485 |
+
#: inc/php/page.php:334
|
486 |
+
msgid "I love this plugin!"
|
487 |
+
msgstr "Ich liebe dieses Plugin!"
|
488 |
+
|
489 |
+
#: inc/php/page.php:335
|
490 |
+
msgid "Can I help somehow?"
|
491 |
+
msgstr "Kann ich Irgendwie helfen?"
|
492 |
+
|
493 |
+
#: inc/php/page.php:338
|
494 |
+
msgid "Yes, any contributions are very welcome!"
|
495 |
+
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
496 |
+
|
497 |
+
#: inc/php/page.php:341
|
498 |
#, php-format
|
499 |
+
msgid "Please visit our %s Support Us %s page."
|
500 |
+
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
501 |
+
|
502 |
+
#: inc/php/page.php:350
|
503 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/page.php:355
|
507 |
+
#, php-format
|
508 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
+
msgstr ""
|
510 |
|
511 |
+
#: inc/php/page.php:363
|
512 |
+
msgid "Where can I find information about your customer support?"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: inc/php/page.php:368
|
516 |
#, php-format
|
517 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
+
msgstr ""
|
519 |
|
520 |
+
#: inc/php/page.php:376
|
521 |
+
msgid "Where can I find information about your affiliate program?"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: inc/php/page.php:381
|
525 |
+
#, php-format
|
526 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: inc/php/page.php:389
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
532 |
|
533 |
+
#: inc/php/page.php:394
|
534 |
#, php-format
|
535 |
+
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:399
|
539 |
+
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
540 |
+
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
541 |
+
|
542 |
+
#: inc/php/page.php:410
|
543 |
msgid "Support Us"
|
544 |
msgstr "Unterstütze uns"
|
545 |
|
546 |
+
#: inc/php/page.php:418 inc/php/settings.php:157 inc/php/sidebar.php:54
|
547 |
msgid "Donate with PayPal"
|
548 |
msgstr "Spende mit PayPal"
|
549 |
|
550 |
+
#: inc/php/page.php:425
|
551 |
#, php-format
|
552 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
+
msgstr "Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
|
555 |
+
#: inc/php/page.php:434
|
556 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
+
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
558 |
+
|
559 |
+
#: inc/php/page.php:435
|
560 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/page.php:436
|
564 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
+
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
566 |
+
|
567 |
+
#: inc/php/page.php:439
|
568 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
+
msgstr "Wir haben viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die wir entwickeln, nützlich sind. Der ultimative Beweis für uns ist, dass Sie sie tatsächlich verwenden."
|
570 |
|
571 |
+
#: inc/php/page.php:440
|
572 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: inc/php/page.php:443
|
576 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
+
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
578 |
|
579 |
+
#: inc/php/page.php:446
|
580 |
msgid "Thank you for your support!"
|
581 |
msgstr "Danke für Ihre Unterstützung!"
|
582 |
|
617 |
msgstr "Anzeigeoptionen"
|
618 |
|
619 |
#: inc/php/settings.php:78
|
|
|
620 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
621 |
msgstr ""
|
622 |
|
623 |
#: inc/php/settings.php:82
|
624 |
msgid "Button size"
|
625 |
+
msgstr "Icon Größe"
|
626 |
|
627 |
#: inc/php/settings.php:83
|
628 |
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
629 |
+
msgstr "Geben Sie die Größe der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
630 |
|
631 |
#: inc/php/settings.php:87
|
632 |
msgid "Positioning"
|
633 |
msgstr ""
|
634 |
|
635 |
#: inc/php/settings.php:90
|
|
|
636 |
msgid "Button margin"
|
637 |
msgstr ""
|
638 |
|
639 |
#: inc/php/settings.php:91
|
640 |
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
641 |
+
msgstr "Geben Sie die Größe des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
642 |
|
643 |
#: inc/php/settings.php:96
|
644 |
msgid "Left"
|
657 |
msgstr ""
|
658 |
|
659 |
#: inc/php/settings.php:101
|
|
|
660 |
msgid "You can choose the alignment of the entire buttons bar."
|
661 |
msgstr ""
|
662 |
|
670 |
|
671 |
#: inc/php/settings.php:109
|
672 |
msgid "Open links in a new tab/window."
|
673 |
+
msgstr "Links in einem neuen Tab/Fenster öffnen."
|
674 |
|
675 |
#: inc/php/settings.php:112
|
676 |
msgid "Additional"
|
701 |
msgstr "In Posts anzeigen"
|
702 |
|
703 |
#: inc/php/settings.php:128
|
|
|
704 |
msgid "Automatically display the buttons bar below content on Posts."
|
705 |
msgstr ""
|
706 |
|
709 |
msgstr "Auf Seiten anzeigen"
|
710 |
|
711 |
#: inc/php/settings.php:132
|
|
|
712 |
msgid "Automatically display the buttons bar below content on Pages."
|
713 |
msgstr ""
|
714 |
|
730 |
|
731 |
#: inc/php/sidebar.php:16
|
732 |
msgid "We are «Space X-Chimp»"
|
733 |
+
msgstr "Wir sind «Space X-Chimp»"
|
734 |
|
735 |
#: inc/php/sidebar.php:33
|
736 |
msgid "About"
|
737 |
msgstr "Über"
|
738 |
|
739 |
#: inc/php/sidebar.php:35
|
740 |
+
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
741 |
+
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall (post content, page content, widget, sidebar, header, footer) auf Ihrer Webseite hinzufügen."
|
742 |
|
743 |
#: inc/php/sidebar.php:40
|
744 |
msgid "Help"
|
757 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
758 |
|
759 |
#. Description of the plugin/theme
|
760 |
+
msgid "Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
761 |
+
msgstr "Fügt eine Smart Bar mit social media follow buttons an eine beliebige Stelle (post content, page content, widget, sidebar, header, footer) auf Ihrer WordPress Webseite."
|
762 |
|
763 |
#. Author of the plugin/theme
|
764 |
msgid "Space X-Chimp"
|
767 |
#. Author URI of the plugin/theme
|
768 |
msgid "https://www.spacexchimp.com"
|
769 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-es_ES.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
@@ -61,282 +61,528 @@ msgstr "Ingresa el enlace a tu sitio web personal."
|
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Ingresa el enlace a tu Feed de RSS."
|
63 |
|
64 |
-
#: inc/php/messages.php:
|
65 |
-
msgid "Hello
|
66 |
-
msgstr "Hola!
|
67 |
|
68 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
69 |
#, php-format
|
70 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
71 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
72 |
|
73 |
-
#: inc/php/messages.php:
|
74 |
msgid "You have installed an old version of this plugin."
|
75 |
msgstr "Has instalado una versión antigua de este complemento."
|
76 |
|
77 |
-
#: inc/php/messages.php:
|
78 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
79 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
#, php-format
|
83 |
msgid "by %s Space X-Chimp %s"
|
84 |
msgstr "por %s Space X-Chimp %s"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Version"
|
88 |
msgstr "Versión"
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Usage"
|
92 |
msgstr "Uso"
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "Preguntas ?"
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Support"
|
100 |
msgstr "Soporte"
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Store"
|
104 |
msgstr "Tienda"
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Usage Instructions"
|
108 |
msgstr "Instrucciones de uso"
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Go to the \"Settings\" tab on this page."
|
116 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid "Select the desired settings."
|
124 |
msgstr "Seleccione la configuración deseada."
|
125 |
|
126 |
-
#: inc/php/page.php:
|
127 |
msgid "Click the \"Save changes\" button."
|
128 |
-
msgstr "Clic en el botón \"Guardar
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\").
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
139 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/Páginas de Wordpress usa el siguiente shortcode:"
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Enjoy your fancy social media follow buttons."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "¡Es así de simple!"
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
161 |
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr "Preguntas Frecuentes"
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
169 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Can I use this plugin on my language?"
|
181 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "Yes.
|
185 |
-
msgstr "Sí.
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
|
189 |
-
|
190 |
-
|
|
|
|
|
|
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
-
msgid "
|
194 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
198 |
-
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad.
|
199 |
|
200 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgid "How does it work?"
|
202 |
msgstr "¿Como funciona?"
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
-
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button.
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid "Can I configure my buttons bar instance?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
-
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: inc/php/page.php:143
|
217 |
msgid "How many buttons bar instances can I create?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "Absolutely not.
|
234 |
-
msgstr "Absolutamente
|
235 |
|
236 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "It's not working.
|
254 |
-
msgstr "No funciona.
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
-
msgid "
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "¿Dónde informar el error si se encuentra?"
|
275 |
|
276 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
277 |
#, php-format
|
278 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/php/page.php:
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
284 |
|
285 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
286 |
#, php-format
|
287 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
-
|
292 |
-
|
|
|
293 |
|
294 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
295 |
#, php-format
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
|
|
|
|
|
|
|
|
298 |
|
299 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "My question wasn't answered here."
|
301 |
msgstr "Mi pregunta no fue contestada aquí."
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
-
msgid "You can ask your question on %s this page %s.
|
306 |
-
msgstr "Puede hacer
|
307 |
|
308 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
309 |
msgid "Support Us"
|
310 |
msgstr "¡Apoyanos!"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Donar con PayPal"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
#, php-format
|
318 |
-
msgid "
|
319 |
-
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
-
msgid "Our intention is to create projects that will make this world a better place.
|
|
|
|
|
|
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
-
msgid "We
|
327 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "¡Gracias por tu apoyo!"
|
336 |
|
337 |
#: inc/php/settings.php:21 inc/php/settings.php:139
|
338 |
msgid "Save changes"
|
339 |
-
msgstr "Guardar
|
340 |
|
341 |
#: inc/php/settings.php:25
|
342 |
msgid "Buttons"
|
@@ -387,7 +633,6 @@ msgid "Positioning"
|
|
387 |
msgstr ""
|
388 |
|
389 |
#: inc/php/settings.php:90
|
390 |
-
#| msgid "Button size"
|
391 |
msgid "Button margin"
|
392 |
msgstr ""
|
393 |
|
@@ -425,7 +670,7 @@ msgstr "Abrir en una nueva pestaña"
|
|
425 |
|
426 |
#: inc/php/settings.php:109
|
427 |
msgid "Open links in a new tab/window."
|
428 |
-
msgstr "¿Abrir
|
429 |
|
430 |
#: inc/php/settings.php:112
|
431 |
msgid "Additional"
|
@@ -473,7 +718,7 @@ msgstr "Vista Previa"
|
|
473 |
|
474 |
#: inc/php/settings.php:144
|
475 |
msgid "Click the \"Save changes\" button to update this preview."
|
476 |
-
msgstr "Has clic en el botón \"Guardar
|
477 |
|
478 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
479 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
@@ -492,7 +737,7 @@ msgid "About"
|
|
492 |
msgstr "Acerca de"
|
493 |
|
494 |
#: inc/php/sidebar.php:35
|
495 |
-
msgid "This plugin
|
496 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
497 |
|
498 |
#: inc/php/sidebar.php:40
|
@@ -512,8 +757,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
512 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
513 |
|
514 |
#. Description of the plugin/theme
|
515 |
-
msgid "Easily add
|
516 |
-
msgstr "Añade fácilmente una barra inteligente con botones de social media (no para compartir, sólo para enlazar a tus perfiles sociales) en cualquier parte tu sitio web hecho en Wordpress."
|
517 |
|
518 |
#. Author of the plugin/theme
|
519 |
msgid "Space X-Chimp"
|
@@ -522,21 +767,3 @@ msgstr "Space X-Chimp"
|
|
522 |
#. Author URI of the plugin/theme
|
523 |
msgid "https://www.spacexchimp.com"
|
524 |
msgstr "https://www.spacexchimp.com"
|
525 |
-
|
526 |
-
#~ msgid "Note!"
|
527 |
-
#~ msgstr "¡Nota!"
|
528 |
-
|
529 |
-
#~ msgid "Margin"
|
530 |
-
#~ msgstr "Margen"
|
531 |
-
|
532 |
-
#~ msgid "Alignment"
|
533 |
-
#~ msgstr "Alineación"
|
534 |
-
|
535 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
536 |
-
#~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
|
537 |
-
|
538 |
-
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
539 |
-
#~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
|
540 |
-
|
541 |
-
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
542 |
-
#~ msgstr "Sólo llena los campos requeridos para hacer los botones. Los botones de cada red social conducirán directamente a tu página de perfil en esa red. Si no quieres usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:23+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:23+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Ingresa el enlace a tu Feed de RSS."
|
63 |
|
64 |
+
#: inc/php/messages.php:27 inc/php/page.php:422
|
65 |
+
msgid "Hello!"
|
66 |
+
msgstr "¡Hola!"
|
67 |
|
68 |
#: inc/php/messages.php:28
|
69 |
+
msgid "We are the team of Space X-Chimp."
|
70 |
+
msgstr "Somos el equipo de Space X-Chimp."
|
71 |
+
|
72 |
+
#: inc/php/messages.php:33
|
73 |
#, php-format
|
74 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
75 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
76 |
|
77 |
+
#: inc/php/messages.php:74
|
78 |
msgid "You have installed an old version of this plugin."
|
79 |
msgstr "Has instalado una versión antigua de este complemento."
|
80 |
|
81 |
+
#: inc/php/messages.php:75
|
82 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
83 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
84 |
|
85 |
+
#: inc/php/page.php:31
|
86 |
#, php-format
|
87 |
msgid "by %s Space X-Chimp %s"
|
88 |
msgstr "por %s Space X-Chimp %s"
|
89 |
|
90 |
+
#: inc/php/page.php:37
|
91 |
msgid "Version"
|
92 |
msgstr "Versión"
|
93 |
|
94 |
+
#: inc/php/page.php:45
|
95 |
msgid "Usage"
|
96 |
msgstr "Uso"
|
97 |
|
98 |
+
#: inc/php/page.php:46
|
99 |
msgid "F.A.Q."
|
100 |
msgstr "Preguntas ?"
|
101 |
|
102 |
+
#: inc/php/page.php:47 inc/php/settings.php:150 inc/php/sidebar.php:47
|
103 |
msgid "Support"
|
104 |
msgstr "Soporte"
|
105 |
|
106 |
+
#: inc/php/page.php:48
|
107 |
msgid "Store"
|
108 |
msgstr "Tienda"
|
109 |
|
110 |
+
#: inc/php/page.php:64
|
111 |
msgid "Usage Instructions"
|
112 |
msgstr "Instrucciones de uso"
|
113 |
|
114 |
+
#: inc/php/page.php:66
|
115 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:68
|
119 |
msgid "Go to the \"Settings\" tab on this page."
|
120 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
121 |
|
122 |
+
#: inc/php/page.php:69
|
123 |
msgid "Select the desired buttons and fill in the required URL fields."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:70
|
127 |
msgid "Select the desired settings."
|
128 |
msgstr "Seleccione la configuración deseada."
|
129 |
|
130 |
+
#: inc/php/page.php:71
|
131 |
msgid "Click the \"Save changes\" button."
|
132 |
+
msgstr "Clic en el botón \"Guardar cambios\"."
|
133 |
|
134 |
+
#: inc/php/page.php:73
|
135 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\")."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/page.php:74
|
139 |
+
msgid "Just choose the one that is more suitable for your case."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:76
|
143 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the \"Autoload\" section, then click the \"Save changes\" button."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/php/page.php:77
|
147 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
148 |
msgstr "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/Páginas de Wordpress usa el siguiente shortcode:"
|
149 |
|
150 |
+
#: inc/php/page.php:79
|
151 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
152 |
msgstr "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
153 |
|
154 |
+
#: inc/php/page.php:81
|
155 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/php/page.php:84 inc/php/page.php:215
|
159 |
msgid "Enjoy your fancy social media follow buttons."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/page.php:84 inc/php/page.php:216 inc/php/page.php:225
|
163 |
msgid "It's that simple!"
|
164 |
msgstr "¡Es así de simple!"
|
165 |
|
166 |
+
#: inc/php/page.php:89
|
167 |
#, php-format
|
168 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
169 |
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
170 |
|
171 |
+
#: inc/php/page.php:103
|
172 |
msgid "Frequently Asked Questions"
|
173 |
msgstr "Preguntas Frecuentes"
|
174 |
|
175 |
+
#: inc/php/page.php:107
|
176 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
177 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
178 |
|
179 |
+
#: inc/php/page.php:132
|
180 |
+
msgid "Where can I find a documentation for this plugin?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/page.php:137
|
184 |
+
#, php-format
|
185 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:145
|
189 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
190 |
+
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
191 |
+
|
192 |
+
#: inc/php/page.php:148
|
193 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
194 |
+
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
195 |
+
|
196 |
+
#: inc/php/page.php:150
|
197 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:151
|
201 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:154
|
205 |
+
#, php-format
|
206 |
+
msgid "You can learn more about the difference here: %s ."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/page.php:161
|
210 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: inc/php/page.php:164
|
214 |
+
msgid "This plugin is compatible with most themes."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: inc/php/page.php:165
|
218 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
219 |
+
msgstr ""
|
220 |
|
221 |
+
#: inc/php/page.php:166
|
222 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:167
|
226 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/php/page.php:169
|
230 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/page.php:173
|
234 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: inc/php/page.php:176
|
238 |
+
msgid "This plugin is compatible with most plugins."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: inc/php/page.php:177
|
242 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
243 |
+
msgstr ""
|
244 |
|
245 |
+
#: inc/php/page.php:178
|
246 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: inc/php/page.php:179
|
250 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: inc/php/page.php:181
|
254 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: inc/php/page.php:185
|
258 |
msgid "Can I use this plugin on my language?"
|
259 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
260 |
|
261 |
+
#: inc/php/page.php:188 inc/php/page.php:223
|
262 |
+
msgid "Yes."
|
263 |
+
msgstr "Sí."
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
267 |
+
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
268 |
+
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "But If your language is not available then you can make one."
|
271 |
+
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
275 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
276 |
|
277 |
+
#: inc/php/page.php:192
|
278 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
279 |
+
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
280 |
|
281 |
+
#: inc/php/page.php:193
|
282 |
+
msgid "Thanks for your contribution!"
|
283 |
+
msgstr "¡Gracias por tu contribución!"
|
284 |
+
|
285 |
+
#: inc/php/page.php:197
|
286 |
+
#, php-format
|
287 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
288 |
+
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
289 |
+
|
290 |
+
#: inc/php/page.php:201
|
291 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
292 |
+
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
293 |
+
|
294 |
+
#: inc/php/page.php:204
|
295 |
+
#, php-format
|
296 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
297 |
+
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
298 |
+
|
299 |
+
#: inc/php/page.php:211
|
300 |
msgid "How does it work?"
|
301 |
msgstr "¿Como funciona?"
|
302 |
|
303 |
+
#: inc/php/page.php:214 inc/php/page.php:224
|
304 |
+
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/php/page.php:220
|
308 |
msgid "Can I configure my buttons bar instance?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:229
|
|
|
|
|
|
|
|
|
312 |
msgid "How many buttons bar instances can I create?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:232
|
316 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:234
|
320 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: inc/php/page.php:235
|
324 |
+
msgid "This is very useful, because that way you can manage your buttons bar instances separately."
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: inc/php/page.php:236
|
328 |
+
msgid "Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:240
|
332 |
msgid "Does this plugin requires any modification of the theme?"
|
333 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
334 |
|
335 |
+
#: inc/php/page.php:243 inc/php/page.php:251
|
336 |
+
msgid "Absolutely not."
|
337 |
+
msgstr "Absolutamente no."
|
338 |
|
339 |
+
#: inc/php/page.php:244
|
340 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
341 |
+
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
342 |
+
|
343 |
+
#: inc/php/page.php:248
|
344 |
msgid "Does this require any knowledge of HTML or CSS?"
|
345 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
346 |
|
347 |
+
#: inc/php/page.php:252
|
348 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
349 |
+
msgstr "Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
|
350 |
|
351 |
+
#: inc/php/page.php:256
|
352 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:259
|
356 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: inc/php/page.php:263
|
360 |
+
msgid "It's not working."
|
361 |
+
msgstr "No funciona."
|
362 |
|
363 |
+
#: inc/php/page.php:264
|
364 |
+
msgid "What could be wrong?"
|
365 |
+
msgstr "¿Qué podría estar mal?"
|
366 |
|
367 |
+
#: inc/php/page.php:267
|
368 |
+
msgid "As with every plugin, it's possible that things don't work."
|
369 |
+
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
370 |
|
371 |
+
#: inc/php/page.php:268
|
372 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
373 |
+
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
374 |
|
375 |
+
#: inc/php/page.php:269
|
376 |
+
msgid "The most common reason for this is a web browser's cache."
|
377 |
+
msgstr "La razón más común para esto es la caché de un navegador web."
|
378 |
+
|
379 |
+
#: inc/php/page.php:270
|
380 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
381 |
+
msgstr "Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor."
|
382 |
+
|
383 |
+
#: inc/php/page.php:271
|
384 |
+
msgid "This is called the browser's cache."
|
385 |
+
msgstr "Esto se denomina caché del navegador."
|
386 |
+
|
387 |
+
#: inc/php/page.php:272
|
388 |
+
msgid "Clearing your browser's cache may solve the problem."
|
389 |
+
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
390 |
+
|
391 |
+
#: inc/php/page.php:274
|
392 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
393 |
+
msgstr "Si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte."
|
394 |
+
|
395 |
+
#: inc/php/page.php:275 inc/php/page.php:304
|
396 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
397 |
+
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
398 |
|
399 |
+
#: inc/php/page.php:279
|
400 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
401 |
+
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
402 |
+
|
403 |
+
#: inc/php/page.php:280
|
404 |
+
msgid "Why is this?"
|
405 |
+
msgstr "¿Porqué sucede esto?"
|
406 |
+
|
407 |
+
#: inc/php/page.php:283
|
408 |
+
msgid "This plugin can not cause such problem."
|
409 |
+
msgstr "Este complemento no puede causar este problema."
|
410 |
+
|
411 |
+
#: inc/php/page.php:284
|
412 |
+
msgid "More likely, the problem are related to the settings of the website."
|
413 |
+
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
414 |
+
|
415 |
+
#: inc/php/page.php:285
|
416 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
417 |
+
msgstr "Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web."
|
418 |
+
|
419 |
+
#: inc/php/page.php:286
|
420 |
+
msgid "Also please try to re-login to the website, this too can help."
|
421 |
+
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
422 |
+
|
423 |
+
#: inc/php/page.php:290
|
424 |
msgid "Where to report bug if found?"
|
425 |
msgstr "¿Dónde informar el error si se encuentra?"
|
426 |
|
427 |
+
#: inc/php/page.php:293
|
428 |
+
msgid "Bug reports are very welcome!"
|
429 |
+
msgstr "¡Informes de errores son bienvenidos!"
|
430 |
+
|
431 |
+
#: inc/php/page.php:296
|
432 |
#, php-format
|
433 |
+
msgid "Please visit our %s contact page %s and report."
|
434 |
+
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
435 |
+
|
436 |
+
#: inc/php/page.php:301 inc/php/page.php:329
|
437 |
+
msgid "Please do not forget to specify the name of the plugin."
|
438 |
+
msgstr "No olvides especificar el nombre del complemento."
|
439 |
+
|
440 |
+
#: inc/php/page.php:302 inc/php/page.php:330 inc/php/page.php:346
|
441 |
+
msgid "Thank you!"
|
442 |
+
msgstr "¡Gracias!"
|
443 |
+
|
444 |
+
#: inc/php/page.php:305
|
445 |
+
msgid "Describe in more detail what exactly you are seeing."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/php/page.php:306
|
449 |
+
msgid "Here are some examples:"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/php/page.php:309
|
453 |
+
msgid "Elements of the plugin settings page are not working."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/php/page.php:310
|
457 |
+
msgid "An error message is displayed on the plugin settings page."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/php/page.php:311
|
461 |
+
msgid "An error message is displayed on the front end of website."
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: inc/php/page.php:312
|
465 |
+
msgid "An error message is displayed on the back end of website."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/php/page.php:313
|
469 |
+
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: inc/php/page.php:318
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
475 |
|
476 |
+
#: inc/php/page.php:321
|
477 |
+
msgid "Any suggestions are very welcome!"
|
478 |
+
msgstr "Cualquier sugerencia es muy bienvenida!"
|
479 |
+
|
480 |
+
#: inc/php/page.php:324
|
481 |
#, php-format
|
482 |
+
msgid "Please visit our %s contact page %s."
|
483 |
+
msgstr "Por favor visite nuestra %s página de contacto %s."
|
484 |
+
|
485 |
+
#: inc/php/page.php:334
|
486 |
+
msgid "I love this plugin!"
|
487 |
+
msgstr "Me encanta este complemento!"
|
488 |
+
|
489 |
+
#: inc/php/page.php:335
|
490 |
+
msgid "Can I help somehow?"
|
491 |
+
msgstr "¿Puedo ayudar de alguna manera?"
|
492 |
+
|
493 |
+
#: inc/php/page.php:338
|
494 |
+
msgid "Yes, any contributions are very welcome!"
|
495 |
+
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
496 |
+
|
497 |
+
#: inc/php/page.php:341
|
498 |
+
#, php-format
|
499 |
+
msgid "Please visit our %s Support Us %s page."
|
500 |
+
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
501 |
+
|
502 |
+
#: inc/php/page.php:350
|
503 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/page.php:355
|
507 |
+
#, php-format
|
508 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
+
msgstr ""
|
510 |
|
511 |
+
#: inc/php/page.php:363
|
512 |
+
msgid "Where can I find information about your customer support?"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: inc/php/page.php:368
|
516 |
#, php-format
|
517 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: inc/php/page.php:376
|
521 |
+
msgid "Where can I find information about your affiliate program?"
|
522 |
+
msgstr ""
|
523 |
|
524 |
+
#: inc/php/page.php:381
|
525 |
+
#, php-format
|
526 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: inc/php/page.php:389
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Mi pregunta no fue contestada aquí."
|
532 |
|
533 |
+
#: inc/php/page.php:394
|
534 |
#, php-format
|
535 |
+
msgid "You can ask your question on %s this page %s."
|
536 |
+
msgstr "Puede hacer su pregunta en %s esta página %s."
|
537 |
|
538 |
+
#: inc/php/page.php:399
|
539 |
+
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
540 |
+
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
541 |
+
|
542 |
+
#: inc/php/page.php:410
|
543 |
msgid "Support Us"
|
544 |
msgstr "¡Apoyanos!"
|
545 |
|
546 |
+
#: inc/php/page.php:418 inc/php/settings.php:157 inc/php/sidebar.php:54
|
547 |
msgid "Donate with PayPal"
|
548 |
msgstr "Donar con PayPal"
|
549 |
|
550 |
+
#: inc/php/page.php:425
|
551 |
#, php-format
|
552 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
+
msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
|
555 |
+
#: inc/php/page.php:434
|
556 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
+
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
558 |
+
|
559 |
+
#: inc/php/page.php:435
|
560 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/page.php:436
|
564 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
+
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
566 |
+
|
567 |
+
#: inc/php/page.php:439
|
568 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
+
msgstr "Gastamos mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyamos sean útiles, y la prueba definitiva para nosotros de que son útiles, es que realmente desea utilizarlos."
|
570 |
+
|
571 |
+
#: inc/php/page.php:440
|
572 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
+
msgstr "Pero, somos desarrolladores independientes, sin un ingreso regular, por lo que cada pequeña contribución nos ayuda a cubrir nuestros costos y nos permite dedicar más tiempo a construir cosas para que las personas como usted las disfruten."
|
574 |
|
575 |
+
#: inc/php/page.php:443
|
576 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
578 |
|
579 |
+
#: inc/php/page.php:446
|
580 |
msgid "Thank you for your support!"
|
581 |
msgstr "¡Gracias por tu apoyo!"
|
582 |
|
583 |
#: inc/php/settings.php:21 inc/php/settings.php:139
|
584 |
msgid "Save changes"
|
585 |
+
msgstr "Guardar cambios"
|
586 |
|
587 |
#: inc/php/settings.php:25
|
588 |
msgid "Buttons"
|
633 |
msgstr ""
|
634 |
|
635 |
#: inc/php/settings.php:90
|
|
|
636 |
msgid "Button margin"
|
637 |
msgstr ""
|
638 |
|
670 |
|
671 |
#: inc/php/settings.php:109
|
672 |
msgid "Open links in a new tab/window."
|
673 |
+
msgstr "¿Abrir enlaces en una nueva pestaña/ventana?"
|
674 |
|
675 |
#: inc/php/settings.php:112
|
676 |
msgid "Additional"
|
718 |
|
719 |
#: inc/php/settings.php:144
|
720 |
msgid "Click the \"Save changes\" button to update this preview."
|
721 |
+
msgstr "Has clic en el botón \"Guardar cambios\" para actualizar esta vista previa."
|
722 |
|
723 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
724 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
737 |
msgstr "Acerca de"
|
738 |
|
739 |
#: inc/php/sidebar.php:35
|
740 |
+
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
741 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
742 |
|
743 |
#: inc/php/sidebar.php:40
|
757 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
758 |
|
759 |
#. Description of the plugin/theme
|
760 |
+
msgid "Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
761 |
+
msgstr "Añade fácilmente una barra inteligente con botones de social media (no para compartir, sólo para enlazar a tus perfiles sociales) en cualquier parte (post content, page content, widget, sidebar, header, footer) tu sitio web hecho en Wordpress."
|
762 |
|
763 |
#. Author of the plugin/theme
|
764 |
msgid "Space X-Chimp"
|
767 |
#. Author URI of the plugin/theme
|
768 |
msgid "https://www.spacexchimp.com"
|
769 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-nl_NL.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
@@ -61,276 +61,522 @@ msgstr ""
|
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/php/messages.php:
|
65 |
-
msgid "Hello
|
66 |
-
msgstr "Hallo
|
67 |
|
68 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
69 |
#, php-format
|
70 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
71 |
msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
|
72 |
|
73 |
-
#: inc/php/messages.php:
|
74 |
msgid "You have installed an old version of this plugin."
|
75 |
msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
|
76 |
|
77 |
-
#: inc/php/messages.php:
|
78 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
79 |
msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
#, php-format
|
83 |
msgid "by %s Space X-Chimp %s"
|
84 |
msgstr "door %s Space X-Chimp %s"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Version"
|
88 |
msgstr "Versie"
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Usage"
|
92 |
msgstr "Gebruik"
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Support"
|
100 |
msgstr "Ondersteuning"
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Store"
|
104 |
msgstr "Winkel"
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Usage Instructions"
|
108 |
msgstr "Gebruiksinstructies"
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Go to the \"Settings\" tab on this page."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid "Select the desired settings."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/page.php:
|
127 |
msgid "Click the \"Save changes\" button."
|
128 |
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\").
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
139 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Enjoy your fancy social media follow buttons."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "Zo eenvoudig is het!"
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
161 |
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr "Veel voorkomende vragen (FAQ)"
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
169 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Can I use this plugin on my language?"
|
181 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "Yes.
|
185 |
-
msgstr "Ja.
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
|
189 |
-
|
190 |
-
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s. Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken. Stuur het PO-bestand naar ons op de %s en we zullen deze vertaling opnemen in de volgende plug-in update."
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
-
msgid "
|
|
|
|
|
|
|
|
|
194 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
198 |
-
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt.
|
199 |
|
200 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgid "How does it work?"
|
202 |
msgstr "Hoe werkt het?"
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
-
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button.
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid "Can I configure my buttons bar instance?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
-
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: inc/php/page.php:143
|
217 |
msgid "How many buttons bar instances can I create?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances.
|
|
|
|
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "Absolutely not.
|
234 |
-
msgstr "Absoluut niet.
|
235 |
|
236 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "It's not working.
|
254 |
-
msgstr "Het werkt niet.
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
-
msgid "
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
275 |
|
276 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
277 |
#, php-format
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
|
281 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
284 |
|
285 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
286 |
#, php-format
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
-
msgid "I love this plugin!
|
292 |
-
msgstr "Ik ben dol op deze plug-in!
|
293 |
|
294 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
#, php-format
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
|
|
|
|
|
|
|
|
298 |
|
299 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "My question wasn't answered here."
|
301 |
msgstr "Mij vraag is hier niet beantwoord."
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
-
msgid "You can ask your question on %s this page %s.
|
306 |
-
msgstr "Je kunt je vraag op %s deze pagina %s stellen.
|
|
|
|
|
|
|
|
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Support Us"
|
310 |
msgstr "Ondersteun ons"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Doneer via PayPal"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
#, php-format
|
318 |
-
msgid "
|
319 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
-
msgid "Our
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
-
msgid "We
|
327 |
-
msgstr "
|
|
|
|
|
|
|
|
|
328 |
|
329 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
-
msgstr "Als je
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "Bedankt voor je ondersteuning!"
|
336 |
|
@@ -476,7 +722,7 @@ msgstr ""
|
|
476 |
|
477 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
478 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
479 |
-
msgstr "
|
480 |
|
481 |
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
482 |
msgid "Thanks for your support!"
|
@@ -484,19 +730,19 @@ msgstr "Bedankt voor uw steun!"
|
|
484 |
|
485 |
#: inc/php/sidebar.php:16
|
486 |
msgid "We are «Space X-Chimp»"
|
487 |
-
msgstr ""
|
488 |
|
489 |
#: inc/php/sidebar.php:33
|
490 |
msgid "About"
|
491 |
msgstr "Over"
|
492 |
|
493 |
#: inc/php/sidebar.php:35
|
494 |
-
msgid "This plugin
|
495 |
msgstr ""
|
496 |
|
497 |
#: inc/php/sidebar.php:40
|
498 |
msgid "Help"
|
499 |
-
msgstr "
|
500 |
|
501 |
#: inc/php/sidebar.php:42
|
502 |
msgid "If you have a question, please read the information in the FAQ section."
|
@@ -511,7 +757,7 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
511 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
512 |
|
513 |
#. Description of the plugin/theme
|
514 |
-
msgid "Easily add
|
515 |
msgstr ""
|
516 |
|
517 |
#. Author of the plugin/theme
|
@@ -521,12 +767,3 @@ msgstr "Space X-Chimp"
|
|
521 |
#. Author URI of the plugin/theme
|
522 |
msgid "https://www.spacexchimp.com"
|
523 |
msgstr "https://www.spacexchimp.com"
|
524 |
-
|
525 |
-
#~ msgid "Note!"
|
526 |
-
#~ msgstr "Opmerking!"
|
527 |
-
|
528 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
529 |
-
#~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
|
530 |
-
|
531 |
-
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
532 |
-
#~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:23+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:23+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/php/messages.php:27 inc/php/page.php:422
|
65 |
+
msgid "Hello!"
|
66 |
+
msgstr "Hallo!"
|
67 |
|
68 |
#: inc/php/messages.php:28
|
69 |
+
msgid "We are the team of Space X-Chimp."
|
70 |
+
msgstr "Wij zijn het team van Space X-Chimp."
|
71 |
+
|
72 |
+
#: inc/php/messages.php:33
|
73 |
#, php-format
|
74 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
75 |
msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
|
76 |
|
77 |
+
#: inc/php/messages.php:74
|
78 |
msgid "You have installed an old version of this plugin."
|
79 |
msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
|
80 |
|
81 |
+
#: inc/php/messages.php:75
|
82 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
83 |
msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
84 |
|
85 |
+
#: inc/php/page.php:31
|
86 |
#, php-format
|
87 |
msgid "by %s Space X-Chimp %s"
|
88 |
msgstr "door %s Space X-Chimp %s"
|
89 |
|
90 |
+
#: inc/php/page.php:37
|
91 |
msgid "Version"
|
92 |
msgstr "Versie"
|
93 |
|
94 |
+
#: inc/php/page.php:45
|
95 |
msgid "Usage"
|
96 |
msgstr "Gebruik"
|
97 |
|
98 |
+
#: inc/php/page.php:46
|
99 |
msgid "F.A.Q."
|
100 |
msgstr "F.A.Q."
|
101 |
|
102 |
+
#: inc/php/page.php:47 inc/php/settings.php:150 inc/php/sidebar.php:47
|
103 |
msgid "Support"
|
104 |
msgstr "Ondersteuning"
|
105 |
|
106 |
+
#: inc/php/page.php:48
|
107 |
msgid "Store"
|
108 |
msgstr "Winkel"
|
109 |
|
110 |
+
#: inc/php/page.php:64
|
111 |
msgid "Usage Instructions"
|
112 |
msgstr "Gebruiksinstructies"
|
113 |
|
114 |
+
#: inc/php/page.php:66
|
115 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:68
|
119 |
msgid "Go to the \"Settings\" tab on this page."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/php/page.php:69
|
123 |
msgid "Select the desired buttons and fill in the required URL fields."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:70
|
127 |
msgid "Select the desired settings."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/page.php:71
|
131 |
msgid "Click the \"Save changes\" button."
|
132 |
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
133 |
|
134 |
+
#: inc/php/page.php:73
|
135 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\")."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/page.php:74
|
139 |
+
msgid "Just choose the one that is more suitable for your case."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:76
|
143 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the \"Autoload\" section, then click the \"Save changes\" button."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/php/page.php:77
|
147 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/php/page.php:79
|
151 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/php/page.php:81
|
155 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/php/page.php:84 inc/php/page.php:215
|
159 |
msgid "Enjoy your fancy social media follow buttons."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/page.php:84 inc/php/page.php:216 inc/php/page.php:225
|
163 |
msgid "It's that simple!"
|
164 |
msgstr "Zo eenvoudig is het!"
|
165 |
|
166 |
+
#: inc/php/page.php:89
|
167 |
#, php-format
|
168 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
169 |
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
170 |
|
171 |
+
#: inc/php/page.php:103
|
172 |
msgid "Frequently Asked Questions"
|
173 |
msgstr "Veel voorkomende vragen (FAQ)"
|
174 |
|
175 |
+
#: inc/php/page.php:107
|
176 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
177 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
178 |
|
179 |
+
#: inc/php/page.php:132
|
180 |
+
msgid "Where can I find a documentation for this plugin?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/page.php:137
|
184 |
+
#, php-format
|
185 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:145
|
189 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
190 |
+
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
191 |
+
|
192 |
+
#: inc/php/page.php:148
|
193 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
194 |
+
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
195 |
+
|
196 |
+
#: inc/php/page.php:150
|
197 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
198 |
+
msgstr ""
|
199 |
|
200 |
+
#: inc/php/page.php:151
|
201 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:154
|
205 |
+
#, php-format
|
206 |
+
msgid "You can learn more about the difference here: %s ."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/page.php:161
|
210 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
211 |
+
msgstr ""
|
212 |
|
213 |
+
#: inc/php/page.php:164
|
214 |
+
msgid "This plugin is compatible with most themes."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: inc/php/page.php:165
|
218 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:166
|
222 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:167
|
226 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/php/page.php:169
|
230 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/page.php:173
|
234 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: inc/php/page.php:176
|
238 |
+
msgid "This plugin is compatible with most plugins."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: inc/php/page.php:177
|
242 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: inc/php/page.php:178
|
246 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: inc/php/page.php:179
|
250 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: inc/php/page.php:181
|
254 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: inc/php/page.php:185
|
258 |
msgid "Can I use this plugin on my language?"
|
259 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
260 |
|
261 |
+
#: inc/php/page.php:188 inc/php/page.php:223
|
262 |
+
msgid "Yes."
|
263 |
+
msgstr "Ja."
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
267 |
+
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
|
|
268 |
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "But If your language is not available then you can make one."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
275 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
276 |
|
277 |
+
#: inc/php/page.php:192
|
278 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
279 |
+
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
280 |
|
281 |
+
#: inc/php/page.php:193
|
282 |
+
msgid "Thanks for your contribution!"
|
283 |
+
msgstr "Bedankt voor je bijdrage!"
|
284 |
+
|
285 |
+
#: inc/php/page.php:197
|
286 |
+
#, php-format
|
287 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
288 |
+
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
289 |
+
|
290 |
+
#: inc/php/page.php:201
|
291 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
292 |
+
msgstr "Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken."
|
293 |
+
|
294 |
+
#: inc/php/page.php:204
|
295 |
+
#, php-format
|
296 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
297 |
+
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
298 |
+
|
299 |
+
#: inc/php/page.php:211
|
300 |
msgid "How does it work?"
|
301 |
msgstr "Hoe werkt het?"
|
302 |
|
303 |
+
#: inc/php/page.php:214 inc/php/page.php:224
|
304 |
+
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/php/page.php:220
|
308 |
msgid "Can I configure my buttons bar instance?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:229
|
|
|
|
|
|
|
|
|
312 |
msgid "How many buttons bar instances can I create?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:232
|
316 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:234
|
320 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: inc/php/page.php:235
|
324 |
+
msgid "This is very useful, because that way you can manage your buttons bar instances separately."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/page.php:236
|
328 |
+
msgid "Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: inc/php/page.php:240
|
332 |
msgid "Does this plugin requires any modification of the theme?"
|
333 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
334 |
|
335 |
+
#: inc/php/page.php:243 inc/php/page.php:251
|
336 |
+
msgid "Absolutely not."
|
337 |
+
msgstr "Absoluut niet."
|
338 |
|
339 |
+
#: inc/php/page.php:244
|
340 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
341 |
+
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
342 |
+
|
343 |
+
#: inc/php/page.php:248
|
344 |
msgid "Does this require any knowledge of HTML or CSS?"
|
345 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
346 |
|
347 |
+
#: inc/php/page.php:252
|
348 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
349 |
+
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
350 |
|
351 |
+
#: inc/php/page.php:256
|
352 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:259
|
356 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: inc/php/page.php:263
|
360 |
+
msgid "It's not working."
|
361 |
+
msgstr "Het werkt niet."
|
362 |
|
363 |
+
#: inc/php/page.php:264
|
364 |
+
msgid "What could be wrong?"
|
365 |
+
msgstr "Wat kan er fout zijn?"
|
366 |
|
367 |
+
#: inc/php/page.php:267
|
368 |
+
msgid "As with every plugin, it's possible that things don't work."
|
369 |
+
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
370 |
|
371 |
+
#: inc/php/page.php:268
|
372 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
373 |
+
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
374 |
|
375 |
+
#: inc/php/page.php:269
|
376 |
+
msgid "The most common reason for this is a web browser's cache."
|
377 |
+
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
378 |
+
|
379 |
+
#: inc/php/page.php:270
|
380 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
381 |
+
msgstr "Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen."
|
382 |
+
|
383 |
+
#: inc/php/page.php:271
|
384 |
+
msgid "This is called the browser's cache."
|
385 |
+
msgstr "Dit wordt de cache van de browser genoemd."
|
386 |
+
|
387 |
+
#: inc/php/page.php:272
|
388 |
+
msgid "Clearing your browser's cache may solve the problem."
|
389 |
+
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
390 |
+
|
391 |
+
#: inc/php/page.php:274
|
392 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
393 |
+
msgstr "Als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen."
|
394 |
+
|
395 |
+
#: inc/php/page.php:275 inc/php/page.php:304
|
396 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
397 |
+
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
398 |
|
399 |
+
#: inc/php/page.php:279
|
400 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
401 |
+
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
402 |
+
|
403 |
+
#: inc/php/page.php:280
|
404 |
+
msgid "Why is this?"
|
405 |
+
msgstr "Waarom is dit?"
|
406 |
+
|
407 |
+
#: inc/php/page.php:283
|
408 |
+
msgid "This plugin can not cause such problem."
|
409 |
+
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
410 |
+
|
411 |
+
#: inc/php/page.php:284
|
412 |
+
msgid "More likely, the problem are related to the settings of the website."
|
413 |
+
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
414 |
+
|
415 |
+
#: inc/php/page.php:285
|
416 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
417 |
+
msgstr "Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser."
|
418 |
+
|
419 |
+
#: inc/php/page.php:286
|
420 |
+
msgid "Also please try to re-login to the website, this too can help."
|
421 |
+
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
422 |
+
|
423 |
+
#: inc/php/page.php:290
|
424 |
msgid "Where to report bug if found?"
|
425 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
426 |
|
427 |
+
#: inc/php/page.php:293
|
428 |
+
msgid "Bug reports are very welcome!"
|
429 |
+
msgstr "Bugrapporten zijn van harte welkom!"
|
430 |
+
|
431 |
+
#: inc/php/page.php:296
|
432 |
#, php-format
|
433 |
+
msgid "Please visit our %s contact page %s and report."
|
434 |
+
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
435 |
+
|
436 |
+
#: inc/php/page.php:301 inc/php/page.php:329
|
437 |
+
msgid "Please do not forget to specify the name of the plugin."
|
438 |
+
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
439 |
+
|
440 |
+
#: inc/php/page.php:302 inc/php/page.php:330 inc/php/page.php:346
|
441 |
+
msgid "Thank you!"
|
442 |
+
msgstr "Dank je!"
|
443 |
|
444 |
+
#: inc/php/page.php:305
|
445 |
+
msgid "Describe in more detail what exactly you are seeing."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/php/page.php:306
|
449 |
+
msgid "Here are some examples:"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/php/page.php:309
|
453 |
+
msgid "Elements of the plugin settings page are not working."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/php/page.php:310
|
457 |
+
msgid "An error message is displayed on the plugin settings page."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/php/page.php:311
|
461 |
+
msgid "An error message is displayed on the front end of website."
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: inc/php/page.php:312
|
465 |
+
msgid "An error message is displayed on the back end of website."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/php/page.php:313
|
469 |
+
msgid "Website is crashed."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: inc/php/page.php:318
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
475 |
|
476 |
+
#: inc/php/page.php:321
|
477 |
+
msgid "Any suggestions are very welcome!"
|
478 |
+
msgstr "Alle suggesties zijn van harte welkom!"
|
479 |
+
|
480 |
+
#: inc/php/page.php:324
|
481 |
#, php-format
|
482 |
+
msgid "Please visit our %s contact page %s."
|
483 |
+
msgstr "Ga naar onze %s contactpagina %s."
|
484 |
|
485 |
+
#: inc/php/page.php:334
|
486 |
+
msgid "I love this plugin!"
|
487 |
+
msgstr "Ik ben dol op deze plug-in!"
|
488 |
|
489 |
+
#: inc/php/page.php:335
|
490 |
+
msgid "Can I help somehow?"
|
491 |
+
msgstr "Kan ik op de een of andere manier helpen?"
|
492 |
+
|
493 |
+
#: inc/php/page.php:338
|
494 |
+
msgid "Yes, any contributions are very welcome!"
|
495 |
+
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
496 |
+
|
497 |
+
#: inc/php/page.php:341
|
498 |
#, php-format
|
499 |
+
msgid "Please visit our %s Support Us %s page."
|
500 |
+
msgstr "Ga naar onze %s Support Us %s."
|
501 |
+
|
502 |
+
#: inc/php/page.php:350
|
503 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
+
msgstr ""
|
505 |
|
506 |
+
#: inc/php/page.php:355
|
507 |
+
#, php-format
|
508 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: inc/php/page.php:363
|
512 |
+
msgid "Where can I find information about your customer support?"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: inc/php/page.php:368
|
516 |
+
#, php-format
|
517 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: inc/php/page.php:376
|
521 |
+
msgid "Where can I find information about your affiliate program?"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: inc/php/page.php:381
|
525 |
+
#, php-format
|
526 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: inc/php/page.php:389
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Mij vraag is hier niet beantwoord."
|
532 |
|
533 |
+
#: inc/php/page.php:394
|
534 |
#, php-format
|
535 |
+
msgid "You can ask your question on %s this page %s."
|
536 |
+
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
537 |
+
|
538 |
+
#: inc/php/page.php:399
|
539 |
+
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
540 |
+
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
541 |
|
542 |
+
#: inc/php/page.php:410
|
543 |
msgid "Support Us"
|
544 |
msgstr "Ondersteun ons"
|
545 |
|
546 |
+
#: inc/php/page.php:418 inc/php/settings.php:157 inc/php/sidebar.php:54
|
547 |
msgid "Donate with PayPal"
|
548 |
msgstr "Doneer via PayPal"
|
549 |
|
550 |
+
#: inc/php/page.php:425
|
551 |
#, php-format
|
552 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
+
msgstr "Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
+
|
555 |
+
#: inc/php/page.php:434
|
556 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
+
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
558 |
|
559 |
+
#: inc/php/page.php:435
|
560 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/page.php:436
|
564 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
+
msgstr "We zijn echt gepassioneerd over ons werk, we vind het leuk wat we doe en hoop dat je ook verrijkt zult worden door ons projecten."
|
566 |
+
|
567 |
+
#: inc/php/page.php:439
|
568 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
+
msgstr "We besteden veel tijd en moeite om ervoor te zorgen dat de thema's, plug-ins en andere dingen die we maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken."
|
570 |
|
571 |
+
#: inc/php/page.php:440
|
572 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
+
msgstr "We zijn een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt ons onze kosten te dekken en laat ons meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
574 |
+
|
575 |
+
#: inc/php/page.php:443
|
576 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
+
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
578 |
|
579 |
+
#: inc/php/page.php:446
|
580 |
msgid "Thank you for your support!"
|
581 |
msgstr "Bedankt voor je ondersteuning!"
|
582 |
|
722 |
|
723 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
724 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
725 |
+
msgstr ""
|
726 |
|
727 |
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
728 |
msgid "Thanks for your support!"
|
730 |
|
731 |
#: inc/php/sidebar.php:16
|
732 |
msgid "We are «Space X-Chimp»"
|
733 |
+
msgstr "Wij zijn «Space X-Chimp»"
|
734 |
|
735 |
#: inc/php/sidebar.php:33
|
736 |
msgid "About"
|
737 |
msgstr "Over"
|
738 |
|
739 |
#: inc/php/sidebar.php:35
|
740 |
+
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
741 |
msgstr ""
|
742 |
|
743 |
#: inc/php/sidebar.php:40
|
744 |
msgid "Help"
|
745 |
+
msgstr "Helpen"
|
746 |
|
747 |
#: inc/php/sidebar.php:42
|
748 |
msgid "If you have a question, please read the information in the FAQ section."
|
757 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
758 |
|
759 |
#. Description of the plugin/theme
|
760 |
+
msgid "Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
761 |
msgstr ""
|
762 |
|
763 |
#. Author of the plugin/theme
|
767 |
#. Author URI of the plugin/theme
|
768 |
msgid "https://www.spacexchimp.com"
|
769 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-ru_RU.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
@@ -55,282 +55,528 @@ msgstr "Введите адрес электронной почты с преф
|
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
msgid "Enter the URL of your personal website."
|
58 |
-
msgstr "Введите URL вашего персонального
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Введите URL вашего RSS потока."
|
63 |
|
64 |
-
#: inc/php/messages.php:
|
65 |
-
msgid "Hello
|
66 |
-
msgstr "Привет!
|
67 |
|
68 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
69 |
#, php-format
|
70 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
71 |
msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
|
72 |
|
73 |
-
#: inc/php/messages.php:
|
74 |
msgid "You have installed an old version of this plugin."
|
75 |
msgstr "Вы установили устаревшую версию этого плагина."
|
76 |
|
77 |
-
#: inc/php/messages.php:
|
78 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
79 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
#, php-format
|
83 |
msgid "by %s Space X-Chimp %s"
|
84 |
msgstr "от %s Space X-Chimp %s"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Version"
|
88 |
msgstr "Версия"
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Usage"
|
92 |
msgstr "Применение"
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Support"
|
100 |
msgstr "Поддержка"
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Store"
|
104 |
msgstr "Магазин"
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Usage Instructions"
|
108 |
msgstr "Инструкция по использованию"
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
112 |
msgstr "Чтобы отобразить панель социальных кнопок на передней панели вашего веб-сайта, просто выполните следующие действия:"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Go to the \"Settings\" tab on this page."
|
116 |
msgstr "Перейдите на вкладку «Настройки»."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr "Заполните необходимые поля."
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid "Select the desired settings."
|
124 |
msgstr "Выберите нужные настройки."
|
125 |
|
126 |
-
#: inc/php/page.php:
|
127 |
msgid "Click the \"Save changes\" button."
|
128 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\").
|
132 |
-
msgstr "Теперь у вас есть несколько способов отображения
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply
|
136 |
msgstr "<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и страницах, просто установите флажок “Показывать в записях” или/и “Показывать на страницах” в разделе “Настройки отображения”, затем нажмите кнопку “Сохранить изменения”."
|
137 |
|
138 |
-
#: inc/php/page.php:
|
139 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WordPress Post/Page используйте следующий короткий код:"
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий короткий код:"
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr "<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто добавьте следующий код в нужное место (где вы хотите отображать кнопки) в файлах темы:"
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Enjoy your fancy social media follow buttons."
|
152 |
msgstr "Наслаждайтесь своими модными социальными медиа кнопками следования."
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid "It's that simple!"
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
161 |
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr "Частые вопросы"
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
169 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Can I use this plugin on my language?"
|
181 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "Yes.
|
185 |
-
msgstr "Да.
|
186 |
|
187 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
#, php-format
|
189 |
-
msgid "If you want to help translate this plugin
|
190 |
-
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s.
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
|
198 |
-
|
|
|
199 |
|
200 |
-
#: inc/php/page.php:
|
201 |
msgid "How does it work?"
|
202 |
-
msgstr "Как
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
-
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button.
|
206 |
-
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения».
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid "Can I configure my buttons bar instance?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
-
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
-
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения». Это так просто!"
|
215 |
-
|
216 |
-
#: inc/php/page.php:143
|
217 |
msgid "How many buttons bar instances can I create?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances.
|
|
|
|
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "Этот плагин требует изменения темы?"
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "Absolutely not.
|
234 |
-
msgstr "Абсолютно нет.
|
235 |
|
236 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr "Что делать, если в тесте Google Page Speed сказано, что изображения этого плагина должны быть сжаты?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr "Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать их ещё лучше."
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "It's not working.
|
254 |
-
msgstr "Оно не работает.
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
-
msgid "
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "Где можно сообщить об ошибке?"
|
275 |
|
276 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
277 |
#, php-format
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
|
281 |
-
#: inc/php/page.php:
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
284 |
|
285 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
286 |
#, php-format
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
-
msgid "I love this plugin!
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
#, php-format
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "My question wasn't answered here."
|
301 |
-
msgstr "
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
-
msgid "You can ask your question on %s this page %s.
|
306 |
-
msgstr "Вы можете задать ваш вопрос на %s этой странице %s.
|
307 |
|
308 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
309 |
msgid "Support Us"
|
310 |
msgstr "Поддержать нас"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Пожертвовать через PayPal"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
#, php-format
|
318 |
-
msgid "
|
|
|
|
|
|
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
-
msgid "Our
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
-
msgid "We
|
327 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "Спасибо за вашу поддержку!"
|
336 |
|
@@ -356,7 +602,7 @@ msgstr "Отметьте нужные кнопки, чтобы добавить
|
|
356 |
|
357 |
#: inc/php/settings.php:40
|
358 |
msgid "Additional buttons"
|
359 |
-
msgstr ""
|
360 |
|
361 |
#: inc/php/settings.php:49
|
362 |
msgid "Buttons URL"
|
@@ -371,7 +617,6 @@ msgid "Display options"
|
|
371 |
msgstr "Настройки отображения"
|
372 |
|
373 |
#: inc/php/settings.php:78
|
374 |
-
#| msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
375 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
376 |
msgstr ""
|
377 |
|
@@ -388,7 +633,6 @@ msgid "Positioning"
|
|
388 |
msgstr ""
|
389 |
|
390 |
#: inc/php/settings.php:90
|
391 |
-
#| msgid "Buttons URL"
|
392 |
msgid "Button margin"
|
393 |
msgstr ""
|
394 |
|
@@ -409,12 +653,10 @@ msgid "Right"
|
|
409 |
msgstr "Справа"
|
410 |
|
411 |
#: inc/php/settings.php:100
|
412 |
-
#| msgid "Buttons URL"
|
413 |
msgid "Buttons bar alignment"
|
414 |
msgstr ""
|
415 |
|
416 |
#: inc/php/settings.php:101
|
417 |
-
#| msgid "You can choose the alignment of the entire buttons bar."
|
418 |
msgid "You can choose the alignment of the entire buttons bar."
|
419 |
msgstr ""
|
420 |
|
@@ -459,7 +701,6 @@ msgid "Show on Posts"
|
|
459 |
msgstr "Показывать в записях"
|
460 |
|
461 |
#: inc/php/settings.php:128
|
462 |
-
#| msgid "Automatically display the social media follow buttons below content on Posts."
|
463 |
msgid "Automatically display the buttons bar below content on Posts."
|
464 |
msgstr ""
|
465 |
|
@@ -468,7 +709,6 @@ msgid "Show on Pages"
|
|
468 |
msgstr "Показывать на страницах"
|
469 |
|
470 |
#: inc/php/settings.php:132
|
471 |
-
#| msgid "Automatically display the social media follow buttons below content on Pages."
|
472 |
msgid "Automatically display the buttons bar below content on Pages."
|
473 |
msgstr ""
|
474 |
|
@@ -482,7 +722,7 @@ msgstr "Нажмите кнопку «Сохранить изменения»,
|
|
482 |
|
483 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
484 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
485 |
-
msgstr "
|
486 |
|
487 |
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
488 |
msgid "Thanks for your support!"
|
@@ -490,15 +730,15 @@ msgstr "Спасибо за вашу поддержку!"
|
|
490 |
|
491 |
#: inc/php/sidebar.php:16
|
492 |
msgid "We are «Space X-Chimp»"
|
493 |
-
msgstr ""
|
494 |
|
495 |
#: inc/php/sidebar.php:33
|
496 |
msgid "About"
|
497 |
msgstr "О плагине"
|
498 |
|
499 |
#: inc/php/sidebar.php:35
|
500 |
-
msgid "This plugin
|
501 |
-
msgstr "Этот плагин
|
502 |
|
503 |
#: inc/php/sidebar.php:40
|
504 |
msgid "Help"
|
@@ -517,8 +757,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
517 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
518 |
|
519 |
#. Description of the plugin/theme
|
520 |
-
msgid "Easily add
|
521 |
-
msgstr "Легко
|
522 |
|
523 |
#. Author of the plugin/theme
|
524 |
msgid "Space X-Chimp"
|
@@ -527,24 +767,3 @@ msgstr "Space X-Chimp"
|
|
527 |
#. Author URI of the plugin/theme
|
528 |
msgid "https://www.spacexchimp.com"
|
529 |
msgstr "https://www.spacexchimp.com"
|
530 |
-
|
531 |
-
#~ msgid "Note!"
|
532 |
-
#~ msgstr "Примечание!"
|
533 |
-
|
534 |
-
#~ msgid "Here you can configure the display options."
|
535 |
-
#~ msgstr "Здесь вы можете настроить параметры отображения."
|
536 |
-
|
537 |
-
#~ msgid "Margin"
|
538 |
-
#~ msgstr "Отступ"
|
539 |
-
|
540 |
-
#~ msgid "Alignment"
|
541 |
-
#~ msgstr "Выравнивание"
|
542 |
-
|
543 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
544 |
-
#~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
|
545 |
-
|
546 |
-
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
547 |
-
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
548 |
-
|
549 |
-
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
550 |
-
#~ msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:23+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:23+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
msgid "Enter the URL of your personal website."
|
58 |
+
msgstr "Введите URL вашего персонального веб-сайта."
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr "Введите URL вашего RSS потока."
|
63 |
|
64 |
+
#: inc/php/messages.php:27 inc/php/page.php:422
|
65 |
+
msgid "Hello!"
|
66 |
+
msgstr "Привет!"
|
67 |
|
68 |
#: inc/php/messages.php:28
|
69 |
+
msgid "We are the team of Space X-Chimp."
|
70 |
+
msgstr "Мы - команда Space X-Chimp."
|
71 |
+
|
72 |
+
#: inc/php/messages.php:33
|
73 |
#, php-format
|
74 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
75 |
msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
|
76 |
|
77 |
+
#: inc/php/messages.php:74
|
78 |
msgid "You have installed an old version of this plugin."
|
79 |
msgstr "Вы установили устаревшую версию этого плагина."
|
80 |
|
81 |
+
#: inc/php/messages.php:75
|
82 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
83 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
84 |
|
85 |
+
#: inc/php/page.php:31
|
86 |
#, php-format
|
87 |
msgid "by %s Space X-Chimp %s"
|
88 |
msgstr "от %s Space X-Chimp %s"
|
89 |
|
90 |
+
#: inc/php/page.php:37
|
91 |
msgid "Version"
|
92 |
msgstr "Версия"
|
93 |
|
94 |
+
#: inc/php/page.php:45
|
95 |
msgid "Usage"
|
96 |
msgstr "Применение"
|
97 |
|
98 |
+
#: inc/php/page.php:46
|
99 |
msgid "F.A.Q."
|
100 |
msgstr "F.A.Q."
|
101 |
|
102 |
+
#: inc/php/page.php:47 inc/php/settings.php:150 inc/php/sidebar.php:47
|
103 |
msgid "Support"
|
104 |
msgstr "Поддержка"
|
105 |
|
106 |
+
#: inc/php/page.php:48
|
107 |
msgid "Store"
|
108 |
msgstr "Магазин"
|
109 |
|
110 |
+
#: inc/php/page.php:64
|
111 |
msgid "Usage Instructions"
|
112 |
msgstr "Инструкция по использованию"
|
113 |
|
114 |
+
#: inc/php/page.php:66
|
115 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
116 |
msgstr "Чтобы отобразить панель социальных кнопок на передней панели вашего веб-сайта, просто выполните следующие действия:"
|
117 |
|
118 |
+
#: inc/php/page.php:68
|
119 |
msgid "Go to the \"Settings\" tab on this page."
|
120 |
msgstr "Перейдите на вкладку «Настройки»."
|
121 |
|
122 |
+
#: inc/php/page.php:69
|
123 |
msgid "Select the desired buttons and fill in the required URL fields."
|
124 |
msgstr "Заполните необходимые поля."
|
125 |
|
126 |
+
#: inc/php/page.php:70
|
127 |
msgid "Select the desired settings."
|
128 |
msgstr "Выберите нужные настройки."
|
129 |
|
130 |
+
#: inc/php/page.php:71
|
131 |
msgid "Click the \"Save changes\" button."
|
132 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
133 |
|
134 |
+
#: inc/php/page.php:73
|
135 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\")."
|
136 |
+
msgstr "Теперь у вас есть несколько способов отображения кнопок социальных сетей (далее просто «кнопки»)."
|
137 |
+
|
138 |
+
#: inc/php/page.php:74
|
139 |
+
msgid "Just choose the one that is more suitable for your case."
|
140 |
+
msgstr "Просто выберите тот, который больше подходит для вашего случая."
|
141 |
|
142 |
+
#: inc/php/page.php:76
|
143 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the \"Autoload\" section, then click the \"Save changes\" button."
|
144 |
msgstr "<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и страницах, просто установите флажок “Показывать в записях” или/и “Показывать на страницах” в разделе “Настройки отображения”, затем нажмите кнопку “Сохранить изменения”."
|
145 |
|
146 |
+
#: inc/php/page.php:77
|
147 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
148 |
msgstr "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WordPress Post/Page используйте следующий короткий код:"
|
149 |
|
150 |
+
#: inc/php/page.php:79
|
151 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
152 |
msgstr "<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий короткий код:"
|
153 |
|
154 |
+
#: inc/php/page.php:81
|
155 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
156 |
msgstr "<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто добавьте следующий код в нужное место (где вы хотите отображать кнопки) в файлах темы:"
|
157 |
|
158 |
+
#: inc/php/page.php:84 inc/php/page.php:215
|
159 |
msgid "Enjoy your fancy social media follow buttons."
|
160 |
msgstr "Наслаждайтесь своими модными социальными медиа кнопками следования."
|
161 |
|
162 |
+
#: inc/php/page.php:84 inc/php/page.php:216 inc/php/page.php:225
|
163 |
msgid "It's that simple!"
|
164 |
+
msgstr "Это так просто!"
|
165 |
|
166 |
+
#: inc/php/page.php:89
|
167 |
#, php-format
|
168 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
169 |
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
170 |
|
171 |
+
#: inc/php/page.php:103
|
172 |
msgid "Frequently Asked Questions"
|
173 |
msgstr "Частые вопросы"
|
174 |
|
175 |
+
#: inc/php/page.php:107
|
176 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
177 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
178 |
|
179 |
+
#: inc/php/page.php:132
|
180 |
+
msgid "Where can I find a documentation for this plugin?"
|
181 |
+
msgstr ""
|
182 |
|
183 |
+
#: inc/php/page.php:137
|
184 |
+
#, php-format
|
185 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:145
|
189 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
190 |
+
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
191 |
+
|
192 |
+
#: inc/php/page.php:148
|
193 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
194 |
+
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
195 |
+
|
196 |
+
#: inc/php/page.php:150
|
197 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:151
|
201 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:154
|
205 |
+
#, php-format
|
206 |
+
msgid "You can learn more about the difference here: %s ."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/page.php:161
|
210 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: inc/php/page.php:164
|
214 |
+
msgid "This plugin is compatible with most themes."
|
215 |
+
msgstr ""
|
216 |
|
217 |
+
#: inc/php/page.php:165
|
218 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:166
|
222 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:167
|
226 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/php/page.php:169
|
230 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/page.php:173
|
234 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: inc/php/page.php:176
|
238 |
+
msgid "This plugin is compatible with most plugins."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: inc/php/page.php:177
|
242 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: inc/php/page.php:178
|
246 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: inc/php/page.php:179
|
250 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: inc/php/page.php:181
|
254 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: inc/php/page.php:185
|
258 |
msgid "Can I use this plugin on my language?"
|
259 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
260 |
|
261 |
+
#: inc/php/page.php:188 inc/php/page.php:223
|
262 |
+
msgid "Yes."
|
263 |
+
msgstr "Да."
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
267 |
+
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
268 |
+
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "But If your language is not available then you can make one."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: inc/php/page.php:192
|
278 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
279 |
+
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
280 |
+
|
281 |
+
#: inc/php/page.php:193
|
282 |
+
msgid "Thanks for your contribution!"
|
283 |
+
msgstr "Спасибо за ваш вклад!"
|
284 |
+
|
285 |
+
#: inc/php/page.php:197
|
286 |
#, php-format
|
287 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
288 |
+
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
289 |
|
290 |
+
#: inc/php/page.php:201
|
291 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
292 |
+
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
293 |
|
294 |
+
#: inc/php/page.php:204
|
295 |
+
#, php-format
|
296 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
297 |
+
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
298 |
|
299 |
+
#: inc/php/page.php:211
|
300 |
msgid "How does it work?"
|
301 |
+
msgstr "Как это работает?"
|
302 |
|
303 |
+
#: inc/php/page.php:214 inc/php/page.php:224
|
304 |
+
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button."
|
305 |
+
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения»."
|
306 |
|
307 |
+
#: inc/php/page.php:220
|
308 |
msgid "Can I configure my buttons bar instance?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:229
|
|
|
|
|
|
|
|
|
312 |
msgid "How many buttons bar instances can I create?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:232
|
316 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:234
|
320 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: inc/php/page.php:235
|
324 |
+
msgid "This is very useful, because that way you can manage your buttons bar instances separately."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/page.php:236
|
328 |
+
msgid "Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: inc/php/page.php:240
|
332 |
msgid "Does this plugin requires any modification of the theme?"
|
333 |
msgstr "Этот плагин требует изменения темы?"
|
334 |
|
335 |
+
#: inc/php/page.php:243 inc/php/page.php:251
|
336 |
+
msgid "Absolutely not."
|
337 |
+
msgstr "Абсолютно нет."
|
338 |
|
339 |
+
#: inc/php/page.php:244
|
340 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
341 |
+
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
342 |
+
|
343 |
+
#: inc/php/page.php:248
|
344 |
msgid "Does this require any knowledge of HTML or CSS?"
|
345 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
346 |
|
347 |
+
#: inc/php/page.php:252
|
348 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
349 |
+
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
350 |
|
351 |
+
#: inc/php/page.php:256
|
352 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
353 |
msgstr "Что делать, если в тесте Google Page Speed сказано, что изображения этого плагина должны быть сжаты?"
|
354 |
|
355 |
+
#: inc/php/page.php:259
|
356 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
357 |
msgstr "Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать их ещё лучше."
|
358 |
|
359 |
+
#: inc/php/page.php:263
|
360 |
+
msgid "It's not working."
|
361 |
+
msgstr "Оно не работает."
|
362 |
|
363 |
+
#: inc/php/page.php:264
|
364 |
+
msgid "What could be wrong?"
|
365 |
+
msgstr "Что может быть не так?"
|
366 |
|
367 |
+
#: inc/php/page.php:267
|
368 |
+
msgid "As with every plugin, it's possible that things don't work."
|
369 |
+
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
370 |
|
371 |
+
#: inc/php/page.php:268
|
372 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
373 |
+
msgstr "Невозможно точно сказать, что может быть не так."
|
374 |
|
375 |
+
#: inc/php/page.php:269
|
376 |
+
msgid "The most common reason for this is a web browser's cache."
|
377 |
+
msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
|
378 |
+
|
379 |
+
#: inc/php/page.php:270
|
380 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
381 |
+
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
382 |
+
|
383 |
+
#: inc/php/page.php:271
|
384 |
+
msgid "This is called the browser's cache."
|
385 |
+
msgstr "Это называется кешем браузера."
|
386 |
+
|
387 |
+
#: inc/php/page.php:272
|
388 |
+
msgid "Clearing your browser's cache may solve the problem."
|
389 |
+
msgstr "Очистка кеша браузера может решить проблему."
|
390 |
+
|
391 |
+
#: inc/php/page.php:274
|
392 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
393 |
+
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
394 |
+
|
395 |
+
#: inc/php/page.php:275 inc/php/page.php:304
|
396 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
397 |
+
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
398 |
+
|
399 |
+
#: inc/php/page.php:279
|
400 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
401 |
+
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
402 |
+
|
403 |
+
#: inc/php/page.php:280
|
404 |
+
msgid "Why is this?"
|
405 |
+
msgstr "Почему так?"
|
406 |
+
|
407 |
+
#: inc/php/page.php:283
|
408 |
+
msgid "This plugin can not cause such problem."
|
409 |
+
msgstr "Этот плагин не может вызвать такую проблему."
|
410 |
+
|
411 |
+
#: inc/php/page.php:284
|
412 |
+
msgid "More likely, the problem are related to the settings of the website."
|
413 |
+
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
414 |
+
|
415 |
+
#: inc/php/page.php:285
|
416 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
417 |
+
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
418 |
+
|
419 |
+
#: inc/php/page.php:286
|
420 |
+
msgid "Also please try to re-login to the website, this too can help."
|
421 |
+
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
422 |
|
423 |
+
#: inc/php/page.php:290
|
424 |
msgid "Where to report bug if found?"
|
425 |
msgstr "Где можно сообщить об ошибке?"
|
426 |
|
427 |
+
#: inc/php/page.php:293
|
428 |
+
msgid "Bug reports are very welcome!"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:296
|
432 |
#, php-format
|
433 |
+
msgid "Please visit our %s contact page %s and report."
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: inc/php/page.php:301 inc/php/page.php:329
|
437 |
+
msgid "Please do not forget to specify the name of the plugin."
|
438 |
+
msgstr "Пожалуйста не забудьте указать название плагина."
|
439 |
+
|
440 |
+
#: inc/php/page.php:302 inc/php/page.php:330 inc/php/page.php:346
|
441 |
+
msgid "Thank you!"
|
442 |
+
msgstr "Спасибо!"
|
443 |
+
|
444 |
+
#: inc/php/page.php:305
|
445 |
+
msgid "Describe in more detail what exactly you are seeing."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/php/page.php:306
|
449 |
+
msgid "Here are some examples:"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/php/page.php:309
|
453 |
+
msgid "Elements of the plugin settings page are not working."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/php/page.php:310
|
457 |
+
msgid "An error message is displayed on the plugin settings page."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/php/page.php:311
|
461 |
+
msgid "An error message is displayed on the front end of website."
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: inc/php/page.php:312
|
465 |
+
msgid "An error message is displayed on the back end of website."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/php/page.php:313
|
469 |
+
msgid "Website is crashed."
|
470 |
+
msgstr ""
|
471 |
|
472 |
+
#: inc/php/page.php:318
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
475 |
|
476 |
+
#: inc/php/page.php:321
|
477 |
+
msgid "Any suggestions are very welcome!"
|
478 |
+
msgstr "Любые предложения приветствуются!"
|
479 |
+
|
480 |
+
#: inc/php/page.php:324
|
481 |
#, php-format
|
482 |
+
msgid "Please visit our %s contact page %s."
|
483 |
+
msgstr ""
|
484 |
|
485 |
+
#: inc/php/page.php:334
|
486 |
+
msgid "I love this plugin!"
|
487 |
+
msgstr "Мне нравится этот плагин!"
|
488 |
|
489 |
+
#: inc/php/page.php:335
|
490 |
+
msgid "Can I help somehow?"
|
491 |
+
msgstr "Могу Я чем-то помочь?"
|
492 |
+
|
493 |
+
#: inc/php/page.php:338
|
494 |
+
msgid "Yes, any contributions are very welcome!"
|
495 |
+
msgstr "Да, любой вклад приветствуется!"
|
496 |
+
|
497 |
+
#: inc/php/page.php:341
|
498 |
+
#, php-format
|
499 |
+
msgid "Please visit our %s Support Us %s page."
|
500 |
+
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
501 |
+
|
502 |
+
#: inc/php/page.php:350
|
503 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: inc/php/page.php:355
|
507 |
+
#, php-format
|
508 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: inc/php/page.php:363
|
512 |
+
msgid "Where can I find information about your customer support?"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: inc/php/page.php:368
|
516 |
+
#, php-format
|
517 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: inc/php/page.php:376
|
521 |
+
msgid "Where can I find information about your affiliate program?"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: inc/php/page.php:381
|
525 |
#, php-format
|
526 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
+
msgstr ""
|
528 |
|
529 |
+
#: inc/php/page.php:389
|
530 |
msgid "My question wasn't answered here."
|
531 |
+
msgstr "На мой вопрос здесь не было ответа."
|
532 |
|
533 |
+
#: inc/php/page.php:394
|
534 |
#, php-format
|
535 |
+
msgid "You can ask your question on %s this page %s."
|
536 |
+
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
537 |
|
538 |
+
#: inc/php/page.php:399
|
539 |
+
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
540 |
+
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
541 |
+
|
542 |
+
#: inc/php/page.php:410
|
543 |
msgid "Support Us"
|
544 |
msgstr "Поддержать нас"
|
545 |
|
546 |
+
#: inc/php/page.php:418 inc/php/settings.php:157 inc/php/sidebar.php:54
|
547 |
msgid "Donate with PayPal"
|
548 |
msgstr "Пожертвовать через PayPal"
|
549 |
|
550 |
+
#: inc/php/page.php:425
|
551 |
#, php-format
|
552 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
+
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
554 |
+
|
555 |
+
#: inc/php/page.php:434
|
556 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/page.php:435
|
560 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/page.php:436
|
564 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: inc/php/page.php:439
|
568 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
+
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
570 |
+
|
571 |
+
#: inc/php/page.php:440
|
572 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
+
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
574 |
|
575 |
+
#: inc/php/page.php:443
|
576 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
578 |
|
579 |
+
#: inc/php/page.php:446
|
580 |
msgid "Thank you for your support!"
|
581 |
msgstr "Спасибо за вашу поддержку!"
|
582 |
|
602 |
|
603 |
#: inc/php/settings.php:40
|
604 |
msgid "Additional buttons"
|
605 |
+
msgstr "Дополнительные кнопки"
|
606 |
|
607 |
#: inc/php/settings.php:49
|
608 |
msgid "Buttons URL"
|
617 |
msgstr "Настройки отображения"
|
618 |
|
619 |
#: inc/php/settings.php:78
|
|
|
620 |
msgid "Here you can customize the display of your social media follow buttons bar."
|
621 |
msgstr ""
|
622 |
|
633 |
msgstr ""
|
634 |
|
635 |
#: inc/php/settings.php:90
|
|
|
636 |
msgid "Button margin"
|
637 |
msgstr ""
|
638 |
|
653 |
msgstr "Справа"
|
654 |
|
655 |
#: inc/php/settings.php:100
|
|
|
656 |
msgid "Buttons bar alignment"
|
657 |
msgstr ""
|
658 |
|
659 |
#: inc/php/settings.php:101
|
|
|
660 |
msgid "You can choose the alignment of the entire buttons bar."
|
661 |
msgstr ""
|
662 |
|
701 |
msgstr "Показывать в записях"
|
702 |
|
703 |
#: inc/php/settings.php:128
|
|
|
704 |
msgid "Automatically display the buttons bar below content on Posts."
|
705 |
msgstr ""
|
706 |
|
709 |
msgstr "Показывать на страницах"
|
710 |
|
711 |
#: inc/php/settings.php:132
|
|
|
712 |
msgid "Automatically display the buttons bar below content on Pages."
|
713 |
msgstr ""
|
714 |
|
722 |
|
723 |
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
724 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
725 |
+
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
726 |
|
727 |
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
728 |
msgid "Thanks for your support!"
|
730 |
|
731 |
#: inc/php/sidebar.php:16
|
732 |
msgid "We are «Space X-Chimp»"
|
733 |
+
msgstr "Мы «Space X-Chimp»"
|
734 |
|
735 |
#: inc/php/sidebar.php:33
|
736 |
msgid "About"
|
737 |
msgstr "О плагине"
|
738 |
|
739 |
#: inc/php/sidebar.php:35
|
740 |
+
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
741 |
+
msgstr "Этот плагин даёт вам возможность легко добавить блок социальных медиа кнопок в любое место (post content, page content, widget, sidebar, header, footer) вашего WordPress веб-сайта."
|
742 |
|
743 |
#: inc/php/sidebar.php:40
|
744 |
msgid "Help"
|
757 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
758 |
|
759 |
#. Description of the plugin/theme
|
760 |
+
msgid "Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
761 |
+
msgstr "Легко и безопасно добавьте умную панель с социальными медиа кнопками следования (не расшаривания, только ссылка на ваши профили) в любое место (post content, page content, widget, sidebar, header, footer) вашего WordPress веб-сайта."
|
762 |
|
763 |
#. Author of the plugin/theme
|
764 |
msgid "Space X-Chimp"
|
767 |
#. Author URI of the plugin/theme
|
768 |
msgid "https://www.spacexchimp.com"
|
769 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
|
21 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
@@ -59,276 +59,522 @@ msgstr ""
|
|
59 |
msgid "Enter the URL of your RSS feed."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: inc/php/messages.php:
|
63 |
-
msgid "Hello
|
64 |
msgstr ""
|
65 |
|
66 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
67 |
#, php-format
|
68 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: inc/php/messages.php:
|
72 |
msgid "You have installed an old version of this plugin."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/messages.php:
|
76 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
#, php-format
|
81 |
msgid "by %s Space X-Chimp %s"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: inc/php/page.php:
|
85 |
msgid "Version"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: inc/php/page.php:
|
89 |
msgid "Usage"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/php/page.php:
|
93 |
msgid "F.A.Q."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: inc/php/page.php:
|
97 |
msgid "Support"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: inc/php/page.php:
|
101 |
msgid "Store"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/php/page.php:
|
105 |
msgid "Usage Instructions"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/php/page.php:
|
109 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/php/page.php:
|
113 |
msgid "Go to the \"Settings\" tab on this page."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/php/page.php:
|
117 |
msgid "Select the desired buttons and fill in the required URL fields."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid "Select the desired settings."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/php/page.php:
|
125 |
msgid "Click the \"Save changes\" button."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/page.php:
|
129 |
-
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\").
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
-
msgid "
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
137 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/page.php:
|
145 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/page.php:
|
149 |
msgid "Enjoy your fancy social media follow buttons."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
msgid "It's that simple!"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
#, php-format
|
158 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/page.php:
|
162 |
msgid "Frequently Asked Questions"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/page.php:
|
166 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/php/page.php:
|
170 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: inc/php/page.php:
|
174 |
-
msgid "
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/php/page.php:
|
178 |
msgid "Can I use this plugin on my language?"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/page.php:
|
182 |
-
msgid "Yes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
186 |
#, php-format
|
187 |
-
msgid "If you want to help translate this plugin
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/php/page.php:
|
191 |
-
msgid "
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/php/page.php:
|
195 |
-
|
|
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid "How does it work?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: inc/php/page.php:
|
203 |
-
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button.
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/php/page.php:
|
207 |
msgid "Can I configure my buttons bar instance?"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
-
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: inc/php/page.php:143
|
215 |
msgid "How many buttons bar instances can I create?"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: inc/php/page.php:
|
219 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
-
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
msgid "Does this plugin requires any modification of the theme?"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
-
msgid "Absolutely not.
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
235 |
msgid "Does this require any knowledge of HTML or CSS?"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/page.php:
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
243 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
247 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/php/page.php:
|
251 |
-
msgid "It's not working.
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/php/page.php:
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Where to report bug if found?"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
275 |
#, php-format
|
276 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
284 |
#, php-format
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "I love this plugin!
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
#, php-format
|
294 |
-
msgid "
|
|
|
|
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
msgid "My question wasn't answered here."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
#, php-format
|
303 |
-
msgid "You can ask your question on %s this page %s.
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
307 |
msgid "Support Us"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/page.php:
|
311 |
msgid "Donate with PayPal"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/page.php:
|
315 |
#, php-format
|
316 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: inc/php/page.php:
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/php/page.php:
|
324 |
-
msgid "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/page.php:
|
328 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/page.php:
|
332 |
msgid "Thank you for your support!"
|
333 |
msgstr ""
|
334 |
|
@@ -489,7 +735,7 @@ msgid "About"
|
|
489 |
msgstr ""
|
490 |
|
491 |
#: inc/php/sidebar.php:35
|
492 |
-
msgid "This plugin
|
493 |
msgstr ""
|
494 |
|
495 |
#: inc/php/sidebar.php:40
|
@@ -509,7 +755,7 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
509 |
msgstr ""
|
510 |
|
511 |
#. Description of the plugin/theme
|
512 |
-
msgid "Easily add
|
513 |
msgstr ""
|
514 |
|
515 |
#. Author of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:23+0300\n"
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
|
21 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
59 |
msgid "Enter the URL of your RSS feed."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/php/messages.php:27 inc/php/page.php:422
|
63 |
+
msgid "Hello!"
|
64 |
msgstr ""
|
65 |
|
66 |
#: inc/php/messages.php:28
|
67 |
+
msgid "We are the team of Space X-Chimp."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: inc/php/messages.php:33
|
71 |
#, php-format
|
72 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/php/messages.php:74
|
76 |
msgid "You have installed an old version of this plugin."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: inc/php/messages.php:75
|
80 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:31
|
84 |
#, php-format
|
85 |
msgid "by %s Space X-Chimp %s"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: inc/php/page.php:37
|
89 |
msgid "Version"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: inc/php/page.php:45
|
93 |
msgid "Usage"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: inc/php/page.php:46
|
97 |
msgid "F.A.Q."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: inc/php/page.php:47 inc/php/settings.php:150 inc/php/sidebar.php:47
|
101 |
msgid "Support"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/php/page.php:48
|
105 |
msgid "Store"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/php/page.php:64
|
109 |
msgid "Usage Instructions"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/php/page.php:66
|
113 |
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/php/page.php:68
|
117 |
msgid "Go to the \"Settings\" tab on this page."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/page.php:69
|
121 |
msgid "Select the desired buttons and fill in the required URL fields."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/php/page.php:70
|
125 |
msgid "Select the desired settings."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/page.php:71
|
129 |
msgid "Click the \"Save changes\" button."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:73
|
133 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\")."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/page.php:74
|
137 |
+
msgid "Just choose the one that is more suitable for your case."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: inc/php/page.php:76
|
141 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply use the appropriate option in the \"Autoload\" section, then click the \"Save changes\" button."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: inc/php/page.php:77
|
145 |
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/page.php:79
|
149 |
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/page.php:81
|
153 |
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: inc/php/page.php:84 inc/php/page.php:215
|
157 |
msgid "Enjoy your fancy social media follow buttons."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: inc/php/page.php:84 inc/php/page.php:216 inc/php/page.php:225
|
161 |
msgid "It's that simple!"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/page.php:89
|
165 |
#, php-format
|
166 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: inc/php/page.php:103
|
170 |
msgid "Frequently Asked Questions"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: inc/php/page.php:107
|
174 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: inc/php/page.php:132
|
178 |
+
msgid "Where can I find a documentation for this plugin?"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: inc/php/page.php:137
|
182 |
+
#, php-format
|
183 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: inc/php/page.php:145
|
187 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: inc/php/page.php:148
|
191 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: inc/php/page.php:150
|
195 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: inc/php/page.php:151
|
199 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: inc/php/page.php:154
|
203 |
+
#, php-format
|
204 |
+
msgid "You can learn more about the difference here: %s ."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: inc/php/page.php:161
|
208 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: inc/php/page.php:164
|
212 |
+
msgid "This plugin is compatible with most themes."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: inc/php/page.php:165
|
216 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: inc/php/page.php:166
|
220 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: inc/php/page.php:167
|
224 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: inc/php/page.php:169
|
228 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: inc/php/page.php:173
|
232 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: inc/php/page.php:176
|
236 |
+
msgid "This plugin is compatible with most plugins."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: inc/php/page.php:177
|
240 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: inc/php/page.php:178
|
244 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: inc/php/page.php:179
|
248 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/page.php:181
|
252 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc/php/page.php:185
|
256 |
msgid "Can I use this plugin on my language?"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: inc/php/page.php:188 inc/php/page.php:223
|
260 |
+
msgid "Yes."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: inc/php/page.php:189
|
264 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: inc/php/page.php:190
|
268 |
+
msgid "But If your language is not available then you can make one."
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: inc/php/page.php:191
|
272 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: inc/php/page.php:192
|
276 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:193
|
280 |
+
msgid "Thanks for your contribution!"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: inc/php/page.php:197
|
284 |
#, php-format
|
285 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:201
|
289 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:204
|
293 |
+
#, php-format
|
294 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/php/page.php:211
|
298 |
msgid "How does it work?"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/php/page.php:214 inc/php/page.php:224
|
302 |
+
msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:220
|
306 |
msgid "Can I configure my buttons bar instance?"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:229
|
|
|
|
|
|
|
|
|
310 |
msgid "How many buttons bar instances can I create?"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/php/page.php:232
|
314 |
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/page.php:234
|
318 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: inc/php/page.php:235
|
322 |
+
msgid "This is very useful, because that way you can manage your buttons bar instances separately."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: inc/php/page.php:236
|
326 |
+
msgid "Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/page.php:240
|
330 |
msgid "Does this plugin requires any modification of the theme?"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/page.php:243 inc/php/page.php:251
|
334 |
+
msgid "Absolutely not."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: inc/php/page.php:244
|
338 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: inc/php/page.php:248
|
342 |
msgid "Does this require any knowledge of HTML or CSS?"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/php/page.php:252
|
346 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/page.php:256
|
350 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:259
|
354 |
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/php/page.php:263
|
358 |
+
msgid "It's not working."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/php/page.php:264
|
362 |
+
msgid "What could be wrong?"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/php/page.php:267
|
366 |
+
msgid "As with every plugin, it's possible that things don't work."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: inc/php/page.php:268
|
370 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/php/page.php:269
|
374 |
+
msgid "The most common reason for this is a web browser's cache."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: inc/php/page.php:270
|
378 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: inc/php/page.php:271
|
382 |
+
msgid "This is called the browser's cache."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: inc/php/page.php:272
|
386 |
+
msgid "Clearing your browser's cache may solve the problem."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: inc/php/page.php:274
|
390 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: inc/php/page.php:275 inc/php/page.php:304
|
394 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: inc/php/page.php:279
|
398 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: inc/php/page.php:280
|
402 |
+
msgid "Why is this?"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: inc/php/page.php:283
|
406 |
+
msgid "This plugin can not cause such problem."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/php/page.php:284
|
410 |
+
msgid "More likely, the problem are related to the settings of the website."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: inc/php/page.php:285
|
414 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: inc/php/page.php:286
|
418 |
+
msgid "Also please try to re-login to the website, this too can help."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: inc/php/page.php:290
|
422 |
msgid "Where to report bug if found?"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: inc/php/page.php:293
|
426 |
+
msgid "Bug reports are very welcome!"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: inc/php/page.php:296
|
430 |
#, php-format
|
431 |
+
msgid "Please visit our %s contact page %s and report."
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: inc/php/page.php:301 inc/php/page.php:329
|
435 |
+
msgid "Please do not forget to specify the name of the plugin."
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: inc/php/page.php:302 inc/php/page.php:330 inc/php/page.php:346
|
439 |
+
msgid "Thank you!"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: inc/php/page.php:305
|
443 |
+
msgid "Describe in more detail what exactly you are seeing."
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: inc/php/page.php:306
|
447 |
+
msgid "Here are some examples:"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: inc/php/page.php:309
|
451 |
+
msgid "Elements of the plugin settings page are not working."
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: inc/php/page.php:310
|
455 |
+
msgid "An error message is displayed on the plugin settings page."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/page.php:311
|
459 |
+
msgid "An error message is displayed on the front end of website."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: inc/php/page.php:312
|
463 |
+
msgid "An error message is displayed on the back end of website."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: inc/php/page.php:313
|
467 |
+
msgid "Website is crashed."
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: inc/php/page.php:318
|
471 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/page.php:321
|
475 |
+
msgid "Any suggestions are very welcome!"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: inc/php/page.php:324
|
479 |
#, php-format
|
480 |
+
msgid "Please visit our %s contact page %s."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: inc/php/page.php:334
|
484 |
+
msgid "I love this plugin!"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: inc/php/page.php:335
|
488 |
+
msgid "Can I help somehow?"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: inc/php/page.php:338
|
492 |
+
msgid "Yes, any contributions are very welcome!"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: inc/php/page.php:341
|
496 |
+
#, php-format
|
497 |
+
msgid "Please visit our %s Support Us %s page."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: inc/php/page.php:350
|
501 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/php/page.php:355
|
505 |
#, php-format
|
506 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: inc/php/page.php:363
|
510 |
+
msgid "Where can I find information about your customer support?"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/php/page.php:368
|
514 |
+
#, php-format
|
515 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: inc/php/page.php:376
|
519 |
+
msgid "Where can I find information about your affiliate program?"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: inc/php/page.php:381
|
523 |
+
#, php-format
|
524 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: inc/php/page.php:389
|
528 |
msgid "My question wasn't answered here."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: inc/php/page.php:394
|
532 |
#, php-format
|
533 |
+
msgid "You can ask your question on %s this page %s."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/page.php:399
|
537 |
+
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: inc/php/page.php:410
|
541 |
msgid "Support Us"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/page.php:418 inc/php/settings.php:157 inc/php/sidebar.php:54
|
545 |
msgid "Donate with PayPal"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/page.php:425
|
549 |
#, php-format
|
550 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: inc/php/page.php:434
|
554 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: inc/php/page.php:435
|
558 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: inc/php/page.php:436
|
562 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/page.php:439
|
566 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/page.php:440
|
570 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/page.php:443
|
574 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/page.php:446
|
578 |
msgid "Thank you for your support!"
|
579 |
msgstr ""
|
580 |
|
735 |
msgstr ""
|
736 |
|
737 |
#: inc/php/sidebar.php:35
|
738 |
+
msgid "This plugin gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
739 |
msgstr ""
|
740 |
|
741 |
#: inc/php/sidebar.php:40
|
755 |
msgstr ""
|
756 |
|
757 |
#. Description of the plugin/theme
|
758 |
+
msgid "Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website."
|
759 |
msgstr ""
|
760 |
|
761 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
=== Social Media Follow Buttons Bar ===
|
2 |
Contributors: Arthur Gareginyan
|
3 |
-
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, bitbucket, dailypaintworks, flipboard, feedsfloor, gab, minds, wattpad, itunes podcasts, aboutme, group, stitcher, strava, wechat, weibo, blackberry-world, iheart, livestream, tunein, untappd, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
-
Easily add
|
12 |
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily add
|
17 |
|
18 |
The social media follow buttons bar - is a bar with set of icons of the popular social media which are linked directly to your profile on this social networks. I.e. clicking the Facebook icon will take the user to your Facebook page, clicking the Twitter icon will take them to your Twitter page.
|
19 |
|
20 |
-
Unlike the other plugins, this plugin creates a live bar. The bar automatically adapt to the width of the block where it placed. If the buttons do not fit to the one line, then they will be placed on multiple lines. So they can be arranged horizontally or vertically, in one line or in a few, and all of this is done automatically.
|
21 |
|
22 |
-
|
23 |
|
24 |
-
|
25 |
|
26 |
**Features**
|
27 |
|
@@ -165,7 +165,7 @@ This plugin is just plug and play, no tedious configurations or hacks, just inst
|
|
165 |
|
166 |
**Translation**
|
167 |
|
168 |
-
This plugin is ready for translation and has already been translated into several languages.
|
169 |
|
170 |
* English (default)
|
171 |
* Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
|
@@ -173,7 +173,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
173 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
174 |
* Dutch (translation by Peter Leenders)
|
175 |
|
176 |
-
If you want to help translate this plugin
|
177 |
|
178 |
**Minimum system requirements:**
|
179 |
|
@@ -220,16 +220,26 @@ After installation and activation, the "`Social Media Follow Buttons`" menu item
|
|
220 |
|
221 |
== Frequently Asked Questions ==
|
222 |
|
223 |
-
= Q. Will this plugin work on my
|
224 |
-
A. Sorry, this plugin is available for use only on self-hosted (
|
225 |
|
226 |
= Q. Can I use this plugin on my language? =
|
227 |
-
A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one.
|
|
|
|
|
228 |
|
229 |
= Q. How does it work? =
|
230 |
A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
|
231 |
You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Social Media Follow Buttons`".
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
= Q. Does this plugin requires any modification of the theme? =
|
234 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
235 |
|
@@ -240,9 +250,9 @@ A. Absolutely not. This plugin can be configured with no knowledge of HTML or CS
|
|
240 |
A. The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better.
|
241 |
|
242 |
= Q. It's not working. What could be wrong? =
|
243 |
-
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser
|
244 |
|
245 |
-
|
246 |
|
247 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
248 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
@@ -299,6 +309,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
299 |
|
300 |
== Changelog ==
|
301 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
= 4.45 =
|
303 |
* Added information about the PRO version of the plugin.
|
304 |
* Options on the settings page are resorted.
|
1 |
=== Social Media Follow Buttons Bar ===
|
2 |
Contributors: Arthur Gareginyan
|
3 |
+
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, bitbucket, dailypaintworks, flipboard, feedsfloor, gab, minds, wattpad, itunes podcasts, aboutme, group, stitcher, strava, wechat, weibo, blackberry-world, iheart, livestream, tunein, untappd, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.1
|
7 |
+
Stable tag: 4.46
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
+
Easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
|
12 |
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add a smart bar with social media follow buttons (not share, only links to your social media profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
|
17 |
|
18 |
The social media follow buttons bar - is a bar with set of icons of the popular social media which are linked directly to your profile on this social networks. I.e. clicking the Facebook icon will take the user to your Facebook page, clicking the Twitter icon will take them to your Twitter page.
|
19 |
|
20 |
+
Unlike the other plugins, this plugin creates a live bar. The bar automatically adapt to the width of the block where it placed. If the buttons do not fit to the one line, then they will be placed on multiple lines. So they can be arranged horizontally or vertically, in one line or in a few, and all of this is done automatically.
|
21 |
|
22 |
+
This plugin give you finer control over buttons. You can configure they on plugins settings page. You can choose the size of icons, choose open link in current tab or in new, and etc. Also you can have the social media follow buttons automatically added to the bottom of all Posts and/or Pages, or position them manually using either a widget, shortcode or template action hook. If you want more options, then let us know and we will be happy to add them.
|
23 |
|
24 |
+
Its purpose is to provide a familiar experience to WordPress users. You don't need to edit any file of your theme, this plugin will do everything for you. It's just plug and play, no tedious configurations or hacks, just install, enable and start enjoying your fancy social media follow buttons. It's that simple! In addition, your social media follow buttons will be compatible with all major browsers and work with any theme.
|
25 |
|
26 |
**Features**
|
27 |
|
165 |
|
166 |
**Translation**
|
167 |
|
168 |
+
This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
169 |
|
170 |
* English (default)
|
171 |
* Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
|
173 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
174 |
* Dutch (translation by Peter Leenders)
|
175 |
|
176 |
+
If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
|
177 |
|
178 |
**Minimum system requirements:**
|
179 |
|
220 |
|
221 |
== Frequently Asked Questions ==
|
222 |
|
223 |
+
= Q. Will this plugin work on my wordpress.COM website? =
|
224 |
+
A. Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.
|
225 |
|
226 |
= Q. Can I use this plugin on my language? =
|
227 |
+
A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
228 |
+
|
229 |
+
If you want to help translate this plugin, please use the POT file that is included and placed in the `languages` folder to create a translation PO file. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
230 |
|
231 |
= Q. How does it work? =
|
232 |
A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
|
233 |
You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Social Media Follow Buttons`".
|
234 |
|
235 |
+
= Q. Can I configure my buttons bar instance? =
|
236 |
+
A. Yes. On the "Settings" tab, select the desired settings and click the "Save changes" button. It's that simple!
|
237 |
+
You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Social Media Follow Buttons`".
|
238 |
+
|
239 |
+
= Q. How many buttons bar instances can I create? =
|
240 |
+
A. The free version of this plugin supports only 1 instance of the buttons bar.
|
241 |
+
In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances.
|
242 |
+
|
243 |
= Q. Does this plugin requires any modification of the theme? =
|
244 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
245 |
|
250 |
A. The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better.
|
251 |
|
252 |
= Q. It's not working. What could be wrong? =
|
253 |
+
A. As with every plugin, it's possible that things don't work. It's impossible to tell what could be wrong exactly. The most common reason for this is a web browser’s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser’s cache. Clearing your browser’s cache may solve the problem.
|
254 |
|
255 |
+
If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.
|
256 |
|
257 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
258 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
309 |
|
310 |
== Changelog ==
|
311 |
|
312 |
+
= 4.46 =
|
313 |
+
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
314 |
+
* Content of the "F.A.Q." section updated.
|
315 |
+
* Some texts are corrected or replaced with new ones.
|
316 |
+
* All translation files are updated.
|
317 |
+
* Code formatting improved.
|
318 |
+
* The code relating to "Live preview", in the "admin.js" file, is improved.
|
319 |
+
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
320 |
+
* The human.txt file updated.
|
321 |
+
|
322 |
= 4.45 =
|
323 |
* Added information about the PRO version of the plugin.
|
324 |
* Options on the settings page are resorted.
|
social-media-buttons-toolbar.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Social Media Follow Buttons Bar
|
4 |
* Plugin URI: https://github.com/ArthurGareginyan/social-media-buttons-toolbar
|
5 |
-
* Description: Easily add
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
2 |
/**
|
3 |
* Plugin Name: Social Media Follow Buttons Bar
|
4 |
* Plugin URI: https://github.com/ArthurGareginyan/social-media-buttons-toolbar
|
5 |
+
* Description: Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.46
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|