Version Description
- Texts updated.
- The year in the copyright text is updated.
- The sidebar items are rearranged.
- Translation files updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.27 |
Comparing to | |
See all releases |
Code changes from version 4.26 to 4.27
- inc/css/admin.css +1 -1
- inc/css/frontend.css +1 -1
- inc/img/avatar.png +0 -0
- inc/img/spacexchimp-logo.png +0 -0
- inc/js/admin.js +1 -1
- inc/php/core.php +1 -1
- inc/php/messages.php +3 -3
- inc/php/page.php +23 -15
- inc/php/sidebar.php +8 -8
- languages/Readme.txt +1 -1
- languages/social-media-buttons-toolbar-de_DE.mo +0 -0
- languages/social-media-buttons-toolbar-de_DE.po +125 -314
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +122 -616
- languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
- languages/social-media-buttons-toolbar-ru_RU.po +134 -755
- languages/social-media-buttons-toolbar.pot +110 -119
- readme.txt +14 -8
- social-media-buttons-toolbar.php +2 -2
inc/css/admin.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/css/frontend.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/img/avatar.png
DELETED
Binary file
|
inc/img/spacexchimp-logo.png
ADDED
Binary file
|
inc/js/admin.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/php/core.php
CHANGED
@@ -82,7 +82,7 @@ function spacexchimp_p005_admin_footer_text() {
|
|
82 |
// Filter footer text
|
83 |
function spacexchimp_p005_new_admin_footer_text() {
|
84 |
$year = date('Y');
|
85 |
-
return "Copyright © " . $year . " <a href='https://www.spacexchimp.com' target='_blank'>Space X-Chimp</a>
|
86 |
}
|
87 |
add_filter( 'admin_footer_text', 'spacexchimp_p005_new_admin_footer_text', 11 );
|
88 |
}
|
82 |
// Filter footer text
|
83 |
function spacexchimp_p005_new_admin_footer_text() {
|
84 |
$year = date('Y');
|
85 |
+
return "Copyright © " . $year . " <a href='https://www.spacexchimp.com' target='_blank'>Space X-Chimp</a> | Click <a href='https://www.spacexchimp.com/store.html' target='_blank'>here</a> to see our other products.";
|
86 |
}
|
87 |
add_filter( 'admin_footer_text', 'spacexchimp_p005_new_admin_footer_text', 11 );
|
88 |
}
|
inc/php/messages.php
CHANGED
@@ -21,11 +21,11 @@ function spacexchimp_p005_hello_message() {
|
|
21 |
<div class="modal-dialog">
|
22 |
<div class="modal-content">
|
23 |
<div class="modal-body">
|
24 |
-
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
-
<p><?php _e( 'Hello.
|
27 |
<p><?php printf(
|
28 |
-
__( 'Thank you for installing
|
29 |
'😃'
|
30 |
);
|
31 |
?></p>
|
21 |
<div class="modal-dialog">
|
22 |
<div class="modal-content">
|
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><?php _e( 'Hello. We are the team of Space X-Chimp.', SPACEXCHIMP_P005_TEXT ); ?></p>
|
27 |
<p><?php printf(
|
28 |
+
__( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P005_TEXT ),
|
29 |
'😃'
|
30 |
);
|
31 |
?></p>
|
inc/php/page.php
CHANGED
@@ -27,7 +27,7 @@ function spacexchimp_p005_render_submenu_page() {
|
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
<?php printf(
|
30 |
-
__( 'by %s Space X-Chimp
|
31 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
32 |
'</a>'
|
33 |
);
|
@@ -79,7 +79,13 @@ 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"><b><?php _e( 'Note!', $text ); ?></b> <?php
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
</div>
|
84 |
</div>
|
85 |
</div>
|
@@ -120,9 +126,9 @@ function spacexchimp_p005_render_submenu_page() {
|
|
120 |
<div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
|
121 |
<div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
|
122 |
<?php printf(
|
123 |
-
__( 'If you want to help translate this plugin then please visit the %s. 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
|
124 |
-
|
125 |
-
|
126 |
);
|
127 |
?><br><br>
|
128 |
<?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
|
@@ -142,29 +148,30 @@ function spacexchimp_p005_render_submenu_page() {
|
|
142 |
|
143 |
<div class="question-7 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
|
144 |
<div class="answer-7"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. 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.', $text ); ?><br><br>
|
145 |
-
<?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org,
|
146 |
|
147 |
-
<div class="question-8 question-red"><?php _e( 'The last WordPress update is preventing me from editing
|
148 |
<div class="answer-8"><?php _e( '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.', $text ); ?></div>
|
149 |
|
150 |
<div class="question-9 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
|
151 |
<div class="answer-9"><?php printf(
|
152 |
-
__( 'Please visit
|
153 |
-
'<a href="https://
|
154 |
'</a>'
|
155 |
);
|
156 |
?></div>
|
157 |
|
158 |
<div class="question-10"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
|
159 |
<div class="answer-10"><?php printf(
|
160 |
-
__( 'Any suggestions are very welcome!
|
161 |
-
'<a href="
|
|
|
162 |
);
|
163 |
?></div>
|
164 |
|
165 |
<div class="question-11"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
|
166 |
<div class="answer-11"><?php printf(
|
167 |
-
__( 'Yes, any financial contributions are welcome! Just visit %s
|
168 |
'<a href="https://www.arthurgareginyan.com/donate.html" target="_blank">',
|
169 |
'</a>'
|
170 |
);
|
@@ -172,8 +179,9 @@ function spacexchimp_p005_render_submenu_page() {
|
|
172 |
|
173 |
<div class="question-12"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
|
174 |
<div class="answer-12"><?php printf(
|
175 |
-
__( 'You can ask your question on
|
176 |
-
|
|
|
177 |
);
|
178 |
?></div>
|
179 |
|
@@ -198,7 +206,7 @@ function spacexchimp_p005_render_submenu_page() {
|
|
198 |
</span>
|
199 |
<p><?php
|
200 |
printf(
|
201 |
-
__( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp
|
202 |
'<a href="https://www.arthurgareginyan.com" target="_blank">',
|
203 |
'</a>',
|
204 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
<?php printf(
|
30 |
+
__( 'by %s Space X-Chimp %s', $text ),
|
31 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
32 |
'</a>'
|
33 |
);
|
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"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
|
83 |
+
__( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
|
84 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
85 |
+
'</a>'
|
86 |
+
);
|
87 |
+
?>
|
88 |
+
</p>
|
89 |
</div>
|
90 |
</div>
|
91 |
</div>
|
126 |
<div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
|
127 |
<div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
|
128 |
<?php printf(
|
129 |
+
__( 'If you want to help translate this plugin then please visit the %s. 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 at the %s and we will include this translation within the next plugin update.', $text ),
|
130 |
+
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>',
|
131 |
+
'<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
|
132 |
);
|
133 |
?><br><br>
|
134 |
<?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
|
148 |
|
149 |
<div class="question-7 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
|
150 |
<div class="answer-7"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. 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.', $text ); ?><br><br>
|
151 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly, but 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.', $text ); ?></div>
|
152 |
|
153 |
+
<div class="question-8 question-red"><?php _e( 'The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?', $text ); ?></div>
|
154 |
<div class="answer-8"><?php _e( '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.', $text ); ?></div>
|
155 |
|
156 |
<div class="question-9 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
|
157 |
<div class="answer-9"><?php printf(
|
158 |
+
__( 'Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
|
159 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
160 |
'</a>'
|
161 |
);
|
162 |
?></div>
|
163 |
|
164 |
<div class="question-10"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
|
165 |
<div class="answer-10"><?php printf(
|
166 |
+
__( 'Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
|
167 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
168 |
+
'</a>'
|
169 |
);
|
170 |
?></div>
|
171 |
|
172 |
<div class="question-11"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
|
173 |
<div class="answer-11"><?php printf(
|
174 |
+
__( 'Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!', $text ),
|
175 |
'<a href="https://www.arthurgareginyan.com/donate.html" target="_blank">',
|
176 |
'</a>'
|
177 |
);
|
179 |
|
180 |
<div class="question-12"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
|
181 |
<div class="answer-12"><?php printf(
|
182 |
+
__( 'You can ask your question on %s this page %s. 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 ),
|
183 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
184 |
+
'</a>'
|
185 |
);
|
186 |
?></div>
|
187 |
|
206 |
</span>
|
207 |
<p><?php
|
208 |
printf(
|
209 |
+
__( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp %s.', $text ),
|
210 |
'<a href="https://www.arthurgareginyan.com" target="_blank">',
|
211 |
'</a>',
|
212 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
inc/php/sidebar.php
CHANGED
@@ -19,6 +19,13 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
19 |
</div>
|
20 |
</div>
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
<div class="postbox support">
|
23 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
24 |
<div class="inside">
|
@@ -33,17 +40,10 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
33 |
</div>
|
34 |
</div>
|
35 |
|
36 |
-
<div class="postbox help">
|
37 |
-
<h3 class="title"><?php _e( 'Help', $text ); ?></h3>
|
38 |
-
<div class="inside">
|
39 |
-
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
|
40 |
-
</div>
|
41 |
-
</div>
|
42 |
-
|
43 |
<div class="postbox banner">
|
44 |
<div class="inside">
|
45 |
<a href="https://www.spacexchimp.com/" target="_blank">
|
46 |
-
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp
|
47 |
</a>
|
48 |
</div>
|
49 |
</div>
|
19 |
</div>
|
20 |
</div>
|
21 |
|
22 |
+
<div class="postbox help">
|
23 |
+
<h3 class="title"><?php _e( 'Help', $text ); ?></h3>
|
24 |
+
<div class="inside">
|
25 |
+
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
|
29 |
<div class="postbox support">
|
30 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
31 |
<div class="inside">
|
40 |
</div>
|
41 |
</div>
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
<div class="postbox banner">
|
44 |
<div class="inside">
|
45 |
<a href="https://www.spacexchimp.com/" target="_blank">
|
46 |
+
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp">
|
47 |
</a>
|
48 |
</div>
|
49 |
</div>
|
languages/Readme.txt
CHANGED
@@ -6,7 +6,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
6 |
|
7 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
|
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
|
10 |
|
11 |
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
12 |
|
6 |
|
7 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
|
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 at the arthurgareginyan@gmail.com 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 |
|
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: Development (trunk)\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -12,13 +12,11 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
-
"X-Generator: Poedit 1.8.
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
20 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
21 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
@@ -40,12 +38,8 @@ msgid "Enter the link to your %s profile page"
|
|
40 |
msgstr "Geben Sie den Link zu Ihrer %s Profil Seite ein"
|
41 |
|
42 |
#: inc/php/list.php:1
|
43 |
-
msgid ""
|
44 |
-
"
|
45 |
-
"add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
46 |
-
msgstr ""
|
47 |
-
"Geben Sie Ihren Skype Namen mit Prefix <b>skype:</b> und suffix <b>?call</b>, oder "
|
48 |
-
"<b>?add</b>, oder <b>?chat</b>, oder <b>?userinfo</b> für Ihr Profil ein"
|
49 |
|
50 |
#: inc/php/list.php:1
|
51 |
msgid "Enter the link to your personal website"
|
@@ -64,14 +58,13 @@ msgid "Enter the link to your RSS Feed"
|
|
64 |
msgstr "Geben Sie den Link zu Ihrem RSS Feed ein"
|
65 |
|
66 |
#: inc/php/messages.php:26
|
67 |
-
msgid "Hello.
|
68 |
-
msgstr "Hallo! Ich bin
|
69 |
|
70 |
#: inc/php/messages.php:28
|
71 |
#, php-format
|
72 |
-
msgid "Thank you for installing
|
73 |
-
msgstr ""
|
74 |
-
"Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
75 |
|
76 |
#: inc/php/messages.php:68
|
77 |
msgid "You have installed an old version of this plugin."
|
@@ -83,8 +76,8 @@ msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gu
|
|
83 |
|
84 |
#: inc/php/page.php:30
|
85 |
#, php-format
|
86 |
-
msgid "by %s Space X-Chimp
|
87 |
-
msgstr "by %s Space X-Chimp
|
88 |
|
89 |
#: inc/php/page.php:36
|
90 |
msgid "Version"
|
@@ -98,7 +91,7 @@ msgstr "Verwendung"
|
|
98 |
msgid "F.A.Q."
|
99 |
msgstr "F.A.Q."
|
100 |
|
101 |
-
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:
|
102 |
msgid "Support"
|
103 |
msgstr "Support"
|
104 |
|
@@ -111,12 +104,8 @@ msgid "Usage Instructions"
|
|
111 |
msgstr "Anleitung"
|
112 |
|
113 |
#: inc/php/page.php:65
|
114 |
-
msgid ""
|
115 |
-
"
|
116 |
-
"simply follow these steps:"
|
117 |
-
msgstr ""
|
118 |
-
"Um die \"social media follow buttons bar\" am Front-End Ihrer Webseite anzuzeigen, "
|
119 |
-
"befolgen Sie die folgenden Schritte:"
|
120 |
|
121 |
#: inc/php/page.php:67
|
122 |
msgid "Go to the \"Settings\" tab."
|
@@ -135,51 +124,24 @@ msgid "Click the \"Save changes\" button."
|
|
135 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
136 |
|
137 |
#: inc/php/page.php:71
|
138 |
-
msgid ""
|
139 |
-
"
|
140 |
-
"(further just \"buttons\"). Just choose the one that is more suitable for your "
|
141 |
-
"case."
|
142 |
-
msgstr ""
|
143 |
-
"Jetzt haben Sie unterschiedliche Möglichkeiten um die \"social media follow "
|
144 |
-
"buttons bar\" (im Folgenden \"buttons\") anzuzeigen. Wählen Sie die, die für Sie "
|
145 |
-
"am Besten passt."
|
146 |
|
147 |
#: inc/php/page.php:72
|
148 |
-
msgid ""
|
149 |
-
"<b>A)</b>
|
150 |
-
"just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
|
151 |
-
"\"Display options\", then click the \"Save changes\" button."
|
152 |
-
msgstr ""
|
153 |
-
"<b>A)</b> Um die Buttons unterhalb eines Contents bei jedem Post und/oder Seite "
|
154 |
-
"anzuzeigen, wählen Sie die Checkbox \"Zeige in Posts\" und/oder \"Zeige auf Seiten "
|
155 |
-
"im Bereich \"Anzeigeoptionen\", dann klicken Sie den Button \"Änderungen speichern"
|
156 |
-
"\"."
|
157 |
|
158 |
#: inc/php/page.php:73
|
159 |
-
msgid ""
|
160 |
-
"<b>B)</b>
|
161 |
-
"following shortcode:"
|
162 |
-
msgstr ""
|
163 |
-
"<b>B)</b> Um die Buttons innerhalb eines Posts/einer Seite anzuzeigen, benutzen "
|
164 |
-
"Sie den folgenden Shortcode:"
|
165 |
|
166 |
#: inc/php/page.php:75
|
167 |
-
msgid ""
|
168 |
-
"<b>C)</b>
|
169 |
-
"\"Text\" widget and add inside it the following shortcode:"
|
170 |
-
msgstr ""
|
171 |
-
"<b>C)</b> Um die Buttons in einem Widget-Bereich (Sidebar, Fusszeile, etc.) "
|
172 |
-
"anzuzeigen, benutzen Sie das \"Text\" Widget und fügen Sie den folgenden Shortcode "
|
173 |
-
"ein:"
|
174 |
|
175 |
#: inc/php/page.php:77
|
176 |
-
msgid ""
|
177 |
-
"<b>D)</b>
|
178 |
-
"code to needed place (where you want to display the buttons) in your theme files:"
|
179 |
-
msgstr ""
|
180 |
-
"<b>D)</b> Um die Buttons direkt zu einem Theme hinzuzufügen, fügen Sie den "
|
181 |
-
"folgenden Code an der gewünschten Stelle (wo Sie die Buttons angezeigt haben "
|
182 |
-
"wollen) in Ihrem Theme ein:"
|
183 |
|
184 |
#: inc/php/page.php:80
|
185 |
msgid "Enjoy your fancy social media follow buttons."
|
@@ -193,280 +155,162 @@ msgstr "Es ist ganz einfach!"
|
|
193 |
msgid "Note!"
|
194 |
msgstr "Achtung!"
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
|
198 |
-
|
199 |
-
"Wenn Sie mehr Optionen benötigen,
|
200 |
-
"hinzuzufügen."
|
201 |
|
202 |
-
#: inc/php/page.php:
|
203 |
msgid "Frequently Asked Questions"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/php/page.php:
|
207 |
-
msgid ""
|
208 |
-
"
|
209 |
-
"the answer is here."
|
210 |
-
msgstr ""
|
211 |
-
"Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre "
|
212 |
-
"Antwort dabei ist."
|
213 |
|
214 |
-
#: inc/php/page.php:
|
215 |
msgid "Will this plugin work on my WordPress.COM website?"
|
216 |
msgstr "Funktioniert dieses Plugin auf meiner WordPress.COM Webseite?"
|
217 |
|
218 |
-
#: inc/php/page.php:
|
219 |
-
msgid ""
|
220 |
-
"
|
221 |
-
"websites."
|
222 |
-
msgstr ""
|
223 |
-
"Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (WordPress.ORG) "
|
224 |
-
"Webseiten."
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
msgid "Can I use this plugin on my language?"
|
228 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
-
msgid ""
|
232 |
-
"Yes. This plugin is ready for translation and has already been translated into "
|
233 |
-
"several languages."
|
234 |
msgstr "Ja, dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
#, php-format
|
238 |
-
msgid ""
|
239 |
-
"If you want to help translate this plugin then please visit the %s. You can also "
|
240 |
-
"use the POT file, that is included and placed in the \"languages\" folder, in "
|
241 |
-
"order to create a translation PO file. Just send the PO file to me at the %s and I "
|
242 |
-
"will include this translation within the next plugin update."
|
243 |
msgstr ""
|
244 |
-
"Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, besuchen Sie die Seite "
|
245 |
-
"%s. Sie können auch die POT Datei, die Sie im \"languages\" Ordner finden, "
|
246 |
-
"verwenden, um eine PO Übersetzungsdatei zu erstellen. Senden Sie die übersetzte PO "
|
247 |
-
"Datei direkt an %s und ich werde die Übersetzung beim nächsten Plugin Update "
|
248 |
-
"hinzufügen."
|
249 |
|
250 |
-
#: inc/php/page.php:
|
251 |
-
msgid ""
|
252 |
-
"
|
253 |
-
"corrections!"
|
254 |
-
msgstr ""
|
255 |
-
"Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an "
|
256 |
-
"den Korrekturen mitwirken."
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
-
msgid ""
|
260 |
-
"
|
261 |
-
"community. Thanks for your contribution!"
|
262 |
-
msgstr ""
|
263 |
-
"Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der "
|
264 |
-
"Öffentlichkeit teilen. Danke für Ihre Mithilfe!"
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
msgid "How does it work?"
|
268 |
msgstr "Wie arbeitet das Plugin?"
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
-
msgid ""
|
272 |
-
"
|
273 |
-
"\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
274 |
-
msgstr ""
|
275 |
-
"Am Tab \"Einstellungen\" wählen Sie die gewünschten Einstellungen aus und klicken "
|
276 |
-
"den Button \"Änderungen speichern\". Viel Spaß mit den social media follow "
|
277 |
-
"buttons. Es ist ganz einfach!"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
msgid "Does this plugin requires any modification of the theme?"
|
281 |
msgstr "Benötigt das Plugin Veränderungen am Theme."
|
282 |
|
283 |
-
#: inc/php/page.php:
|
284 |
-
msgid ""
|
285 |
-
"
|
286 |
-
msgstr ""
|
287 |
-
"Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite "
|
288 |
-
"des Plugins."
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "Brauche ich HTML oder CCS Kenntnisse?"
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
-
msgid ""
|
296 |
-
"
|
297 |
-
"using an easy-to-use plugin settings page."
|
298 |
-
msgstr ""
|
299 |
-
"Absolut nicht. Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert "
|
300 |
-
"werden."
|
301 |
|
302 |
-
#: inc/php/page.php:
|
303 |
-
msgid ""
|
304 |
-
"
|
305 |
-
"be compressed?"
|
306 |
-
msgstr ""
|
307 |
-
"Was muss ich machen, wenn der Google PageSpeed Test sagt, dass Grafiken das Plugin "
|
308 |
-
"komprimiert werden müssen?"
|
309 |
|
310 |
-
#: inc/php/page.php:
|
311 |
-
msgid ""
|
312 |
-
"
|
313 |
-
"to find out what else can be done with the images in order to compress them even "
|
314 |
-
"better."
|
315 |
-
msgstr ""
|
316 |
-
"Die Grafiken, die innerhalb des Plugins verwendet werden, sind bereits "
|
317 |
-
"komprimiert. Gerne suche ich auch nach einer besseren Komprimierung, wenn es "
|
318 |
-
"benötigt wird."
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "It's not working. What could be wrong?"
|
322 |
msgstr "Es funktioniert nicht. Was könnte falsch sein?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
-
msgid ""
|
326 |
-
"
|
327 |
-
"for this is a web browser's cache. Every web browser stores a cache of the "
|
328 |
-
"websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
|
329 |
-
"load. This is called the browser's cache. Clearing your browser's cache may solve "
|
330 |
-
"the problem."
|
331 |
-
msgstr ""
|
332 |
-
"Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste "
|
333 |
-
"Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache "
|
334 |
-
"der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das "
|
335 |
-
"nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das "
|
336 |
-
"Problem behoben sein."
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
-
msgid ""
|
340 |
-
"It's impossible to tell what could be wrong exactly, but if you post a support "
|
341 |
-
"request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
|
342 |
-
"look and try to help out. Please include as much information as possible, "
|
343 |
-
"including a link to your website where the problem can be seen."
|
344 |
msgstr ""
|
345 |
-
"Es ist unmöglich genau festzustellen was falsch ist. Wenn Sie jedoch eine Support "
|
346 |
-
"Anfrage im Plugins Support Forum von WordPress.ORG stellen, helfe ich Ihnen gerne. "
|
347 |
-
"Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite "
|
348 |
-
"hinzu, wo das Problem auftritt."
|
349 |
|
350 |
-
#: inc/php/page.php:
|
351 |
-
msgid ""
|
352 |
-
"
|
353 |
-
"this plugin. Why is this?"
|
354 |
-
msgstr ""
|
355 |
-
"Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin "
|
356 |
-
"verwendet, zu bearbeiten. Warum ist das so?"
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
-
msgid ""
|
360 |
-
"
|
361 |
-
"the settings of the website. It could just be a cache, so please try to clear your "
|
362 |
-
"website's cache (may be you using a caching plugin, or some web service such as "
|
363 |
-
"the CloudFlare) and then the cache of your web browser. Also please try to re-"
|
364 |
-
"login to the website, this too can help."
|
365 |
-
msgstr ""
|
366 |
-
"Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das "
|
367 |
-
"Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein "
|
368 |
-
"Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen "
|
369 |
-
"(möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie "
|
370 |
-
"CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich "
|
371 |
-
"erneut auf der Webseite anzumelden, auch dies kann helfen."
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "Where to report bug if found?"
|
375 |
msgstr "Wo kann ich eine Fehler melden?"
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
#, php-format
|
379 |
-
msgid "Please visit
|
380 |
msgstr ""
|
381 |
-
"Besuchen Sie die %s zugehörige Plugin-Seite auf GitHub %s, um Fehler zu melden."
|
382 |
|
383 |
-
#: inc/php/page.php:
|
384 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
385 |
-
msgstr ""
|
386 |
-
"Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
387 |
|
388 |
-
#: inc/php/page.php:
|
389 |
#, php-format
|
390 |
-
msgid "Any suggestions are very welcome!
|
391 |
msgstr ""
|
392 |
-
"Alle Vorschläge sind willkommen! Bitte senden Sie mir eine E-Mail an % s. Vielen "
|
393 |
-
"Dank!"
|
394 |
|
395 |
-
#: inc/php/page.php:
|
396 |
msgid "I love this plugin! Can I help somehow?"
|
397 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
398 |
|
399 |
-
#: inc/php/page.php:
|
400 |
#, php-format
|
401 |
-
msgid ""
|
402 |
-
"
|
403 |
-
"on the donate button, and thank you!"
|
404 |
-
msgstr ""
|
405 |
-
"Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite "
|
406 |
-
"%s, klicken Sie auf den Spenden Button und Danke!"
|
407 |
|
408 |
-
#: inc/php/page.php:
|
409 |
msgid "My question wasn't answered here."
|
410 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
411 |
|
412 |
-
#: inc/php/page.php:
|
413 |
#, php-format
|
414 |
-
msgid ""
|
415 |
-
"You can ask your question on the plugin support page %s. But please keep in mind "
|
416 |
-
"that this plugin is free, and there is no a special support team, so I have no way "
|
417 |
-
"to answer everyone."
|
418 |
msgstr ""
|
419 |
-
"Sie können Ihre Frage auf der Plugin Support Seite %s stellen. Aber bitte bedenken "
|
420 |
-
"Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe ich "
|
421 |
-
"keine Möglichkeit jedem zu antworten."
|
422 |
|
423 |
-
#: inc/php/page.php:
|
424 |
msgid "Support Me"
|
425 |
msgstr "Unterstützen Sie mich"
|
426 |
|
427 |
-
#: inc/php/page.php:
|
428 |
msgid "Donate with PayPal"
|
429 |
msgstr "Spende mit PayPal"
|
430 |
|
431 |
-
#: inc/php/page.php:
|
432 |
#, php-format
|
433 |
-
msgid ""
|
434 |
-
"
|
435 |
-
"Studio %s."
|
436 |
-
msgstr ""
|
437 |
-
"Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space "
|
438 |
-
"X-Chimp Studio %s."
|
439 |
|
440 |
-
#: inc/php/page.php:
|
441 |
-
msgid ""
|
442 |
-
"
|
443 |
-
"really passionate about my work, I like what I'm doing and hope that you will be "
|
444 |
-
"enriched by my projects too."
|
445 |
-
msgstr ""
|
446 |
-
"Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort "
|
447 |
-
"machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, "
|
448 |
-
"dass Sie auch von meinen Projekten bereichert werden."
|
449 |
|
450 |
-
#: inc/php/page.php:
|
451 |
-
msgid ""
|
452 |
-
"
|
453 |
-
|
454 |
-
|
455 |
-
"income, so every little contribution helps cover my costs and lets me spend more "
|
456 |
-
"time building things for people like you to enjoy."
|
457 |
-
msgstr ""
|
458 |
-
"Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, "
|
459 |
-
"Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis "
|
460 |
-
"für mich ist, dass Sie sie tatsächlich verwenden. Aber ich bin ein unabhängiger "
|
461 |
-
"Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine "
|
462 |
-
"Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute "
|
463 |
-
"wie Sie zu gestalten."
|
464 |
-
|
465 |
-
#: inc/php/page.php:211
|
466 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
467 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
468 |
|
469 |
-
#: inc/php/page.php:
|
470 |
msgid "Thank you for your support!"
|
471 |
msgstr "Danke für Ihre Unterstützung!"
|
472 |
|
@@ -479,14 +323,8 @@ msgid "Buttons"
|
|
479 |
msgstr "Buttons"
|
480 |
|
481 |
#: inc/php/settings.php:27
|
482 |
-
msgid ""
|
483 |
-
"
|
484 |
-
"will lead directly to your profile pages. If you don't want to use any of the "
|
485 |
-
"following buttons, you can not fill them and then they do not appear."
|
486 |
-
msgstr ""
|
487 |
-
"Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des "
|
488 |
-
"sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder "
|
489 |
-
"leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
|
490 |
|
491 |
#: inc/php/settings.php:35
|
492 |
msgid "Display options"
|
@@ -526,9 +364,7 @@ msgstr "Tooltip"
|
|
526 |
|
527 |
#: inc/php/settings.php:54
|
528 |
msgid "Enable a tooltips with name of the social media above every button."
|
529 |
-
msgstr ""
|
530 |
-
"Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem "
|
531 |
-
"Button."
|
532 |
|
533 |
#: inc/php/settings.php:57
|
534 |
msgid "Icon size"
|
@@ -536,21 +372,15 @@ msgstr "Icon Grösse"
|
|
536 |
|
537 |
#: inc/php/settings.php:58
|
538 |
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
539 |
-
msgstr ""
|
540 |
-
"Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" "
|
541 |
-
"ein."
|
542 |
|
543 |
#: inc/php/settings.php:62
|
544 |
msgid "Margin"
|
545 |
msgstr "Rand"
|
546 |
|
547 |
#: inc/php/settings.php:63
|
548 |
-
msgid ""
|
549 |
-
"
|
550 |
-
"buttons bar."
|
551 |
-
msgstr ""
|
552 |
-
"Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social "
|
553 |
-
"media follow buttons bar\" ein."
|
554 |
|
555 |
#: inc/php/settings.php:68
|
556 |
msgid "Left"
|
@@ -577,12 +407,8 @@ msgid "Caption"
|
|
577 |
msgstr "Überschrift"
|
578 |
|
579 |
#: inc/php/settings.php:78
|
580 |
-
msgid ""
|
581 |
-
"
|
582 |
-
"before the toolbar."
|
583 |
-
msgstr ""
|
584 |
-
"Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. "
|
585 |
-
"Diese wird vor der Toolbar angezeigt."
|
586 |
|
587 |
#: inc/php/settings.php:89
|
588 |
msgid "Live Preview"
|
@@ -590,20 +416,13 @@ msgstr "Live Vorschau"
|
|
590 |
|
591 |
#: inc/php/settings.php:91
|
592 |
msgid "Click the \"Save changes\" button to update this preview."
|
593 |
-
msgstr ""
|
594 |
-
"Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
595 |
|
596 |
-
#: inc/php/settings.php:99 inc/php/sidebar.php:
|
597 |
-
msgid ""
|
598 |
-
"
|
599 |
-
"contribution helps cover my costs and lets me spend more time building things for "
|
600 |
-
"people like you to enjoy."
|
601 |
-
msgstr ""
|
602 |
-
"Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine "
|
603 |
-
"Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit "
|
604 |
-
"verbringen, Dinge für Leute wie Sie zu entwickeln."
|
605 |
|
606 |
-
#: inc/php/settings.php:106 inc/php/sidebar.php:
|
607 |
msgid "Thanks for your support!"
|
608 |
msgstr "Danke für Ihre Unterstützung!"
|
609 |
|
@@ -612,18 +431,14 @@ msgid "About"
|
|
612 |
msgstr "Über"
|
613 |
|
614 |
#: inc/php/sidebar.php:18
|
615 |
-
msgid ""
|
616 |
-
"
|
617 |
-
"place of your website."
|
618 |
-
msgstr ""
|
619 |
-
"Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow "
|
620 |
-
"buttons bar\" überall auf Ihrer Webseite hinzufügen."
|
621 |
|
622 |
-
#: inc/php/sidebar.php:
|
623 |
msgid "Help"
|
624 |
msgstr "Hilfe"
|
625 |
|
626 |
-
#: inc/php/sidebar.php:
|
627 |
msgid "If you have a question, please read the information in the FAQ section."
|
628 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
629 |
|
@@ -636,12 +451,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
636 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
637 |
|
638 |
#. Description of the plugin/theme
|
639 |
-
msgid ""
|
640 |
-
"
|
641 |
-
"your profiles) to any place of your WordPress website."
|
642 |
-
msgstr ""
|
643 |
-
"Fügt eine Smart Bar mit social media follow buttons an eine beliebige Stelle auf "
|
644 |
-
"Ihrer WordPress Webseite."
|
645 |
|
646 |
#. Author of the plugin/theme
|
647 |
msgid "Arthur Gareginyan"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2018-01-19 15:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-01-20 07:37+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Generator: Poedit 1.8.7\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
38 |
msgstr "Geben Sie den Link zu Ihrer %s Profil Seite ein"
|
39 |
|
40 |
#: inc/php/list.php:1
|
41 |
+
msgid "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
42 |
+
msgstr "Geben Sie Ihren Skype Namen mit Prefix <b>skype:</b> und suffix <b>?call</b>, oder <b>?add</b>, oder <b>?chat</b>, oder <b>?userinfo</b> für Ihr Profil ein"
|
|
|
|
|
|
|
|
|
43 |
|
44 |
#: inc/php/list.php:1
|
45 |
msgid "Enter the link to your personal website"
|
58 |
msgstr "Geben Sie den Link zu Ihrem RSS Feed ein"
|
59 |
|
60 |
#: inc/php/messages.php:26
|
61 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
62 |
+
msgstr "Hallo! Ich bin Space X-Chimp, der Autor dieses plugins."
|
63 |
|
64 |
#: inc/php/messages.php:28
|
65 |
#, php-format
|
66 |
+
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
67 |
+
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
|
|
68 |
|
69 |
#: inc/php/messages.php:68
|
70 |
msgid "You have installed an old version of this plugin."
|
76 |
|
77 |
#: inc/php/page.php:30
|
78 |
#, php-format
|
79 |
+
msgid "by %s Space X-Chimp %s"
|
80 |
+
msgstr "by %s Space X-Chimp %s"
|
81 |
|
82 |
#: inc/php/page.php:36
|
83 |
msgid "Version"
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "F.A.Q."
|
93 |
|
94 |
+
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:30
|
95 |
msgid "Support"
|
96 |
msgstr "Support"
|
97 |
|
104 |
msgstr "Anleitung"
|
105 |
|
106 |
#: inc/php/page.php:65
|
107 |
+
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
108 |
+
msgstr "Um die \"social media follow buttons bar\" am Front-End Ihrer Webseite anzuzeigen, befolgen Sie die folgenden Schritte:"
|
|
|
|
|
|
|
|
|
109 |
|
110 |
#: inc/php/page.php:67
|
111 |
msgid "Go to the \"Settings\" tab."
|
124 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
125 |
|
126 |
#: inc/php/page.php:71
|
127 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\"). Just choose the one that is more suitable for your case."
|
128 |
+
msgstr "Jetzt haben Sie unterschiedliche Möglichkeiten um die \"social media follow buttons bar\" (im Folgenden \"buttons\") anzuzeigen. Wählen Sie die, die für Sie am Besten passt."
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
#: inc/php/page.php:72
|
131 |
+
msgid "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
132 |
+
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\"."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
#: inc/php/page.php:73
|
135 |
+
msgid "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
136 |
+
msgstr "<b>B)</b> Um die Buttons innerhalb eines Posts/einer Seite anzuzeigen, benutzen Sie den folgenden Shortcode:"
|
|
|
|
|
|
|
|
|
137 |
|
138 |
#: inc/php/page.php:75
|
139 |
+
msgid "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
140 |
+
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:"
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
#: inc/php/page.php:77
|
143 |
+
msgid "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
144 |
+
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:"
|
|
|
|
|
|
|
|
|
|
|
145 |
|
146 |
#: inc/php/page.php:80
|
147 |
msgid "Enjoy your fancy social media follow buttons."
|
155 |
msgid "Note!"
|
156 |
msgstr "Achtung!"
|
157 |
|
158 |
+
#: inc/php/page.php:83
|
159 |
+
#, php-format
|
160 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
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:97
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/page.php:101
|
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:123
|
172 |
msgid "Will this plugin work on my WordPress.COM website?"
|
173 |
msgstr "Funktioniert dieses Plugin auf meiner WordPress.COM Webseite?"
|
174 |
|
175 |
+
#: inc/php/page.php:124
|
176 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
177 |
+
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (WordPress.ORG) Webseiten."
|
|
|
|
|
|
|
|
|
178 |
|
179 |
+
#: inc/php/page.php:126
|
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:127
|
184 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
|
|
|
|
185 |
msgstr "Ja, dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
186 |
|
187 |
+
#: inc/php/page.php:129
|
188 |
#, php-format
|
189 |
+
msgid "If you want to help translate this plugin then please visit the %s. 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 at the %s and we will include this translation within the next plugin update."
|
|
|
|
|
|
|
|
|
190 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
#: inc/php/page.php:134
|
193 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
194 |
+
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
|
|
|
|
|
|
|
|
195 |
|
196 |
+
#: inc/php/page.php:135
|
197 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
198 |
+
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen. Danke für Ihre Mithilfe!"
|
|
|
|
|
|
|
|
|
199 |
|
200 |
+
#: inc/php/page.php:137
|
201 |
msgid "How does it work?"
|
202 |
msgstr "Wie arbeitet das Plugin?"
|
203 |
|
204 |
+
#: inc/php/page.php:138
|
205 |
+
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!"
|
206 |
+
msgstr "Am Tab \"Einstellungen\" wählen Sie die gewünschten Einstellungen aus und klicken den Button \"Änderungen speichern\". Viel Spaß mit den social media follow buttons. Es ist ganz einfach!"
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
+
#: inc/php/page.php:140
|
209 |
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr "Benötigt das Plugin Veränderungen am Theme."
|
211 |
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
|
|
|
|
|
|
215 |
|
216 |
+
#: inc/php/page.php:143
|
217 |
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr "Brauche ich HTML oder CCS Kenntnisse?"
|
219 |
|
220 |
+
#: inc/php/page.php:144
|
221 |
+
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
222 |
+
msgstr "Absolut nicht. Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden."
|
|
|
|
|
|
|
|
|
223 |
|
224 |
+
#: inc/php/page.php:146
|
225 |
+
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
226 |
+
msgstr "Was muss ich machen, wenn der Google PageSpeed Test sagt, dass Grafiken das Plugin komprimiert werden müssen?"
|
|
|
|
|
|
|
|
|
227 |
|
228 |
+
#: inc/php/page.php:147
|
229 |
+
msgid "The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better."
|
230 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
|
232 |
+
#: inc/php/page.php:149
|
233 |
msgid "It's not working. What could be wrong?"
|
234 |
msgstr "Es funktioniert nicht. Was könnte falsch sein?"
|
235 |
|
236 |
+
#: inc/php/page.php:150
|
237 |
+
msgid "As with every plugin, it's possible that things don't work. 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."
|
238 |
+
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
|
240 |
+
#: inc/php/page.php:151
|
241 |
+
msgid "It's impossible to tell what could be wrong exactly, but 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."
|
|
|
|
|
|
|
|
|
242 |
msgstr ""
|
|
|
|
|
|
|
|
|
243 |
|
244 |
+
#: inc/php/page.php:153
|
245 |
+
msgid "The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?"
|
246 |
+
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
|
|
|
|
|
|
|
|
247 |
|
248 |
+
#: inc/php/page.php:154
|
249 |
+
msgid "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."
|
250 |
+
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. 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. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "Wo kann ich eine Fehler melden?"
|
255 |
|
256 |
+
#: inc/php/page.php:158
|
257 |
#, php-format
|
258 |
+
msgid "Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
259 |
msgstr ""
|
|
|
260 |
|
261 |
+
#: inc/php/page.php:164
|
262 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
263 |
+
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
|
|
264 |
|
265 |
+
#: inc/php/page.php:166
|
266 |
#, php-format
|
267 |
+
msgid "Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr ""
|
|
|
|
|
269 |
|
270 |
+
#: inc/php/page.php:172
|
271 |
msgid "I love this plugin! Can I help somehow?"
|
272 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
273 |
|
274 |
+
#: inc/php/page.php:174
|
275 |
#, php-format
|
276 |
+
msgid "Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!"
|
277 |
+
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
|
|
|
|
|
|
|
|
278 |
|
279 |
+
#: inc/php/page.php:180
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
282 |
|
283 |
+
#: inc/php/page.php:182
|
284 |
#, php-format
|
285 |
+
msgid "You can ask your question on %s this page %s. 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."
|
|
|
|
|
|
|
286 |
msgstr ""
|
|
|
|
|
|
|
287 |
|
288 |
+
#: inc/php/page.php:196
|
289 |
msgid "Support Me"
|
290 |
msgstr "Unterstützen Sie mich"
|
291 |
|
292 |
+
#: inc/php/page.php:204 inc/php/settings.php:104 inc/php/sidebar.php:37
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Spende mit PayPal"
|
295 |
|
296 |
+
#: inc/php/page.php:209
|
297 |
#, php-format
|
298 |
+
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
299 |
+
msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
|
|
|
|
|
|
|
|
300 |
|
301 |
+
#: inc/php/page.php:217
|
302 |
+
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."
|
303 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
|
305 |
+
#: inc/php/page.php:218
|
306 |
+
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
307 |
+
msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
|
308 |
+
|
309 |
+
#: inc/php/page.php:219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
311 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
312 |
|
313 |
+
#: inc/php/page.php:220
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "Danke für Ihre Unterstützung!"
|
316 |
|
323 |
msgstr "Buttons"
|
324 |
|
325 |
#: inc/php/settings.php:27
|
326 |
+
msgid "Just fill in the required 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."
|
327 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
#: inc/php/settings.php:35
|
330 |
msgid "Display options"
|
364 |
|
365 |
#: inc/php/settings.php:54
|
366 |
msgid "Enable a tooltips with name of the social media above every button."
|
367 |
+
msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
|
|
|
|
|
368 |
|
369 |
#: inc/php/settings.php:57
|
370 |
msgid "Icon size"
|
372 |
|
373 |
#: inc/php/settings.php:58
|
374 |
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
375 |
+
msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
|
|
|
|
376 |
|
377 |
#: inc/php/settings.php:62
|
378 |
msgid "Margin"
|
379 |
msgstr "Rand"
|
380 |
|
381 |
#: inc/php/settings.php:63
|
382 |
+
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
383 |
+
msgstr "Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
|
|
|
|
|
|
|
|
384 |
|
385 |
#: inc/php/settings.php:68
|
386 |
msgid "Left"
|
407 |
msgstr "Überschrift"
|
408 |
|
409 |
#: inc/php/settings.php:78
|
410 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
411 |
+
msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
|
|
|
|
|
|
|
|
|
412 |
|
413 |
#: inc/php/settings.php:89
|
414 |
msgid "Live Preview"
|
416 |
|
417 |
#: inc/php/settings.php:91
|
418 |
msgid "Click the \"Save changes\" button to update this preview."
|
419 |
+
msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
|
|
420 |
|
421 |
+
#: inc/php/settings.php:99 inc/php/sidebar.php:32
|
422 |
+
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
423 |
+
msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
|
425 |
+
#: inc/php/settings.php:106 inc/php/sidebar.php:39
|
426 |
msgid "Thanks for your support!"
|
427 |
msgstr "Danke für Ihre Unterstützung!"
|
428 |
|
431 |
msgstr "Über"
|
432 |
|
433 |
#: inc/php/sidebar.php:18
|
434 |
+
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
435 |
+
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
|
|
|
|
|
|
|
|
|
436 |
|
437 |
+
#: inc/php/sidebar.php:23
|
438 |
msgid "Help"
|
439 |
msgstr "Hilfe"
|
440 |
|
441 |
+
#: inc/php/sidebar.php:25
|
442 |
msgid "If you have a question, please read the information in the FAQ section."
|
443 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
444 |
|
451 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
452 |
|
453 |
#. Description of the plugin/theme
|
454 |
+
msgid "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website."
|
455 |
+
msgstr "Fügt eine Smart Bar mit social media follow buttons an eine beliebige Stelle auf Ihrer WordPress Webseite."
|
|
|
|
|
|
|
|
|
456 |
|
457 |
#. Author of the plugin/theme
|
458 |
msgid "Arthur Gareginyan"
|
languages/social-media-buttons-toolbar-es_ES.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -12,13 +12,11 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
-
"X-Generator: Poedit 1.8.
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
20 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
21 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
@@ -40,12 +38,8 @@ msgid "Enter the link to your %s profile page"
|
|
40 |
msgstr "Ingresa el enlace a tu página de perfil de %s"
|
41 |
|
42 |
#: inc/php/list.php:1
|
43 |
-
msgid ""
|
44 |
-
"
|
45 |
-
"add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
46 |
-
msgstr ""
|
47 |
-
"Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
|
48 |
-
"add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
|
49 |
|
50 |
#: inc/php/list.php:1
|
51 |
msgid "Enter the link to your personal website"
|
@@ -64,26 +58,26 @@ msgid "Enter the link to your RSS Feed"
|
|
64 |
msgstr "Ingresa el enlace a tu Feed de RSS"
|
65 |
|
66 |
#: inc/php/messages.php:26
|
67 |
-
msgid "Hello.
|
68 |
-
msgstr "Hola! Yo soy
|
69 |
|
70 |
#: inc/php/messages.php:28
|
71 |
#, php-format
|
72 |
-
msgid "Thank you for installing
|
73 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
74 |
|
75 |
-
#: inc/php/messages.php:
|
76 |
msgid "You have installed an old version of this plugin."
|
77 |
msgstr "Has instalado una versión antigua de este complemento."
|
78 |
|
79 |
-
#: inc/php/messages.php:
|
80 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
81 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
82 |
|
83 |
#: inc/php/page.php:30
|
84 |
#, php-format
|
85 |
-
msgid "by %s Space X-Chimp
|
86 |
-
msgstr "por %s Space X-Chimp
|
87 |
|
88 |
#: inc/php/page.php:36
|
89 |
msgid "Version"
|
@@ -97,7 +91,7 @@ msgstr "Uso"
|
|
97 |
msgid "F.A.Q."
|
98 |
msgstr "Preguntas ?"
|
99 |
|
100 |
-
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:
|
101 |
msgid "Support"
|
102 |
msgstr "Soporte"
|
103 |
|
@@ -110,9 +104,7 @@ msgid "Usage Instructions"
|
|
110 |
msgstr "Instrucciones de uso"
|
111 |
|
112 |
#: inc/php/page.php:65
|
113 |
-
msgid ""
|
114 |
-
"To display the social media follow buttons bar on the front end of your website, "
|
115 |
-
"simply follow these steps:"
|
116 |
msgstr ""
|
117 |
|
118 |
#: inc/php/page.php:67
|
@@ -132,39 +124,23 @@ msgid "Click the \"Save changes\" button."
|
|
132 |
msgstr "Clic en el botón \"Guardar Cambios\"."
|
133 |
|
134 |
#: inc/php/page.php:71
|
135 |
-
msgid ""
|
136 |
-
"Now you have several methods for display the social media follow buttons bar "
|
137 |
-
"(further just \"buttons\"). Just choose the one that is more suitable for your "
|
138 |
-
"case."
|
139 |
msgstr ""
|
140 |
|
141 |
#: inc/php/page.php:72
|
142 |
-
msgid ""
|
143 |
-
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
|
144 |
-
"just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
|
145 |
-
"\"Display options\", then click the \"Save changes\" button."
|
146 |
msgstr ""
|
147 |
|
148 |
#: inc/php/page.php:73
|
149 |
-
msgid ""
|
150 |
-
"<b>B)</b>
|
151 |
-
"following shortcode:"
|
152 |
-
msgstr ""
|
153 |
-
"<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
|
154 |
-
"Páginas de Wordpress usa el siguiente shortcode:"
|
155 |
|
156 |
#: inc/php/page.php:75
|
157 |
-
msgid ""
|
158 |
-
"<b>C)</b>
|
159 |
-
"\"Text\" widget and add inside it the following shortcode:"
|
160 |
-
msgstr ""
|
161 |
-
"<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
|
162 |
-
"u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
163 |
|
164 |
#: inc/php/page.php:77
|
165 |
-
msgid ""
|
166 |
-
"<b>D)</b> For add the buttons directly to a theme files, just add the following "
|
167 |
-
"code to needed place (where you want to display the buttons) in your theme files:"
|
168 |
msgstr ""
|
169 |
|
170 |
#: inc/php/page.php:80
|
@@ -179,269 +155,162 @@ msgstr "¡Es así de simple!"
|
|
179 |
msgid "Note!"
|
180 |
msgstr "¡Nota!"
|
181 |
|
182 |
-
#: inc/php/page.php:
|
183 |
-
|
184 |
-
|
|
|
185 |
|
186 |
-
#: inc/php/page.php:
|
187 |
msgid "Frequently Asked Questions"
|
188 |
msgstr "Preguntas Frecuentes"
|
189 |
|
190 |
-
#: inc/php/page.php:
|
191 |
-
msgid ""
|
192 |
-
"
|
193 |
-
"the answer is here."
|
194 |
-
msgstr ""
|
195 |
-
"Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, "
|
196 |
-
"para ver si la respuesta está aquí."
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid "Will this plugin work on my WordPress.COM website?"
|
200 |
msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
|
201 |
|
202 |
-
#: inc/php/page.php:
|
203 |
-
msgid ""
|
204 |
-
"
|
205 |
-
"websites."
|
206 |
-
msgstr ""
|
207 |
-
"Lo sentimos, este complemento está disponible para su uso solo en sitios web "
|
208 |
-
"alojados (WordPress.ORG)."
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
msgid "Can I use this plugin on my language?"
|
212 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
213 |
|
214 |
-
#: inc/php/page.php:
|
215 |
-
msgid ""
|
216 |
-
"
|
217 |
-
"several languages."
|
218 |
-
msgstr ""
|
219 |
-
"Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios "
|
220 |
-
"idiomas."
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
#, php-format
|
224 |
-
msgid ""
|
225 |
-
"
|
226 |
-
"use the POT file, that is included and placed in the \"languages\" folder, in "
|
227 |
-
"order to create a translation PO file. Just send the PO file to me at the %s and I "
|
228 |
-
"will include this translation within the next plugin update."
|
229 |
-
msgstr ""
|
230 |
-
"Si quieres ayudar a traducir este complemento, visita el %s. También puede "
|
231 |
-
"utilizar el archivo POT, incluido y colocado en la carpeta \"languages\", para "
|
232 |
-
"crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e "
|
233 |
-
"incluiré esta traducción en la siguiente actualización del complemento."
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
-
msgid ""
|
237 |
-
"
|
238 |
-
"corrections!"
|
239 |
-
msgstr ""
|
240 |
-
"Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a "
|
241 |
-
"contribuir correcciones!"
|
242 |
|
243 |
-
#: inc/php/page.php:
|
244 |
-
msgid ""
|
245 |
-
"
|
246 |
-
"community. Thanks for your contribution!"
|
247 |
-
msgstr ""
|
248 |
-
"Muchos de los usuarios de este complemento estarían encantados si compartes tu "
|
249 |
-
"traducción con la comunidad. ¡Gracias por tu contribución!"
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid "How does it work?"
|
253 |
msgstr "¿Como funciona?"
|
254 |
|
255 |
-
#: inc/php/page.php:
|
256 |
-
msgid ""
|
257 |
-
"On the \"Settings\" tab, select the desired settings and click the \"Save changes"
|
258 |
-
"\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: inc/php/page.php:
|
262 |
msgid "Does this plugin requires any modification of the theme?"
|
263 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
-
msgid ""
|
267 |
-
"
|
268 |
-
msgstr ""
|
269 |
-
"Absolutamente NO. Este complemento se puede configurar completamente desde su "
|
270 |
-
"página de configuración."
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
msgid "Does this require any knowledge of HTML or CSS?"
|
274 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
-
msgid ""
|
278 |
-
"
|
279 |
-
"using an easy-to-use plugin settings page."
|
280 |
-
msgstr ""
|
281 |
-
"Absolutamente no. Este complemento se puede configurar sin conocimientos de HTML o "
|
282 |
-
"CSS, utilizando su página de configuración la cual es fácil de usar."
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid ""
|
286 |
-
"What I need to do if the Google PageSpeed test says that this plugin images must "
|
287 |
-
"be compressed?"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
-
msgid ""
|
292 |
-
"The images that uses in this plugin are already compressed, but I will do my best "
|
293 |
-
"to find out what else can be done with the images in order to compress them even "
|
294 |
-
"better."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/page.php:
|
298 |
msgid "It's not working. What could be wrong?"
|
299 |
msgstr "No funciona. ¿Qué podría estar mal?"
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
-
msgid ""
|
303 |
-
"
|
304 |
-
"for this is a web browser's cache. Every web browser stores a cache of the "
|
305 |
-
"websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
|
306 |
-
"load. This is called the browser's cache. Clearing your browser's cache may solve "
|
307 |
-
"the problem."
|
308 |
-
msgstr ""
|
309 |
-
"Como con todos los complementos, es posible que las cosas no funcionen. La razón "
|
310 |
-
"más común para esto es la caché de un navegador web. Cada navegador web almacena "
|
311 |
-
"una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el "
|
312 |
-
"uso del ancho de banda y la carga del servidor. Esto se denomina caché del "
|
313 |
-
"navegador. Limpiar la caché del navegador puede resolver el problema."
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
-
msgid ""
|
317 |
-
"
|
318 |
-
"request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
|
319 |
-
"look and try to help out. Please include as much information as possible, "
|
320 |
-
"including a link to your website where the problem can be seen."
|
321 |
-
msgstr ""
|
322 |
-
"Es imposible decir exactamente lo que podría estar mal, pero si publicas una "
|
323 |
-
"solicitud de soporte en el foro de soporte del complemento en WordPress.org, "
|
324 |
-
"estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta "
|
325 |
-
"información como sea posible, incluyendo un enlace a tu sitio web donde se pueda "
|
326 |
-
"ver el problema."
|
327 |
|
328 |
-
#: inc/php/page.php:
|
329 |
-
msgid ""
|
330 |
-
"
|
331 |
-
"this plugin. Why is this?"
|
332 |
-
msgstr ""
|
333 |
-
"La última actualización de WordPress me impide editar mi sitio web que está "
|
334 |
-
"utilizando este complemento. ¿Porqué sucede esto?"
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
-
msgid ""
|
338 |
-
"
|
339 |
-
"the settings of the website. It could just be a cache, so please try to clear your "
|
340 |
-
"website's cache (may be you using a caching plugin, or some web service such as "
|
341 |
-
"the CloudFlare) and then the cache of your web browser. Also please try to re-"
|
342 |
-
"login to the website, this too can help."
|
343 |
-
msgstr ""
|
344 |
-
"Este complemento no puede causar este problema. Lo más probable es que el problema "
|
345 |
-
"esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así "
|
346 |
-
"que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento "
|
347 |
-
"de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador "
|
348 |
-
"web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
349 |
|
350 |
-
#: inc/php/page.php:
|
351 |
msgid "Where to report bug if found?"
|
352 |
msgstr "¿Dónde informar el error si se encuentra?"
|
353 |
|
354 |
-
#: inc/php/page.php:
|
355 |
#, php-format
|
356 |
-
msgid "Please visit
|
357 |
-
msgstr "
|
358 |
|
359 |
-
#: inc/php/page.php:
|
360 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
361 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
362 |
|
363 |
-
#: inc/php/page.php:
|
364 |
#, php-format
|
365 |
-
msgid "Any suggestions are very welcome!
|
366 |
msgstr ""
|
367 |
-
"¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo electrónico a "
|
368 |
-
"%s. ¡Muchas Gracias!"
|
369 |
|
370 |
-
#: inc/php/page.php:
|
371 |
msgid "I love this plugin! Can I help somehow?"
|
372 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
373 |
|
374 |
-
#: inc/php/page.php:
|
375 |
#, php-format
|
376 |
-
msgid ""
|
377 |
-
"
|
378 |
-
"on the donate button, and thank you!"
|
379 |
-
msgstr ""
|
380 |
-
"Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi "
|
381 |
-
"sitio web %s, has clic en el botón DONAR y gracias!"
|
382 |
|
383 |
-
#: inc/php/page.php:
|
384 |
msgid "My question wasn't answered here."
|
385 |
msgstr "Mi pregunta no fue contestada aquí."
|
386 |
|
387 |
-
#: inc/php/page.php:
|
388 |
#, php-format
|
389 |
-
msgid ""
|
390 |
-
"
|
391 |
-
"that this plugin is free, and there is no a special support team, so I have no way "
|
392 |
-
"to answer everyone."
|
393 |
-
msgstr ""
|
394 |
-
"Puede hacer tu pregunta en la página de soporte del complementos %s. Pero ten en "
|
395 |
-
"cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, "
|
396 |
-
"así que no tengo forma de responder a todos."
|
397 |
|
398 |
-
#: inc/php/page.php:
|
399 |
msgid "Support Me"
|
400 |
msgstr "Apoyarme!"
|
401 |
|
402 |
-
#: inc/php/page.php:
|
403 |
msgid "Donate with PayPal"
|
404 |
msgstr "Donar con PayPal"
|
405 |
|
406 |
-
#: inc/php/page.php:
|
407 |
#, php-format
|
408 |
-
msgid ""
|
409 |
-
"
|
410 |
-
"Studio %s."
|
411 |
-
msgstr ""
|
412 |
-
"¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp "
|
413 |
-
"Studio %s."
|
414 |
|
415 |
-
#: inc/php/page.php:
|
416 |
-
msgid ""
|
417 |
-
"
|
418 |
-
"really passionate about my work, I like what I'm doing and hope that you will be "
|
419 |
-
"enriched by my projects too."
|
420 |
-
msgstr ""
|
421 |
-
"Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy "
|
422 |
-
"realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que "
|
423 |
-
"tú también te enriquezcas con mis proyectos."
|
424 |
|
425 |
-
#: inc/php/page.php:
|
426 |
-
msgid ""
|
427 |
-
"
|
428 |
-
|
429 |
-
|
430 |
-
"income, so every little contribution helps cover my costs and lets me spend more "
|
431 |
-
"time building things for people like you to enjoy."
|
432 |
-
msgstr ""
|
433 |
-
"Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y "
|
434 |
-
"otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son "
|
435 |
-
"útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador "
|
436 |
-
"independiente, sin un ingreso regular, por lo que cada pequeña contribución me "
|
437 |
-
"ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que "
|
438 |
-
"la gente como tú lo disfrute."
|
439 |
-
|
440 |
-
#: inc/php/page.php:211
|
441 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
442 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
443 |
|
444 |
-
#: inc/php/page.php:
|
445 |
msgid "Thank you for your support!"
|
446 |
msgstr "¡Gracias por tu apoyo!"
|
447 |
|
@@ -454,14 +323,8 @@ msgid "Buttons"
|
|
454 |
msgstr "Botones"
|
455 |
|
456 |
#: inc/php/settings.php:27
|
457 |
-
msgid ""
|
458 |
-
"
|
459 |
-
"will lead directly to your profile pages. If you don't want to use any of the "
|
460 |
-
"following buttons, you can not fill them and then they do not appear."
|
461 |
-
msgstr ""
|
462 |
-
"Sólo llena los campos requeridos para hacer los botones. Los botones de cada red "
|
463 |
-
"social conducirán directamente a tu página de perfil en esa red. Si no quieres "
|
464 |
-
"usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
465 |
|
466 |
#: inc/php/settings.php:35
|
467 |
msgid "Display options"
|
@@ -509,20 +372,15 @@ msgstr "Tamaño de ícono"
|
|
509 |
|
510 |
#: inc/php/settings.php:58
|
511 |
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
512 |
-
msgstr ""
|
513 |
-
"Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
514 |
|
515 |
#: inc/php/settings.php:62
|
516 |
msgid "Margin"
|
517 |
msgstr "Margen"
|
518 |
|
519 |
#: inc/php/settings.php:63
|
520 |
-
msgid ""
|
521 |
-
"
|
522 |
-
"buttons bar."
|
523 |
-
msgstr ""
|
524 |
-
"Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social "
|
525 |
-
"Media."
|
526 |
|
527 |
#: inc/php/settings.php:68
|
528 |
msgid "Left"
|
@@ -549,12 +407,8 @@ msgid "Caption"
|
|
549 |
msgstr "Leyenda"
|
550 |
|
551 |
#: inc/php/settings.php:78
|
552 |
-
msgid ""
|
553 |
-
"
|
554 |
-
"before the toolbar."
|
555 |
-
msgstr ""
|
556 |
-
"Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
|
557 |
-
"la barra de botones."
|
558 |
|
559 |
#: inc/php/settings.php:89
|
560 |
msgid "Live Preview"
|
@@ -564,17 +418,11 @@ msgstr "Vista Previa"
|
|
564 |
msgid "Click the \"Save changes\" button to update this preview."
|
565 |
msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
|
566 |
|
567 |
-
#: inc/php/settings.php:99 inc/php/sidebar.php:
|
568 |
-
msgid ""
|
569 |
-
"
|
570 |
-
"contribution helps cover my costs and lets me spend more time building things for "
|
571 |
-
"people like you to enjoy."
|
572 |
-
msgstr ""
|
573 |
-
"Soy un desarrollador independiente, sin un ingreso regular, por lo que cada "
|
574 |
-
"pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo "
|
575 |
-
"construyendo cosas para que personas como tú las disfruten."
|
576 |
|
577 |
-
#: inc/php/settings.php:106 inc/php/sidebar.php:
|
578 |
msgid "Thanks for your support!"
|
579 |
msgstr "¡Gracias por tu apoyo!"
|
580 |
|
@@ -583,21 +431,16 @@ msgid "About"
|
|
583 |
msgstr "Acerca de"
|
584 |
|
585 |
#: inc/php/sidebar.php:18
|
586 |
-
msgid ""
|
587 |
-
"
|
588 |
-
"place of your website."
|
589 |
-
msgstr ""
|
590 |
-
"Este plugin te permite añadir fácilmente una barra de botones de social media en "
|
591 |
-
"cualquier parte de tu sitio web."
|
592 |
|
593 |
-
#: inc/php/sidebar.php:
|
594 |
msgid "Help"
|
595 |
msgstr "Ayuda"
|
596 |
|
597 |
-
#: inc/php/sidebar.php:
|
598 |
msgid "If you have a question, please read the information in the FAQ section."
|
599 |
-
msgstr ""
|
600 |
-
"Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
601 |
|
602 |
#. Plugin Name of the plugin/theme
|
603 |
msgid "Social Media Follow Buttons Bar"
|
@@ -608,13 +451,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
608 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
609 |
|
610 |
#. Description of the plugin/theme
|
611 |
-
msgid ""
|
612 |
-
"
|
613 |
-
"your profiles) to any place of your WordPress website."
|
614 |
-
msgstr ""
|
615 |
-
"Añade fácilmente una barra inteligente con botones de social media (no para "
|
616 |
-
"compartir, sólo para enlazar a tus perfiles sociales) en cualquier parte tu sitio "
|
617 |
-
"web hecho en Wordpress."
|
618 |
|
619 |
#. Author of the plugin/theme
|
620 |
msgid "Arthur Gareginyan"
|
@@ -623,335 +461,3 @@ msgstr "Arthur Gareginyan"
|
|
623 |
#. Author URI of the plugin/theme
|
624 |
msgid "https://www.arthurgareginyan.com"
|
625 |
msgstr "https://www.arthurgareginyan.com"
|
626 |
-
|
627 |
-
#~ msgid "by %s Arthur Gareginyan %s"
|
628 |
-
#~ msgstr "por %s Arthur Gareginyan %s"
|
629 |
-
|
630 |
-
#~ msgid "Author"
|
631 |
-
#~ msgstr "Autor"
|
632 |
-
|
633 |
-
#~ msgid "Enter the link to your Facebook profile page"
|
634 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Facebook"
|
635 |
-
|
636 |
-
#~ msgid "Enter the link to your Twitter profile page"
|
637 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Twitter"
|
638 |
-
|
639 |
-
#~ msgid "Enter the link to your Instagram profile page"
|
640 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Instagram"
|
641 |
-
|
642 |
-
#~ msgid "Enter the link to your Google+ profile page"
|
643 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Google+"
|
644 |
-
|
645 |
-
#~ msgid "Enter the link to your YouTube profile page"
|
646 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Youtube"
|
647 |
-
|
648 |
-
#~ msgid "Enter the link to your YouTube Gaming profile page"
|
649 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
|
650 |
-
|
651 |
-
#~ msgid "Enter the link to your Google Play profile page"
|
652 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Google Play"
|
653 |
-
|
654 |
-
#~ msgid "Enter the link to your iTunes profile page"
|
655 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de iTunes"
|
656 |
-
|
657 |
-
#~ msgid "Enter the link to your Apple Music profile page"
|
658 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Apple Music"
|
659 |
-
|
660 |
-
#~ msgid "Enter the link to your Periscope profile page"
|
661 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Periscope"
|
662 |
-
|
663 |
-
#~ msgid "Enter the link to your Vimeo profile page"
|
664 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
|
665 |
-
|
666 |
-
#~ msgid "Enter the link to your Blogger profile page"
|
667 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Blogger"
|
668 |
-
|
669 |
-
#~ msgid "Enter the link to your Buzzsprout profile page"
|
670 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
|
671 |
-
|
672 |
-
#~ msgid "Enter the link to your LiveJournal profile page"
|
673 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
|
674 |
-
|
675 |
-
#~ msgid "Enter the link to your Reddit profile page"
|
676 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Reddit"
|
677 |
-
|
678 |
-
#~ msgid "Enter the link to your LinkedIn profile page"
|
679 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
|
680 |
-
|
681 |
-
#~ msgid "Enter the link to your Diaspora profile page"
|
682 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
|
683 |
-
|
684 |
-
#~ msgid "Enter the link to your DeviantArt profile page"
|
685 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
|
686 |
-
|
687 |
-
#~ msgid "Enter the link to your XING profile page"
|
688 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de XING"
|
689 |
-
|
690 |
-
#~ msgid "Enter the link to your Pinterest profile page"
|
691 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
|
692 |
-
|
693 |
-
#~ msgid "Enter the link to your Flickr profile page"
|
694 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Flickr"
|
695 |
-
|
696 |
-
#~ msgid "Enter the link to your Tumblr profile page"
|
697 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
|
698 |
-
|
699 |
-
#~ msgid "Enter the link to your Snapchat profile page"
|
700 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
|
701 |
-
|
702 |
-
#~ msgid "Enter the link to your Twitch profile page"
|
703 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Twitch"
|
704 |
-
|
705 |
-
#~ msgid "Enter the link to your Patreon profile page"
|
706 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Patreon"
|
707 |
-
|
708 |
-
#~ msgid "Enter the link to your IMDb profile page"
|
709 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de IMDb"
|
710 |
-
|
711 |
-
#~ msgid "Enter the link to your SoundCloud profile page"
|
712 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
|
713 |
-
|
714 |
-
#~ msgid "Enter the link to your Plug.dj profile page"
|
715 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
|
716 |
-
|
717 |
-
#~ msgid "Enter the link to your Spotify profile page"
|
718 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Spotify"
|
719 |
-
|
720 |
-
#~ msgid "Enter the link to your Bandcamp profile page"
|
721 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
|
722 |
-
|
723 |
-
#~ msgid "Enter the link to your Dloky profile page"
|
724 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Dloky"
|
725 |
-
|
726 |
-
#~ msgid "Enter the link to your Amazon profile page"
|
727 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Amazon"
|
728 |
-
|
729 |
-
#~ msgid "Enter the link to your BookBub profile page"
|
730 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de BookBub"
|
731 |
-
|
732 |
-
#~ msgid "Enter the link to your Goodreads profile page"
|
733 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
|
734 |
-
|
735 |
-
#~ msgid "Enter the link to your MeetVibe profile page"
|
736 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
|
737 |
-
|
738 |
-
#~ msgid "Enter the link to your Meetup profile page"
|
739 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Meetup"
|
740 |
-
|
741 |
-
#~ msgid "Enter the link to your Steam profile page"
|
742 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Steam"
|
743 |
-
|
744 |
-
#~ msgid "Enter the link to your Mixer profile page"
|
745 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Mixer"
|
746 |
-
|
747 |
-
#~ msgid "Enter the link to your Discord profile page"
|
748 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Discord"
|
749 |
-
|
750 |
-
#~ msgid "Enter the link to your Yelp profile page"
|
751 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Yelp"
|
752 |
-
|
753 |
-
#~ msgid "Enter the link to your StumbleUpon profile page"
|
754 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
|
755 |
-
|
756 |
-
#~ msgid "Enter the link to your Bloglovin profile page"
|
757 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
|
758 |
-
|
759 |
-
#~ msgid "Enter the link to your WhatsApp profile page"
|
760 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
|
761 |
-
|
762 |
-
#~ msgid "Enter the link to your Medium profile page"
|
763 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Medium"
|
764 |
-
|
765 |
-
#~ msgid "Enter the link to your 500px profile page"
|
766 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de 500px"
|
767 |
-
|
768 |
-
#~ msgid "Enter the link to your Behance profile page"
|
769 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Behance"
|
770 |
-
|
771 |
-
#~ msgid "Enter the link to your Polyvore profile page"
|
772 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Polyvore"
|
773 |
-
|
774 |
-
#~ msgid "Enter the link to your Yellow Pages profile page"
|
775 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Yellow Pages"
|
776 |
-
|
777 |
-
#~ msgid "Enter the link to your LINE profile page"
|
778 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de LINE"
|
779 |
-
|
780 |
-
#~ msgid "Enter the link to your itch profile page"
|
781 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de itch"
|
782 |
-
|
783 |
-
#~ msgid "Enter the link to your Mastodon profile page"
|
784 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Mastodon"
|
785 |
-
|
786 |
-
#~ msgid "Enter the link to your Remind profile page"
|
787 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Remind"
|
788 |
-
|
789 |
-
#~ msgid "Enter the link to your Trade Me profile page"
|
790 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Trade Me"
|
791 |
-
|
792 |
-
#~ msgid "Enter the link to your VSCO profile page"
|
793 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de VSCO"
|
794 |
-
|
795 |
-
#~ msgid "Enter the link to your Hireology profile page"
|
796 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Hireology"
|
797 |
-
|
798 |
-
#~ msgid "Enter the link to your Kompoz profile page"
|
799 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Kompoz"
|
800 |
-
|
801 |
-
#~ msgid "Enter the link to your SoundBlend profile page"
|
802 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de SoundBlend"
|
803 |
-
|
804 |
-
#~ msgid "Enter the link to your VKontakte profile page"
|
805 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
|
806 |
-
|
807 |
-
#~ msgid "Enter the link to your Odnoklassniki profile page"
|
808 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
|
809 |
-
|
810 |
-
#~ msgid "Enter the link to your Telegram profile page"
|
811 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Telegram"
|
812 |
-
|
813 |
-
#~ msgid "Enter the link to your GitHub profile page"
|
814 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de GitHub"
|
815 |
-
|
816 |
-
#~ msgid "Enter the link to your WordPress profile page"
|
817 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de WordPress"
|
818 |
-
|
819 |
-
#~ msgid "Enter the link to your CodePen profile page"
|
820 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de CodePen"
|
821 |
-
|
822 |
-
#~ msgid "Preview"
|
823 |
-
#~ msgstr "Vista previa"
|
824 |
-
|
825 |
-
#~ msgid "Display toolbar below content on Posts."
|
826 |
-
#~ msgstr "Mostrar la barra abajo del contenido en Entradas"
|
827 |
-
|
828 |
-
#~ msgid "Display toolbar below content on Pages."
|
829 |
-
#~ msgstr "Mostrar la barra abajo del contenido en Páginas"
|
830 |
-
|
831 |
-
#~ msgid "Enter the link to your Beam profile page"
|
832 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de Beam"
|
833 |
-
|
834 |
-
#~ msgid "Enter the link to your diaspora profile page"
|
835 |
-
#~ msgstr "Ingresa el enlace a tu página de perfil de diaspora"
|
836 |
-
|
837 |
-
#~ msgid ""
|
838 |
-
#~ "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
|
839 |
-
#~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
|
840 |
-
#~ "section \"Display options\", then click \"Save changes\". It's that simple!"
|
841 |
-
#~ msgstr ""
|
842 |
-
#~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
|
843 |
-
#~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
|
844 |
-
#~ "Páginas\" en la sección \"Opciones de pantalla\", luego haz clic en \"Guardar "
|
845 |
-
#~ "los cambios\". ¡Así de simple!"
|
846 |
-
|
847 |
-
#~ msgid ""
|
848 |
-
#~ "<b>D)</b> For add the buttons directly to a theme files, just add one of the "
|
849 |
-
#~ "following code (both variants do the same) to needed place (where you want to "
|
850 |
-
#~ "display the bar) in your theme files:"
|
851 |
-
#~ msgstr ""
|
852 |
-
#~ "<b>D)</b> Para añadir la barra directamente a los archivos del tema, sólo "
|
853 |
-
#~ "agrega uno de los siguientes códigos (cualquiera de los dos hace lo mismo) en "
|
854 |
-
#~ "el lugar deseado (donde quieres que aparezca la barra) en los archivos de tu "
|
855 |
-
#~ "tema:"
|
856 |
-
|
857 |
-
#~ msgid ""
|
858 |
-
#~ "You have several methods for display the social media follow buttons bar "
|
859 |
-
#~ "(further just \"bar\") on your website. But first, fill in the required fields, "
|
860 |
-
#~ "then click \"Save changes\"."
|
861 |
-
#~ msgstr ""
|
862 |
-
#~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
|
863 |
-
#~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
|
864 |
-
#~ "llena los campos requeridos, y luego haz clic en \"Guardar cambios\"."
|
865 |
-
|
866 |
-
#~ msgid ""
|
867 |
-
#~ "It's that simple! If you want more options then tell me and I will be happy to "
|
868 |
-
#~ "add it."
|
869 |
-
#~ msgstr ""
|
870 |
-
#~ "¡Es así de simple! Si desea más opciones entonces Dile y yo estaremos "
|
871 |
-
#~ "encantados de añadirlo."
|
872 |
-
|
873 |
-
#~ msgid "Click \"Save changes\" to update this preview."
|
874 |
-
#~ msgstr ""
|
875 |
-
#~ "Haz clic en \"Guardar los cambios\" para actualizar esta previsualización."
|
876 |
-
|
877 |
-
#~ msgid ""
|
878 |
-
#~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
879 |
-
#~ "Gareginyan</a>"
|
880 |
-
#~ msgstr ""
|
881 |
-
#~ "por <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
882 |
-
#~ "Gareginyan</a>"
|
883 |
-
|
884 |
-
#~ msgid ""
|
885 |
-
#~ "You have several methods for display the social media follow buttons bar "
|
886 |
-
#~ "(further just \"toolbar\") on your website. But first, fill in the required "
|
887 |
-
#~ "fields, then click \"Save changes\"."
|
888 |
-
#~ msgstr ""
|
889 |
-
#~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
|
890 |
-
#~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
|
891 |
-
#~ "llena los campos requeridos, y luego haz clic en \"Guardar cambios\"."
|
892 |
-
|
893 |
-
#~ msgid ""
|
894 |
-
#~ "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
|
895 |
-
#~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
|
896 |
-
#~ "section \"Display options\", then click \"Save changes\". It's that simple!"
|
897 |
-
#~ msgstr ""
|
898 |
-
#~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
|
899 |
-
#~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
|
900 |
-
#~ "Páginas\" en la sección \"Opciones de pantalla\", luego haz clic en \"Guardar "
|
901 |
-
#~ "los cambios\". ¡Así de simple!"
|
902 |
-
|
903 |
-
#~ msgid ""
|
904 |
-
#~ "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
|
905 |
-
#~ "following shortcode:"
|
906 |
-
#~ msgstr ""
|
907 |
-
#~ "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
|
908 |
-
#~ "Páginas de Wordpress usa el siguiente shortcode:"
|
909 |
-
|
910 |
-
#~ msgid ""
|
911 |
-
#~ "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) use "
|
912 |
-
#~ "the \"Text\" widget and add inside it the following shortcode:"
|
913 |
-
#~ msgstr ""
|
914 |
-
#~ "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el "
|
915 |
-
#~ "pie, u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
916 |
-
|
917 |
-
#~ msgid ""
|
918 |
-
#~ "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
|
919 |
-
#~ "following code (both variants do the same) to needed place (where you want to "
|
920 |
-
#~ "display the toolbar) in your theme files:"
|
921 |
-
#~ msgstr ""
|
922 |
-
#~ "<b>D)</b> Para añadir la barra directamente a los archivos del tema, sólo "
|
923 |
-
#~ "agrega uno de los siguientes códigos (cualquiera de los dos hace lo mismo) en "
|
924 |
-
#~ "el lugar deseado (donde quieres que aparezca la barra) en los archivos de tu "
|
925 |
-
#~ "tema:"
|
926 |
-
|
927 |
-
#~ msgid "Social Media Buttons Toolbar"
|
928 |
-
#~ msgstr "Barra de Botones de Social Media"
|
929 |
-
|
930 |
-
#~ msgid "Social Buttons"
|
931 |
-
#~ msgstr "Botones Sociales"
|
932 |
-
|
933 |
-
#~ msgid ""
|
934 |
-
#~ "Easily add the smart toolbar with social media buttons (not share, only link to "
|
935 |
-
#~ "your profiles) to any place of your WordPress website."
|
936 |
-
#~ msgstr ""
|
937 |
-
#~ "Añade fácilmente una barra inteligente con botones de social media (no para "
|
938 |
-
#~ "compartir, sólo para enlazar a tus perfiles sociales) en cualquier parte tu "
|
939 |
-
#~ "sitio web hecho en Wordpress."
|
940 |
-
|
941 |
-
#~ msgid "Using"
|
942 |
-
#~ msgstr "Utilizando"
|
943 |
-
|
944 |
-
#~ msgid "Display toolbar below content on Posts"
|
945 |
-
#~ msgstr "Mostrar la barra abajo del contenido en Entradas"
|
946 |
-
|
947 |
-
#~ msgid "Display toolbar below content on Pages"
|
948 |
-
#~ msgstr "Mostrar la barra abajo del contenido en Páginas"
|
949 |
-
|
950 |
-
#~ msgid "Open link in new tab/window"
|
951 |
-
#~ msgstr "Abrir enlace en una nueva pestaña/ventana"
|
952 |
-
|
953 |
-
#~ msgid "Margin right"
|
954 |
-
#~ msgstr "Margen derecho"
|
955 |
-
|
956 |
-
#~ msgid "Advertisement"
|
957 |
-
#~ msgstr "Advertencia"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2018-01-19 15:14+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-01-20 16:04+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Generator: Poedit 1.8.7\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
38 |
msgstr "Ingresa el enlace a tu página de perfil de %s"
|
39 |
|
40 |
#: inc/php/list.php:1
|
41 |
+
msgid "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
42 |
+
msgstr "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
|
|
|
|
|
|
|
|
|
43 |
|
44 |
#: inc/php/list.php:1
|
45 |
msgid "Enter the link to your personal website"
|
58 |
msgstr "Ingresa el enlace a tu Feed de RSS"
|
59 |
|
60 |
#: inc/php/messages.php:26
|
61 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
62 |
+
msgstr "Hola! Yo soy Space X-Chimp, el autor de este complemento."
|
63 |
|
64 |
#: inc/php/messages.php:28
|
65 |
#, php-format
|
66 |
+
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
67 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
68 |
|
69 |
+
#: inc/php/messages.php:68
|
70 |
msgid "You have installed an old version of this plugin."
|
71 |
msgstr "Has instalado una versión antigua de este complemento."
|
72 |
|
73 |
+
#: inc/php/messages.php:69
|
74 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
75 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
76 |
|
77 |
#: inc/php/page.php:30
|
78 |
#, php-format
|
79 |
+
msgid "by %s Space X-Chimp %s"
|
80 |
+
msgstr "por %s Space X-Chimp %s"
|
81 |
|
82 |
#: inc/php/page.php:36
|
83 |
msgid "Version"
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "Preguntas ?"
|
93 |
|
94 |
+
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:30
|
95 |
msgid "Support"
|
96 |
msgstr "Soporte"
|
97 |
|
104 |
msgstr "Instrucciones de uso"
|
105 |
|
106 |
#: inc/php/page.php:65
|
107 |
+
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
#: inc/php/page.php:67
|
124 |
msgstr "Clic en el botón \"Guardar Cambios\"."
|
125 |
|
126 |
#: inc/php/page.php:71
|
127 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\"). Just choose the one that is more suitable for your case."
|
|
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
#: inc/php/page.php:72
|
131 |
+
msgid "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
|
|
|
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
#: inc/php/page.php:73
|
135 |
+
msgid "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
136 |
+
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:"
|
|
|
|
|
|
|
|
|
137 |
|
138 |
#: inc/php/page.php:75
|
139 |
+
msgid "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
140 |
+
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:"
|
|
|
|
|
|
|
|
|
141 |
|
142 |
#: inc/php/page.php:77
|
143 |
+
msgid "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
|
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
#: inc/php/page.php:80
|
155 |
msgid "Note!"
|
156 |
msgstr "¡Nota!"
|
157 |
|
158 |
+
#: inc/php/page.php:83
|
159 |
+
#, php-format
|
160 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
161 |
+
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
162 |
|
163 |
+
#: inc/php/page.php:97
|
164 |
msgid "Frequently Asked Questions"
|
165 |
msgstr "Preguntas Frecuentes"
|
166 |
|
167 |
+
#: inc/php/page.php:101
|
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:123
|
172 |
msgid "Will this plugin work on my WordPress.COM website?"
|
173 |
msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
|
174 |
|
175 |
+
#: inc/php/page.php:124
|
176 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
177 |
+
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (WordPress.ORG)."
|
|
|
|
|
|
|
|
|
178 |
|
179 |
+
#: inc/php/page.php:126
|
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:127
|
184 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
185 |
+
msgstr "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
|
|
|
|
|
|
|
|
186 |
|
187 |
+
#: inc/php/page.php:129
|
188 |
#, php-format
|
189 |
+
msgid "If you want to help translate this plugin then please visit the %s. 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 at the %s and we will include this translation within the next plugin update."
|
190 |
+
msgstr "Si quieres ayudar a traducir este complemento, visita el %s. También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e incluiremos esta traducción en la siguiente actualización del complemento."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
#: inc/php/page.php:134
|
193 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
194 |
+
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
|
|
|
|
|
|
|
|
195 |
|
196 |
+
#: inc/php/page.php:135
|
197 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
198 |
+
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad. ¡Gracias por tu contribución!"
|
|
|
|
|
|
|
|
|
199 |
|
200 |
+
#: inc/php/page.php:137
|
201 |
msgid "How does it work?"
|
202 |
msgstr "¿Como funciona?"
|
203 |
|
204 |
+
#: inc/php/page.php:138
|
205 |
+
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!"
|
|
|
|
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/page.php:140
|
209 |
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
211 |
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
|
|
|
|
|
|
|
215 |
|
216 |
+
#: inc/php/page.php:143
|
217 |
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
219 |
|
220 |
+
#: inc/php/page.php:144
|
221 |
+
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
222 |
+
msgstr "Absolutamente no. 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."
|
|
|
|
|
|
|
|
|
223 |
|
224 |
+
#: inc/php/page.php:146
|
225 |
+
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/page.php:147
|
229 |
+
msgid "The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better."
|
|
|
|
|
|
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:149
|
233 |
msgid "It's not working. What could be wrong?"
|
234 |
msgstr "No funciona. ¿Qué podría estar mal?"
|
235 |
|
236 |
+
#: inc/php/page.php:150
|
237 |
+
msgid "As with every plugin, it's possible that things don't work. 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."
|
238 |
+
msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. 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. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
|
240 |
+
#: inc/php/page.php:151
|
241 |
+
msgid "It's impossible to tell what could be wrong exactly, but 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."
|
242 |
+
msgstr "Es imposible decir exactamente lo que podría estar mal, pero si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaremos encantados de darle un vistazo e intentar ayudarte. Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
+
#: inc/php/page.php:153
|
245 |
+
msgid "The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?"
|
246 |
+
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
|
|
|
|
|
|
|
|
247 |
|
248 |
+
#: inc/php/page.php:154
|
249 |
+
msgid "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."
|
250 |
+
msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. 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. También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "¿Dónde informar el error si se encuentra?"
|
255 |
|
256 |
+
#: inc/php/page.php:158
|
257 |
#, php-format
|
258 |
+
msgid "Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
259 |
+
msgstr ""
|
260 |
|
261 |
+
#: inc/php/page.php:164
|
262 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
263 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
264 |
|
265 |
+
#: inc/php/page.php:166
|
266 |
#, php-format
|
267 |
+
msgid "Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr ""
|
|
|
|
|
269 |
|
270 |
+
#: inc/php/page.php:172
|
271 |
msgid "I love this plugin! Can I help somehow?"
|
272 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
273 |
|
274 |
+
#: inc/php/page.php:174
|
275 |
#, php-format
|
276 |
+
msgid "Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!"
|
277 |
+
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
|
|
|
|
|
|
|
|
278 |
|
279 |
+
#: inc/php/page.php:180
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Mi pregunta no fue contestada aquí."
|
282 |
|
283 |
+
#: inc/php/page.php:182
|
284 |
#, php-format
|
285 |
+
msgid "You can ask your question on %s this page %s. 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."
|
286 |
+
msgstr "Puede hacer tu pregunta en %s esta página %s. 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."
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
|
288 |
+
#: inc/php/page.php:196
|
289 |
msgid "Support Me"
|
290 |
msgstr "Apoyarme!"
|
291 |
|
292 |
+
#: inc/php/page.php:204 inc/php/settings.php:104 inc/php/sidebar.php:37
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Donar con PayPal"
|
295 |
|
296 |
+
#: inc/php/page.php:209
|
297 |
#, php-format
|
298 |
+
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
299 |
+
msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
|
|
|
|
|
|
|
|
300 |
|
301 |
+
#: inc/php/page.php:217
|
302 |
+
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."
|
303 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
|
305 |
+
#: inc/php/page.php:218
|
306 |
+
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
307 |
+
msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
|
308 |
+
|
309 |
+
#: inc/php/page.php:219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
311 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
312 |
|
313 |
+
#: inc/php/page.php:220
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "¡Gracias por tu apoyo!"
|
316 |
|
323 |
msgstr "Botones"
|
324 |
|
325 |
#: inc/php/settings.php:27
|
326 |
+
msgid "Just fill in the required 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."
|
327 |
+
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á."
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
#: inc/php/settings.php:35
|
330 |
msgid "Display options"
|
372 |
|
373 |
#: inc/php/settings.php:58
|
374 |
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
375 |
+
msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
|
|
376 |
|
377 |
#: inc/php/settings.php:62
|
378 |
msgid "Margin"
|
379 |
msgstr "Margen"
|
380 |
|
381 |
#: inc/php/settings.php:63
|
382 |
+
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
383 |
+
msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
|
|
|
|
|
|
|
|
|
384 |
|
385 |
#: inc/php/settings.php:68
|
386 |
msgid "Left"
|
407 |
msgstr "Leyenda"
|
408 |
|
409 |
#: inc/php/settings.php:78
|
410 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
411 |
+
msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
|
|
|
|
|
|
|
|
|
412 |
|
413 |
#: inc/php/settings.php:89
|
414 |
msgid "Live Preview"
|
418 |
msgid "Click the \"Save changes\" button to update this preview."
|
419 |
msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
|
420 |
|
421 |
+
#: inc/php/settings.php:99 inc/php/sidebar.php:32
|
422 |
+
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
423 |
+
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
|
425 |
+
#: inc/php/settings.php:106 inc/php/sidebar.php:39
|
426 |
msgid "Thanks for your support!"
|
427 |
msgstr "¡Gracias por tu apoyo!"
|
428 |
|
431 |
msgstr "Acerca de"
|
432 |
|
433 |
#: inc/php/sidebar.php:18
|
434 |
+
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
435 |
+
msgstr "Este plugin te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
|
|
|
|
|
|
|
|
436 |
|
437 |
+
#: inc/php/sidebar.php:23
|
438 |
msgid "Help"
|
439 |
msgstr "Ayuda"
|
440 |
|
441 |
+
#: inc/php/sidebar.php:25
|
442 |
msgid "If you have a question, please read the information in the FAQ section."
|
443 |
+
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
|
|
444 |
|
445 |
#. Plugin Name of the plugin/theme
|
446 |
msgid "Social Media Follow Buttons Bar"
|
451 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
452 |
|
453 |
#. Description of the plugin/theme
|
454 |
+
msgid "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website."
|
455 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
456 |
|
457 |
#. Author of the plugin/theme
|
458 |
msgid "Arthur Gareginyan"
|
461 |
#. Author URI of the plugin/theme
|
462 |
msgid "https://www.arthurgareginyan.com"
|
463 |
msgstr "https://www.arthurgareginyan.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-ru_RU.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-ru_RU.po
CHANGED
@@ -1,23 +1,20 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
13 |
-
"
|
14 |
-
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
@@ -39,13 +36,8 @@ msgid "Enter the link to your %s profile page"
|
|
39 |
msgstr "Введите ссылку на вашу страницу профиля %s"
|
40 |
|
41 |
#: inc/php/list.php:1
|
42 |
-
msgid ""
|
43 |
-
"
|
44 |
-
"<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
45 |
-
msgstr ""
|
46 |
-
"Введите свое имя в Skype с приставкой <b>skype:</b> и суффиксом <b>?call</"
|
47 |
-
"b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
|
48 |
-
"профиля"
|
49 |
|
50 |
#: inc/php/list.php:1
|
51 |
msgid "Enter the link to your personal website"
|
@@ -64,26 +56,26 @@ msgid "Enter the link to your RSS Feed"
|
|
64 |
msgstr "Введите ссылку на ваш RSS поток"
|
65 |
|
66 |
#: inc/php/messages.php:26
|
67 |
-
msgid "Hello.
|
68 |
-
msgstr "Привет!
|
69 |
|
70 |
#: inc/php/messages.php:28
|
71 |
#, php-format
|
72 |
-
msgid "Thank you for installing
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: inc/php/messages.php:
|
76 |
msgid "You have installed an old version of this plugin."
|
77 |
msgstr "Вы установили устаревшую версию этого плагина."
|
78 |
|
79 |
-
#: inc/php/messages.php:
|
80 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
81 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
82 |
|
83 |
#: inc/php/page.php:30
|
84 |
#, php-format
|
85 |
-
msgid "by %s Space X-Chimp
|
86 |
-
msgstr "от %s Space X-Chimp
|
87 |
|
88 |
#: inc/php/page.php:36
|
89 |
msgid "Version"
|
@@ -97,7 +89,7 @@ msgstr "Применение"
|
|
97 |
msgid "F.A.Q."
|
98 |
msgstr "F.A.Q."
|
99 |
|
100 |
-
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:
|
101 |
msgid "Support"
|
102 |
msgstr "Поддержка"
|
103 |
|
@@ -110,12 +102,8 @@ msgid "Usage Instructions"
|
|
110 |
msgstr "Инструкция по использованию"
|
111 |
|
112 |
#: inc/php/page.php:65
|
113 |
-
msgid ""
|
114 |
-
"
|
115 |
-
"website, simply follow these steps:"
|
116 |
-
msgstr ""
|
117 |
-
"Чтобы отобразить панель социальных кнопок на передней панели вашего веб-"
|
118 |
-
"сайта, просто выполните следующие действия:"
|
119 |
|
120 |
#: inc/php/page.php:67
|
121 |
msgid "Go to the \"Settings\" tab."
|
@@ -134,52 +122,24 @@ msgid "Click the \"Save changes\" button."
|
|
134 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
135 |
|
136 |
#: inc/php/page.php:71
|
137 |
-
msgid ""
|
138 |
-
"
|
139 |
-
"(further just \"buttons\"). Just choose the one that is more suitable for "
|
140 |
-
"your case."
|
141 |
-
msgstr ""
|
142 |
-
"Теперь у вас есть несколько способов отображения панели социальных сетей "
|
143 |
-
"(далее просто «кнопки»). Просто выберите ту, которая больше подходит для "
|
144 |
-
"вашего дела."
|
145 |
|
146 |
#: inc/php/page.php:72
|
147 |
-
msgid ""
|
148 |
-
"<b
|
149 |
-
"Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
|
150 |
-
"the section \"Display options\", then click the \"Save changes\" button."
|
151 |
-
msgstr ""
|
152 |
-
"<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и "
|
153 |
-
"страницах, просто установите флажок “Показывать в записях” или/и “Показывать "
|
154 |
-
"на страницах” в разделе “Настройки отображения”, затем нажмите кнопку "
|
155 |
-
"“Сохранить изменения”."
|
156 |
|
157 |
#: inc/php/page.php:73
|
158 |
-
msgid ""
|
159 |
-
"<b
|
160 |
-
"following shortcode:"
|
161 |
-
msgstr ""
|
162 |
-
"<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WP Post/Page "
|
163 |
-
"используйте следующий короткий код:"
|
164 |
|
165 |
#: inc/php/page.php:75
|
166 |
-
msgid ""
|
167 |
-
"<b
|
168 |
-
"use the \"Text\" widget and add inside it the following shortcode:"
|
169 |
-
msgstr ""
|
170 |
-
"<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем "
|
171 |
-
"колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий "
|
172 |
-
"короткий код:"
|
173 |
|
174 |
#: inc/php/page.php:77
|
175 |
-
msgid ""
|
176 |
-
"<b
|
177 |
-
"following code to needed place (where you want to display the buttons) in "
|
178 |
-
"your theme files:"
|
179 |
-
msgstr ""
|
180 |
-
"<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто "
|
181 |
-
"добавьте следующий код в нужное место (где вы хотите отображать кнопки) в "
|
182 |
-
"файлах темы:"
|
183 |
|
184 |
#: inc/php/page.php:80
|
185 |
msgid "Enjoy your fancy social media follow buttons."
|
@@ -193,281 +153,162 @@ msgstr "Вот так просто!"
|
|
193 |
msgid "Note!"
|
194 |
msgstr "Примечание!"
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
|
198 |
-
|
199 |
-
"Если вы хотите больше
|
200 |
-
"добавить их."
|
201 |
|
202 |
-
#: inc/php/page.php:
|
203 |
msgid "Frequently Asked Questions"
|
204 |
msgstr "Частые вопросы"
|
205 |
|
206 |
-
#: inc/php/page.php:
|
207 |
-
msgid ""
|
208 |
-
"If you have a question, please read the Frequently Asked Questions below to "
|
209 |
-
"see if the answer is here."
|
210 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Will this plugin work on my WordPress.COM website?"
|
214 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
-
msgid ""
|
218 |
-
"
|
219 |
-
"websites."
|
220 |
-
msgstr ""
|
221 |
-
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
222 |
-
"размещённых веб-сайтах (WordPress.ORG)."
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
-
msgid ""
|
230 |
-
"Yes. This plugin is ready for translation and has already been translated "
|
231 |
-
"into several languages."
|
232 |
msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
|
233 |
|
234 |
-
#: inc/php/page.php:
|
235 |
#, php-format
|
236 |
-
msgid ""
|
237 |
-
"
|
238 |
-
"also use the POT file, that is included and placed in the \"languages\" "
|
239 |
-
"folder, in order to create a translation PO file. Just send the PO file to "
|
240 |
-
"me at the %s and I will include this translation within the next plugin "
|
241 |
-
"update."
|
242 |
-
msgstr ""
|
243 |
-
"Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы "
|
244 |
-
"также можете использовать файл POT, который включён в плагин и помещён в "
|
245 |
-
"папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
|
246 |
-
"PO на %s и Я включу этот перевод в следующее обновление плагина."
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid ""
|
250 |
-
"Maybe not all existed translations are up to date. You are welcome to "
|
251 |
-
"contribute corrections!"
|
252 |
msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
|
253 |
|
254 |
-
#: inc/php/page.php:
|
255 |
-
msgid ""
|
256 |
-
"
|
257 |
-
"the community. Thanks for your contribution!"
|
258 |
-
msgstr ""
|
259 |
-
"Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
|
260 |
-
"с сообществом. Спасибо за ваш вклад!"
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "How does it work?"
|
264 |
msgstr "Как оно работает?"
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
-
msgid ""
|
268 |
-
"
|
269 |
-
"changes\" button. Enjoy your fancy social media follow buttons. It's that "
|
270 |
-
"simple!"
|
271 |
-
msgstr ""
|
272 |
-
"На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить "
|
273 |
-
"изменения». Наслаждайтесь вашими модными Социальными медиа кнопками "
|
274 |
-
"следования. Это так просто!"
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
msgid "Does this plugin requires any modification of the theme?"
|
278 |
msgstr "Этот плагин требует изменения темы?"
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
-
msgid ""
|
282 |
-
"
|
283 |
-
"settings page."
|
284 |
-
msgstr ""
|
285 |
-
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
286 |
-
"плагина."
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Does this require any knowledge of HTML or CSS?"
|
290 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
-
msgid ""
|
294 |
-
"
|
295 |
-
"CSS, using an easy-to-use plugin settings page."
|
296 |
-
msgstr ""
|
297 |
-
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
298 |
-
"помощью простой в использовании страницы настройки плагина."
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
-
msgid ""
|
302 |
-
"
|
303 |
-
"must be compressed?"
|
304 |
-
msgstr ""
|
305 |
-
"Что делать, если в тесте Google Page Speed сказано, что изображения этого "
|
306 |
-
"плагина должны быть сжаты?"
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
-
msgid ""
|
310 |
-
"
|
311 |
-
"best to find out what else can be done with the images in order to compress "
|
312 |
-
"them even better."
|
313 |
-
msgstr ""
|
314 |
-
"Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все "
|
315 |
-
"возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать "
|
316 |
-
"их ещё лучше."
|
317 |
|
318 |
-
#: inc/php/page.php:
|
319 |
msgid "It's not working. What could be wrong?"
|
320 |
msgstr "Оно не работает. Что может быть не так?"
|
321 |
|
322 |
-
#: inc/php/page.php:
|
323 |
-
msgid ""
|
324 |
-
"
|
325 |
-
"reason for this is a web browser's cache. Every web browser stores a cache "
|
326 |
-
"of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
327 |
-
"usage and server load. This is called the browser's cache. Clearing your "
|
328 |
-
"browser's cache may solve the problem."
|
329 |
-
msgstr ""
|
330 |
-
"Как и в случае с любым другим плагином, что-то может не работать. Наиболее "
|
331 |
-
"распространенной причиной этого является кеш веб-браузера. Каждый веб-"
|
332 |
-
"браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и "
|
333 |
-
"т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на "
|
334 |
-
"сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
|
335 |
-
"проблему."
|
336 |
-
|
337 |
-
#: inc/php/page.php:145
|
338 |
-
msgid ""
|
339 |
-
"It's impossible to tell what could be wrong exactly, but if you post a "
|
340 |
-
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
341 |
-
"to give it a look and try to help out. Please include as much information as "
|
342 |
-
"possible, including a link to your website where the problem can be seen."
|
343 |
-
msgstr ""
|
344 |
-
"Невозможно точно сказать, что может быть неправильно, но если вы разместите "
|
345 |
-
"запрос поддержки на форуме поддержки плагинов на WordPress.org, Я с "
|
346 |
-
"удовольствием посмотрю его и попытаюсь помочь. Пожалуйста, укажите как можно "
|
347 |
-
"больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
|
348 |
-
"проблему."
|
349 |
|
350 |
-
#: inc/php/page.php:
|
351 |
-
msgid ""
|
352 |
-
"
|
353 |
-
"using this plugin. Why is this?"
|
354 |
-
msgstr ""
|
355 |
-
"Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
|
356 |
-
"который использует этот плагин. Почему так?"
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
-
msgid ""
|
360 |
-
"
|
361 |
-
"to the settings of the website. It could just be a cache, so please try to "
|
362 |
-
"clear your website's cache (may be you using a caching plugin, or some web "
|
363 |
-
"service such as the CloudFlare) and then the cache of your web browser. Also "
|
364 |
-
"please try to re-login to the website, this too can help."
|
365 |
-
msgstr ""
|
366 |
-
"Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана "
|
367 |
-
"с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш "
|
368 |
-
"вашего сайта (возможно, вы используете плагин для кеширования или какой-либо "
|
369 |
-
"веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
|
370 |
-
"попробуйте повторно войти на сайт, это тоже может помочь."
|
371 |
|
372 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
373 |
msgid "Where to report bug if found?"
|
374 |
msgstr "Где можно сообщить об ошибке?"
|
375 |
|
376 |
-
#: inc/php/page.php:
|
377 |
#, php-format
|
378 |
-
msgid "Please visit
|
379 |
-
msgstr ""
|
380 |
-
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
381 |
|
382 |
-
#: inc/php/page.php:
|
383 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
384 |
-
msgstr ""
|
385 |
-
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
386 |
|
387 |
-
#: inc/php/page.php:
|
388 |
#, php-format
|
389 |
-
msgid ""
|
390 |
-
"
|
391 |
-
msgstr ""
|
392 |
-
"Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
|
393 |
-
"письмо на адрес %s. Спасибо!"
|
394 |
|
395 |
-
#: inc/php/page.php:
|
396 |
msgid "I love this plugin! Can I help somehow?"
|
397 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
398 |
|
399 |
-
#: inc/php/page.php:
|
400 |
#, php-format
|
401 |
-
msgid ""
|
402 |
-
"
|
403 |
-
"click on the donate button, and thank you!"
|
404 |
-
msgstr ""
|
405 |
-
"Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
|
406 |
-
"нажмите на кнопку пожертвования. Спасибо!"
|
407 |
|
408 |
-
#: inc/php/page.php:
|
409 |
msgid "My question wasn't answered here."
|
410 |
msgstr "Моего вопроса здесь нет."
|
411 |
|
412 |
-
#: inc/php/page.php:
|
413 |
#, php-format
|
414 |
-
msgid ""
|
415 |
-
"
|
416 |
-
"mind that this plugin is free, and there is no a special support team, so I "
|
417 |
-
"have no way to answer everyone."
|
418 |
-
msgstr ""
|
419 |
-
"Вы можете задать ваш вопрос на странице поддержки плагина %s. Но имейте в "
|
420 |
-
"виду, что этот плагин является бесплатным и без специальной поддержки, "
|
421 |
-
"поэтому у меня нет возможности ответить на все вопросы."
|
422 |
|
423 |
-
#: inc/php/page.php:
|
424 |
msgid "Support Me"
|
425 |
msgstr "Поддержать меня"
|
426 |
|
427 |
-
#: inc/php/page.php:
|
428 |
msgid "Donate with PayPal"
|
429 |
msgstr "Пожертвовать через PayPal"
|
430 |
|
431 |
-
#: inc/php/page.php:
|
432 |
#, php-format
|
433 |
-
msgid ""
|
434 |
-
"
|
435 |
-
"Chimp Studio %s."
|
436 |
-
msgstr ""
|
437 |
-
"Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp "
|
438 |
-
"Studio %s."
|
439 |
|
440 |
-
#: inc/php/page.php:
|
441 |
-
msgid ""
|
442 |
-
"
|
443 |
-
"I'm really passionate about my work, I like what I'm doing and hope that you "
|
444 |
-
"will be enriched by my projects too."
|
445 |
-
msgstr ""
|
446 |
-
"Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень "
|
447 |
-
"увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже "
|
448 |
-
"станете лучше благодаря моим проектам."
|
449 |
|
450 |
-
#: inc/php/page.php:
|
451 |
-
msgid ""
|
452 |
-
"
|
453 |
-
|
454 |
-
|
455 |
-
"developer, without a regular income, so every little contribution helps "
|
456 |
-
"cover my costs and lets me spend more time building things for people like "
|
457 |
-
"you to enjoy."
|
458 |
-
msgstr ""
|
459 |
-
"Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и "
|
460 |
-
"другие вещи, которые я создаю, полезны и окончательное доказательство этого "
|
461 |
-
"для меня состоит в том, что вы на самом деле хотите их использовать. Но Я "
|
462 |
-
"независимый разработчик, без регулярного дохода, поэтому каждый небольшой "
|
463 |
-
"вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
|
464 |
-
"создание программ для людей как вы."
|
465 |
-
|
466 |
-
#: inc/php/page.php:211
|
467 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
468 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
469 |
|
470 |
-
#: inc/php/page.php:
|
471 |
msgid "Thank you for your support!"
|
472 |
msgstr "Спасибо за вашу поддержку!"
|
473 |
|
@@ -480,16 +321,8 @@ msgid "Buttons"
|
|
480 |
msgstr "Кнопки"
|
481 |
|
482 |
#: inc/php/settings.php:27
|
483 |
-
msgid ""
|
484 |
-
"
|
485 |
-
"buttons will lead directly to your profile pages. If you don't want to use "
|
486 |
-
"any of the following buttons, you can not fill them and then they do not "
|
487 |
-
"appear."
|
488 |
-
msgstr ""
|
489 |
-
"Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных "
|
490 |
-
"медиа будут вести непосредственно к вашим страницам профиля. Если вы не "
|
491 |
-
"хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
|
492 |
-
"и тогда они не появятся."
|
493 |
|
494 |
#: inc/php/settings.php:35
|
495 |
msgid "Display options"
|
@@ -513,8 +346,7 @@ msgstr "Показывать на страницах"
|
|
513 |
|
514 |
#: inc/php/settings.php:46
|
515 |
msgid "Automatically display toolbar below content on Pages."
|
516 |
-
msgstr ""
|
517 |
-
"Автоматически отображать панель инструментов ниже содержимого на страницах."
|
518 |
|
519 |
#: inc/php/settings.php:49
|
520 |
msgid "Open in new tab"
|
@@ -530,27 +362,22 @@ msgstr "Подсказки"
|
|
530 |
|
531 |
#: inc/php/settings.php:54
|
532 |
msgid "Enable a tooltips with name of the social media above every button."
|
533 |
-
msgstr ""
|
534 |
-
"Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
535 |
|
536 |
#: inc/php/settings.php:57
|
537 |
msgid "Icon size"
|
538 |
msgstr "Размер иконки"
|
539 |
|
540 |
#: inc/php/settings.php:58
|
541 |
-
msgid ""
|
542 |
-
"
|
543 |
-
msgstr ""
|
544 |
-
"Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
545 |
|
546 |
#: inc/php/settings.php:62
|
547 |
msgid "Margin"
|
548 |
msgstr "Отступ"
|
549 |
|
550 |
#: inc/php/settings.php:63
|
551 |
-
msgid ""
|
552 |
-
"Enter the size of space (in pixels) between icons in your social media "
|
553 |
-
"follow buttons bar."
|
554 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
555 |
|
556 |
#: inc/php/settings.php:68
|
@@ -578,12 +405,8 @@ msgid "Caption"
|
|
578 |
msgstr "Заголовок"
|
579 |
|
580 |
#: inc/php/settings.php:78
|
581 |
-
msgid ""
|
582 |
-
"
|
583 |
-
"displays before the toolbar."
|
584 |
-
msgstr ""
|
585 |
-
"Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
|
586 |
-
"над панелью."
|
587 |
|
588 |
#: inc/php/settings.php:89
|
589 |
msgid "Live Preview"
|
@@ -591,20 +414,13 @@ msgstr "Просмотр в реальном времени"
|
|
591 |
|
592 |
#: inc/php/settings.php:91
|
593 |
msgid "Click the \"Save changes\" button to update this preview."
|
594 |
-
msgstr ""
|
595 |
-
"Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
596 |
|
597 |
-
#: inc/php/settings.php:99 inc/php/sidebar.php:
|
598 |
-
msgid ""
|
599 |
-
"
|
600 |
-
"contribution helps cover my costs and lets me spend more time building "
|
601 |
-
"things for people like you to enjoy."
|
602 |
-
msgstr ""
|
603 |
-
"Я независимый разработчик, без регулярного дохода, так что каждый маленький "
|
604 |
-
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
605 |
-
"создание программ для людей как вы."
|
606 |
|
607 |
-
#: inc/php/settings.php:106 inc/php/sidebar.php:
|
608 |
msgid "Thanks for your support!"
|
609 |
msgstr "Спасибо за вашу поддержку!"
|
610 |
|
@@ -613,21 +429,16 @@ msgid "About"
|
|
613 |
msgstr "О плагине"
|
614 |
|
615 |
#: inc/php/sidebar.php:18
|
616 |
-
msgid ""
|
617 |
-
"
|
618 |
-
"any place of your website."
|
619 |
-
msgstr ""
|
620 |
-
"Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
|
621 |
-
"место на вашем веб-сайте."
|
622 |
|
623 |
-
#: inc/php/sidebar.php:
|
624 |
msgid "Help"
|
625 |
msgstr "Помощь"
|
626 |
|
627 |
-
#: inc/php/sidebar.php:
|
628 |
msgid "If you have a question, please read the information in the FAQ section."
|
629 |
-
msgstr ""
|
630 |
-
"Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
631 |
|
632 |
#. Plugin Name of the plugin/theme
|
633 |
msgid "Social Media Follow Buttons Bar"
|
@@ -638,13 +449,8 @@ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
|
638 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
639 |
|
640 |
#. Description of the plugin/theme
|
641 |
-
msgid ""
|
642 |
-
"
|
643 |
-
"link to your profiles) to any place of your WordPress website."
|
644 |
-
msgstr ""
|
645 |
-
"Легко добавить умную панель с социальными медиа кнопками следования (не "
|
646 |
-
"расшаривания, только ссылка на ваши профили) в любое место вашего веб-сайта "
|
647 |
-
"WordPress."
|
648 |
|
649 |
#. Author of the plugin/theme
|
650 |
msgid "Arthur Gareginyan"
|
@@ -653,430 +459,3 @@ msgstr "Артур Гарегинян"
|
|
653 |
#. Author URI of the plugin/theme
|
654 |
msgid "https://www.arthurgareginyan.com"
|
655 |
msgstr "https://www.arthurgareginyan.com"
|
656 |
-
|
657 |
-
#~ msgid ""
|
658 |
-
#~ "If you did not find the button you need, then %s and I will gladly add it "
|
659 |
-
#~ "for you."
|
660 |
-
#~ msgstr ""
|
661 |
-
#~ "Если вы не нашли нужную кнопку, тогда %s и Я с удовольствием добавлю её "
|
662 |
-
#~ "для вас."
|
663 |
-
|
664 |
-
#~ msgid "by %s Arthur Gareginyan %s"
|
665 |
-
#~ msgstr "от %s Артура Гарегинян %s"
|
666 |
-
|
667 |
-
#~ msgid "Author"
|
668 |
-
#~ msgstr "Автор"
|
669 |
-
|
670 |
-
#~ msgid "Enter the link to your Facebook profile page"
|
671 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Facebook"
|
672 |
-
|
673 |
-
#~ msgid "Enter the link to your Twitter profile page"
|
674 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Twitter"
|
675 |
-
|
676 |
-
#~ msgid "Enter the link to your Instagram profile page"
|
677 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Instagram"
|
678 |
-
|
679 |
-
#~ msgid "Enter the link to your Google+ profile page"
|
680 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Google+"
|
681 |
-
|
682 |
-
#~ msgid "Enter the link to your YouTube profile page"
|
683 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля YouTube"
|
684 |
-
|
685 |
-
#~ msgid "Enter the link to your YouTube Gaming profile page"
|
686 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
|
687 |
-
|
688 |
-
#~ msgid "Enter the link to your Google Play profile page"
|
689 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Google Play"
|
690 |
-
|
691 |
-
#~ msgid "Enter the link to your iTunes profile page"
|
692 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля iTunes"
|
693 |
-
|
694 |
-
#~ msgid "Enter the link to your Apple Music profile page"
|
695 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Apple Music"
|
696 |
-
|
697 |
-
#~ msgid "Enter the link to your Periscope profile page"
|
698 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Periscope"
|
699 |
-
|
700 |
-
#~ msgid "Enter the link to your Vimeo profile page"
|
701 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Vimeo"
|
702 |
-
|
703 |
-
#~ msgid "Enter the link to your Blogger profile page"
|
704 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Blogger"
|
705 |
-
|
706 |
-
#~ msgid "Enter the link to your Buzzsprout profile page"
|
707 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
|
708 |
-
|
709 |
-
#~ msgid "Enter the link to your LiveJournal profile page"
|
710 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
|
711 |
-
|
712 |
-
#~ msgid "Enter the link to your Reddit profile page"
|
713 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Reddit"
|
714 |
-
|
715 |
-
#~ msgid "Enter the link to your LinkedIn profile page"
|
716 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
|
717 |
-
|
718 |
-
#~ msgid "Enter the link to your Diaspora profile page"
|
719 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Diaspora"
|
720 |
-
|
721 |
-
#~ msgid "Enter the link to your DeviantArt profile page"
|
722 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
|
723 |
-
|
724 |
-
#~ msgid "Enter the link to your XING profile page"
|
725 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля XING"
|
726 |
-
|
727 |
-
#~ msgid "Enter the link to your Pinterest profile page"
|
728 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Pinterest"
|
729 |
-
|
730 |
-
#~ msgid "Enter the link to your Flickr profile page"
|
731 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Flickr"
|
732 |
-
|
733 |
-
#~ msgid "Enter the link to your Tumblr profile page"
|
734 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Tumblr"
|
735 |
-
|
736 |
-
#~ msgid "Enter the link to your Snapchat profile page"
|
737 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Snapchat"
|
738 |
-
|
739 |
-
#~ msgid "Enter the link to your Twitch profile page"
|
740 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Twitch"
|
741 |
-
|
742 |
-
#~ msgid "Enter the link to your Patreon profile page"
|
743 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Patreon"
|
744 |
-
|
745 |
-
#~ msgid "Enter the link to your IMDb profile page"
|
746 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля IMDb"
|
747 |
-
|
748 |
-
#~ msgid "Enter the link to your SoundCloud profile page"
|
749 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
|
750 |
-
|
751 |
-
#~ msgid "Enter the link to your Plug.dj profile page"
|
752 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
|
753 |
-
|
754 |
-
#~ msgid "Enter the link to your Spotify profile page"
|
755 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Spotify"
|
756 |
-
|
757 |
-
#~ msgid "Enter the link to your Bandcamp profile page"
|
758 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
|
759 |
-
|
760 |
-
#~ msgid "Enter the link to your Dloky profile page"
|
761 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Dloky"
|
762 |
-
|
763 |
-
#~ msgid "Enter the link to your Amazon profile page"
|
764 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Amazon"
|
765 |
-
|
766 |
-
#~ msgid "Enter the link to your BookBub profile page"
|
767 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля BookBub"
|
768 |
-
|
769 |
-
#~ msgid "Enter the link to your Goodreads profile page"
|
770 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Goodreads"
|
771 |
-
|
772 |
-
#~ msgid "Enter the link to your MeetVibe profile page"
|
773 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
|
774 |
-
|
775 |
-
#~ msgid "Enter the link to your Meetup profile page"
|
776 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Meetup"
|
777 |
-
|
778 |
-
#~ msgid "Enter the link to your Steam profile page"
|
779 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Steam"
|
780 |
-
|
781 |
-
#~ msgid "Enter the link to your Mixer profile page"
|
782 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Mixer"
|
783 |
-
|
784 |
-
#~ msgid "Enter the link to your Discord profile page"
|
785 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Discord"
|
786 |
-
|
787 |
-
#~ msgid "Enter the link to your Yelp profile page"
|
788 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Yelp"
|
789 |
-
|
790 |
-
#~ msgid "Enter the link to your StumbleUpon profile page"
|
791 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
|
792 |
-
|
793 |
-
#~ msgid "Enter the link to your Bloglovin profile page"
|
794 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
|
795 |
-
|
796 |
-
#~ msgid "Enter the link to your WhatsApp profile page"
|
797 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
|
798 |
-
|
799 |
-
#~ msgid "Enter the link to your Medium profile page"
|
800 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Medium"
|
801 |
-
|
802 |
-
#~ msgid "Enter the link to your 500px profile page"
|
803 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля 500px"
|
804 |
-
|
805 |
-
#~ msgid "Enter the link to your Behance profile page"
|
806 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Behance"
|
807 |
-
|
808 |
-
#~ msgid "Enter the link to your Polyvore profile page"
|
809 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Polyvore"
|
810 |
-
|
811 |
-
#~ msgid "Enter the link to your Yellow Pages profile page"
|
812 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Yellow Pages"
|
813 |
-
|
814 |
-
#~ msgid "Enter the link to your LINE profile page"
|
815 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля LINE"
|
816 |
-
|
817 |
-
#~ msgid "Enter the link to your itch profile page"
|
818 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля itch"
|
819 |
-
|
820 |
-
#~ msgid "Enter the link to your Mastodon profile page"
|
821 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Mastodon"
|
822 |
-
|
823 |
-
#~ msgid "Enter the link to your Remind profile page"
|
824 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Remind"
|
825 |
-
|
826 |
-
#~ msgid "Enter the link to your Trade Me profile page"
|
827 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Trade Me"
|
828 |
-
|
829 |
-
#~ msgid "Enter the link to your VSCO profile page"
|
830 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля VSCO"
|
831 |
-
|
832 |
-
#~ msgid "Enter the link to your Hireology profile page"
|
833 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Hireology"
|
834 |
-
|
835 |
-
#~ msgid "Enter the link to your Kompoz profile page"
|
836 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Kompoz"
|
837 |
-
|
838 |
-
#~ msgid "Enter the link to your SoundBlend profile page"
|
839 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля SoundBlend"
|
840 |
-
|
841 |
-
#~ msgid "Enter the link to your VKontakte profile page"
|
842 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
|
843 |
-
|
844 |
-
#~ msgid "Enter the link to your Odnoklassniki profile page"
|
845 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
|
846 |
-
|
847 |
-
#~ msgid "Enter the link to your Telegram profile page"
|
848 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Telegram"
|
849 |
-
|
850 |
-
#~ msgid "Enter the link to your GitHub profile page"
|
851 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля GitHub"
|
852 |
-
|
853 |
-
#~ msgid "Enter the link to your WordPress profile page"
|
854 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля WordPress"
|
855 |
-
|
856 |
-
#~ msgid "Enter the link to your CodePen profile page"
|
857 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля CodePen"
|
858 |
-
|
859 |
-
#~ msgid "Family"
|
860 |
-
#~ msgstr "Семья"
|
861 |
-
|
862 |
-
#~ msgid "Preview"
|
863 |
-
#~ msgstr "Предварительный просмотр"
|
864 |
-
|
865 |
-
#~ msgid "Display toolbar below content on Posts."
|
866 |
-
#~ msgstr "Показывать кнопки под содержанием в записях"
|
867 |
-
|
868 |
-
#~ msgid "Display toolbar below content on Pages."
|
869 |
-
#~ msgstr "Показывать кнопки под содержанием на страницах"
|
870 |
-
|
871 |
-
#~ msgid ""
|
872 |
-
#~ "Enable/disable a tooltips with name of the social media above every "
|
873 |
-
#~ "button."
|
874 |
-
#~ msgstr ""
|
875 |
-
#~ "Включить/отключить всплывающие подсказки с названием социальных медиа над "
|
876 |
-
#~ "каждой кнопкой."
|
877 |
-
|
878 |
-
#~ msgid "You can contact me by email %s"
|
879 |
-
#~ msgstr "Вы можете связаться со мной по электронной почте %s"
|
880 |
-
|
881 |
-
#~ msgid "Thank you for installing my plugin! I hope you will love it %s"
|
882 |
-
#~ msgstr ""
|
883 |
-
#~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
|
884 |
-
|
885 |
-
#~ msgid "Enter the link to your Beam profile page"
|
886 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Beam"
|
887 |
-
|
888 |
-
#~ msgid "Enter the link to your diaspora profile page"
|
889 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля diaspora"
|
890 |
-
|
891 |
-
#~ msgid ""
|
892 |
-
#~ "Enter the size of space (in pixels) between icons in your social media "
|
893 |
-
#~ "buttons toolbar."
|
894 |
-
#~ msgstr ""
|
895 |
-
#~ "Введите размер пространства (в пикселях) между иконками для вашей панели "
|
896 |
-
#~ "социальных медиа кнопок."
|
897 |
-
|
898 |
-
#~ msgid ""
|
899 |
-
#~ "You have several methods for display the social media follow buttons bar "
|
900 |
-
#~ "(further just \"bar\") on your website. But first, fill in the required "
|
901 |
-
#~ "fields, then click \"Save changes\"."
|
902 |
-
#~ msgstr ""
|
903 |
-
#~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
|
904 |
-
#~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
|
905 |
-
#~ "заполните поля для каждой нужной кнопки, а затем нажмите “Сохранить "
|
906 |
-
#~ "изменения”."
|
907 |
-
|
908 |
-
#~ msgid ""
|
909 |
-
#~ "It's that simple! If you want more options then tell me and I will be "
|
910 |
-
#~ "happy to add it."
|
911 |
-
#~ msgstr ""
|
912 |
-
#~ "Это так просто! Если вы хотите иметь больше опций, то скажите мне об этом "
|
913 |
-
#~ "и я буду счастлив добавить их."
|
914 |
-
|
915 |
-
#~ msgid "Click \"Save changes\" to update this preview."
|
916 |
-
#~ msgstr ""
|
917 |
-
#~ "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
918 |
-
|
919 |
-
#~ msgid ""
|
920 |
-
#~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
921 |
-
#~ "Gareginyan</a>"
|
922 |
-
#~ msgstr ""
|
923 |
-
#~ "от <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
924 |
-
#~ "Гарегинян</a>"
|
925 |
-
|
926 |
-
#~ msgid ""
|
927 |
-
#~ "You have several methods for display the social media follow buttons bar "
|
928 |
-
#~ "(further just \"toolbar\") on your website. But first, fill in the "
|
929 |
-
#~ "required fields, then click \"Save changes\"."
|
930 |
-
#~ msgstr ""
|
931 |
-
#~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
|
932 |
-
#~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
|
933 |
-
#~ "заполните поля для каждой нужной кнопки, а затем нажмите “Сохранить "
|
934 |
-
#~ "изменения”."
|
935 |
-
|
936 |
-
#~ msgid "Social Media Buttons Toolbar"
|
937 |
-
#~ msgstr "Social Media Buttons Toolbar"
|
938 |
-
|
939 |
-
#~ msgid "Social Buttons"
|
940 |
-
#~ msgstr "Социальные кнопки"
|
941 |
-
|
942 |
-
#~ msgid ""
|
943 |
-
#~ "Easily add the smart toolbar with social media buttons (not share, only "
|
944 |
-
#~ "link to your profiles) to any place of your WordPress website."
|
945 |
-
#~ msgstr ""
|
946 |
-
#~ "Легко добавьте умный блок с кнопками социальных медиа (не расшаривание, а "
|
947 |
-
#~ "только ссылки на ваши профили) в любое место вашего WordPress веб-сайта."
|
948 |
-
|
949 |
-
#~ msgid "Using"
|
950 |
-
#~ msgstr "Как пользоваться"
|
951 |
-
|
952 |
-
#~ msgid "Display toolbar below content on Posts"
|
953 |
-
#~ msgstr "Показывать кнопки под содержанием в записях"
|
954 |
-
|
955 |
-
#~ msgid "Display toolbar below content on Pages"
|
956 |
-
#~ msgstr "Показывать кнопки под содержанием на страницах"
|
957 |
-
|
958 |
-
#~ msgid "Open link in new tab/window"
|
959 |
-
#~ msgstr "Открыть ссылку в новом окне/вкладке"
|
960 |
-
|
961 |
-
#~ msgid "Margin right"
|
962 |
-
#~ msgstr "Отступ справа"
|
963 |
-
|
964 |
-
#~ msgid "Advertisement"
|
965 |
-
#~ msgstr "Реклама"
|
966 |
-
|
967 |
-
#~ msgid ""
|
968 |
-
#~ "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, "
|
969 |
-
#~ "or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile."
|
970 |
-
#~ msgstr ""
|
971 |
-
#~ "Введите свое имя в Skype с приставкой <b>skype:</b> и суффиксом <b>?call</"
|
972 |
-
#~ "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
|
973 |
-
#~ "профиля."
|
974 |
-
|
975 |
-
#~ msgid ""
|
976 |
-
#~ "If you like this plugin and find it useful, please help me to make this "
|
977 |
-
#~ "plugin even better and keep it up-to-date."
|
978 |
-
#~ msgstr ""
|
979 |
-
#~ "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
|
980 |
-
#~ "помогите мне сделать его ещё лучше."
|
981 |
-
|
982 |
-
#~ msgid "Enter the link to your Github profile page"
|
983 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Github"
|
984 |
-
|
985 |
-
#~ msgid "Enter the link to your Codepen profile page"
|
986 |
-
#~ msgstr "Введите ссылку на вашу страницу профиля Codepen"
|
987 |
-
|
988 |
-
#~ msgid "Enter the link to your RSS Fedd"
|
989 |
-
#~ msgstr "Введите ссылку на ваш RSS Feed"
|
990 |
-
|
991 |
-
#~ msgid ""
|
992 |
-
#~ "Enter your User ID for each service you choose below to make the button "
|
993 |
-
#~ "link directly to your profile. If you don't want to use any of the "
|
994 |
-
#~ "following options, you can just forget about these."
|
995 |
-
#~ msgstr ""
|
996 |
-
#~ "Введите ваш ID пользователя для каждой службы, которую вы выберите ниже, "
|
997 |
-
#~ "чтобы создать кнопку с ссылкой на свой профиль. Если вы не хотите "
|
998 |
-
#~ "использовать какие-либо из следующих опций, то вы можете просто забыть о "
|
999 |
-
#~ "них."
|
1000 |
-
|
1001 |
-
#~ msgid ""
|
1002 |
-
#~ "Enter your User ID's, then click \"Save changes\" to update this preview."
|
1003 |
-
#~ msgstr ""
|
1004 |
-
#~ "Введите ваши ID пользователя, а затем нажмите кнопку “Сохранить "
|
1005 |
-
#~ "изменения”, чтобы обновить этот просмотр."
|
1006 |
-
|
1007 |
-
#~ msgid ""
|
1008 |
-
#~ "You have several methods for display the social media follow buttons bar "
|
1009 |
-
#~ "(further just \"toolbar\") on your website. But first, enter a links for "
|
1010 |
-
#~ "each buttons, then click \"Save changes\"."
|
1011 |
-
#~ msgstr ""
|
1012 |
-
#~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
|
1013 |
-
#~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
|
1014 |
-
#~ "укажите ссылки для каждой кнопки, а затем нажмите “Сохранить изменения”."
|
1015 |
-
|
1016 |
-
#~ msgid "Advertising"
|
1017 |
-
#~ msgstr "Реклама"
|
1018 |
-
|
1019 |
-
#~ msgid ""
|
1020 |
-
#~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
1021 |
-
#~ "\"Berserkr\" Gareginyan</a>"
|
1022 |
-
#~ msgstr ""
|
1023 |
-
#~ "от <a href=“https://www.arthurgareginyan.com” target=“_blank”>Артур "
|
1024 |
-
#~ "“Berserkr” Гарегинян</a>"
|
1025 |
-
|
1026 |
-
#~ msgid ""
|
1027 |
-
#~ "If you like this plugin and find it useful, help me to make this plugin "
|
1028 |
-
#~ "even better and keep it up-to-date."
|
1029 |
-
#~ msgstr ""
|
1030 |
-
#~ "Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
|
1031 |
-
#~ "сделать этот плагин ещё лучше и держать его современным."
|
1032 |
-
|
1033 |
-
#~ msgid "Freelance"
|
1034 |
-
#~ msgstr "Фриланс"
|
1035 |
-
|
1036 |
-
#~ msgid ""
|
1037 |
-
#~ "Hello, my name is Arthur and I'm a freelance web designer and developer."
|
1038 |
-
#~ msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
|
1039 |
-
|
1040 |
-
#~ msgid ""
|
1041 |
-
#~ "Share your thoughts with me. You may have a brilliant idea in your mind "
|
1042 |
-
#~ "and I can make it happen, so let’s get started!"
|
1043 |
-
#~ msgstr ""
|
1044 |
-
#~ "Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, "
|
1045 |
-
#~ "а я могу сделать её явью, так что давайте начнём!"
|
1046 |
-
|
1047 |
-
#~ msgid ""
|
1048 |
-
#~ "Easily add the smart toolbar with social media buttons (not share, only "
|
1049 |
-
#~ "link to your profiles) to any place of your WordPress web-site."
|
1050 |
-
#~ msgstr ""
|
1051 |
-
#~ "Легко добавьте умный блок с кнопками социальных медиа (не расшаривание, а "
|
1052 |
-
#~ "только ссылки на ваши профили) в любое место вашего WordPress веб-сайта."
|
1053 |
-
|
1054 |
-
#~ msgid "Arthur \"Berserkr\" Gareginyan"
|
1055 |
-
#~ msgstr "Артур “Берсеркр” Гарегинян"
|
1056 |
-
|
1057 |
-
#~ msgid ""
|
1058 |
-
#~ "This plugin allows you to easily add the social media follow buttons bar "
|
1059 |
-
#~ "to any place of your web-site."
|
1060 |
-
#~ msgstr ""
|
1061 |
-
#~ "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
|
1062 |
-
#~ "место на вашем веб-сайте."
|
1063 |
-
|
1064 |
-
#~ msgid ""
|
1065 |
-
#~ "To use, enter your User ID's, then click \"Save changes\". It's that "
|
1066 |
-
#~ "simple!"
|
1067 |
-
#~ msgstr ""
|
1068 |
-
#~ "Для использования, введите ваши ID пользователя, затем нажмите кнопку "
|
1069 |
-
#~ "“Сохранить изменения”. Это так просто!"
|
1070 |
-
|
1071 |
-
#~ msgid "User ID’s"
|
1072 |
-
#~ msgstr "ID Пользователя"
|
1073 |
-
|
1074 |
-
#~ msgid "Your options was sucessfully updated."
|
1075 |
-
#~ msgstr "Ваши опции были успешно обновлены."
|
1076 |
-
|
1077 |
-
#~ msgid ""
|
1078 |
-
#~ "Easily add the smart toolbar with social media buttons to any place of "
|
1079 |
-
#~ "your WordPress web-site."
|
1080 |
-
#~ msgstr ""
|
1081 |
-
#~ "Легко добавьте умный блок с кнопками социальных медиа в любое место "
|
1082 |
-
#~ "вашего WordPress веб-сайта."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
4 |
+
"POT-Creation-Date: 2018-01-19 15:17+0300\n"
|
5 |
+
"PO-Revision-Date: 2018-01-20 14:25+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
13 |
+
"X-Generator: Poedit 1.8.7\n"
|
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
|
36 |
msgstr "Введите ссылку на вашу страницу профиля %s"
|
37 |
|
38 |
#: inc/php/list.php:1
|
39 |
+
msgid "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
|
40 |
+
msgstr "Введите свое имя в Skype с приставкой <b>skype:</b> и суффиксом <b>?call</b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра профиля"
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
#: inc/php/list.php:1
|
43 |
msgid "Enter the link to your personal website"
|
56 |
msgstr "Введите ссылку на ваш RSS поток"
|
57 |
|
58 |
#: inc/php/messages.php:26
|
59 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
60 |
+
msgstr "Привет! Мы - команда Space X-Chimp."
|
61 |
|
62 |
#: inc/php/messages.php:28
|
63 |
#, php-format
|
64 |
+
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
65 |
+
msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
|
66 |
|
67 |
+
#: inc/php/messages.php:68
|
68 |
msgid "You have installed an old version of this plugin."
|
69 |
msgstr "Вы установили устаревшую версию этого плагина."
|
70 |
|
71 |
+
#: inc/php/messages.php:69
|
72 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
73 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
74 |
|
75 |
#: inc/php/page.php:30
|
76 |
#, php-format
|
77 |
+
msgid "by %s Space X-Chimp %s"
|
78 |
+
msgstr "от %s Space X-Chimp %s"
|
79 |
|
80 |
#: inc/php/page.php:36
|
81 |
msgid "Version"
|
89 |
msgid "F.A.Q."
|
90 |
msgstr "F.A.Q."
|
91 |
|
92 |
+
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:30
|
93 |
msgid "Support"
|
94 |
msgstr "Поддержка"
|
95 |
|
102 |
msgstr "Инструкция по использованию"
|
103 |
|
104 |
#: inc/php/page.php:65
|
105 |
+
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
106 |
+
msgstr "Чтобы отобразить панель социальных кнопок на передней панели вашего веб-сайта, просто выполните следующие действия:"
|
|
|
|
|
|
|
|
|
107 |
|
108 |
#: inc/php/page.php:67
|
109 |
msgid "Go to the \"Settings\" tab."
|
122 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
123 |
|
124 |
#: inc/php/page.php:71
|
125 |
+
msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\"). Just choose the one that is more suitable for your case."
|
126 |
+
msgstr "Теперь у вас есть несколько способов отображения панели социальных сетей (далее просто «кнопки»). Просто выберите ту, которая больше подходит для вашего дела."
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
#: inc/php/page.php:72
|
129 |
+
msgid "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
130 |
+
msgstr "<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и страницах, просто установите флажок “Показывать в записях” или/и “Показывать на страницах” в разделе “Настройки отображения”, затем нажмите кнопку “Сохранить изменения”."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
#: inc/php/page.php:73
|
133 |
+
msgid "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
134 |
+
msgstr "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WP Post/Page используйте следующий короткий код:"
|
|
|
|
|
|
|
|
|
135 |
|
136 |
#: inc/php/page.php:75
|
137 |
+
msgid "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
138 |
+
msgstr "<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий короткий код:"
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
#: inc/php/page.php:77
|
141 |
+
msgid "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
142 |
+
msgstr "<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто добавьте следующий код в нужное место (где вы хотите отображать кнопки) в файлах темы:"
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
#: inc/php/page.php:80
|
145 |
msgid "Enjoy your fancy social media follow buttons."
|
153 |
msgid "Note!"
|
154 |
msgstr "Примечание!"
|
155 |
|
156 |
+
#: inc/php/page.php:83
|
157 |
+
#, php-format
|
158 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
159 |
+
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
|
|
160 |
|
161 |
+
#: inc/php/page.php:97
|
162 |
msgid "Frequently Asked Questions"
|
163 |
msgstr "Частые вопросы"
|
164 |
|
165 |
+
#: inc/php/page.php:101
|
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:123
|
170 |
msgid "Will this plugin work on my WordPress.COM website?"
|
171 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
172 |
|
173 |
+
#: inc/php/page.php:124
|
174 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
175 |
+
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (WordPress.ORG)."
|
|
|
|
|
|
|
|
|
176 |
|
177 |
+
#: inc/php/page.php:126
|
178 |
msgid "Can I use this plugin on my language?"
|
179 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
180 |
|
181 |
+
#: inc/php/page.php:127
|
182 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
|
|
|
|
183 |
msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
|
184 |
|
185 |
+
#: inc/php/page.php:129
|
186 |
#, php-format
|
187 |
+
msgid "If you want to help translate this plugin then please visit the %s. 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 at the %s and we will include this translation within the next plugin update."
|
188 |
+
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода. Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
|
190 |
+
#: inc/php/page.php:134
|
191 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
|
|
|
|
192 |
msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
|
193 |
|
194 |
+
#: inc/php/page.php:135
|
195 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
196 |
+
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом. Спасибо за ваш вклад!"
|
|
|
|
|
|
|
|
|
197 |
|
198 |
+
#: inc/php/page.php:137
|
199 |
msgid "How does it work?"
|
200 |
msgstr "Как оно работает?"
|
201 |
|
202 |
+
#: inc/php/page.php:138
|
203 |
+
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!"
|
204 |
+
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения». Наслаждайтесь вашими модными Социальными медиа кнопками следования. Это так просто!"
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
+
#: inc/php/page.php:140
|
207 |
msgid "Does this plugin requires any modification of the theme?"
|
208 |
msgstr "Этот плагин требует изменения темы?"
|
209 |
|
210 |
+
#: inc/php/page.php:141
|
211 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
212 |
+
msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
|
|
|
|
|
|
|
|
|
213 |
|
214 |
+
#: inc/php/page.php:143
|
215 |
msgid "Does this require any knowledge of HTML or CSS?"
|
216 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
217 |
|
218 |
+
#: inc/php/page.php:144
|
219 |
+
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
220 |
+
msgstr "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
|
|
|
|
|
|
|
|
221 |
|
222 |
+
#: inc/php/page.php:146
|
223 |
+
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
224 |
+
msgstr "Что делать, если в тесте Google Page Speed сказано, что изображения этого плагина должны быть сжаты?"
|
|
|
|
|
|
|
|
|
225 |
|
226 |
+
#: inc/php/page.php:147
|
227 |
+
msgid "The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better."
|
228 |
+
msgstr "Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать их ещё лучше."
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
|
230 |
+
#: inc/php/page.php:149
|
231 |
msgid "It's not working. What could be wrong?"
|
232 |
msgstr "Оно не работает. Что может быть не так?"
|
233 |
|
234 |
+
#: inc/php/page.php:150
|
235 |
+
msgid "As with every plugin, it's possible that things don't work. 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."
|
236 |
+
msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
|
238 |
+
#: inc/php/page.php:151
|
239 |
+
msgid "It's impossible to tell what could be wrong exactly, but 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."
|
240 |
+
msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
|
|
|
|
|
|
|
|
|
241 |
|
242 |
+
#: inc/php/page.php:153
|
243 |
+
msgid "The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?"
|
244 |
+
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
+
#: inc/php/page.php:154
|
247 |
+
msgid "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."
|
248 |
+
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
249 |
+
|
250 |
+
#: inc/php/page.php:156
|
251 |
msgid "Where to report bug if found?"
|
252 |
msgstr "Где можно сообщить об ошибке?"
|
253 |
|
254 |
+
#: inc/php/page.php:158
|
255 |
#, php-format
|
256 |
+
msgid "Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
257 |
+
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
|
|
258 |
|
259 |
+
#: inc/php/page.php:164
|
260 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
261 |
+
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
|
|
262 |
|
263 |
+
#: inc/php/page.php:166
|
264 |
#, php-format
|
265 |
+
msgid "Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!"
|
266 |
+
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
|
|
|
|
|
|
267 |
|
268 |
+
#: inc/php/page.php:172
|
269 |
msgid "I love this plugin! Can I help somehow?"
|
270 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
271 |
|
272 |
+
#: inc/php/page.php:174
|
273 |
#, php-format
|
274 |
+
msgid "Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!"
|
275 |
+
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
|
|
|
|
|
|
|
|
276 |
|
277 |
+
#: inc/php/page.php:180
|
278 |
msgid "My question wasn't answered here."
|
279 |
msgstr "Моего вопроса здесь нет."
|
280 |
|
281 |
+
#: inc/php/page.php:182
|
282 |
#, php-format
|
283 |
+
msgid "You can ask your question on %s this page %s. 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."
|
284 |
+
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
|
286 |
+
#: inc/php/page.php:196
|
287 |
msgid "Support Me"
|
288 |
msgstr "Поддержать меня"
|
289 |
|
290 |
+
#: inc/php/page.php:204 inc/php/settings.php:104 inc/php/sidebar.php:37
|
291 |
msgid "Donate with PayPal"
|
292 |
msgstr "Пожертвовать через PayPal"
|
293 |
|
294 |
+
#: inc/php/page.php:209
|
295 |
#, php-format
|
296 |
+
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
297 |
+
msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
|
|
|
|
|
|
|
|
298 |
|
299 |
+
#: inc/php/page.php:217
|
300 |
+
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."
|
301 |
+
msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
|
303 |
+
#: inc/php/page.php:218
|
304 |
+
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
305 |
+
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
306 |
+
|
307 |
+
#: inc/php/page.php:219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
309 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
310 |
|
311 |
+
#: inc/php/page.php:220
|
312 |
msgid "Thank you for your support!"
|
313 |
msgstr "Спасибо за вашу поддержку!"
|
314 |
|
321 |
msgstr "Кнопки"
|
322 |
|
323 |
#: inc/php/settings.php:27
|
324 |
+
msgid "Just fill in the required 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."
|
325 |
+
msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
|
327 |
#: inc/php/settings.php:35
|
328 |
msgid "Display options"
|
346 |
|
347 |
#: inc/php/settings.php:46
|
348 |
msgid "Automatically display toolbar below content on Pages."
|
349 |
+
msgstr "Автоматически отображать панель инструментов ниже содержимого на страницах."
|
|
|
350 |
|
351 |
#: inc/php/settings.php:49
|
352 |
msgid "Open in new tab"
|
362 |
|
363 |
#: inc/php/settings.php:54
|
364 |
msgid "Enable a tooltips with name of the social media above every button."
|
365 |
+
msgstr "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
|
|
366 |
|
367 |
#: inc/php/settings.php:57
|
368 |
msgid "Icon size"
|
369 |
msgstr "Размер иконки"
|
370 |
|
371 |
#: inc/php/settings.php:58
|
372 |
+
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
373 |
+
msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
|
|
|
|
374 |
|
375 |
#: inc/php/settings.php:62
|
376 |
msgid "Margin"
|
377 |
msgstr "Отступ"
|
378 |
|
379 |
#: inc/php/settings.php:63
|
380 |
+
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
|
|
|
|
381 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
382 |
|
383 |
#: inc/php/settings.php:68
|
405 |
msgstr "Заголовок"
|
406 |
|
407 |
#: inc/php/settings.php:78
|
408 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
409 |
+
msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
|
|
|
|
|
|
|
|
|
410 |
|
411 |
#: inc/php/settings.php:89
|
412 |
msgid "Live Preview"
|
414 |
|
415 |
#: inc/php/settings.php:91
|
416 |
msgid "Click the \"Save changes\" button to update this preview."
|
417 |
+
msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
|
|
418 |
|
419 |
+
#: inc/php/settings.php:99 inc/php/sidebar.php:32
|
420 |
+
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
421 |
+
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
|
423 |
+
#: inc/php/settings.php:106 inc/php/sidebar.php:39
|
424 |
msgid "Thanks for your support!"
|
425 |
msgstr "Спасибо за вашу поддержку!"
|
426 |
|
429 |
msgstr "О плагине"
|
430 |
|
431 |
#: inc/php/sidebar.php:18
|
432 |
+
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
433 |
+
msgstr "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое место на вашем веб-сайте."
|
|
|
|
|
|
|
|
|
434 |
|
435 |
+
#: inc/php/sidebar.php:23
|
436 |
msgid "Help"
|
437 |
msgstr "Помощь"
|
438 |
|
439 |
+
#: inc/php/sidebar.php:25
|
440 |
msgid "If you have a question, please read the information in the FAQ section."
|
441 |
+
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
|
|
442 |
|
443 |
#. Plugin Name of the plugin/theme
|
444 |
msgid "Social Media Follow Buttons Bar"
|
449 |
msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
|
450 |
|
451 |
#. Description of the plugin/theme
|
452 |
+
msgid "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website."
|
453 |
+
msgstr "Легко добавить умную панель с социальными медиа кнопками следования (не расшаривания, только ссылка на ваши профили) в любое место вашего веб-сайта WordPress."
|
|
|
|
|
|
|
|
|
|
|
454 |
|
455 |
#. Author of the plugin/theme
|
456 |
msgid "Arthur Gareginyan"
|
459 |
#. Author URI of the plugin/theme
|
460 |
msgid "https://www.arthurgareginyan.com"
|
461 |
msgstr "https://www.arthurgareginyan.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar.pot
CHANGED
@@ -3,19 +3,19 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
|
18 |
-
"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
@@ -38,8 +38,8 @@ msgstr ""
|
|
38 |
|
39 |
#: inc/php/list.php:1
|
40 |
msgid ""
|
41 |
-
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
|
42 |
-
"
|
43 |
msgstr ""
|
44 |
|
45 |
#: inc/php/list.php:1
|
@@ -59,12 +59,12 @@ msgid "Enter the link to your RSS Feed"
|
|
59 |
msgstr ""
|
60 |
|
61 |
#: inc/php/messages.php:26
|
62 |
-
msgid "Hello.
|
63 |
msgstr ""
|
64 |
|
65 |
#: inc/php/messages.php:28
|
66 |
#, php-format
|
67 |
-
msgid "Thank you for installing
|
68 |
msgstr ""
|
69 |
|
70 |
#: inc/php/messages.php:68
|
@@ -77,7 +77,7 @@ msgstr ""
|
|
77 |
|
78 |
#: inc/php/page.php:30
|
79 |
#, php-format
|
80 |
-
msgid "by %s Space X-Chimp
|
81 |
msgstr ""
|
82 |
|
83 |
#: inc/php/page.php:36
|
@@ -92,7 +92,7 @@ msgstr ""
|
|
92 |
msgid "F.A.Q."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:
|
96 |
msgid "Support"
|
97 |
msgstr ""
|
98 |
|
@@ -105,9 +105,7 @@ msgid "Usage Instructions"
|
|
105 |
msgstr ""
|
106 |
|
107 |
#: inc/php/page.php:65
|
108 |
-
msgid ""
|
109 |
-
"To display the social media follow buttons bar on the front end of your website, simply follow these "
|
110 |
-
"steps:"
|
111 |
msgstr ""
|
112 |
|
113 |
#: inc/php/page.php:67
|
@@ -128,32 +126,30 @@ msgstr ""
|
|
128 |
|
129 |
#: inc/php/page.php:71
|
130 |
msgid ""
|
131 |
-
"Now you have several methods for display the social media follow buttons bar (further just \"buttons"
|
132 |
-
"
|
133 |
msgstr ""
|
134 |
|
135 |
#: inc/php/page.php:72
|
136 |
msgid ""
|
137 |
-
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
|
138 |
-
"
|
139 |
-
"the \"Save changes\" button."
|
140 |
msgstr ""
|
141 |
|
142 |
#: inc/php/page.php:73
|
143 |
-
msgid ""
|
144 |
-
"<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
#: inc/php/page.php:75
|
148 |
msgid ""
|
149 |
-
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
|
150 |
-
"
|
151 |
msgstr ""
|
152 |
|
153 |
#: inc/php/page.php:77
|
154 |
msgid ""
|
155 |
-
"<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
|
156 |
-
"
|
157 |
msgstr ""
|
158 |
|
159 |
#: inc/php/page.php:80
|
@@ -168,199 +164,197 @@ msgstr ""
|
|
168 |
msgid "Note!"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
|
|
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
msgid "Frequently Asked Questions"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid ""
|
181 |
-
"If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/page.php:
|
185 |
msgid "Will this plugin work on my WordPress.COM website?"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
msgid "Can I use this plugin on my language?"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
msgid ""
|
198 |
-
"Yes. This plugin is ready for translation and has already been translated into several languages."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/page.php:
|
202 |
#, php-format
|
203 |
msgid ""
|
204 |
-
"If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
|
205 |
-
"
|
206 |
-
"
|
207 |
-
"update."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: inc/php/page.php:
|
215 |
msgid ""
|
216 |
-
"Many of plugin users would be delighted if you share your translation with the community. Thanks for "
|
217 |
-
"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "How does it work?"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid ""
|
226 |
-
"On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
|
227 |
-
"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
msgid "Does this plugin requires any modification of the theme?"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
235 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/page.php:
|
239 |
msgid "Does this require any knowledge of HTML or CSS?"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
243 |
msgid ""
|
244 |
-
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
|
245 |
-
"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
msgid ""
|
254 |
-
"The images that uses in this plugin are already compressed, but I will do my best to find out what "
|
255 |
-
"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
msgid "It's not working. What could be wrong?"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid ""
|
264 |
-
"As with every plugin, it's possible that things don't work. The most common reason for this is a web "
|
265 |
-
"
|
266 |
-
"
|
267 |
-
"browser's cache may solve the problem."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
msgid ""
|
272 |
-
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
273 |
-
"
|
274 |
-
"
|
275 |
-
"seen."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
msgid ""
|
280 |
-
"The last WordPress update is preventing me from editing
|
281 |
"this?"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid ""
|
286 |
-
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
287 |
-
"
|
288 |
-
"
|
289 |
-
"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Where to report bug if found?"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
#, php-format
|
298 |
-
msgid "Please visit
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
#, php-format
|
307 |
-
msgid "
|
|
|
|
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/page.php:
|
311 |
msgid "I love this plugin! Can I help somehow?"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/page.php:
|
315 |
#, php-format
|
316 |
msgid ""
|
317 |
-
"Yes, any financial contributions are welcome! Just visit %s
|
318 |
"button, and thank you!"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
msgid "My question wasn't answered here."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
#, php-format
|
327 |
msgid ""
|
328 |
-
"You can ask your question on
|
329 |
-
"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/page.php:
|
333 |
msgid "Support Me"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
msgid "Donate with PayPal"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/page.php:
|
341 |
#, php-format
|
342 |
-
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/page.php:
|
346 |
msgid ""
|
347 |
-
"My intention is to create projects that will make this world a better place. I'm really passionate "
|
348 |
-
"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid ""
|
353 |
-
"I spend a lot of time and effort trying to make sure that the themes, plugins and other things I "
|
354 |
-
"
|
355 |
-
"
|
356 |
-
"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: inc/php/page.php:
|
360 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: inc/php/page.php:
|
364 |
msgid "Thank you for your support!"
|
365 |
msgstr ""
|
366 |
|
@@ -374,9 +368,8 @@ msgstr ""
|
|
374 |
|
375 |
#: inc/php/settings.php:27
|
376 |
msgid ""
|
377 |
-
"Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
|
378 |
-
"
|
379 |
-
"and then they do not appear."
|
380 |
msgstr ""
|
381 |
|
382 |
#: inc/php/settings.php:35
|
@@ -460,8 +453,7 @@ msgid "Caption"
|
|
460 |
msgstr ""
|
461 |
|
462 |
#: inc/php/settings.php:78
|
463 |
-
msgid ""
|
464 |
-
"Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
465 |
msgstr ""
|
466 |
|
467 |
#: inc/php/settings.php:89
|
@@ -472,13 +464,13 @@ msgstr ""
|
|
472 |
msgid "Click the \"Save changes\" button to update this preview."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/settings.php:99 inc/php/sidebar.php:
|
476 |
msgid ""
|
477 |
-
"I'm an independent developer, without a regular income, so every little contribution helps cover my "
|
478 |
-
"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: inc/php/settings.php:106 inc/php/sidebar.php:
|
482 |
msgid "Thanks for your support!"
|
483 |
msgstr ""
|
484 |
|
@@ -487,15 +479,14 @@ msgid "About"
|
|
487 |
msgstr ""
|
488 |
|
489 |
#: inc/php/sidebar.php:18
|
490 |
-
msgid ""
|
491 |
-
"This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: inc/php/sidebar.php:
|
495 |
msgid "Help"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: inc/php/sidebar.php:
|
499 |
msgid "If you have a question, please read the information in the FAQ section."
|
500 |
msgstr ""
|
501 |
|
@@ -509,8 +500,8 @@ msgstr ""
|
|
509 |
|
510 |
#. Description of the plugin/theme
|
511 |
msgid ""
|
512 |
-
"Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to "
|
513 |
-
"
|
514 |
msgstr ""
|
515 |
|
516 |
#. Author of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Buttons Toolbar\n"
|
6 |
+
"POT-Creation-Date: 2018-01-20 14:28+0300\n"
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.7\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
18 |
+
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
38 |
|
39 |
#: inc/php/list.php:1
|
40 |
msgid ""
|
41 |
+
"Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?"
|
42 |
+
"userinfo</b> for view profile"
|
43 |
msgstr ""
|
44 |
|
45 |
#: inc/php/list.php:1
|
59 |
msgstr ""
|
60 |
|
61 |
#: inc/php/messages.php:26
|
62 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
63 |
msgstr ""
|
64 |
|
65 |
#: inc/php/messages.php:28
|
66 |
#, php-format
|
67 |
+
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
68 |
msgstr ""
|
69 |
|
70 |
#: inc/php/messages.php:68
|
77 |
|
78 |
#: inc/php/page.php:30
|
79 |
#, php-format
|
80 |
+
msgid "by %s Space X-Chimp %s"
|
81 |
msgstr ""
|
82 |
|
83 |
#: inc/php/page.php:36
|
92 |
msgid "F.A.Q."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:30
|
96 |
msgid "Support"
|
97 |
msgstr ""
|
98 |
|
105 |
msgstr ""
|
106 |
|
107 |
#: inc/php/page.php:65
|
108 |
+
msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
|
|
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
#: inc/php/page.php:67
|
126 |
|
127 |
#: inc/php/page.php:71
|
128 |
msgid ""
|
129 |
+
"Now you have several methods for display the social media follow buttons bar (further just \"buttons\"). Just choose "
|
130 |
+
"the one that is more suitable for your case."
|
131 |
msgstr ""
|
132 |
|
133 |
#: inc/php/page.php:72
|
134 |
msgid ""
|
135 |
+
"<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox \"Show on "
|
136 |
+
"Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
#: inc/php/page.php:73
|
140 |
+
msgid "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: inc/php/page.php:75
|
144 |
msgid ""
|
145 |
+
"<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it "
|
146 |
+
"the following shortcode:"
|
147 |
msgstr ""
|
148 |
|
149 |
#: inc/php/page.php:77
|
150 |
msgid ""
|
151 |
+
"<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want "
|
152 |
+
"to display the buttons) in your theme files:"
|
153 |
msgstr ""
|
154 |
|
155 |
#: inc/php/page.php:80
|
164 |
msgid "Note!"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/page.php:83
|
168 |
+
#, php-format
|
169 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:97
|
173 |
msgid "Frequently Asked Questions"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/page.php:101
|
177 |
+
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/page.php:123
|
181 |
msgid "Will this plugin work on my WordPress.COM website?"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/page.php:124
|
185 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:126
|
189 |
msgid "Can I use this plugin on my language?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/page.php:127
|
193 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/page.php:129
|
197 |
#, php-format
|
198 |
msgid ""
|
199 |
+
"If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included "
|
200 |
+
"and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the "
|
201 |
+
"%s and we will include this translation within the next plugin update."
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:134
|
205 |
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/page.php:135
|
209 |
msgid ""
|
210 |
+
"Many of plugin users would be delighted if you share your translation with the community. Thanks for your "
|
211 |
+
"contribution!"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/php/page.php:137
|
215 |
msgid "How does it work?"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/php/page.php:138
|
219 |
msgid ""
|
220 |
+
"On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy your fancy social "
|
221 |
+
"media follow buttons. It's that simple!"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/php/page.php:140
|
225 |
msgid "Does this plugin requires any modification of the theme?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/page.php:141
|
229 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:143
|
233 |
msgid "Does this require any knowledge of HTML or CSS?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:144
|
237 |
msgid ""
|
238 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings "
|
239 |
+
"page."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:146
|
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:147
|
247 |
msgid ""
|
248 |
+
"The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done "
|
249 |
+
"with the images in order to compress them even better."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:149
|
253 |
msgid "It's not working. What could be wrong?"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:150
|
257 |
msgid ""
|
258 |
+
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
|
259 |
+
"cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
260 |
+
"usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: inc/php/page.php:151
|
264 |
msgid ""
|
265 |
+
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum "
|
266 |
+
"on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as "
|
267 |
+
"possible, including a link to your website where the problem can be seen."
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:153
|
271 |
msgid ""
|
272 |
+
"The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is "
|
273 |
"this?"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/php/page.php:154
|
277 |
msgid ""
|
278 |
+
"This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
|
279 |
+
"could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web "
|
280 |
+
"service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, "
|
281 |
+
"this too can help."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/page.php:156
|
285 |
msgid "Where to report bug if found?"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:158
|
289 |
#, php-format
|
290 |
+
msgid "Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/php/page.php:164
|
294 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/php/page.php:166
|
298 |
#, php-format
|
299 |
+
msgid ""
|
300 |
+
"Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the "
|
301 |
+
"plugin. Thank you!"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:172
|
305 |
msgid "I love this plugin! Can I help somehow?"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/php/page.php:174
|
309 |
#, php-format
|
310 |
msgid ""
|
311 |
+
"Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate "
|
312 |
"button, and thank you!"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:180
|
316 |
msgid "My question wasn't answered here."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:182
|
320 |
#, php-format
|
321 |
msgid ""
|
322 |
+
"You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a "
|
323 |
+
"special support team, so we have no way to answer everyone."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:196
|
327 |
msgid "Support Me"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/page.php:204 inc/php/settings.php:104 inc/php/sidebar.php:37
|
331 |
msgid "Donate with PayPal"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/page.php:209
|
335 |
#, php-format
|
336 |
+
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc/php/page.php:217
|
340 |
msgid ""
|
341 |
+
"My intention is to create projects that will make this world a better place. I'm really passionate about my work, I "
|
342 |
+
"like what I'm doing and hope that you will be enriched by my projects too."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/php/page.php:218
|
346 |
msgid ""
|
347 |
+
"I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, "
|
348 |
+
"and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, "
|
349 |
+
"without a regular income, so every little contribution helps cover my costs and lets me spend more time building "
|
350 |
+
"things for people like you to enjoy."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:219
|
354 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/php/page.php:220
|
358 |
msgid "Thank you for your support!"
|
359 |
msgstr ""
|
360 |
|
368 |
|
369 |
#: inc/php/settings.php:27
|
370 |
msgid ""
|
371 |
+
"Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile "
|
372 |
+
"pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
|
|
373 |
msgstr ""
|
374 |
|
375 |
#: inc/php/settings.php:35
|
453 |
msgstr ""
|
454 |
|
455 |
#: inc/php/settings.php:78
|
456 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
#: inc/php/settings.php:89
|
464 |
msgid "Click the \"Save changes\" button to update this preview."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: inc/php/settings.php:99 inc/php/sidebar.php:32
|
468 |
msgid ""
|
469 |
+
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets "
|
470 |
+
"me spend more time building things for people like you to enjoy."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: inc/php/settings.php:106 inc/php/sidebar.php:39
|
474 |
msgid "Thanks for your support!"
|
475 |
msgstr ""
|
476 |
|
479 |
msgstr ""
|
480 |
|
481 |
#: inc/php/sidebar.php:18
|
482 |
+
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
|
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: inc/php/sidebar.php:23
|
486 |
msgid "Help"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: inc/php/sidebar.php:25
|
490 |
msgid "If you have a question, please read the information in the FAQ section."
|
491 |
msgstr ""
|
492 |
|
500 |
|
501 |
#. Description of the plugin/theme
|
502 |
msgid ""
|
503 |
+
"Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of "
|
504 |
+
"your WordPress website."
|
505 |
msgstr ""
|
506 |
|
507 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -19,7 +19,7 @@ The Social Media Follow Buttons Bar - is a bar with set of icons of the popular
|
|
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. Also it can be aligned to left, center or right.
|
21 |
|
22 |
-
It 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 post or/and pages, and can position the link buttons using either a widget, a shortcode or a template action hook. If you want more options then tell
|
23 |
|
24 |
**Features**
|
25 |
|
@@ -193,7 +193,7 @@ After installation and activation, the "`Social Media Follow Buttons`" menu ite
|
|
193 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
|
194 |
|
195 |
= Q. Can I use this plugin on my language? =
|
196 |
-
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. The POT file is included and placed in the "`languages`" folder. Just send the PO file to
|
197 |
|
198 |
= Q. How does it work? =
|
199 |
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!
|
@@ -211,19 +211,19 @@ A. The images that uses in this plugin are already compressed, but I will do my
|
|
211 |
= Q. It's not working. What could be wrong? =
|
212 |
A. As with every plugin, it's possible that things don't work. 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.
|
213 |
|
214 |
-
It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org,
|
215 |
|
216 |
-
= Q. The last WordPress update is preventing me from editing
|
217 |
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.
|
218 |
|
219 |
= Q. Where to report bug if found? =
|
220 |
A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar) and report.
|
221 |
|
222 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
223 |
-
A. Any suggestions are very welcome! Please send
|
224 |
|
225 |
= Q. I love this plugin! Can I help somehow? =
|
226 |
-
A. Yes, any financial contributions are welcome! Just visit [
|
227 |
|
228 |
|
229 |
== Screenshots ==
|
@@ -267,6 +267,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
267 |
|
268 |
== Changelog ==
|
269 |
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
= 4.26 =
|
271 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
272 |
* CSS code improved.
|
@@ -300,7 +306,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
300 |
* The menu item of the plugin is renamed.
|
301 |
* The "Author" tab on the settings page is removed.
|
302 |
* Content of the "Support" tab on the settings page is updated.
|
303 |
-
* Copyright of plugin files is changed to the "Space X-Chimp
|
304 |
* The "Support" tab renamed to the "Support Me".
|
305 |
* The "Usage" tab renamed to the "Usage Instructions".
|
306 |
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 4.27
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
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. Also it can be aligned to left, center or right.
|
21 |
|
22 |
+
It 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 post or/and pages, and can position the link buttons using either a widget, a shortcode or a template action hook. If you want more options then tell us and we will be happy to add it.
|
23 |
|
24 |
**Features**
|
25 |
|
193 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
|
194 |
|
195 |
= Q. Can I use this plugin on my language? =
|
196 |
+
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. The POT file is included and placed in the "`languages`" folder. Just send the PO file to us at the arthurgareginyan@gmail.com and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
197 |
|
198 |
= Q. How does it work? =
|
199 |
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!
|
211 |
= Q. It's not working. What could be wrong? =
|
212 |
A. As with every plugin, it's possible that things don't work. 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.
|
213 |
|
214 |
+
It's impossible to tell what could be wrong exactly, but 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.
|
215 |
|
216 |
+
= Q. The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this? =
|
217 |
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.
|
218 |
|
219 |
= Q. Where to report bug if found? =
|
220 |
A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar) and report.
|
221 |
|
222 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
223 |
+
A. Any suggestions are very welcome! Please send us an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
|
224 |
|
225 |
= Q. I love this plugin! Can I help somehow? =
|
226 |
+
A. Yes, any financial contributions are welcome! Just visit [the website of the creator](https://www.arthurgareginyan.com/donate.html), click on the donate button, and thank you!
|
227 |
|
228 |
|
229 |
== Screenshots ==
|
267 |
|
268 |
== Changelog ==
|
269 |
|
270 |
+
= 4.27 =
|
271 |
+
* Texts updated.
|
272 |
+
* The year in the copyright text is updated.
|
273 |
+
* The sidebar items are rearranged.
|
274 |
+
* Translation files updated.
|
275 |
+
|
276 |
= 4.26 =
|
277 |
* The plugin is fully tested for compatibility with WordPress version 4.9.
|
278 |
* CSS code improved.
|
306 |
* The menu item of the plugin is renamed.
|
307 |
* The "Author" tab on the settings page is removed.
|
308 |
* Content of the "Support" tab on the settings page is updated.
|
309 |
+
* Copyright of plugin files is changed to the "Space X-Chimp".
|
310 |
* The "Support" tab renamed to the "Support Me".
|
311 |
* The "Usage" tab renamed to the "Usage Instructions".
|
312 |
|
social-media-buttons-toolbar.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
-
* Copyright 2015-
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
+
* Version: 4.27
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2015-2018 Space X-Chimp ( website : https://www.spacexchimp.com )
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|