Version Description
- Added information about the PRO version of the plugin.
- Options on the settings page are resorted.
- Options on the settings page are renamed.
- On the plugin settings page added separators with title for option groups.
- Content of the "Usage" section updated.
- Content of the "FAQ" section updated.
- Many texts are updated.
- The function "tollbar" is renamed to "generator".
- The autoload function "addContent" is renamed to "autoload" and improved.
- The function "load_scripts_dynamiccss" is improved.
- In the "frontend.css" file, useless CSS code is removed.
- Added class "sxc-follow-button" to the LI element of the buttons bar.
- Some variables in the "enqueue.php" file are renamed.
- Code formatting in the "admin.js" file improved.
- Code formatting in the "functional.php" file improved.
- Code commenting improved.
- The copyright date updated.
- Translation files are updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.45 |
Comparing to | |
See all releases |
Code changes from version 4.44 to 4.45
- inc/css/admin.css +1 -1
- inc/css/frontend.css +35 -31
- inc/img/upgrade.png +0 -0
- inc/js/admin.js +8 -8
- inc/php/controls.php +35 -6
- inc/php/core.php +12 -1
- inc/php/enqueue.php +10 -10
- inc/php/functional.php +17 -10
- inc/php/items.php +1 -1
- inc/php/page.php +37 -30
- inc/php/settings.php +38 -26
- inc/php/sidebar.php +8 -0
- languages/social-media-buttons-toolbar-de_DE.mo +0 -0
- languages/social-media-buttons-toolbar-de_DE.po +165 -114
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +157 -111
- languages/social-media-buttons-toolbar-nl_NL.mo +0 -0
- languages/social-media-buttons-toolbar-nl_NL.po +130 -91
- languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
- languages/social-media-buttons-toolbar-ru_RU.po +169 -115
- languages/social-media-buttons-toolbar.pot +126 -90
- readme.txt +47 -10
- 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-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/css/frontend.css
CHANGED
@@ -4,45 +4,49 @@
|
|
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 |
|
11 |
-
/*
|
12 |
.sxc-follow-buttons {
|
13 |
-
margin: 0 !important;
|
14 |
-
padding: 0 !important;
|
15 |
-
background-image: none !important;
|
16 |
-
border: none !important;
|
17 |
-
border-bottom: 0 !important;
|
18 |
}
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
-
|
28 |
-
-
|
|
|
|
|
29 |
}
|
30 |
-
.sxc-follow-buttons
|
31 |
-
content: "" !important;
|
32 |
-
content: none !important;
|
33 |
}
|
34 |
-
.sxc-follow-buttons
|
35 |
-
content: "" !important;
|
36 |
-
content: none !important;
|
37 |
}
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
border
|
42 |
-
|
|
|
43 |
}
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
47 |
vertical-align: top;
|
48 |
}
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
11 |
+
/* All buttons */
|
12 |
.sxc-follow-buttons {
|
13 |
+
margin: 0 !important; /* Reset */
|
14 |
+
padding: 0 !important; /* Reset */
|
15 |
+
background-image: none !important; /* Reset */
|
16 |
+
border: none !important; /* Reset */
|
17 |
+
border-bottom: 0 !important; /* Reset */
|
18 |
}
|
19 |
+
|
20 |
+
/* Each button */
|
21 |
+
.sxc-follow-buttons .sxc-follow-button {
|
22 |
+
display: inline-block !important; /* Reset */
|
23 |
+
margin: 0 !important; /* Reset */
|
24 |
+
padding: 0 !important; /* Reset */
|
25 |
+
background-image: none !important; /* Reset */
|
26 |
+
border: none !important; /* Reset */
|
27 |
+
border-bottom: 0 !important; /* Reset */
|
28 |
+
list-style-type: none !important; /* Reset */
|
29 |
+
-webkit-user-select: none; /* Reset */
|
30 |
+
-moz-user-select: none; /* Reset */
|
31 |
}
|
32 |
+
.sxc-follow-buttons .sxc-follow-button::before {
|
33 |
+
content: "" !important; /* Reset */
|
34 |
+
content: none !important; /* Reset */
|
35 |
}
|
36 |
+
.sxc-follow-buttons .sxc-follow-button::after {
|
37 |
+
content: "" !important; /* Reset */
|
38 |
+
content: none !important; /* Reset */
|
39 |
}
|
40 |
+
|
41 |
+
.sxc-follow-buttons .sxc-follow-button a {
|
42 |
+
display: block !important; /* Reset */
|
43 |
+
border: none !important; /* Reset */
|
44 |
+
border-bottom: 0 !important; /* Reset */
|
45 |
+
box-shadow: none !important; /* Reset */
|
46 |
}
|
47 |
+
|
48 |
+
.sxc-follow-buttons .sxc-follow-button a img {
|
49 |
+
margin: 0 !important; /* Reset */
|
50 |
+
padding: 0 !important; /* Reset */
|
51 |
vertical-align: top;
|
52 |
}
|
inc/img/upgrade.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 |
|
@@ -24,14 +24,14 @@ jQuery(document).ready(function($) {
|
|
24 |
|
25 |
// Add questions and answers into spoilers and color them in different colors
|
26 |
$('.panel-group .panel').each(function(i) {
|
27 |
-
|
28 |
-
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
});
|
36 |
|
37 |
// Enable switches
|
4 |
* @package Social Media Follow Buttons Bar
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
24 |
|
25 |
// Add questions and answers into spoilers and color them in different colors
|
26 |
$('.panel-group .panel').each(function(i) {
|
27 |
+
$('.question-' + (i+1) ).appendTo( $('h4', this) );
|
28 |
+
$('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
|
29 |
|
30 |
+
if ( $(this).find('h4 div').hasClass('question-red') ) {
|
31 |
+
$(this).addClass('panel-danger');
|
32 |
+
} else {
|
33 |
+
$(this).addClass('panel-info');
|
34 |
+
}
|
35 |
});
|
36 |
|
37 |
// Enable switches
|
inc/php/controls.php
CHANGED
@@ -32,7 +32,7 @@ function spacexchimp_p005_control_help( $help=null ) {
|
|
32 |
*/
|
33 |
function spacexchimp_p005_control_field( $name, $label, $help=null, $placeholder=null ) {
|
34 |
|
35 |
-
//
|
36 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
37 |
$value = !empty( $options[$name] ) ? esc_textarea( $options[$name] ) : '';
|
38 |
|
@@ -65,7 +65,7 @@ function spacexchimp_p005_control_field( $name, $label, $help=null, $placeholder
|
|
65 |
*/
|
66 |
function spacexchimp_p005_control_switch( $name, $label, $help=null ) {
|
67 |
|
68 |
-
//
|
69 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
70 |
$checked = !empty( $options[$name] ) ? "checked='checked'" : '';
|
71 |
|
@@ -97,7 +97,7 @@ function spacexchimp_p005_control_switch( $name, $label, $help=null ) {
|
|
97 |
*/
|
98 |
function spacexchimp_p005_control_number( $name, $label, $help=null, $default=null ) {
|
99 |
|
100 |
-
//
|
101 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
102 |
$value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : $default;
|
103 |
|
@@ -142,7 +142,7 @@ function spacexchimp_p005_control_number( $name, $label, $help=null, $default=nu
|
|
142 |
*/
|
143 |
function spacexchimp_p005_control_link( $name, $label, $placeholder, $help, $link=null ) {
|
144 |
|
145 |
-
//
|
146 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
147 |
$value = !empty( $options['buttons-link'][$name] ) ? esc_textarea( $options['buttons-link'][$name] ) : '';
|
148 |
$display = !empty( $options['buttons-selected'][$name] ) ? '' : 'none';
|
@@ -179,7 +179,7 @@ function spacexchimp_p005_control_link( $name, $label, $placeholder, $help, $lin
|
|
179 |
*/
|
180 |
function spacexchimp_p005_control_choice( $name, $items, $label, $help, $default ) {
|
181 |
|
182 |
-
//
|
183 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
184 |
$option = !empty( $options[$name] ) ? $options[$name] : '';
|
185 |
$list_item = '';
|
@@ -227,7 +227,7 @@ function spacexchimp_p005_control_choice( $name, $items, $label, $help, $default
|
|
227 |
*/
|
228 |
function spacexchimp_p005_control_checkbox( $name, $items, $label, $help ) {
|
229 |
|
230 |
-
//
|
231 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
232 |
$list_item = '';
|
233 |
|
@@ -265,3 +265,32 @@ function spacexchimp_p005_control_checkbox( $name, $items, $label, $help ) {
|
|
265 |
// Print a help text
|
266 |
spacexchimp_p005_control_help( $help );
|
267 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
*/
|
33 |
function spacexchimp_p005_control_field( $name, $label, $help=null, $placeholder=null ) {
|
34 |
|
35 |
+
// Retrieve options from database and declare variables
|
36 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
37 |
$value = !empty( $options[$name] ) ? esc_textarea( $options[$name] ) : '';
|
38 |
|
65 |
*/
|
66 |
function spacexchimp_p005_control_switch( $name, $label, $help=null ) {
|
67 |
|
68 |
+
// Retrieve options from database and declare variables
|
69 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
70 |
$checked = !empty( $options[$name] ) ? "checked='checked'" : '';
|
71 |
|
97 |
*/
|
98 |
function spacexchimp_p005_control_number( $name, $label, $help=null, $default=null ) {
|
99 |
|
100 |
+
// Retrieve options from database and declare variables
|
101 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
102 |
$value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : $default;
|
103 |
|
142 |
*/
|
143 |
function spacexchimp_p005_control_link( $name, $label, $placeholder, $help, $link=null ) {
|
144 |
|
145 |
+
// Retrieve options from database and declare variables
|
146 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
147 |
$value = !empty( $options['buttons-link'][$name] ) ? esc_textarea( $options['buttons-link'][$name] ) : '';
|
148 |
$display = !empty( $options['buttons-selected'][$name] ) ? '' : 'none';
|
179 |
*/
|
180 |
function spacexchimp_p005_control_choice( $name, $items, $label, $help, $default ) {
|
181 |
|
182 |
+
// Retrieve options from database and declare variables
|
183 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
184 |
$option = !empty( $options[$name] ) ? $options[$name] : '';
|
185 |
$list_item = '';
|
227 |
*/
|
228 |
function spacexchimp_p005_control_checkbox( $name, $items, $label, $help ) {
|
229 |
|
230 |
+
// Retrieve options from database and declare variables
|
231 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
232 |
$list_item = '';
|
233 |
|
265 |
// Print a help text
|
266 |
spacexchimp_p005_control_help( $help );
|
267 |
}
|
268 |
+
|
269 |
+
/**
|
270 |
+
* Generator of the separator between option groups
|
271 |
+
*/
|
272 |
+
function spacexchimp_p005_control_separator( $text=null ) {
|
273 |
+
|
274 |
+
// Generate a part of table
|
275 |
+
if ( !empty( $text ) ) {
|
276 |
+
$out = "<tr>
|
277 |
+
<td height='60' colspan='2'>
|
278 |
+
<hr>
|
279 |
+
</td>
|
280 |
+
</tr>
|
281 |
+
<tr>
|
282 |
+
<td colspan='2' style='text-align:center;'>
|
283 |
+
" . $text . "
|
284 |
+
</td>
|
285 |
+
</tr>";
|
286 |
+
} else {
|
287 |
+
$out = "<tr>
|
288 |
+
<td height='60' colspan='2'>
|
289 |
+
<hr>
|
290 |
+
</td>
|
291 |
+
</tr>";
|
292 |
+
}
|
293 |
+
|
294 |
+
// Print the generated part of table
|
295 |
+
echo $out;
|
296 |
+
}
|
inc/php/core.php
CHANGED
@@ -26,6 +26,16 @@ function spacexchimp_p005_settings_link( $links ) {
|
|
26 |
}
|
27 |
add_filter( 'plugin_action_links_' . SPACEXCHIMP_P005_BASE, 'spacexchimp_p005_settings_link' );
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
/**
|
30 |
* Print additional links to plugin meta row
|
31 |
*/
|
@@ -34,7 +44,8 @@ function spacexchimp_p005_plugin_row_meta( $links, $file ) {
|
|
34 |
if ( strpos( $file, SPACEXCHIMP_P005_SLUG . '.php' ) !== false ) {
|
35 |
|
36 |
$new_links = array(
|
37 |
-
'donate' => '<a href="https://www.spacexchimp.com/donate.html" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', SPACEXCHIMP_P005_TEXT ) . '</a>'
|
|
|
38 |
);
|
39 |
$links = array_merge( $links, $new_links );
|
40 |
}
|
26 |
}
|
27 |
add_filter( 'plugin_action_links_' . SPACEXCHIMP_P005_BASE, 'spacexchimp_p005_settings_link' );
|
28 |
|
29 |
+
/**
|
30 |
+
* Print link to Social Media Follow Buttons Bar PRO page
|
31 |
+
*/
|
32 |
+
function spacexchimp_p005_upgrade_link( $links ) {
|
33 |
+
$upgrade_page = '<a href="https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html" target="_blank"><b style="color:red;">' . __( 'Upgrade to PRO', SPACEXCHIMP_P005_TEXT ) . '</b></a>';
|
34 |
+
array_unshift( $links, $upgrade_page );
|
35 |
+
return $links;
|
36 |
+
}
|
37 |
+
add_filter( 'plugin_action_links_' . SPACEXCHIMP_P005_BASE, 'spacexchimp_p005_upgrade_link' );
|
38 |
+
|
39 |
/**
|
40 |
* Print additional links to plugin meta row
|
41 |
*/
|
44 |
if ( strpos( $file, SPACEXCHIMP_P005_SLUG . '.php' ) !== false ) {
|
45 |
|
46 |
$new_links = array(
|
47 |
+
'donate' => '<a href="https://www.spacexchimp.com/donate.html" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', SPACEXCHIMP_P005_TEXT ) . '</a>',
|
48 |
+
'upgrage' => '<a href="https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . __( 'Upgrade to PRO', SPACEXCHIMP_P005_TEXT ) . '</a>'
|
49 |
);
|
50 |
$links = array_merge( $links, $new_links );
|
51 |
}
|
inc/php/enqueue.php
CHANGED
@@ -11,19 +11,19 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
11 |
function spacexchimp_p005_load_scripts_dynamic_css( $options, $prefix ) {
|
12 |
|
13 |
// Get settings and put them in variables
|
14 |
-
$
|
15 |
-
$
|
16 |
-
$
|
17 |
|
18 |
// Create an array with all the settings (CSS code)
|
19 |
$custom_css = "
|
20 |
.sxc-follow-buttons {
|
21 |
-
text-align: " . $
|
22 |
}
|
23 |
-
.sxc-follow-buttons
|
24 |
-
width: " . $
|
25 |
-
height: " . $
|
26 |
-
margin: " . ( $
|
27 |
}
|
28 |
";
|
29 |
|
@@ -47,7 +47,7 @@ function spacexchimp_p005_load_scripts_admin( $hook ) {
|
|
47 |
$settings_page = 'settings_page_' . $slug;
|
48 |
if ( $settings_page != $hook ) return;
|
49 |
|
50 |
-
//
|
51 |
$options = get_option( $settings . '_settings' );
|
52 |
|
53 |
// Load jQuery library
|
@@ -88,7 +88,7 @@ function spacexchimp_p005_load_scripts_frontend() {
|
|
88 |
$settings = SPACEXCHIMP_P005_SETTINGS;
|
89 |
$version = SPACEXCHIMP_P005_VERSION;
|
90 |
|
91 |
-
//
|
92 |
$options = get_option( $settings . '_settings' );
|
93 |
|
94 |
// Load jQuery library
|
11 |
function spacexchimp_p005_load_scripts_dynamic_css( $options, $prefix ) {
|
12 |
|
13 |
// Get settings and put them in variables
|
14 |
+
$buttons_alignment = !empty( $options['alignment'] ) ? $options['alignment'] : 'center';
|
15 |
+
$button_size = !empty( $options['icon-size'] ) ? esc_textarea( $options['icon-size'] ) : '64';
|
16 |
+
$button_margin = !empty( $options['margin-right'] ) ? esc_textarea( $options['margin-right'] ) : '10';
|
17 |
|
18 |
// Create an array with all the settings (CSS code)
|
19 |
$custom_css = "
|
20 |
.sxc-follow-buttons {
|
21 |
+
text-align: " . $buttons_alignment . " !important;
|
22 |
}
|
23 |
+
.sxc-follow-buttons .sxc-follow-button a img {
|
24 |
+
width: " . $button_size . "px !important;
|
25 |
+
height: " . $button_size . "px !important;
|
26 |
+
margin: " . ( $button_margin / 2 ) . "px !important;
|
27 |
}
|
28 |
";
|
29 |
|
47 |
$settings_page = 'settings_page_' . $slug;
|
48 |
if ( $settings_page != $hook ) return;
|
49 |
|
50 |
+
// Retrieve options from database
|
51 |
$options = get_option( $settings . '_settings' );
|
52 |
|
53 |
// Load jQuery library
|
88 |
$settings = SPACEXCHIMP_P005_SETTINGS;
|
89 |
$version = SPACEXCHIMP_P005_VERSION;
|
90 |
|
91 |
+
// Retrieve options from database
|
92 |
$options = get_option( $settings . '_settings' );
|
93 |
|
94 |
// Load jQuery library
|
inc/php/functional.php
CHANGED
@@ -6,11 +6,11 @@
|
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
/**
|
9 |
-
* Generate the buttons
|
10 |
*/
|
11 |
-
function
|
12 |
|
13 |
-
//
|
14 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
15 |
$selected = !empty( $options['buttons-selected'] ) ? $options['buttons-selected'] : array();
|
16 |
$links = !empty( $options['buttons-link'] ) ? $options['buttons-link'] : array();
|
@@ -36,7 +36,7 @@ function spacexchimp_p005_tollbar() {
|
|
36 |
$link = !empty( $links[$slug] ) ? $links[$slug] : '';
|
37 |
if ( !empty( $selected[$slug] ) ) {
|
38 |
$icon = SPACEXCHIMP_P005_URL . "inc/img/social-media-icons/$slug.png";
|
39 |
-
$toolbar_arr[] = '<li>
|
40 |
<a
|
41 |
href="' . $link . '"
|
42 |
' . $tooltips . '
|
@@ -78,7 +78,10 @@ function spacexchimp_p005_tollbar() {
|
|
78 |
* Create the shortcode "[smbtoolbar]"
|
79 |
*/
|
80 |
function spacexchimp_p005_shortcode() {
|
81 |
-
return implode(
|
|
|
|
|
|
|
82 |
}
|
83 |
add_shortcode( 'smbtoolbar', 'spacexchimp_p005_shortcode' );
|
84 |
|
@@ -88,26 +91,30 @@ add_shortcode( 'smbtoolbar', 'spacexchimp_p005_shortcode' );
|
|
88 |
add_filter( 'widget_text', 'do_shortcode' );
|
89 |
|
90 |
/**
|
91 |
-
*
|
92 |
*/
|
93 |
-
function
|
|
|
|
|
94 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
|
|
|
|
95 |
|
96 |
if ( is_single() ) {
|
97 |
-
if (
|
98 |
$content = $content . spacexchimp_p005_shortcode();
|
99 |
}
|
100 |
}
|
101 |
|
102 |
if ( is_page() ) {
|
103 |
-
if (
|
104 |
$content = $content . spacexchimp_p005_shortcode();
|
105 |
}
|
106 |
}
|
107 |
|
108 |
return $content;
|
109 |
}
|
110 |
-
add_action( 'the_content', '
|
111 |
|
112 |
/**
|
113 |
* Callback for getting a list of all buttons
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
/**
|
9 |
+
* Generate the buttons bar
|
10 |
*/
|
11 |
+
function spacexchimp_p005_generator() {
|
12 |
|
13 |
+
// Retrieve options from database and declare variables
|
14 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
15 |
$selected = !empty( $options['buttons-selected'] ) ? $options['buttons-selected'] : array();
|
16 |
$links = !empty( $options['buttons-link'] ) ? $options['buttons-link'] : array();
|
36 |
$link = !empty( $links[$slug] ) ? $links[$slug] : '';
|
37 |
if ( !empty( $selected[$slug] ) ) {
|
38 |
$icon = SPACEXCHIMP_P005_URL . "inc/img/social-media-icons/$slug.png";
|
39 |
+
$toolbar_arr[] = '<li class="sxc-follow-button">
|
40 |
<a
|
41 |
href="' . $link . '"
|
42 |
' . $tooltips . '
|
78 |
* Create the shortcode "[smbtoolbar]"
|
79 |
*/
|
80 |
function spacexchimp_p005_shortcode() {
|
81 |
+
return implode(
|
82 |
+
PHP_EOL,
|
83 |
+
spacexchimp_p005_generator()
|
84 |
+
);
|
85 |
}
|
86 |
add_shortcode( 'smbtoolbar', 'spacexchimp_p005_shortcode' );
|
87 |
|
91 |
add_filter( 'widget_text', 'do_shortcode' );
|
92 |
|
93 |
/**
|
94 |
+
* Autoload option
|
95 |
*/
|
96 |
+
function spacexchimp_p005_autoload( $content ) {
|
97 |
+
|
98 |
+
// Retrieve options from database and declare variables
|
99 |
$options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
100 |
+
$below_posts = !empty( $options['show_posts'] ) ? $options['show_posts'] : '';
|
101 |
+
$below_pages = !empty( $options['show_pages'] ) ? $options['show_pages'] : '';
|
102 |
|
103 |
if ( is_single() ) {
|
104 |
+
if ( $below_posts == "on" ) {
|
105 |
$content = $content . spacexchimp_p005_shortcode();
|
106 |
}
|
107 |
}
|
108 |
|
109 |
if ( is_page() ) {
|
110 |
+
if ( $below_pages == "on" ) {
|
111 |
$content = $content . spacexchimp_p005_shortcode();
|
112 |
}
|
113 |
}
|
114 |
|
115 |
return $content;
|
116 |
}
|
117 |
+
add_action( 'the_content', 'spacexchimp_p005_autoload' );
|
118 |
|
119 |
/**
|
120 |
* Callback for getting a list of all buttons
|
inc/php/items.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php /** * Prevent Direct Access */ defined( 'ABSPATH' ) or die( "Restricted access!" ); /** * Callback for getting a list of items * @return array (multilevel array) */ function spacexchimp_p005_get_items_media() { $text = SPACEXCHIMP_P005_TEXT; return array( array( 'slug' => 'facebook', 'label' => 'Facebook', 'placeholder' => 'https://www.facebook.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook' ), 'link' => '//www.facebook.com' ), array( 'slug' => 'facebook-group', 'label' => 'Facebook Group', 'placeholder' => 'https://www.facebook.com/groups/YourGroupnameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook Group' ), 'link' => '//www.facebook.com' ), array( 'slug' => 'twitter', 'label' => 'Twitter', 'placeholder' => 'https://twitter.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitter' ), 'link' => '//twitter.com' ), array( 'slug' => 'instagram', 'label' => 'Instagram', 'placeholder' => 'https://instagram.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Instagram' ), 'link' => '//instagram.com' ), array( 'slug' => 'google-plus', 'label' => 'Google+', 'placeholder' => 'https://plus.google.com/u/0/+YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google+' ), 'link' => '//plus.google.com' ), array( 'slug' => 'youtube', 'label' => 'YouTube', 'placeholder' => 'https://www.youtube.com/channel/YourChannelIdentifierHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube' ), 'link' => '//www.youtube.com' ), array( 'slug' => 'youtube-gaming', 'label' => 'YouTube Gaming', 'placeholder' => 'https://gaming.youtube.com/channel/YourChannelIdentifierHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube Gaming' ), 'link' => '//gaming.youtube.com' ), array( 'slug' => 'google-play', 'label' => 'Google Play', 'placeholder' => 'https://play.google.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google Play' ), 'link' => '//play.google.com' ), array( 'slug' => 'itunes', 'label' => 'iTunes', 'placeholder' => 'https://www.apple.com/itunes/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes' ), 'link' => '//www.apple.com/itunes' ), array( 'slug' => 'itunes-podcasts', 'label' => 'iTunes Podcasts', 'placeholder' => 'https://www.apple.com/itunes/podcasts/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes Podcasts' ), 'link' => '//www.apple.com/itunes/podcasts' ), array( 'slug' => 'apple-music', 'label' => 'Apple Music', 'placeholder' => 'https://www.apple.com/lae/music/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Apple Music' ), 'link' => '//www.apple.com/lae/music' ), array( 'slug' => 'periscope', 'label' => 'Periscope', 'placeholder' => 'https://www.periscope.tv/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Periscope' ), 'link' => '//www.periscope.tv' ), array( 'slug' => 'vimeo', 'label' => 'Vimeo', 'placeholder' => 'https://vimeo.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Vimeo' ), 'link' => '//vimeo.com' ), array( 'slug' => 'blogger', 'label' => 'Blogger', 'placeholder' => 'https://YourBlogNameHere.blogspot.com', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Blogger' ), 'link' => '//www.blogger.com' ), array( 'slug' => 'buzzsprout', 'label' => 'Buzzsprout', 'placeholder' => 'https://www.buzzsprout.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Buzzsprout' ), 'link' => '//www.buzzsprout.com' ), array( 'slug' => 'livejournal', 'label' => 'LiveJournal', 'placeholder' => 'https://YourUsernameHere.livejournal.com', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'LiveJournal' ), 'link' => '//www.livejournal.com' ), array( 'slug' => 'reddit', 'label' => 'Reddit', 'placeholder' => 'https://www.reddit.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Reddit' ), 'link' => '//www.reddit.com' ), array( 'slug' => 'linkedin', 'label' => 'LinkedIn', 'placeholder' => 'https://linkedin.com/in/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'LinkedIn' ), 'link' => '//linkedin.com' ), array( 'slug' => 'diaspora', 'label' => 'Diaspora', 'placeholder' => 'https://diasporafoundation.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Diaspora' ), 'link' => '//diasporafoundation.org' ), array( 'slug' => 'deviantart', 'label' => 'DeviantArt', 'placeholder' => 'https://www.deviantart.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'DeviantArt' ), 'link' => '//www.deviantart.com' ), array( 'slug' => 'xing', 'label' => 'XING', 'placeholder' => 'https://www.xing.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'XING' ), 'link' => '//www.xing.com' ), array( 'slug' => 'pinterest', 'label' => 'Pinterest', 'placeholder' => 'https://www.pinterest.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Pinterest' ), 'link' => '//www.pinterest.com' ), array( 'slug' => 'flickr', 'label' => 'Flickr', 'placeholder' => 'https://www.flickr.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flickr' ), 'link' => '//www.flickr.com' ), array( 'slug' => 'tumblr', 'label' => 'Tumblr', 'placeholder' => 'https://www.tumblr.com/blog/YourBlogNameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Tumblr' ), 'link' => '//www.tumblr.com' ), array( 'slug' => 'snapchat', 'label' => 'Snapchat', 'placeholder' => 'https://www.snapchat.com/add/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Snapchat' ), 'link' => '//www.snapchat.com' ), array( 'slug' => 'twitch', 'label' => 'Twitch', 'placeholder' => 'https://www.twitch.tv/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitch' ), 'link' => '//www.twitch.tv' ), array( 'slug' => 'patreon', 'label' => 'Patreon', 'placeholder' => 'https://www.patreon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Patreon' ), 'link' => '//www.patreon.com' ), array( 'slug' => 'imdb', 'label' => 'IMDb', 'placeholder' => 'https://www.imdb.com/name/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'IMDb' ), 'link' => '//www.imdb.com' ), array( 'slug' => 'soundcloud', 'label' => 'SoundCloud', 'placeholder' => 'https://soundcloud.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundCloud' ), 'link' => '//soundcloud.com' ), array( 'slug' => 'plugdj', 'label' => 'Plug.dj', 'placeholder' => 'https://plug.dj/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Plug.dj' ), 'link' => '//plug.dj' ), array( 'slug' => 'spotify', 'label' => 'Spotify', 'placeholder' => 'https://open.spotify.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Spotify' ), 'link' => '//www.spotify.com' ), array( 'slug' => 'bandcamp', 'label' => 'Bandcamp', 'placeholder' => 'https://bandcamp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bandcamp' ), 'link' => '//bandcamp.com' ), array( 'slug' => 'dloky', 'label' => 'Dloky', 'placeholder' => 'https://dloky.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Dloky' ), 'link' => '//dloky.com' ), array( 'slug' => 'amazon', 'label' => 'Amazon', 'placeholder' => 'https://www.amazon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Amazon' ), 'link' => '//www.amazon.com' ), array( 'slug' => 'bookbub', 'label' => 'BookBub', 'placeholder' => 'https://www.bookbub.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'BookBub' ), 'link' => '//www.bookbub.com' ), array( 'slug' => 'goodreads', 'label' => 'Goodreads', 'placeholder' => 'https://www.goodreads.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Goodreads' ), 'link' => '//www.goodreads.com' ), array( 'slug' => 'meetvibe', 'label' => 'MeetVibe', 'placeholder' => 'https://meetvibe.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'MeetVibe' ), 'link' => '//meetvibe.com' ), array( 'slug' => 'meetup', 'label' => 'Meetup', 'placeholder' => 'https://www.meetup.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Meetup' ), 'link' => '//www.meetup.com' ), array( 'slug' => 'steam', 'label' => 'Steam', 'placeholder' => 'https://store.steampowered.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steam' ), 'link' => '//store.steampowered.com' ), array( 'slug' => 'mixer', 'label' => 'Mixer', 'placeholder' => 'https://mixer.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mixer' ), 'link' => '//mixer.com' ), array( 'slug' => 'discord', 'label' => 'Discord', 'placeholder' => 'https://discordapp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Discord' ), 'link' => '//discordapp.com' ), array( 'slug' => 'yelp', 'label' => 'Yelp', 'placeholder' => 'https://www.yelp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yelp' ), 'link' => '//www.yelp.com' ), array( 'slug' => 'stumbleupon', 'label' => 'StumbleUpon', 'placeholder' => 'https://www.stumbleupon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'StumbleUpon' ), 'link' => '//www.stumbleupon.com' ), array( 'slug' => 'bloglovin', 'label' => 'Bloglovin', 'placeholder' => 'https://www.bloglovin.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bloglovin' ), 'link' => '//www.bloglovin.com' ), array( 'slug' => 'whatsapp', 'label' => 'WhatsApp', 'placeholder' => 'https://www.whatsapp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'WhatsApp' ), 'link' => '//www.whatsapp.com' ), array( 'slug' => 'medium', 'label' => 'Medium', 'placeholder' => 'https://medium.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Medium' ), 'link' => '//medium.com' ), array( 'slug' => '500px', 'label' => '500px', 'placeholder' => 'https://500px.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), '500px' ), 'link' => '//500px.com' ), array( 'slug' => 'behance', 'label' => 'Behance', 'placeholder' => 'https://www.behance.net/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Behance' ), 'link' => '//www.behance.net' ), array( 'slug' => 'polyvore', 'label' => 'Polyvore', 'placeholder' => 'https://www.polyvore.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Polyvore' ), 'link' => '//www.polyvore.com' ), array( 'slug' => 'yellowpages', 'label' => 'Yellow Pages', 'placeholder' => 'https://www.yellowpages.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yellow Pages' ), 'link' => '//www.yellowpages.com' ), array( 'slug' => 'line', 'label' => 'LINE', 'placeholder' => 'https://line.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'LINE' ), 'link' => '//line.me' ), array( 'slug' => 'itch', 'label' => 'itch', 'placeholder' => 'https://itch.io/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'itch' ), 'link' => '//itch.io' ), array( 'slug' => 'mastodon', 'label' => 'Mastodon', 'placeholder' => 'https://mastodon.social/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mastodon' ), 'link' => '//mastodon.social' ), array( 'slug' => 'remind', 'label' => 'Remind', 'placeholder' => 'https://www.remind.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Remind' ), 'link' => '//www.remind.com' ), array( 'slug' => 'trademe', 'label' => 'Trade Me', 'placeholder' => 'https://www.trademe.co.nz/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trade Me' ), 'link' => '//www.trademe.co.nz' ), array( 'slug' => 'vsco', 'label' => 'VSCO', 'placeholder' => 'https://vsco.co/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'VSCO' ), 'link' => '//vsco.co' ), array( 'slug' => 'hireology', 'label' => 'Hireology', 'placeholder' => 'https://hireology.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hireology' ), 'link' => '//hireology.com' ), array( 'slug' => 'kompoz', 'label' => 'Kompoz', 'placeholder' => 'https://www.kompoz.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Kompoz' ), 'link' => '//www.kompoz.com' ), array( 'slug' => 'soundblend', 'label' => 'SoundBlend', 'placeholder' => 'https://www.soundblend.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundBlend' ), 'link' => '//www.soundblend.com' ), array( 'slug' => 'vkontakte', 'label' => 'VKontakte', 'placeholder' => 'https://vk.com/id_YourIdentifierHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'VKontakte' ), 'link' => '//vk.com' ), array( 'slug' => 'odnoklassniki', 'label' => 'Odnoklassniki', 'placeholder' => 'https://ok.ru/profile/YourIdentifierHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Odnoklassniki' ), 'link' => '//ok.ru' ), array( 'slug' => 'telegram', 'label' => 'Telegram', 'placeholder' => 'https://telegram.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Telegram' ), 'link' => '//telegram.org' ), array( 'slug' => 'github', 'label' => 'GitHub', 'placeholder' => 'https://github.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'GitHub' ), 'link' => '//github.com' ), array( 'slug' => 'wordpress', 'label' => 'WordPress', 'placeholder' => 'https://profiles.wordpress.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'WordPress' ), 'link' => '//wordpress.org' ), array( 'slug' => 'codepen', 'label' => 'CodePen', 'placeholder' => 'http://codepen.io/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'CodePen' ), 'link' => '//codepen.io' ), array( 'slug' => 'askfm', 'label' => 'ASKfm', 'placeholder' => 'https://ask.fm/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'ASKfm' ), 'link' => '//ask.fm' ), array( 'slug' => 'ebay', 'label' => 'eBay', 'placeholder' => 'https://www.ebay.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'eBay' ), 'link' => '//www.ebay.com' ), array( 'slug' => 'hangouts', 'label' => 'Hangouts', 'placeholder' => 'https://hangouts.google.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hangouts' ), 'link' => '//hangouts.google.com' ), array( 'slug' => 'houzz', 'label' => 'Houzz', 'placeholder' => 'https://www.houzz.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Houzz' ), 'link' => '//www.houzz.com' ), array( 'slug' => 'quora', 'label' => 'Quora', 'placeholder' => 'https://www.quora.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Quora' ), 'link' => '//www.quora.com' ), array( 'slug' => 'steemit', 'label' => 'Steemit', 'placeholder' => 'https://steemit.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steemit' ), 'link' => '//steemit.com' ), array( 'slug' => 'theartstack', 'label' => 'ArtStack', 'placeholder' => 'https://theartstack.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'ArtStack' ), 'link' => '//theartstack.com' ), array( 'slug' => 'theknot', 'label' => 'The Knot', 'placeholder' => 'https://www.theknot.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'The Knot' ), 'link' => '//www.theknot.com' ), array( 'slug' => 'viber', 'label' => 'Viber', 'placeholder' => 'https://www.viber.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Viber' ), 'link' => '//www.viber.com' ), array( 'slug' => 'etsy', 'label' => 'Etsy', 'placeholder' => 'https://www.etsy.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Etsy' ), 'link' => '//www.etsy.com' ), array( 'slug' => 'tripadvisor', 'label' => 'Trip Advisor', 'placeholder' => 'https://www.tripadvisor.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trip Advisor' ), 'link' => '//www.tripadvisor.com' ), array( 'slug' => 'stackoverflow', 'label' => 'Stack Overflow', 'placeholder' => 'https://stackoverflow.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Overflow' ), 'link' => '//stackoverflow.com' ), array( 'slug' => 'stackexchange', 'label' => 'Stack Exchange', 'placeholder' => 'https://stackexchange.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Exchange' ), 'link' => '//stackexchange.com' ), array( 'slug' => 'bitbucket', 'label' => 'Bitbucket', 'placeholder' => 'https://bitbucket.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bitbucket' ), 'link' => '//bitbucket.org' ), array( 'slug' => 'dailypaintworks', 'label' => 'Daily Paintworks', 'placeholder' => 'https://www.dailypaintworks.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Daily Paintworks' ), 'link' => '//www.dailypaintworks.com' ), array( 'slug' => 'flipboard', 'label' => 'Flipboard', 'placeholder' => 'https://flipboard.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flipboard' ), 'link' => '//flipboard.com' ), array( 'slug' => 'feedsfloor', 'label' => 'FeedsFloor', 'placeholder' => 'https://www.feedsfloor.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'FeedsFloor' ), 'link' => '//www.feedsfloor.com' ), array( 'slug' => 'gab', 'label' => 'Gab', 'placeholder' => 'https://gab.ai/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Gab' ), 'link' => '//gab.ai' ), array( 'slug' => 'minds', 'label' => 'Minds', 'placeholder' => 'https://www.minds.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Minds' ), 'link' => '//www.minds.com' ), array( 'slug' => 'wattpad', 'label' => 'Wattpad', 'placeholder' => 'https://www.wattpad.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Wattpad' ), 'link' => '//www.wattpad.com' ), array( 'slug' => 'about-me', 'label' => 'about.me', 'placeholder' => 'https://about.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'about.me' ), 'link' => '//about.me' ), array( 'slug' => 'stitcher', 'label' => 'Stitcher', 'placeholder' => 'https://www.stitcher.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stitcher' ), 'link' => '//www.stitcher.com' ), array( 'slug' => 'strava', 'label' => 'Strava', 'placeholder' => 'https://www.strava.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Strava' ), 'link' => '//www.strava.com' ), array( 'slug' => 'wechat', 'label' => 'WeChat', 'placeholder' => 'https://www.wechat.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'WeChat' ), 'link' => '//www.wechat.com' ), array( 'slug' => 'weibo', 'label' => 'Weibo', 'placeholder' => 'https://weibo.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Weibo' ), 'link' => '//weibo.com' ), array( 'slug' => 'untappd', 'label' => 'Untappd', 'placeholder' => 'https://untappd.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Untappd' ), 'link' => '//untappd.com' ), array( 'slug' => 'tunein', 'label' => 'TuneIn', 'placeholder' => 'https://tunein.com/radio/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'TuneIn' ), 'link' => '//tunein.com' ), array( 'slug' => 'iheart', 'label' => 'iHeart', 'placeholder' => 'https://www.iheart.com/podcast/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'iHeart' ), 'link' => '//www.iheart.com' ), array( 'slug' => 'blackberry-world', 'label' => 'BlackBerry World', 'placeholder' => 'https://appworld.blackberry.com/webstore/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'BlackBerry World' ), 'link' => '//appworld.blackberry.com/webstore/' ), array( 'slug' => 'livestream', 'label' => 'Livestream', 'placeholder' => 'https://livestream.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the link to your %s profile page', $text ), 'Livestream' ), 'link' => '//livestream.com' ) ); } /** * Callback for getting a list of items * @return array (multilevel array) */ function spacexchimp_p005_get_items_additional() { $text = SPACEXCHIMP_P005_TEXT; return array( array( 'slug' => 'skype', 'label' => 'Skype', 'placeholder' => 'skype:YourUsernameHere?call', 'help' => __( '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', $text ), 'link' => '//www.skype.com' ), array( 'slug' => 'telephone', 'label' => 'Telephone', 'placeholder' => 'tel://1-555-555-5555', 'help' => __( 'Enter your telephone number with prefix <b>tel://</b>', $text ), 'link' => '' ), array( 'slug' => 'email', 'label' => 'Email', 'placeholder' => 'mailto:YourUsernameHere@gmail.com', 'help' => __( 'Enter your email address with prefix <b>mailto:</b>', $text ), 'link' => '' ), array( 'slug' => 'website', 'label' => 'Personal website', 'placeholder' => 'https://www.arthurgareginyan.com', 'help' => __( 'Enter the link to your personal website', $text ), 'link' => '' ), array( 'slug' => 'rss-feed', 'label' => 'RSS Feed', 'placeholder' => 'http://YourDomainNameHere.com/feed', 'help' => __( 'Enter the link to your RSS Feed', $text ), 'link' => '' ) ); }
|
1 |
+
<?php /** * Prevent Direct Access */ defined( 'ABSPATH' ) or die( "Restricted access!" ); /** * Callback for getting a list of items * @return array (multilevel array) */ function spacexchimp_p005_get_items_media() { $text = SPACEXCHIMP_P005_TEXT; return array( array( 'slug' => 'facebook', 'label' => 'Facebook', 'placeholder' => 'https://www.facebook.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Facebook' ), 'link' => '//www.facebook.com' ), array( 'slug' => 'facebook-group', 'label' => 'Facebook Group', 'placeholder' => 'https://www.facebook.com/groups/YourGroupnameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Facebook Group' ), 'link' => '//www.facebook.com' ), array( 'slug' => 'twitter', 'label' => 'Twitter', 'placeholder' => 'https://twitter.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Twitter' ), 'link' => '//twitter.com' ), array( 'slug' => 'instagram', 'label' => 'Instagram', 'placeholder' => 'https://instagram.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Instagram' ), 'link' => '//instagram.com' ), array( 'slug' => 'google-plus', 'label' => 'Google+', 'placeholder' => 'https://plus.google.com/u/0/+YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Google+' ), 'link' => '//plus.google.com' ), array( 'slug' => 'youtube', 'label' => 'YouTube', 'placeholder' => 'https://www.youtube.com/channel/YourChannelIdentifierHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'YouTube' ), 'link' => '//www.youtube.com' ), array( 'slug' => 'youtube-gaming', 'label' => 'YouTube Gaming', 'placeholder' => 'https://gaming.youtube.com/channel/YourChannelIdentifierHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'YouTube Gaming' ), 'link' => '//gaming.youtube.com' ), array( 'slug' => 'google-play', 'label' => 'Google Play', 'placeholder' => 'https://play.google.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Google Play' ), 'link' => '//play.google.com' ), array( 'slug' => 'itunes', 'label' => 'iTunes', 'placeholder' => 'https://www.apple.com/itunes/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'iTunes' ), 'link' => '//www.apple.com/itunes' ), array( 'slug' => 'itunes-podcasts', 'label' => 'iTunes Podcasts', 'placeholder' => 'https://www.apple.com/itunes/podcasts/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'iTunes Podcasts' ), 'link' => '//www.apple.com/itunes/podcasts' ), array( 'slug' => 'apple-music', 'label' => 'Apple Music', 'placeholder' => 'https://www.apple.com/lae/music/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Apple Music' ), 'link' => '//www.apple.com/lae/music' ), array( 'slug' => 'periscope', 'label' => 'Periscope', 'placeholder' => 'https://www.periscope.tv/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Periscope' ), 'link' => '//www.periscope.tv' ), array( 'slug' => 'vimeo', 'label' => 'Vimeo', 'placeholder' => 'https://vimeo.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Vimeo' ), 'link' => '//vimeo.com' ), array( 'slug' => 'blogger', 'label' => 'Blogger', 'placeholder' => 'https://YourBlogNameHere.blogspot.com', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Blogger' ), 'link' => '//www.blogger.com' ), array( 'slug' => 'buzzsprout', 'label' => 'Buzzsprout', 'placeholder' => 'https://www.buzzsprout.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Buzzsprout' ), 'link' => '//www.buzzsprout.com' ), array( 'slug' => 'livejournal', 'label' => 'LiveJournal', 'placeholder' => 'https://YourUsernameHere.livejournal.com', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'LiveJournal' ), 'link' => '//www.livejournal.com' ), array( 'slug' => 'reddit', 'label' => 'Reddit', 'placeholder' => 'https://www.reddit.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Reddit' ), 'link' => '//www.reddit.com' ), array( 'slug' => 'linkedin', 'label' => 'LinkedIn', 'placeholder' => 'https://linkedin.com/in/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'LinkedIn' ), 'link' => '//linkedin.com' ), array( 'slug' => 'diaspora', 'label' => 'Diaspora', 'placeholder' => 'https://diasporafoundation.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Diaspora' ), 'link' => '//diasporafoundation.org' ), array( 'slug' => 'deviantart', 'label' => 'DeviantArt', 'placeholder' => 'https://www.deviantart.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'DeviantArt' ), 'link' => '//www.deviantart.com' ), array( 'slug' => 'xing', 'label' => 'XING', 'placeholder' => 'https://www.xing.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'XING' ), 'link' => '//www.xing.com' ), array( 'slug' => 'pinterest', 'label' => 'Pinterest', 'placeholder' => 'https://www.pinterest.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Pinterest' ), 'link' => '//www.pinterest.com' ), array( 'slug' => 'flickr', 'label' => 'Flickr', 'placeholder' => 'https://www.flickr.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Flickr' ), 'link' => '//www.flickr.com' ), array( 'slug' => 'tumblr', 'label' => 'Tumblr', 'placeholder' => 'https://www.tumblr.com/blog/YourBlogNameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Tumblr' ), 'link' => '//www.tumblr.com' ), array( 'slug' => 'snapchat', 'label' => 'Snapchat', 'placeholder' => 'https://www.snapchat.com/add/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Snapchat' ), 'link' => '//www.snapchat.com' ), array( 'slug' => 'twitch', 'label' => 'Twitch', 'placeholder' => 'https://www.twitch.tv/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Twitch' ), 'link' => '//www.twitch.tv' ), array( 'slug' => 'patreon', 'label' => 'Patreon', 'placeholder' => 'https://www.patreon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Patreon' ), 'link' => '//www.patreon.com' ), array( 'slug' => 'imdb', 'label' => 'IMDb', 'placeholder' => 'https://www.imdb.com/name/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'IMDb' ), 'link' => '//www.imdb.com' ), array( 'slug' => 'soundcloud', 'label' => 'SoundCloud', 'placeholder' => 'https://soundcloud.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'SoundCloud' ), 'link' => '//soundcloud.com' ), array( 'slug' => 'plugdj', 'label' => 'Plug.dj', 'placeholder' => 'https://plug.dj/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Plug.dj' ), 'link' => '//plug.dj' ), array( 'slug' => 'spotify', 'label' => 'Spotify', 'placeholder' => 'https://open.spotify.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Spotify' ), 'link' => '//www.spotify.com' ), array( 'slug' => 'bandcamp', 'label' => 'Bandcamp', 'placeholder' => 'https://bandcamp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Bandcamp' ), 'link' => '//bandcamp.com' ), array( 'slug' => 'dloky', 'label' => 'Dloky', 'placeholder' => 'https://dloky.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Dloky' ), 'link' => '//dloky.com' ), array( 'slug' => 'amazon', 'label' => 'Amazon', 'placeholder' => 'https://www.amazon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Amazon' ), 'link' => '//www.amazon.com' ), array( 'slug' => 'bookbub', 'label' => 'BookBub', 'placeholder' => 'https://www.bookbub.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'BookBub' ), 'link' => '//www.bookbub.com' ), array( 'slug' => 'goodreads', 'label' => 'Goodreads', 'placeholder' => 'https://www.goodreads.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Goodreads' ), 'link' => '//www.goodreads.com' ), array( 'slug' => 'meetvibe', 'label' => 'MeetVibe', 'placeholder' => 'https://meetvibe.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'MeetVibe' ), 'link' => '//meetvibe.com' ), array( 'slug' => 'meetup', 'label' => 'Meetup', 'placeholder' => 'https://www.meetup.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Meetup' ), 'link' => '//www.meetup.com' ), array( 'slug' => 'steam', 'label' => 'Steam', 'placeholder' => 'https://store.steampowered.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Steam' ), 'link' => '//store.steampowered.com' ), array( 'slug' => 'mixer', 'label' => 'Mixer', 'placeholder' => 'https://mixer.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Mixer' ), 'link' => '//mixer.com' ), array( 'slug' => 'discord', 'label' => 'Discord', 'placeholder' => 'https://discordapp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Discord' ), 'link' => '//discordapp.com' ), array( 'slug' => 'yelp', 'label' => 'Yelp', 'placeholder' => 'https://www.yelp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Yelp' ), 'link' => '//www.yelp.com' ), array( 'slug' => 'stumbleupon', 'label' => 'StumbleUpon', 'placeholder' => 'https://www.stumbleupon.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'StumbleUpon' ), 'link' => '//www.stumbleupon.com' ), array( 'slug' => 'bloglovin', 'label' => 'Bloglovin', 'placeholder' => 'https://www.bloglovin.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Bloglovin' ), 'link' => '//www.bloglovin.com' ), array( 'slug' => 'whatsapp', 'label' => 'WhatsApp', 'placeholder' => 'https://www.whatsapp.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'WhatsApp' ), 'link' => '//www.whatsapp.com' ), array( 'slug' => 'medium', 'label' => 'Medium', 'placeholder' => 'https://medium.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Medium' ), 'link' => '//medium.com' ), array( 'slug' => '500px', 'label' => '500px', 'placeholder' => 'https://500px.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), '500px' ), 'link' => '//500px.com' ), array( 'slug' => 'behance', 'label' => 'Behance', 'placeholder' => 'https://www.behance.net/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Behance' ), 'link' => '//www.behance.net' ), array( 'slug' => 'polyvore', 'label' => 'Polyvore', 'placeholder' => 'https://www.polyvore.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Polyvore' ), 'link' => '//www.polyvore.com' ), array( 'slug' => 'yellowpages', 'label' => 'Yellow Pages', 'placeholder' => 'https://www.yellowpages.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Yellow Pages' ), 'link' => '//www.yellowpages.com' ), array( 'slug' => 'line', 'label' => 'LINE', 'placeholder' => 'https://line.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'LINE' ), 'link' => '//line.me' ), array( 'slug' => 'itch', 'label' => 'itch', 'placeholder' => 'https://itch.io/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'itch' ), 'link' => '//itch.io' ), array( 'slug' => 'mastodon', 'label' => 'Mastodon', 'placeholder' => 'https://mastodon.social/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Mastodon' ), 'link' => '//mastodon.social' ), array( 'slug' => 'remind', 'label' => 'Remind', 'placeholder' => 'https://www.remind.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Remind' ), 'link' => '//www.remind.com' ), array( 'slug' => 'trademe', 'label' => 'Trade Me', 'placeholder' => 'https://www.trademe.co.nz/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Trade Me' ), 'link' => '//www.trademe.co.nz' ), array( 'slug' => 'vsco', 'label' => 'VSCO', 'placeholder' => 'https://vsco.co/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'VSCO' ), 'link' => '//vsco.co' ), array( 'slug' => 'hireology', 'label' => 'Hireology', 'placeholder' => 'https://hireology.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Hireology' ), 'link' => '//hireology.com' ), array( 'slug' => 'kompoz', 'label' => 'Kompoz', 'placeholder' => 'https://www.kompoz.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Kompoz' ), 'link' => '//www.kompoz.com' ), array( 'slug' => 'soundblend', 'label' => 'SoundBlend', 'placeholder' => 'https://www.soundblend.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'SoundBlend' ), 'link' => '//www.soundblend.com' ), array( 'slug' => 'vkontakte', 'label' => 'VKontakte', 'placeholder' => 'https://vk.com/id_YourIdentifierHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'VKontakte' ), 'link' => '//vk.com' ), array( 'slug' => 'odnoklassniki', 'label' => 'Odnoklassniki', 'placeholder' => 'https://ok.ru/profile/YourIdentifierHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Odnoklassniki' ), 'link' => '//ok.ru' ), array( 'slug' => 'telegram', 'label' => 'Telegram', 'placeholder' => 'https://telegram.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Telegram' ), 'link' => '//telegram.org' ), array( 'slug' => 'github', 'label' => 'GitHub', 'placeholder' => 'https://github.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'GitHub' ), 'link' => '//github.com' ), array( 'slug' => 'wordpress', 'label' => 'WordPress', 'placeholder' => 'https://profiles.wordpress.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'WordPress' ), 'link' => '//wordpress.org' ), array( 'slug' => 'codepen', 'label' => 'CodePen', 'placeholder' => 'http://codepen.io/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'CodePen' ), 'link' => '//codepen.io' ), array( 'slug' => 'askfm', 'label' => 'ASKfm', 'placeholder' => 'https://ask.fm/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'ASKfm' ), 'link' => '//ask.fm' ), array( 'slug' => 'ebay', 'label' => 'eBay', 'placeholder' => 'https://www.ebay.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'eBay' ), 'link' => '//www.ebay.com' ), array( 'slug' => 'hangouts', 'label' => 'Hangouts', 'placeholder' => 'https://hangouts.google.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Hangouts' ), 'link' => '//hangouts.google.com' ), array( 'slug' => 'houzz', 'label' => 'Houzz', 'placeholder' => 'https://www.houzz.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Houzz' ), 'link' => '//www.houzz.com' ), array( 'slug' => 'quora', 'label' => 'Quora', 'placeholder' => 'https://www.quora.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Quora' ), 'link' => '//www.quora.com' ), array( 'slug' => 'steemit', 'label' => 'Steemit', 'placeholder' => 'https://steemit.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Steemit' ), 'link' => '//steemit.com' ), array( 'slug' => 'theartstack', 'label' => 'ArtStack', 'placeholder' => 'https://theartstack.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'ArtStack' ), 'link' => '//theartstack.com' ), array( 'slug' => 'theknot', 'label' => 'The Knot', 'placeholder' => 'https://www.theknot.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'The Knot' ), 'link' => '//www.theknot.com' ), array( 'slug' => 'viber', 'label' => 'Viber', 'placeholder' => 'https://www.viber.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Viber' ), 'link' => '//www.viber.com' ), array( 'slug' => 'etsy', 'label' => 'Etsy', 'placeholder' => 'https://www.etsy.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Etsy' ), 'link' => '//www.etsy.com' ), array( 'slug' => 'tripadvisor', 'label' => 'Trip Advisor', 'placeholder' => 'https://www.tripadvisor.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Trip Advisor' ), 'link' => '//www.tripadvisor.com' ), array( 'slug' => 'stackoverflow', 'label' => 'Stack Overflow', 'placeholder' => 'https://stackoverflow.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Stack Overflow' ), 'link' => '//stackoverflow.com' ), array( 'slug' => 'stackexchange', 'label' => 'Stack Exchange', 'placeholder' => 'https://stackexchange.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Stack Exchange' ), 'link' => '//stackexchange.com' ), array( 'slug' => 'bitbucket', 'label' => 'Bitbucket', 'placeholder' => 'https://bitbucket.org/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Bitbucket' ), 'link' => '//bitbucket.org' ), array( 'slug' => 'dailypaintworks', 'label' => 'Daily Paintworks', 'placeholder' => 'https://www.dailypaintworks.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Daily Paintworks' ), 'link' => '//www.dailypaintworks.com' ), array( 'slug' => 'flipboard', 'label' => 'Flipboard', 'placeholder' => 'https://flipboard.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Flipboard' ), 'link' => '//flipboard.com' ), array( 'slug' => 'feedsfloor', 'label' => 'FeedsFloor', 'placeholder' => 'https://www.feedsfloor.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'FeedsFloor' ), 'link' => '//www.feedsfloor.com' ), array( 'slug' => 'gab', 'label' => 'Gab', 'placeholder' => 'https://gab.ai/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Gab' ), 'link' => '//gab.ai' ), array( 'slug' => 'minds', 'label' => 'Minds', 'placeholder' => 'https://www.minds.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Minds' ), 'link' => '//www.minds.com' ), array( 'slug' => 'wattpad', 'label' => 'Wattpad', 'placeholder' => 'https://www.wattpad.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Wattpad' ), 'link' => '//www.wattpad.com' ), array( 'slug' => 'about-me', 'label' => 'about.me', 'placeholder' => 'https://about.me/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'about.me' ), 'link' => '//about.me' ), array( 'slug' => 'stitcher', 'label' => 'Stitcher', 'placeholder' => 'https://www.stitcher.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Stitcher' ), 'link' => '//www.stitcher.com' ), array( 'slug' => 'strava', 'label' => 'Strava', 'placeholder' => 'https://www.strava.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Strava' ), 'link' => '//www.strava.com' ), array( 'slug' => 'wechat', 'label' => 'WeChat', 'placeholder' => 'https://www.wechat.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'WeChat' ), 'link' => '//www.wechat.com' ), array( 'slug' => 'weibo', 'label' => 'Weibo', 'placeholder' => 'https://weibo.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Weibo' ), 'link' => '//weibo.com' ), array( 'slug' => 'untappd', 'label' => 'Untappd', 'placeholder' => 'https://untappd.com/user/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Untappd' ), 'link' => '//untappd.com' ), array( 'slug' => 'tunein', 'label' => 'TuneIn', 'placeholder' => 'https://tunein.com/radio/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'TuneIn' ), 'link' => '//tunein.com' ), array( 'slug' => 'iheart', 'label' => 'iHeart', 'placeholder' => 'https://www.iheart.com/podcast/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'iHeart' ), 'link' => '//www.iheart.com' ), array( 'slug' => 'blackberry-world', 'label' => 'BlackBerry World', 'placeholder' => 'https://appworld.blackberry.com/webstore/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'BlackBerry World' ), 'link' => '//appworld.blackberry.com/webstore/' ), array( 'slug' => 'livestream', 'label' => 'Livestream', 'placeholder' => 'https://livestream.com/YourUsernameHere', 'help' => sprintf( __( 'Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>).', $text ), 'Livestream' ), 'link' => '//livestream.com' ) ); } /** * Callback for getting a list of items * @return array (multilevel array) */ function spacexchimp_p005_get_items_additional() { $text = SPACEXCHIMP_P005_TEXT; return array( array( 'slug' => 'skype', 'label' => 'Skype', 'placeholder' => 'skype:YourUsernameHere?call', 'help' => __( '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.', $text ), 'link' => '//www.skype.com' ), array( 'slug' => 'telephone', 'label' => 'Telephone', 'placeholder' => 'tel://1-555-555-5555', 'help' => __( 'Enter your telephone number with prefix <b>tel://</b>.', $text ), 'link' => '' ), array( 'slug' => 'email', 'label' => 'Email', 'placeholder' => 'mailto:YourUsernameHere@gmail.com', 'help' => __( 'Enter your email address with prefix <b>mailto:</b>.', $text ), 'link' => '' ), array( 'slug' => 'website', 'label' => 'Personal website', 'placeholder' => 'https://www.spacexchimp.com', 'help' => __( 'Enter the URL of your personal website.', $text ), 'link' => '' ), array( 'slug' => 'rss-feed', 'label' => 'RSS Feed', 'placeholder' => 'http://YourDomainNameHere.com/feed', 'help' => __( 'Enter the URL of your RSS feed.', $text ), 'link' => '' ) ); }
|
inc/php/page.php
CHANGED
@@ -65,26 +65,26 @@ function spacexchimp_p005_render_submenu_page() {
|
|
65 |
<p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', $text ); ?></p>
|
66 |
<ol class="custom-counter">
|
67 |
<li><?php _e( 'Go to the "Settings" tab on this page.', $text ); ?></li>
|
68 |
-
<li><?php _e( '
|
69 |
<li><?php _e( 'Select the desired settings.', $text ); ?></li>
|
70 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
71 |
<li><?php _e( '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.', $text ); ?><br><br>
|
72 |
-
<p><?php _e( '<b>A)</b>
|
73 |
-
<p><?php _e( '<b>B)</b>
|
74 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
75 |
-
<p><?php _e( '<b>C)</b>
|
76 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
77 |
-
<p><?php _e( '<b>D)</b>
|
78 |
<p><?php highlight_string('<?php echo do_shortcode("[smbtoolbar]"); ?>'); ?></p>
|
79 |
</li>
|
80 |
<li><?php _e( 'Enjoy your fancy social media follow buttons.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
81 |
</ol>
|
82 |
-
<p class="note"
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
</p>
|
89 |
</div>
|
90 |
</div>
|
@@ -103,7 +103,7 @@ function spacexchimp_p005_render_submenu_page() {
|
|
103 |
|
104 |
<div class="panel-group" id="collapse-group">
|
105 |
<?php
|
106 |
-
$loopvalue = '
|
107 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
108 |
echo '<div class="panel panel-default">
|
109 |
<div class="panel-heading">
|
@@ -137,48 +137,55 @@ function spacexchimp_p005_render_submenu_page() {
|
|
137 |
<div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
|
138 |
<div class="answer-3"><?php _e( '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!', $text ); ?></div>
|
139 |
|
140 |
-
<div class="question-4"><?php _e( '
|
141 |
-
<div class="answer-4"><?php _e( '
|
142 |
|
143 |
-
<div class="question-5"><?php _e( '
|
144 |
-
<div class="answer-5"><?php _e( '
|
|
|
145 |
|
146 |
-
<div class="question-6"><?php _e( '
|
147 |
-
<div class="answer-6"><?php _e( '
|
148 |
|
149 |
-
<div class="question-7
|
150 |
-
<div class="answer-7"><?php _e( '
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
154 |
-
<div class="answer-
|
155 |
|
156 |
-
<div class="question-
|
157 |
-
<div class="answer-
|
158 |
__( 'Bug reports are very welcome! Please visit %s our contact 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-
|
165 |
-
<div class="answer-
|
166 |
__( 'Any suggestions are very welcome! Please visit %s our contact page %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-
|
173 |
-
<div class="answer-
|
174 |
__( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
|
175 |
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
176 |
'</a>'
|
177 |
);
|
178 |
?></div>
|
179 |
|
180 |
-
<div class="question-
|
181 |
-
<div class="answer-
|
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>'
|
65 |
<p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', $text ); ?></p>
|
66 |
<ol class="custom-counter">
|
67 |
<li><?php _e( 'Go to the "Settings" tab on this page.', $text ); ?></li>
|
68 |
+
<li><?php _e( 'Select the desired buttons and fill in the required URL fields.', $text ); ?></li>
|
69 |
<li><?php _e( 'Select the desired settings.', $text ); ?></li>
|
70 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
71 |
<li><?php _e( '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.', $text ); ?><br><br>
|
72 |
+
<p><?php _e( '<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox "Show on Posts" or/and "Show on Pages" in the section "Display options", then click the "Save changes" button.', $text ); ?></p>
|
73 |
+
<p><?php _e( '<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:', $text ); ?></p>
|
74 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
75 |
+
<p><?php _e( '<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the "Text" widget and add inside it the following shortcode:', $text ); ?></p>
|
76 |
<p><?php highlight_string('[smbtoolbar]'); ?></p>
|
77 |
+
<p><?php _e( '<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:', $text ); ?></p>
|
78 |
<p><?php highlight_string('<?php echo do_shortcode("[smbtoolbar]"); ?>'); ?></p>
|
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"><?php printf(
|
83 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
84 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
85 |
+
'</a>'
|
86 |
+
);
|
87 |
+
?>
|
88 |
</p>
|
89 |
</div>
|
90 |
</div>
|
103 |
|
104 |
<div class="panel-group" id="collapse-group">
|
105 |
<?php
|
106 |
+
$loopvalue = '14';
|
107 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
108 |
echo '<div class="panel panel-default">
|
109 |
<div class="panel-heading">
|
137 |
<div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
|
138 |
<div class="answer-3"><?php _e( '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!', $text ); ?></div>
|
139 |
|
140 |
+
<div class="question-4"><?php _e( 'Can I configure my buttons bar instance?', $text ); ?></div>
|
141 |
+
<div class="answer-4"><?php _e( 'Yes. On the "Settings" tab, select the desired settings and click the "Save changes" button. It\'s that simple!', $text ); ?></div>
|
142 |
|
143 |
+
<div class="question-5"><?php _e( 'How many buttons bar instances can I create?', $text ); ?></div>
|
144 |
+
<div class="answer-5"><?php _e( 'The free version of this plugin supports only 1 instance of the buttons bar.', $text ); ?><br><br>
|
145 |
+
<?php _e( 'In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances.', $text ); ?></div>
|
146 |
|
147 |
+
<div class="question-6"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
|
148 |
+
<div class="answer-6"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
|
149 |
|
150 |
+
<div class="question-7"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
|
151 |
+
<div class="answer-7"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?></div>
|
152 |
+
|
153 |
+
<div class="question-8"><?php _e( 'What I need to do if the Google PageSpeed test says that this plugin images must be compressed?', $text ); ?></div>
|
154 |
+
<div class="answer-8"><?php _e( 'The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better.', $text ); ?></div>
|
155 |
+
|
156 |
+
<div class="question-9 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
|
157 |
+
<div class="answer-9"><?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>
|
158 |
<?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>
|
159 |
|
160 |
+
<div class="question-10 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
|
161 |
+
<div class="answer-10"><?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>
|
162 |
|
163 |
+
<div class="question-11 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
|
164 |
+
<div class="answer-11"><?php printf(
|
165 |
__( 'Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
|
166 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
167 |
'</a>'
|
168 |
);
|
169 |
?></div>
|
170 |
|
171 |
+
<div class="question-12"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
|
172 |
+
<div class="answer-12"><?php printf(
|
173 |
__( 'Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
|
174 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
175 |
'</a>'
|
176 |
);
|
177 |
?></div>
|
178 |
|
179 |
+
<div class="question-13"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
|
180 |
+
<div class="answer-13"><?php printf(
|
181 |
__( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
|
182 |
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
183 |
'</a>'
|
184 |
);
|
185 |
?></div>
|
186 |
|
187 |
+
<div class="question-14"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
|
188 |
+
<div class="answer-14"><?php printf(
|
189 |
__( '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 ),
|
190 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
191 |
'</a>'
|
inc/php/settings.php
CHANGED
@@ -46,9 +46,9 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
46 |
</div>
|
47 |
|
48 |
<div class="postbox" id="button-links">
|
49 |
-
<h3 class="title"><?php _e( '
|
50 |
<div class="inside">
|
51 |
-
<p class="note"><?php _e( 'Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above.', $text ); ?></p>
|
52 |
<table class="form-table">
|
53 |
<?php
|
54 |
$items_all = spacexchimp_p005_get_items_all();
|
@@ -75,33 +75,20 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
75 |
<div class="postbox" id="display">
|
76 |
<h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
|
77 |
<div class="inside">
|
78 |
-
<p class="note"><?php _e( 'Here you can
|
79 |
<table class="form-table">
|
80 |
<?php
|
81 |
-
spacexchimp_p005_control_switch( 'show_posts',
|
82 |
-
__( 'Show on Posts', $text ),
|
83 |
-
__( 'Automatically display the social media follow buttons below content on Posts.', $text )
|
84 |
-
);
|
85 |
-
spacexchimp_p005_control_switch( 'show_pages',
|
86 |
-
__( 'Show on Pages', $text ),
|
87 |
-
__( 'Automatically display the social media follow buttons below content on Pages.', $text )
|
88 |
-
);
|
89 |
-
spacexchimp_p005_control_switch( 'new_tab',
|
90 |
-
__( 'Open in new tab', $text ),
|
91 |
-
__( 'Open links in a new tab/window.', $text )
|
92 |
-
);
|
93 |
-
spacexchimp_p005_control_switch( 'tooltips',
|
94 |
-
__( 'Tooltips', $text ),
|
95 |
-
__( 'Enable a tooltips with name of the social media above every button.', $text )
|
96 |
-
);
|
97 |
spacexchimp_p005_control_number( 'icon-size',
|
98 |
-
__( '
|
99 |
-
__( '
|
100 |
'64'
|
101 |
);
|
|
|
|
|
|
|
102 |
spacexchimp_p005_control_number( 'margin-right',
|
103 |
-
__( '
|
104 |
-
__( '
|
105 |
'10'
|
106 |
);
|
107 |
spacexchimp_p005_control_choice( 'alignment',
|
@@ -110,15 +97,40 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
110 |
'center' => __( 'Center', $text ),
|
111 |
'right' => __( 'Right', $text )
|
112 |
),
|
113 |
-
__( '
|
114 |
-
__( 'You can choose the alignment of the buttons bar.', $text ),
|
115 |
'center'
|
116 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
spacexchimp_p005_control_field( 'caption',
|
118 |
__( 'Caption', $text ),
|
119 |
-
__( 'Enter the caption to your social media follow buttons bar. It will be
|
120 |
'Follow me in social media:'
|
121 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
?>
|
123 |
</table>
|
124 |
</div>
|
46 |
</div>
|
47 |
|
48 |
<div class="postbox" id="button-links">
|
49 |
+
<h3 class="title"><?php _e( 'Buttons URL', $text ); ?></h3>
|
50 |
<div class="inside">
|
51 |
+
<p class="note"><?php _e( 'Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above.', $text ); ?></p>
|
52 |
<table class="form-table">
|
53 |
<?php
|
54 |
$items_all = spacexchimp_p005_get_items_all();
|
75 |
<div class="postbox" id="display">
|
76 |
<h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
|
77 |
<div class="inside">
|
78 |
+
<p class="note"><?php _e( 'Here you can customize the display of your social media follow buttons bar.', $text ); ?></p>
|
79 |
<table class="form-table">
|
80 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
spacexchimp_p005_control_number( 'icon-size',
|
82 |
+
__( 'Button size', $text ),
|
83 |
+
__( 'You can choose the size of the buttons (in pixels). Default is 64 pixels.', $text ),
|
84 |
'64'
|
85 |
);
|
86 |
+
spacexchimp_p005_control_separator(
|
87 |
+
__( 'Positioning', $text )
|
88 |
+
);
|
89 |
spacexchimp_p005_control_number( 'margin-right',
|
90 |
+
__( 'Button margin', $text ),
|
91 |
+
__( 'You can choose the size of the space (in pixels) between each button. Default is 10 pixels.', $text ),
|
92 |
'10'
|
93 |
);
|
94 |
spacexchimp_p005_control_choice( 'alignment',
|
97 |
'center' => __( 'Center', $text ),
|
98 |
'right' => __( 'Right', $text )
|
99 |
),
|
100 |
+
__( 'Buttons bar alignment', $text ),
|
101 |
+
__( 'You can choose the alignment of the entire buttons bar.', $text ),
|
102 |
'center'
|
103 |
);
|
104 |
+
spacexchimp_p005_control_separator(
|
105 |
+
__( 'Links open method', $text )
|
106 |
+
);
|
107 |
+
spacexchimp_p005_control_switch( 'new_tab',
|
108 |
+
__( 'Open in new tab', $text ),
|
109 |
+
__( 'Open links in a new tab/window.', $text )
|
110 |
+
);
|
111 |
+
spacexchimp_p005_control_separator(
|
112 |
+
__( 'Additional', $text )
|
113 |
+
);
|
114 |
spacexchimp_p005_control_field( 'caption',
|
115 |
__( 'Caption', $text ),
|
116 |
+
__( 'Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar.', $text ),
|
117 |
'Follow me in social media:'
|
118 |
);
|
119 |
+
spacexchimp_p005_control_switch( 'tooltips',
|
120 |
+
__( 'Tooltips', $text ),
|
121 |
+
__( 'Enable tooltips with the name of social media that will be displayed next to each button.', $text )
|
122 |
+
);
|
123 |
+
spacexchimp_p005_control_separator(
|
124 |
+
__( 'Autoload', $text )
|
125 |
+
);
|
126 |
+
spacexchimp_p005_control_switch( 'show_posts',
|
127 |
+
__( 'Show on Posts', $text ),
|
128 |
+
__( 'Automatically display the buttons bar below content on Posts.', $text )
|
129 |
+
);
|
130 |
+
spacexchimp_p005_control_switch( 'show_pages',
|
131 |
+
__( 'Show on Pages', $text ),
|
132 |
+
__( 'Automatically display the buttons bar below content on Pages.', $text )
|
133 |
+
);
|
134 |
?>
|
135 |
</table>
|
136 |
</div>
|
inc/php/sidebar.php
CHANGED
@@ -21,6 +21,14 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
21 |
</div>
|
22 |
</div>
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
21 |
</div>
|
22 |
</div>
|
23 |
|
24 |
+
<div class="postbox banner">
|
25 |
+
<div class="inside">
|
26 |
+
<a href="https://www.spacexchimp.com/plugins/social-media-buttons-toolbar-pro.html" target="_blank">
|
27 |
+
<img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/upgrade.png'; ?>" alt="Upgrade" style="margin-top:-16px;">
|
28 |
+
</a>
|
29 |
+
</div>
|
30 |
+
</div>
|
31 |
+
|
32 |
<div class="postbox about">
|
33 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
34 |
<div class="inside">
|
languages/social-media-buttons-toolbar-de_DE.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -24,38 +24,42 @@ msgstr ""
|
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
27 |
-
#: inc/php/core.php:
|
|
|
|
|
|
|
|
|
28 |
msgid "Donate"
|
29 |
msgstr "Spende"
|
30 |
|
31 |
-
#: inc/php/core.php:
|
32 |
msgid "Social Media Follow Buttons"
|
33 |
msgstr "Social Media Follow Buttons"
|
34 |
|
35 |
#: inc/php/items.php:1
|
36 |
#, php-format
|
37 |
-
msgid "Enter the
|
38 |
-
msgstr "Geben Sie den Link zu Ihrer %s Profil Seite ein"
|
39 |
|
40 |
#: inc/php/items.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/items.php:1
|
45 |
-
msgid "Enter your telephone number with prefix <b>tel://</b
|
46 |
-
msgstr "Geben Sie Ihre Telefonnummer mit dem Prefix <b>tel://</b> ein"
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
-
msgid "Enter your email address with prefix <b>mailto:</b
|
50 |
-
msgstr "Geben Sie Ihre Email Adresse mit dem Prefix <b>mailto:</b> ein"
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
-
msgid "Enter the
|
54 |
-
msgstr "Link zu Ihrer persönlichen Webseite"
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
-
msgid "Enter the
|
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."
|
@@ -91,7 +95,7 @@ msgstr "Verwendung"
|
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "F.A.Q."
|
93 |
|
94 |
-
#: inc/php/page.php:46 inc/php/settings.php:
|
95 |
msgid "Support"
|
96 |
msgstr "Support"
|
97 |
|
@@ -112,7 +116,7 @@ msgid "Go to the \"Settings\" tab on this page."
|
|
112 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
113 |
|
114 |
#: inc/php/page.php:68
|
115 |
-
msgid "
|
116 |
msgstr "Füllen Sie die benötigten Felder aus."
|
117 |
|
118 |
#: inc/php/page.php:69
|
@@ -128,19 +132,19 @@ msgid "Now you have several methods for display the social media follow buttons
|
|
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>
|
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>
|
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>
|
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>
|
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
|
@@ -151,10 +155,6 @@ msgstr "Viel Spaß mit den social media follow buttons."
|
|
151 |
msgid "It's that simple!"
|
152 |
msgstr "Es ist ganz einfach!"
|
153 |
|
154 |
-
#: inc/php/page.php:82
|
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 let us know %s and we will be happy to add them."
|
@@ -206,115 +206,136 @@ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save
|
|
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:
|
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:
|
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:
|
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:
|
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:
|
229 |
-
msgid "The images that uses in this plugin are already compressed, but
|
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:
|
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:
|
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:
|
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:
|
245 |
msgid "The last WordPress update is preventing me from editing my website 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:
|
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:
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "Wo kann ich eine Fehler melden?"
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
#, php-format
|
258 |
msgid "Bug reports are very welcome! Please visit %s our contact 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:
|
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:
|
266 |
#, php-format
|
267 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
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:
|
275 |
#, php-format
|
276 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. 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:
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
282 |
|
283 |
-
#: inc/php/page.php:
|
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:
|
289 |
msgid "Support Us"
|
290 |
msgstr "Unterstütze uns"
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Spende mit PayPal"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
#, php-format
|
298 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
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 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:
|
310 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
311 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "Danke für Ihre Unterstützung!"
|
316 |
|
317 |
-
#: inc/php/settings.php:21 inc/php/settings.php:
|
318 |
msgid "Save changes"
|
319 |
msgstr "Änderungen speichern"
|
320 |
|
@@ -339,11 +360,11 @@ msgid "Additional buttons"
|
|
339 |
msgstr ""
|
340 |
|
341 |
#: inc/php/settings.php:49
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
#: inc/php/settings.php:51
|
346 |
-
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/settings.php:76
|
@@ -351,98 +372,119 @@ msgid "Display options"
|
|
351 |
msgstr "Anzeigeoptionen"
|
352 |
|
353 |
#: inc/php/settings.php:78
|
354 |
-
msgid "
|
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: inc/php/settings.php:82
|
358 |
-
msgid "
|
359 |
-
msgstr "
|
360 |
|
361 |
#: inc/php/settings.php:83
|
362 |
-
msgid "
|
363 |
-
msgstr "
|
364 |
-
|
365 |
-
#: inc/php/settings.php:86
|
366 |
-
msgid "Show on Pages"
|
367 |
-
msgstr "Auf Seiten anzeigen"
|
368 |
|
369 |
#: inc/php/settings.php:87
|
370 |
-
msgid "
|
371 |
-
msgstr "
|
372 |
|
373 |
#: inc/php/settings.php:90
|
374 |
-
msgid "
|
375 |
-
|
|
|
376 |
|
377 |
#: inc/php/settings.php:91
|
378 |
-
msgid "
|
379 |
-
msgstr "Link in einem neuen Tab/Fenster öffnen."
|
380 |
-
|
381 |
-
#: inc/php/settings.php:94
|
382 |
-
msgid "Tooltips"
|
383 |
-
msgstr "Tooltip"
|
384 |
-
|
385 |
-
#: inc/php/settings.php:95
|
386 |
-
msgid "Enable a tooltips with name of the social media above every button."
|
387 |
-
msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
|
388 |
-
|
389 |
-
#: inc/php/settings.php:98
|
390 |
-
msgid "Icon size"
|
391 |
-
msgstr "Icon Grösse"
|
392 |
-
|
393 |
-
#: inc/php/settings.php:99
|
394 |
-
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
395 |
-
msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
396 |
-
|
397 |
-
#: inc/php/settings.php:103
|
398 |
-
msgid "Margin"
|
399 |
-
msgstr "Rand"
|
400 |
-
|
401 |
-
#: inc/php/settings.php:104
|
402 |
-
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
403 |
msgstr "Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
404 |
|
405 |
-
#: inc/php/settings.php:
|
406 |
msgid "Left"
|
407 |
msgstr "Links"
|
408 |
|
409 |
-
#: inc/php/settings.php:
|
410 |
msgid "Center"
|
411 |
msgstr "Mittig"
|
412 |
|
413 |
-
#: inc/php/settings.php:
|
414 |
msgid "Right"
|
415 |
msgstr "Rechts"
|
416 |
|
417 |
-
#: inc/php/settings.php:
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
-
#: inc/php/settings.php:
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
426 |
msgid "Caption"
|
427 |
msgstr "Überschrift"
|
428 |
|
429 |
-
#: inc/php/settings.php:
|
430 |
-
msgid "Enter the caption to your social media follow buttons bar. It will be
|
431 |
msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
|
432 |
|
433 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Live Preview"
|
435 |
msgstr "Live Vorschau"
|
436 |
|
437 |
-
#: inc/php/settings.php:
|
438 |
msgid "Click the \"Save changes\" button to update this preview."
|
439 |
msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
440 |
|
441 |
-
#: inc/php/settings.php:
|
442 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
443 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
444 |
|
445 |
-
#: inc/php/settings.php:
|
446 |
msgid "Thanks for your support!"
|
447 |
msgstr "Danke für Ihre Unterstützung!"
|
448 |
|
@@ -450,19 +492,19 @@ msgstr "Danke für Ihre Unterstützung!"
|
|
450 |
msgid "We are «Space X-Chimp»"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/sidebar.php:
|
454 |
msgid "About"
|
455 |
msgstr "Über"
|
456 |
|
457 |
-
#: inc/php/sidebar.php:
|
458 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
459 |
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
|
460 |
|
461 |
-
#: inc/php/sidebar.php:
|
462 |
msgid "Help"
|
463 |
msgstr "Hilfe"
|
464 |
|
465 |
-
#: inc/php/sidebar.php:
|
466 |
msgid "If you have a question, please read the information in the FAQ section."
|
467 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
468 |
|
@@ -486,11 +528,20 @@ msgstr "Space X-Chimp"
|
|
486 |
msgid "https://www.spacexchimp.com"
|
487 |
msgstr "https://www.spacexchimp.com"
|
488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
490 |
#~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
|
491 |
|
492 |
#~ 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."
|
493 |
#~ 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."
|
494 |
|
495 |
-
#~ 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."
|
496 |
#~ msgstr "Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:44+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:45+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
27 |
+
#: inc/php/core.php:33 inc/php/core.php:48
|
28 |
+
msgid "Upgrade to PRO"
|
29 |
+
msgstr "Upgrade auf PRO"
|
30 |
+
|
31 |
+
#: inc/php/core.php:47
|
32 |
msgid "Donate"
|
33 |
msgstr "Spende"
|
34 |
|
35 |
+
#: inc/php/core.php:63
|
36 |
msgid "Social Media Follow Buttons"
|
37 |
msgstr "Social Media Follow Buttons"
|
38 |
|
39 |
#: inc/php/items.php:1
|
40 |
#, php-format
|
41 |
+
msgid "Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
42 |
+
msgstr "Geben Sie den Link zu Ihrer %s Profil Seite ein. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
+
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."
|
46 |
+
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."
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
+
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
+
msgstr "Geben Sie Ihre Telefonnummer mit dem Prefix <b>tel://</b> ein."
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
+
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
+
msgstr "Geben Sie Ihre Email Adresse mit dem Prefix <b>mailto:</b> ein."
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
+
msgid "Enter the URL of your personal website."
|
58 |
+
msgstr "Link zu Ihrer persönlichen Webseite."
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
+
msgid "Enter the URL of your RSS feed."
|
62 |
+
msgstr "Geben Sie den Link zu Ihrem RSS Feed ein."
|
63 |
|
64 |
#: inc/php/messages.php:26
|
65 |
msgid "Hello. We are the team of Space X-Chimp."
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
+
#: inc/php/page.php:46 inc/php/settings.php:150 inc/php/sidebar.php:47
|
99 |
msgid "Support"
|
100 |
msgstr "Support"
|
101 |
|
116 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
117 |
|
118 |
#: inc/php/page.php:68
|
119 |
+
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr "Füllen Sie die benötigten Felder aus."
|
121 |
|
122 |
#: inc/php/page.php:69
|
132 |
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."
|
133 |
|
134 |
#: inc/php/page.php:72
|
135 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
136 |
msgstr "<b>A)</b> Um die Buttons unterhalb eines Contents bei jedem Post und/oder Seite anzuzeigen, wählen Sie die Checkbox \"Zeige in Posts\" und/oder \"Zeige auf Seiten im Bereich \"Anzeigeoptionen\", dann klicken Sie den Button \"Änderungen speichern\"."
|
137 |
|
138 |
#: inc/php/page.php:73
|
139 |
+
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>B)</b> Um die Buttons innerhalb eines Posts/einer Seite anzuzeigen, benutzen Sie den folgenden Shortcode:"
|
141 |
|
142 |
#: inc/php/page.php:75
|
143 |
+
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>C)</b> Um die Buttons in einem Widget-Bereich (Sidebar, Fusszeile, etc.) anzuzeigen, benutzen Sie das \"Text\" Widget und fügen Sie den folgenden Shortcode ein:"
|
145 |
|
146 |
#: inc/php/page.php:77
|
147 |
+
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr "<b>D)</b> Um die Buttons direkt zu einem Theme hinzuzufügen, fügen Sie den folgenden Code an der gewünschten Stelle (wo Sie die Buttons angezeigt haben wollen) in Ihrem Theme ein:"
|
149 |
|
150 |
#: inc/php/page.php:80
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "Es ist ganz einfach!"
|
157 |
|
|
|
|
|
|
|
|
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
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 "Can I configure my buttons bar instance?"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
#| msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy your fancy social media follow buttons. It's that simple!"
|
214 |
+
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: inc/php/page.php:143
|
218 |
+
msgid "How many buttons bar instances can I create?"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:144
|
222 |
+
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:145
|
226 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/php/page.php:147
|
230 |
msgid "Does this plugin requires any modification of the theme?"
|
231 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
232 |
|
233 |
+
#: inc/php/page.php:148
|
234 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
235 |
msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
236 |
|
237 |
+
#: inc/php/page.php:150
|
238 |
msgid "Does this require any knowledge of HTML or CSS?"
|
239 |
msgstr "Brauche ich HTML oder CCS Kenntnisse?"
|
240 |
|
241 |
+
#: inc/php/page.php:151
|
242 |
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
243 |
msgstr "Absolut nicht. Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden."
|
244 |
|
245 |
+
#: inc/php/page.php:153
|
246 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
247 |
msgstr "Was muss ich machen, wenn der Google PageSpeed Test sagt, dass Grafiken das Plugin komprimiert werden müssen?"
|
248 |
|
249 |
+
#: inc/php/page.php:154
|
250 |
+
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
251 |
msgstr "Die Grafiken, die innerhalb des Plugins verwendet werden, sind bereits komprimiert. Gerne suche ich auch nach einer besseren Komprimierung, wenn es benötigt wird."
|
252 |
|
253 |
+
#: inc/php/page.php:156
|
254 |
msgid "It's not working. What could be wrong?"
|
255 |
msgstr "Es funktioniert nicht. Was könnte falsch sein?"
|
256 |
|
257 |
+
#: inc/php/page.php:157
|
258 |
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."
|
259 |
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."
|
260 |
|
261 |
+
#: inc/php/page.php:158
|
262 |
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."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:160
|
266 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
267 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
268 |
|
269 |
+
#: inc/php/page.php:161
|
270 |
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."
|
271 |
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."
|
272 |
|
273 |
+
#: inc/php/page.php:163
|
274 |
msgid "Where to report bug if found?"
|
275 |
msgstr "Wo kann ich eine Fehler melden?"
|
276 |
|
277 |
+
#: inc/php/page.php:165
|
278 |
#, php-format
|
279 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:171
|
283 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
284 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
285 |
|
286 |
+
#: inc/php/page.php:173
|
287 |
#, php-format
|
288 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/php/page.php:179
|
292 |
msgid "I love this plugin! Can I help somehow?"
|
293 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
294 |
|
295 |
+
#: inc/php/page.php:181
|
296 |
#, php-format
|
297 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
298 |
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
299 |
|
300 |
+
#: inc/php/page.php:187
|
301 |
msgid "My question wasn't answered here."
|
302 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
303 |
|
304 |
+
#: inc/php/page.php:189
|
305 |
#, php-format
|
306 |
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."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:203
|
310 |
msgid "Support Us"
|
311 |
msgstr "Unterstütze uns"
|
312 |
|
313 |
+
#: inc/php/page.php:211 inc/php/settings.php:157 inc/php/sidebar.php:54
|
314 |
msgid "Donate with PayPal"
|
315 |
msgstr "Spende mit PayPal"
|
316 |
|
317 |
+
#: inc/php/page.php:216
|
318 |
#, php-format
|
319 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:224
|
323 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:225
|
327 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
328 |
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 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."
|
329 |
|
330 |
+
#: inc/php/page.php:226
|
331 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
332 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
333 |
|
334 |
+
#: inc/php/page.php:227
|
335 |
msgid "Thank you for your support!"
|
336 |
msgstr "Danke für Ihre Unterstützung!"
|
337 |
|
338 |
+
#: inc/php/settings.php:21 inc/php/settings.php:139
|
339 |
msgid "Save changes"
|
340 |
msgstr "Änderungen speichern"
|
341 |
|
360 |
msgstr ""
|
361 |
|
362 |
#: inc/php/settings.php:49
|
363 |
+
msgid "Buttons URL"
|
364 |
msgstr ""
|
365 |
|
366 |
#: inc/php/settings.php:51
|
367 |
+
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
368 |
msgstr ""
|
369 |
|
370 |
#: inc/php/settings.php:76
|
372 |
msgstr "Anzeigeoptionen"
|
373 |
|
374 |
#: inc/php/settings.php:78
|
375 |
+
#| msgid "Enjoy your fancy social media follow buttons."
|
376 |
+
msgid "Here you can customize the display of your social media follow buttons bar."
|
377 |
msgstr ""
|
378 |
|
379 |
#: inc/php/settings.php:82
|
380 |
+
msgid "Button size"
|
381 |
+
msgstr "Icon Grösse"
|
382 |
|
383 |
#: inc/php/settings.php:83
|
384 |
+
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
385 |
+
msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
|
|
|
|
|
|
|
|
|
386 |
|
387 |
#: inc/php/settings.php:87
|
388 |
+
msgid "Positioning"
|
389 |
+
msgstr ""
|
390 |
|
391 |
#: inc/php/settings.php:90
|
392 |
+
#| msgid "Button size"
|
393 |
+
msgid "Button margin"
|
394 |
+
msgstr ""
|
395 |
|
396 |
#: inc/php/settings.php:91
|
397 |
+
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgstr "Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
|
399 |
|
400 |
+
#: inc/php/settings.php:96
|
401 |
msgid "Left"
|
402 |
msgstr "Links"
|
403 |
|
404 |
+
#: inc/php/settings.php:97
|
405 |
msgid "Center"
|
406 |
msgstr "Mittig"
|
407 |
|
408 |
+
#: inc/php/settings.php:98
|
409 |
msgid "Right"
|
410 |
msgstr "Rechts"
|
411 |
|
412 |
+
#: inc/php/settings.php:100
|
413 |
+
msgid "Buttons bar alignment"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: inc/php/settings.php:101
|
417 |
+
#| msgid "You can choose the alignment of the entire buttons bar."
|
418 |
+
msgid "You can choose the alignment of the entire buttons bar."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: inc/php/settings.php:105
|
422 |
+
msgid "Links open method"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: inc/php/settings.php:108
|
426 |
+
msgid "Open in new tab"
|
427 |
+
msgstr "Öffne in neuem Tab"
|
428 |
|
429 |
+
#: inc/php/settings.php:109
|
430 |
+
msgid "Open links in a new tab/window."
|
431 |
+
msgstr "Link in einem neuen Tab/Fenster öffnen."
|
432 |
|
433 |
+
#: inc/php/settings.php:112
|
434 |
+
msgid "Additional"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: inc/php/settings.php:115
|
438 |
msgid "Caption"
|
439 |
msgstr "Überschrift"
|
440 |
|
441 |
+
#: inc/php/settings.php:116
|
442 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
443 |
msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
|
444 |
|
445 |
+
#: inc/php/settings.php:120
|
446 |
+
msgid "Tooltips"
|
447 |
+
msgstr "Tooltip"
|
448 |
+
|
449 |
+
#: inc/php/settings.php:121
|
450 |
+
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
451 |
+
msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
|
452 |
+
|
453 |
+
#: inc/php/settings.php:124
|
454 |
+
msgid "Autoload"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: inc/php/settings.php:127
|
458 |
+
msgid "Show on Posts"
|
459 |
+
msgstr "In Posts anzeigen"
|
460 |
+
|
461 |
+
#: inc/php/settings.php:128
|
462 |
+
#| msgid "Automatically display the social media follow buttons below content on Posts."
|
463 |
+
msgid "Automatically display the buttons bar below content on Posts."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: inc/php/settings.php:131
|
467 |
+
msgid "Show on Pages"
|
468 |
+
msgstr "Auf Seiten anzeigen"
|
469 |
+
|
470 |
+
#: inc/php/settings.php:132
|
471 |
+
#| msgid "Automatically display the social media follow buttons below content on Pages."
|
472 |
+
msgid "Automatically display the buttons bar below content on Pages."
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: inc/php/settings.php:142
|
476 |
msgid "Live Preview"
|
477 |
msgstr "Live Vorschau"
|
478 |
|
479 |
+
#: inc/php/settings.php:144
|
480 |
msgid "Click the \"Save changes\" button to update this preview."
|
481 |
msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
|
482 |
|
483 |
+
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
484 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
485 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
486 |
|
487 |
+
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
488 |
msgid "Thanks for your support!"
|
489 |
msgstr "Danke für Ihre Unterstützung!"
|
490 |
|
492 |
msgid "We are «Space X-Chimp»"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/php/sidebar.php:33
|
496 |
msgid "About"
|
497 |
msgstr "Über"
|
498 |
|
499 |
+
#: inc/php/sidebar.php:35
|
500 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
501 |
msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
|
502 |
|
503 |
+
#: inc/php/sidebar.php:40
|
504 |
msgid "Help"
|
505 |
msgstr "Hilfe"
|
506 |
|
507 |
+
#: inc/php/sidebar.php:42
|
508 |
msgid "If you have a question, please read the information in the FAQ section."
|
509 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
510 |
|
528 |
msgid "https://www.spacexchimp.com"
|
529 |
msgstr "https://www.spacexchimp.com"
|
530 |
|
531 |
+
#~ msgid "Note!"
|
532 |
+
#~ msgstr "Achtung!"
|
533 |
+
|
534 |
+
#~ msgid "Margin"
|
535 |
+
#~ msgstr "Rand"
|
536 |
+
|
537 |
+
#~ msgid "Alignment"
|
538 |
+
#~ msgstr "Ausrichtung"
|
539 |
+
|
540 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
541 |
#~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
|
542 |
|
543 |
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
544 |
#~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
|
545 |
|
546 |
+
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
547 |
#~ msgstr "Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
|
languages/social-media-buttons-toolbar-es_ES.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -24,38 +24,42 @@ msgstr ""
|
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
27 |
-
#: inc/php/core.php:
|
|
|
|
|
|
|
|
|
28 |
msgid "Donate"
|
29 |
msgstr "Donar"
|
30 |
|
31 |
-
#: inc/php/core.php:
|
32 |
msgid "Social Media Follow Buttons"
|
33 |
msgstr "Social Media Follow Buttons"
|
34 |
|
35 |
#: inc/php/items.php:1
|
36 |
#, php-format
|
37 |
-
msgid "Enter the
|
38 |
-
msgstr "Ingresa el enlace a tu página de perfil de %s"
|
39 |
|
40 |
#: inc/php/items.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/items.php:1
|
45 |
-
msgid "Enter your telephone number with prefix <b>tel://</b
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
-
msgid "Enter your email address with prefix <b>mailto:</b
|
50 |
-
msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
-
msgid "Enter the
|
54 |
-
msgstr "Ingresa el enlace a tu sitio web personal"
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
-
msgid "Enter the
|
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."
|
@@ -91,7 +95,7 @@ msgstr "Uso"
|
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "Preguntas ?"
|
93 |
|
94 |
-
#: inc/php/page.php:46 inc/php/settings.php:
|
95 |
msgid "Support"
|
96 |
msgstr "Soporte"
|
97 |
|
@@ -112,7 +116,7 @@ msgid "Go to the \"Settings\" tab on this page."
|
|
112 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
113 |
|
114 |
#: inc/php/page.php:68
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
#: inc/php/page.php:69
|
@@ -128,19 +132,19 @@ msgid "Now you have several methods for display the social media follow buttons
|
|
128 |
msgstr ""
|
129 |
|
130 |
#: inc/php/page.php:72
|
131 |
-
msgid "<b>A)</b>
|
132 |
msgstr ""
|
133 |
|
134 |
#: inc/php/page.php:73
|
135 |
-
msgid "<b>B)</b>
|
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>
|
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>
|
144 |
msgstr ""
|
145 |
|
146 |
#: inc/php/page.php:80
|
@@ -151,10 +155,6 @@ msgstr ""
|
|
151 |
msgid "It's that simple!"
|
152 |
msgstr "¡Es así de simple!"
|
153 |
|
154 |
-
#: inc/php/page.php:82
|
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 let us know %s and we will be happy to add them."
|
@@ -206,115 +206,135 @@ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save
|
|
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:
|
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:
|
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:
|
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:
|
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:
|
229 |
-
msgid "The images that uses in this plugin are already compressed, but
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
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:
|
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:
|
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:
|
245 |
msgid "The last WordPress update is preventing me from editing my website 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:
|
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:
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "¿Dónde informar el error si se encuentra?"
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
#, php-format
|
258 |
msgid "Bug reports are very welcome! Please visit %s our contact 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:
|
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:
|
266 |
#, php-format
|
267 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
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:
|
275 |
#, php-format
|
276 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. 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:
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Mi pregunta no fue contestada aquí."
|
282 |
|
283 |
-
#: inc/php/page.php:
|
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:
|
289 |
msgid "Support Us"
|
290 |
msgstr "¡Apoyanos!"
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Donar con PayPal"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
#, php-format
|
298 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
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:
|
310 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
311 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "¡Gracias por tu apoyo!"
|
316 |
|
317 |
-
#: inc/php/settings.php:21 inc/php/settings.php:
|
318 |
msgid "Save changes"
|
319 |
msgstr "Guardar las modificaciones"
|
320 |
|
@@ -339,11 +359,11 @@ msgid "Additional buttons"
|
|
339 |
msgstr ""
|
340 |
|
341 |
#: inc/php/settings.php:49
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
#: inc/php/settings.php:51
|
346 |
-
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/settings.php:76
|
@@ -351,98 +371,115 @@ msgid "Display options"
|
|
351 |
msgstr "Opciones de presentación"
|
352 |
|
353 |
#: inc/php/settings.php:78
|
354 |
-
msgid "Here you can
|
355 |
msgstr ""
|
356 |
|
357 |
#: inc/php/settings.php:82
|
358 |
-
msgid "
|
359 |
-
msgstr "
|
360 |
|
361 |
#: inc/php/settings.php:83
|
362 |
-
msgid "
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: inc/php/settings.php:86
|
366 |
-
msgid "Show on Pages"
|
367 |
-
msgstr "Mostrar en Páginas"
|
368 |
|
369 |
#: inc/php/settings.php:87
|
370 |
-
msgid "
|
371 |
msgstr ""
|
372 |
|
373 |
#: inc/php/settings.php:90
|
374 |
-
msgid "
|
375 |
-
|
376 |
-
|
377 |
-
#: inc/php/settings.php:91
|
378 |
-
msgid "Open links in a new tab/window."
|
379 |
-
msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
|
380 |
-
|
381 |
-
#: inc/php/settings.php:94
|
382 |
-
msgid "Tooltips"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: inc/php/settings.php:95
|
386 |
-
msgid "Enable a tooltips with name of the social media above every button."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/php/settings.php:
|
390 |
-
msgid "
|
391 |
-
msgstr "Tamaño de ícono"
|
392 |
-
|
393 |
-
#: inc/php/settings.php:99
|
394 |
-
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
395 |
-
msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
396 |
-
|
397 |
-
#: inc/php/settings.php:103
|
398 |
-
msgid "Margin"
|
399 |
-
msgstr "Margen"
|
400 |
-
|
401 |
-
#: inc/php/settings.php:104
|
402 |
-
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
403 |
msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
|
404 |
|
405 |
-
#: inc/php/settings.php:
|
406 |
msgid "Left"
|
407 |
msgstr "Izquierda"
|
408 |
|
409 |
-
#: inc/php/settings.php:
|
410 |
msgid "Center"
|
411 |
msgstr "Centro"
|
412 |
|
413 |
-
#: inc/php/settings.php:
|
414 |
msgid "Right"
|
415 |
msgstr "Derecha"
|
416 |
|
417 |
-
#: inc/php/settings.php:
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
|
|
|
|
|
|
|
|
420 |
|
421 |
-
#: inc/php/settings.php:
|
422 |
-
msgid "
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
msgid "Caption"
|
427 |
msgstr "Leyenda"
|
428 |
|
429 |
-
#: inc/php/settings.php:
|
430 |
-
msgid "Enter the caption to your social media follow buttons bar. It will be
|
431 |
msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
|
432 |
|
433 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Live Preview"
|
435 |
msgstr "Vista Previa"
|
436 |
|
437 |
-
#: inc/php/settings.php:
|
438 |
msgid "Click the \"Save changes\" button to update this preview."
|
439 |
msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
|
440 |
|
441 |
-
#: inc/php/settings.php:
|
442 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
443 |
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."
|
444 |
|
445 |
-
#: inc/php/settings.php:
|
446 |
msgid "Thanks for your support!"
|
447 |
msgstr "¡Gracias por tu apoyo!"
|
448 |
|
@@ -450,19 +487,19 @@ msgstr "¡Gracias por tu apoyo!"
|
|
450 |
msgid "We are «Space X-Chimp»"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/sidebar.php:
|
454 |
msgid "About"
|
455 |
msgstr "Acerca de"
|
456 |
|
457 |
-
#: inc/php/sidebar.php:
|
458 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
459 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
460 |
|
461 |
-
#: inc/php/sidebar.php:
|
462 |
msgid "Help"
|
463 |
msgstr "Ayuda"
|
464 |
|
465 |
-
#: inc/php/sidebar.php:
|
466 |
msgid "If you have a question, please read the information in the FAQ section."
|
467 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
468 |
|
@@ -486,11 +523,20 @@ msgstr "Space X-Chimp"
|
|
486 |
msgid "https://www.spacexchimp.com"
|
487 |
msgstr "https://www.spacexchimp.com"
|
488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
490 |
#~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
|
491 |
|
492 |
#~ 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."
|
493 |
#~ 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."
|
494 |
|
495 |
-
#~ 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."
|
496 |
#~ msgstr "Sólo llena los campos requeridos para hacer los botones. Los botones de cada red social conducirán directamente a tu página de perfil en esa red. Si no quieres usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:45+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:46+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
27 |
+
#: inc/php/core.php:33 inc/php/core.php:48
|
28 |
+
msgid "Upgrade to PRO"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: inc/php/core.php:47
|
32 |
msgid "Donate"
|
33 |
msgstr "Donar"
|
34 |
|
35 |
+
#: inc/php/core.php:63
|
36 |
msgid "Social Media Follow Buttons"
|
37 |
msgstr "Social Media Follow Buttons"
|
38 |
|
39 |
#: inc/php/items.php:1
|
40 |
#, php-format
|
41 |
+
msgid "Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
42 |
+
msgstr "Ingresa el enlace a tu página de perfil de %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
+
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."
|
46 |
+
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."
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
+
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
msgstr ""
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
+
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
+
msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>."
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
+
msgid "Enter the URL of your personal website."
|
58 |
+
msgstr "Ingresa el enlace a tu sitio web personal."
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
+
msgid "Enter the URL of your RSS feed."
|
62 |
+
msgstr "Ingresa el enlace a tu Feed de RSS."
|
63 |
|
64 |
#: inc/php/messages.php:26
|
65 |
msgid "Hello. We are the team of Space X-Chimp."
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "Preguntas ?"
|
97 |
|
98 |
+
#: inc/php/page.php:46 inc/php/settings.php:150 inc/php/sidebar.php:47
|
99 |
msgid "Support"
|
100 |
msgstr "Soporte"
|
101 |
|
116 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
117 |
|
118 |
#: inc/php/page.php:68
|
119 |
+
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr ""
|
121 |
|
122 |
#: inc/php/page.php:69
|
132 |
msgstr ""
|
133 |
|
134 |
#: inc/php/page.php:72
|
135 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/php/page.php:73
|
139 |
+
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/Páginas de Wordpress usa el siguiente shortcode:"
|
141 |
|
142 |
#: inc/php/page.php:75
|
143 |
+
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
|
145 |
|
146 |
#: inc/php/page.php:77
|
147 |
+
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr ""
|
149 |
|
150 |
#: inc/php/page.php:80
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "¡Es así de simple!"
|
157 |
|
|
|
|
|
|
|
|
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:140
|
209 |
+
msgid "Can I configure my buttons bar instance?"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/php/page.php:143
|
217 |
+
msgid "How many buttons bar instances can I create?"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: inc/php/page.php:144
|
221 |
+
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:145
|
225 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:147
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
231 |
|
232 |
+
#: inc/php/page.php:148
|
233 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
234 |
msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
|
235 |
|
236 |
+
#: inc/php/page.php:150
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
239 |
|
240 |
+
#: inc/php/page.php:151
|
241 |
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
242 |
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."
|
243 |
|
244 |
+
#: inc/php/page.php:153
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:154
|
249 |
+
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid "It's not working. What could be wrong?"
|
254 |
msgstr "No funciona. ¿Qué podría estar mal?"
|
255 |
|
256 |
+
#: inc/php/page.php:157
|
257 |
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."
|
258 |
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."
|
259 |
|
260 |
+
#: inc/php/page.php:158
|
261 |
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."
|
262 |
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."
|
263 |
|
264 |
+
#: inc/php/page.php:160
|
265 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
266 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
267 |
|
268 |
+
#: inc/php/page.php:161
|
269 |
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."
|
270 |
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."
|
271 |
|
272 |
+
#: inc/php/page.php:163
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "¿Dónde informar el error si se encuentra?"
|
275 |
|
276 |
+
#: inc/php/page.php:165
|
277 |
#, php-format
|
278 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: inc/php/page.php:171
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
284 |
|
285 |
+
#: inc/php/page.php:173
|
286 |
#, php-format
|
287 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:179
|
291 |
msgid "I love this plugin! Can I help somehow?"
|
292 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
293 |
|
294 |
+
#: inc/php/page.php:181
|
295 |
#, php-format
|
296 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
297 |
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
298 |
|
299 |
+
#: inc/php/page.php:187
|
300 |
msgid "My question wasn't answered here."
|
301 |
msgstr "Mi pregunta no fue contestada aquí."
|
302 |
|
303 |
+
#: inc/php/page.php:189
|
304 |
#, php-format
|
305 |
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."
|
306 |
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."
|
307 |
|
308 |
+
#: inc/php/page.php:203
|
309 |
msgid "Support Us"
|
310 |
msgstr "¡Apoyanos!"
|
311 |
|
312 |
+
#: inc/php/page.php:211 inc/php/settings.php:157 inc/php/sidebar.php:54
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Donar con PayPal"
|
315 |
|
316 |
+
#: inc/php/page.php:216
|
317 |
#, php-format
|
318 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:224
|
322 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:225
|
326 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
327 |
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."
|
328 |
|
329 |
+
#: inc/php/page.php:226
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
332 |
|
333 |
+
#: inc/php/page.php:227
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "¡Gracias por tu apoyo!"
|
336 |
|
337 |
+
#: inc/php/settings.php:21 inc/php/settings.php:139
|
338 |
msgid "Save changes"
|
339 |
msgstr "Guardar las modificaciones"
|
340 |
|
359 |
msgstr ""
|
360 |
|
361 |
#: inc/php/settings.php:49
|
362 |
+
msgid "Buttons URL"
|
363 |
msgstr ""
|
364 |
|
365 |
#: inc/php/settings.php:51
|
366 |
+
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
367 |
msgstr ""
|
368 |
|
369 |
#: inc/php/settings.php:76
|
371 |
msgstr "Opciones de presentación"
|
372 |
|
373 |
#: inc/php/settings.php:78
|
374 |
+
msgid "Here you can customize the display of your social media follow buttons bar."
|
375 |
msgstr ""
|
376 |
|
377 |
#: inc/php/settings.php:82
|
378 |
+
msgid "Button size"
|
379 |
+
msgstr "Tamaño de ícono"
|
380 |
|
381 |
#: inc/php/settings.php:83
|
382 |
+
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
383 |
+
msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
|
|
|
|
|
|
|
|
|
384 |
|
385 |
#: inc/php/settings.php:87
|
386 |
+
msgid "Positioning"
|
387 |
msgstr ""
|
388 |
|
389 |
#: inc/php/settings.php:90
|
390 |
+
#| msgid "Button size"
|
391 |
+
msgid "Button margin"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/settings.php:91
|
395 |
+
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
|
397 |
|
398 |
+
#: inc/php/settings.php:96
|
399 |
msgid "Left"
|
400 |
msgstr "Izquierda"
|
401 |
|
402 |
+
#: inc/php/settings.php:97
|
403 |
msgid "Center"
|
404 |
msgstr "Centro"
|
405 |
|
406 |
+
#: inc/php/settings.php:98
|
407 |
msgid "Right"
|
408 |
msgstr "Derecha"
|
409 |
|
410 |
+
#: inc/php/settings.php:100
|
411 |
+
msgid "Buttons bar alignment"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: inc/php/settings.php:101
|
415 |
+
msgid "You can choose the alignment of the entire buttons bar."
|
416 |
+
msgstr ""
|
417 |
|
418 |
+
#: inc/php/settings.php:105
|
419 |
+
msgid "Links open method"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/settings.php:108
|
423 |
+
msgid "Open in new tab"
|
424 |
+
msgstr "Abrir en una nueva pestaña"
|
425 |
+
|
426 |
+
#: inc/php/settings.php:109
|
427 |
+
msgid "Open links in a new tab/window."
|
428 |
+
msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
|
429 |
+
|
430 |
+
#: inc/php/settings.php:112
|
431 |
+
msgid "Additional"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: inc/php/settings.php:115
|
435 |
msgid "Caption"
|
436 |
msgstr "Leyenda"
|
437 |
|
438 |
+
#: inc/php/settings.php:116
|
439 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
440 |
msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
|
441 |
|
442 |
+
#: inc/php/settings.php:120
|
443 |
+
msgid "Tooltips"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: inc/php/settings.php:121
|
447 |
+
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: inc/php/settings.php:124
|
451 |
+
msgid "Autoload"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: inc/php/settings.php:127
|
455 |
+
msgid "Show on Posts"
|
456 |
+
msgstr "Mostrar en Entradas"
|
457 |
+
|
458 |
+
#: inc/php/settings.php:128
|
459 |
+
msgid "Automatically display the buttons bar below content on Posts."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: inc/php/settings.php:131
|
463 |
+
msgid "Show on Pages"
|
464 |
+
msgstr "Mostrar en Páginas"
|
465 |
+
|
466 |
+
#: inc/php/settings.php:132
|
467 |
+
msgid "Automatically display the buttons bar below content on Pages."
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: inc/php/settings.php:142
|
471 |
msgid "Live Preview"
|
472 |
msgstr "Vista Previa"
|
473 |
|
474 |
+
#: inc/php/settings.php:144
|
475 |
msgid "Click the \"Save changes\" button to update this preview."
|
476 |
msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
|
477 |
|
478 |
+
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
479 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
480 |
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."
|
481 |
|
482 |
+
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
483 |
msgid "Thanks for your support!"
|
484 |
msgstr "¡Gracias por tu apoyo!"
|
485 |
|
487 |
msgid "We are «Space X-Chimp»"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/sidebar.php:33
|
491 |
msgid "About"
|
492 |
msgstr "Acerca de"
|
493 |
|
494 |
+
#: inc/php/sidebar.php:35
|
495 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
496 |
msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
|
497 |
|
498 |
+
#: inc/php/sidebar.php:40
|
499 |
msgid "Help"
|
500 |
msgstr "Ayuda"
|
501 |
|
502 |
+
#: inc/php/sidebar.php:42
|
503 |
msgid "If you have a question, please read the information in the FAQ section."
|
504 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
505 |
|
523 |
msgid "https://www.spacexchimp.com"
|
524 |
msgstr "https://www.spacexchimp.com"
|
525 |
|
526 |
+
#~ msgid "Note!"
|
527 |
+
#~ msgstr "¡Nota!"
|
528 |
+
|
529 |
+
#~ msgid "Margin"
|
530 |
+
#~ msgstr "Margen"
|
531 |
+
|
532 |
+
#~ msgid "Alignment"
|
533 |
+
#~ msgstr "Alineación"
|
534 |
+
|
535 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
536 |
#~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
|
537 |
|
538 |
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
539 |
#~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
|
540 |
|
541 |
+
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
542 |
#~ msgstr "Sólo llena los campos requeridos para hacer los botones. Los botones de cada red social conducirán directamente a tu página de perfil en esa red. Si no quieres usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
|
languages/social-media-buttons-toolbar-nl_NL.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -24,37 +24,41 @@ msgstr ""
|
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
27 |
-
#: inc/php/core.php:
|
|
|
|
|
|
|
|
|
28 |
msgid "Donate"
|
29 |
msgstr "Doe een gift"
|
30 |
|
31 |
-
#: inc/php/core.php:
|
32 |
msgid "Social Media Follow Buttons"
|
33 |
msgstr "Social Media Follow Buttons"
|
34 |
|
35 |
#: inc/php/items.php:1
|
36 |
#, php-format
|
37 |
-
msgid "Enter the
|
38 |
msgstr ""
|
39 |
|
40 |
#: inc/php/items.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 ""
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
-
msgid "Enter your telephone number with prefix <b>tel://</b
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
-
msgid "Enter your email address with prefix <b>mailto:</b
|
50 |
msgstr ""
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
-
msgid "Enter the
|
54 |
msgstr ""
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
-
msgid "Enter the
|
58 |
msgstr ""
|
59 |
|
60 |
#: inc/php/messages.php:26
|
@@ -91,7 +95,7 @@ msgstr "Gebruik"
|
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "F.A.Q."
|
93 |
|
94 |
-
#: inc/php/page.php:46 inc/php/settings.php:
|
95 |
msgid "Support"
|
96 |
msgstr "Ondersteuning"
|
97 |
|
@@ -112,7 +116,7 @@ msgid "Go to the \"Settings\" tab on this page."
|
|
112 |
msgstr ""
|
113 |
|
114 |
#: inc/php/page.php:68
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
#: inc/php/page.php:69
|
@@ -128,19 +132,19 @@ msgid "Now you have several methods for display the social media follow buttons
|
|
128 |
msgstr ""
|
129 |
|
130 |
#: inc/php/page.php:72
|
131 |
-
msgid "<b>A)</b>
|
132 |
msgstr ""
|
133 |
|
134 |
#: inc/php/page.php:73
|
135 |
-
msgid "<b>B)</b>
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/php/page.php:75
|
139 |
-
msgid "<b>C)</b>
|
140 |
msgstr ""
|
141 |
|
142 |
#: inc/php/page.php:77
|
143 |
-
msgid "<b>D)</b>
|
144 |
msgstr ""
|
145 |
|
146 |
#: inc/php/page.php:80
|
@@ -151,10 +155,6 @@ msgstr ""
|
|
151 |
msgid "It's that simple!"
|
152 |
msgstr "Zo eenvoudig is het!"
|
153 |
|
154 |
-
#: inc/php/page.php:82
|
155 |
-
msgid "Note!"
|
156 |
-
msgstr "Opmerking!"
|
157 |
-
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
@@ -206,115 +206,135 @@ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
219 |
|
220 |
-
#: inc/php/page.php:
|
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 ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
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:
|
229 |
-
msgid "The images that uses in this plugin are already compressed, but
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
msgid "It's not working. What could be wrong?"
|
234 |
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
235 |
|
236 |
-
#: inc/php/page.php:
|
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 "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
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 "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
246 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
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 "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
#, php-format
|
258 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
259 |
msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
260 |
|
261 |
-
#: inc/php/page.php:
|
262 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
263 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
#, php-format
|
267 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
msgid "I love this plugin! Can I help somehow?"
|
272 |
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
#, php-format
|
276 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
277 |
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Mij vraag is hier niet beantwoord."
|
282 |
|
283 |
-
#: inc/php/page.php:
|
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 "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Support Us"
|
290 |
msgstr "Ondersteun ons"
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Doneer via PayPal"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
#, php-format
|
298 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
307 |
msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
311 |
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "Bedankt voor je ondersteuning!"
|
316 |
|
317 |
-
#: inc/php/settings.php:21 inc/php/settings.php:
|
318 |
msgid "Save changes"
|
319 |
msgstr "Wijzigingen opslaan"
|
320 |
|
@@ -339,11 +359,11 @@ msgid "Additional buttons"
|
|
339 |
msgstr ""
|
340 |
|
341 |
#: inc/php/settings.php:49
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
#: inc/php/settings.php:51
|
346 |
-
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/settings.php:76
|
@@ -351,98 +371,114 @@ msgid "Display options"
|
|
351 |
msgstr ""
|
352 |
|
353 |
#: inc/php/settings.php:78
|
354 |
-
msgid "Here you can
|
355 |
msgstr ""
|
356 |
|
357 |
#: inc/php/settings.php:82
|
358 |
-
msgid "
|
359 |
msgstr ""
|
360 |
|
361 |
#: inc/php/settings.php:83
|
362 |
-
msgid "
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: inc/php/settings.php:86
|
366 |
-
msgid "Show on Pages"
|
367 |
msgstr ""
|
368 |
|
369 |
#: inc/php/settings.php:87
|
370 |
-
msgid "
|
371 |
msgstr ""
|
372 |
|
373 |
#: inc/php/settings.php:90
|
374 |
-
msgid "
|
375 |
msgstr ""
|
376 |
|
377 |
#: inc/php/settings.php:91
|
378 |
-
msgid "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/php/settings.php:
|
382 |
-
msgid "
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/php/settings.php:
|
386 |
-
msgid "
|
387 |
msgstr ""
|
388 |
|
389 |
#: inc/php/settings.php:98
|
390 |
-
msgid "
|
|
|
|
|
|
|
|
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/php/settings.php:
|
394 |
-
msgid "
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/php/settings.php:
|
398 |
-
msgid "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/php/settings.php:
|
402 |
-
msgid "
|
403 |
msgstr ""
|
404 |
|
405 |
#: inc/php/settings.php:109
|
406 |
-
msgid "
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/php/settings.php:
|
410 |
-
msgid "
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: inc/php/settings.php:
|
414 |
-
msgid "
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/php/settings.php:
|
418 |
-
msgid "
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: inc/php/settings.php:
|
422 |
-
msgid "
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: inc/php/settings.php:
|
426 |
-
msgid "
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: inc/php/settings.php:
|
430 |
-
msgid "
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: inc/php/settings.php:
|
434 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: inc/php/settings.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Click the \"Save changes\" button to update this preview."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: inc/php/settings.php:
|
442 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
443 |
msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
444 |
|
445 |
-
#: inc/php/settings.php:
|
446 |
msgid "Thanks for your support!"
|
447 |
msgstr "Bedankt voor uw steun!"
|
448 |
|
@@ -450,19 +486,19 @@ msgstr "Bedankt voor uw steun!"
|
|
450 |
msgid "We are «Space X-Chimp»"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/sidebar.php:
|
454 |
msgid "About"
|
455 |
msgstr "Over"
|
456 |
|
457 |
-
#: inc/php/sidebar.php:
|
458 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/php/sidebar.php:
|
462 |
msgid "Help"
|
463 |
msgstr "Help"
|
464 |
|
465 |
-
#: inc/php/sidebar.php:
|
466 |
msgid "If you have a question, please read the information in the FAQ section."
|
467 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
468 |
|
@@ -486,6 +522,9 @@ msgstr "Space X-Chimp"
|
|
486 |
msgid "https://www.spacexchimp.com"
|
487 |
msgstr "https://www.spacexchimp.com"
|
488 |
|
|
|
|
|
|
|
489 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
490 |
#~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
|
491 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:46+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:46+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
27 |
+
#: inc/php/core.php:33 inc/php/core.php:48
|
28 |
+
msgid "Upgrade to PRO"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: inc/php/core.php:47
|
32 |
msgid "Donate"
|
33 |
msgstr "Doe een gift"
|
34 |
|
35 |
+
#: inc/php/core.php:63
|
36 |
msgid "Social Media Follow Buttons"
|
37 |
msgstr "Social Media Follow Buttons"
|
38 |
|
39 |
#: inc/php/items.php:1
|
40 |
#, php-format
|
41 |
+
msgid "Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
42 |
msgstr ""
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
+
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."
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
+
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
msgstr ""
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
+
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
msgstr ""
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
+
msgid "Enter the URL of your personal website."
|
58 |
msgstr ""
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
+
msgid "Enter the URL of your RSS feed."
|
62 |
msgstr ""
|
63 |
|
64 |
#: inc/php/messages.php:26
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
+
#: inc/php/page.php:46 inc/php/settings.php:150 inc/php/sidebar.php:47
|
99 |
msgid "Support"
|
100 |
msgstr "Ondersteuning"
|
101 |
|
116 |
msgstr ""
|
117 |
|
118 |
#: inc/php/page.php:68
|
119 |
+
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr ""
|
121 |
|
122 |
#: inc/php/page.php:69
|
132 |
msgstr ""
|
133 |
|
134 |
#: inc/php/page.php:72
|
135 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
136 |
msgstr ""
|
137 |
|
138 |
#: inc/php/page.php:73
|
139 |
+
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
#: inc/php/page.php:75
|
143 |
+
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
#: inc/php/page.php:77
|
147 |
+
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr ""
|
149 |
|
150 |
#: inc/php/page.php:80
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "Zo eenvoudig is het!"
|
157 |
|
|
|
|
|
|
|
|
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:140
|
209 |
+
msgid "Can I configure my buttons bar instance?"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/php/page.php:143
|
217 |
+
msgid "How many buttons bar instances can I create?"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: inc/php/page.php:144
|
221 |
+
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:145
|
225 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:147
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
231 |
|
232 |
+
#: inc/php/page.php:148
|
233 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
234 |
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
235 |
|
236 |
+
#: inc/php/page.php:150
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
239 |
|
240 |
+
#: inc/php/page.php:151
|
241 |
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:153
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:154
|
249 |
+
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid "It's not working. What could be wrong?"
|
254 |
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
255 |
|
256 |
+
#: inc/php/page.php:157
|
257 |
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."
|
258 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
|
259 |
|
260 |
+
#: inc/php/page.php:158
|
261 |
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."
|
262 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
263 |
|
264 |
+
#: inc/php/page.php:160
|
265 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
266 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
267 |
|
268 |
+
#: inc/php/page.php:161
|
269 |
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."
|
270 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
271 |
|
272 |
+
#: inc/php/page.php:163
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
275 |
|
276 |
+
#: inc/php/page.php:165
|
277 |
#, php-format
|
278 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
279 |
msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
280 |
|
281 |
+
#: inc/php/page.php:171
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
284 |
|
285 |
+
#: inc/php/page.php:173
|
286 |
#, php-format
|
287 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
288 |
msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
289 |
|
290 |
+
#: inc/php/page.php:179
|
291 |
msgid "I love this plugin! Can I help somehow?"
|
292 |
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
293 |
|
294 |
+
#: inc/php/page.php:181
|
295 |
#, php-format
|
296 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
297 |
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
298 |
|
299 |
+
#: inc/php/page.php:187
|
300 |
msgid "My question wasn't answered here."
|
301 |
msgstr "Mij vraag is hier niet beantwoord."
|
302 |
|
303 |
+
#: inc/php/page.php:189
|
304 |
#, php-format
|
305 |
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."
|
306 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
307 |
|
308 |
+
#: inc/php/page.php:203
|
309 |
msgid "Support Us"
|
310 |
msgstr "Ondersteun ons"
|
311 |
|
312 |
+
#: inc/php/page.php:211 inc/php/settings.php:157 inc/php/sidebar.php:54
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Doneer via PayPal"
|
315 |
|
316 |
+
#: inc/php/page.php:216
|
317 |
#, php-format
|
318 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:224
|
322 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:225
|
326 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
327 |
msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
328 |
|
329 |
+
#: inc/php/page.php:226
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
332 |
|
333 |
+
#: inc/php/page.php:227
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "Bedankt voor je ondersteuning!"
|
336 |
|
337 |
+
#: inc/php/settings.php:21 inc/php/settings.php:139
|
338 |
msgid "Save changes"
|
339 |
msgstr "Wijzigingen opslaan"
|
340 |
|
359 |
msgstr ""
|
360 |
|
361 |
#: inc/php/settings.php:49
|
362 |
+
msgid "Buttons URL"
|
363 |
msgstr ""
|
364 |
|
365 |
#: inc/php/settings.php:51
|
366 |
+
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
367 |
msgstr ""
|
368 |
|
369 |
#: inc/php/settings.php:76
|
371 |
msgstr ""
|
372 |
|
373 |
#: inc/php/settings.php:78
|
374 |
+
msgid "Here you can customize the display of your social media follow buttons bar."
|
375 |
msgstr ""
|
376 |
|
377 |
#: inc/php/settings.php:82
|
378 |
+
msgid "Button size"
|
379 |
msgstr ""
|
380 |
|
381 |
#: inc/php/settings.php:83
|
382 |
+
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
|
|
|
|
|
|
|
|
383 |
msgstr ""
|
384 |
|
385 |
#: inc/php/settings.php:87
|
386 |
+
msgid "Positioning"
|
387 |
msgstr ""
|
388 |
|
389 |
#: inc/php/settings.php:90
|
390 |
+
msgid "Button margin"
|
391 |
msgstr ""
|
392 |
|
393 |
#: inc/php/settings.php:91
|
394 |
+
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/php/settings.php:96
|
398 |
+
msgid "Left"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/php/settings.php:97
|
402 |
+
msgid "Center"
|
403 |
msgstr ""
|
404 |
|
405 |
#: inc/php/settings.php:98
|
406 |
+
msgid "Right"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: inc/php/settings.php:100
|
410 |
+
msgid "Buttons bar alignment"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: inc/php/settings.php:101
|
414 |
+
msgid "You can choose the alignment of the entire buttons bar."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: inc/php/settings.php:105
|
418 |
+
msgid "Links open method"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/php/settings.php:108
|
422 |
+
msgid "Open in new tab"
|
423 |
msgstr ""
|
424 |
|
425 |
#: inc/php/settings.php:109
|
426 |
+
msgid "Open links in a new tab/window."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: inc/php/settings.php:112
|
430 |
+
msgid "Additional"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: inc/php/settings.php:115
|
434 |
+
msgid "Caption"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: inc/php/settings.php:116
|
438 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: inc/php/settings.php:120
|
442 |
+
msgid "Tooltips"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/php/settings.php:121
|
446 |
+
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: inc/php/settings.php:124
|
450 |
+
msgid "Autoload"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: inc/php/settings.php:127
|
454 |
+
msgid "Show on Posts"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: inc/php/settings.php:128
|
458 |
+
msgid "Automatically display the buttons bar below content on Posts."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: inc/php/settings.php:131
|
462 |
+
msgid "Show on Pages"
|
463 |
msgstr ""
|
464 |
|
465 |
#: inc/php/settings.php:132
|
466 |
+
msgid "Automatically display the buttons bar below content on Pages."
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: inc/php/settings.php:142
|
470 |
+
msgid "Live Preview"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: inc/php/settings.php:144
|
474 |
msgid "Click the \"Save changes\" button to update this preview."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
478 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
479 |
msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
480 |
|
481 |
+
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
482 |
msgid "Thanks for your support!"
|
483 |
msgstr "Bedankt voor uw steun!"
|
484 |
|
486 |
msgid "We are «Space X-Chimp»"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: inc/php/sidebar.php:33
|
490 |
msgid "About"
|
491 |
msgstr "Over"
|
492 |
|
493 |
+
#: inc/php/sidebar.php:35
|
494 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: inc/php/sidebar.php:40
|
498 |
msgid "Help"
|
499 |
msgstr "Help"
|
500 |
|
501 |
+
#: inc/php/sidebar.php:42
|
502 |
msgid "If you have a question, please read the information in the FAQ section."
|
503 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
504 |
|
522 |
msgid "https://www.spacexchimp.com"
|
523 |
msgstr "https://www.spacexchimp.com"
|
524 |
|
525 |
+
#~ msgid "Note!"
|
526 |
+
#~ msgstr "Opmerking!"
|
527 |
+
|
528 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
529 |
#~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
|
530 |
|
languages/social-media-buttons-toolbar-ru_RU.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -24,38 +24,42 @@ msgstr ""
|
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
27 |
-
#: inc/php/core.php:
|
|
|
|
|
|
|
|
|
28 |
msgid "Donate"
|
29 |
msgstr "Поддержать"
|
30 |
|
31 |
-
#: inc/php/core.php:
|
32 |
msgid "Social Media Follow Buttons"
|
33 |
msgstr "Социальные Медиа Кнопки Следования"
|
34 |
|
35 |
#: inc/php/items.php:1
|
36 |
#, php-format
|
37 |
-
msgid "Enter the
|
38 |
-
msgstr "Введите
|
39 |
|
40 |
#: inc/php/items.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 "Введите свое имя в Skype с приставкой <b>skype:</b> и суффиксом <b>?call</b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
-
msgid "Enter your telephone number with prefix <b>tel://</b
|
46 |
-
msgstr "Введите номер телефона с префиксом <b>tel://</b
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
-
msgid "Enter your email address with prefix <b>mailto:</b
|
50 |
-
msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
-
msgid "Enter the
|
54 |
-
msgstr "Введите
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
-
msgid "Enter the
|
58 |
-
msgstr "Введите
|
59 |
|
60 |
#: inc/php/messages.php:26
|
61 |
msgid "Hello. We are the team of Space X-Chimp."
|
@@ -91,7 +95,7 @@ msgstr "Применение"
|
|
91 |
msgid "F.A.Q."
|
92 |
msgstr "F.A.Q."
|
93 |
|
94 |
-
#: inc/php/page.php:46 inc/php/settings.php:
|
95 |
msgid "Support"
|
96 |
msgstr "Поддержка"
|
97 |
|
@@ -112,7 +116,7 @@ msgid "Go to the \"Settings\" tab on this page."
|
|
112 |
msgstr "Перейдите на вкладку «Настройки»."
|
113 |
|
114 |
#: inc/php/page.php:68
|
115 |
-
msgid "
|
116 |
msgstr "Заполните необходимые поля."
|
117 |
|
118 |
#: inc/php/page.php:69
|
@@ -128,19 +132,19 @@ msgid "Now you have several methods for display the social media follow buttons
|
|
128 |
msgstr "Теперь у вас есть несколько способов отображения панели социальных сетей (далее просто «кнопки»). Просто выберите ту, которая больше подходит для вашего дела."
|
129 |
|
130 |
#: inc/php/page.php:72
|
131 |
-
msgid "<b>A)</b>
|
132 |
msgstr "<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и страницах, просто установите флажок “Показывать в записях” или/и “Показывать на страницах” в разделе “Настройки отображения”, затем нажмите кнопку “Сохранить изменения”."
|
133 |
|
134 |
#: inc/php/page.php:73
|
135 |
-
msgid "<b>B)</b>
|
136 |
msgstr "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WordPress Post/Page используйте следующий короткий код:"
|
137 |
|
138 |
#: inc/php/page.php:75
|
139 |
-
msgid "<b>C)</b>
|
140 |
msgstr "<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий короткий код:"
|
141 |
|
142 |
#: inc/php/page.php:77
|
143 |
-
msgid "<b>D)</b>
|
144 |
msgstr "<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто добавьте следующий код в нужное место (где вы хотите отображать кнопки) в файлах темы:"
|
145 |
|
146 |
#: inc/php/page.php:80
|
@@ -151,10 +155,6 @@ msgstr "Наслаждайтесь своими модными социальн
|
|
151 |
msgid "It's that simple!"
|
152 |
msgstr "Вот так просто!"
|
153 |
|
154 |
-
#: inc/php/page.php:82
|
155 |
-
msgid "Note!"
|
156 |
-
msgstr "Примечание!"
|
157 |
-
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
@@ -206,115 +206,135 @@ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save
|
|
206 |
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения». Наслаждайтесь вашими модными Социальными медиа кнопками следования. Это так просто!"
|
207 |
|
208 |
#: inc/php/page.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr "Этот плагин требует изменения темы?"
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
219 |
|
220 |
-
#: inc/php/page.php:
|
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 "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
226 |
msgstr "Что делать, если в тесте Google Page Speed сказано, что изображения этого плагина должны быть сжаты?"
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
-
msgid "The images that uses in this plugin are already compressed, but
|
230 |
msgstr "Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать их ещё лучше."
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
msgid "It's not working. What could be wrong?"
|
234 |
msgstr "Оно не работает. Что может быть не так?"
|
235 |
|
236 |
-
#: inc/php/page.php:
|
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 "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
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 "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
246 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
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 "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
msgid "Where to report bug if found?"
|
254 |
msgstr "Где можно сообщить об ошибке?"
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
#, php-format
|
258 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
259 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
260 |
|
261 |
-
#: inc/php/page.php:
|
262 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
263 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
#, php-format
|
267 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
268 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
msgid "I love this plugin! Can I help somehow?"
|
272 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
#, php-format
|
276 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
277 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
msgid "My question wasn't answered here."
|
281 |
msgstr "Моего вопроса здесь нет."
|
282 |
|
283 |
-
#: inc/php/page.php:
|
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 "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Support Us"
|
290 |
msgstr "Поддержать нас"
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Donate with PayPal"
|
294 |
msgstr "Пожертвовать через PayPal"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
#, php-format
|
298 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
307 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
311 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid "Thank you for your support!"
|
315 |
msgstr "Спасибо за вашу поддержку!"
|
316 |
|
317 |
-
#: inc/php/settings.php:21 inc/php/settings.php:
|
318 |
msgid "Save changes"
|
319 |
msgstr "Сохранить изменения"
|
320 |
|
@@ -339,11 +359,11 @@ msgid "Additional buttons"
|
|
339 |
msgstr ""
|
340 |
|
341 |
#: inc/php/settings.php:49
|
342 |
-
msgid "
|
343 |
msgstr "Ссылки кнопок"
|
344 |
|
345 |
#: inc/php/settings.php:51
|
346 |
-
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/settings.php:76
|
@@ -351,98 +371,120 @@ msgid "Display options"
|
|
351 |
msgstr "Настройки отображения"
|
352 |
|
353 |
#: inc/php/settings.php:78
|
354 |
-
msgid "Here you can
|
355 |
-
|
|
|
356 |
|
357 |
#: inc/php/settings.php:82
|
358 |
-
msgid "
|
359 |
-
msgstr "
|
360 |
|
361 |
#: inc/php/settings.php:83
|
362 |
-
msgid "
|
363 |
-
msgstr "
|
364 |
-
|
365 |
-
#: inc/php/settings.php:86
|
366 |
-
msgid "Show on Pages"
|
367 |
-
msgstr "Показывать на страницах"
|
368 |
|
369 |
#: inc/php/settings.php:87
|
370 |
-
msgid "
|
371 |
-
msgstr "
|
372 |
|
373 |
#: inc/php/settings.php:90
|
374 |
-
msgid "
|
375 |
-
|
|
|
376 |
|
377 |
#: inc/php/settings.php:91
|
378 |
-
msgid "
|
379 |
-
msgstr "Открыть ссылку в новом окне/вкладке."
|
380 |
-
|
381 |
-
#: inc/php/settings.php:94
|
382 |
-
msgid "Tooltips"
|
383 |
-
msgstr "Подсказки"
|
384 |
-
|
385 |
-
#: inc/php/settings.php:95
|
386 |
-
msgid "Enable a tooltips with name of the social media above every button."
|
387 |
-
msgstr "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
388 |
-
|
389 |
-
#: inc/php/settings.php:98
|
390 |
-
msgid "Icon size"
|
391 |
-
msgstr "Размер иконки"
|
392 |
-
|
393 |
-
#: inc/php/settings.php:99
|
394 |
-
msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
|
395 |
-
msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
396 |
-
|
397 |
-
#: inc/php/settings.php:103
|
398 |
-
msgid "Margin"
|
399 |
-
msgstr "Отступ"
|
400 |
-
|
401 |
-
#: inc/php/settings.php:104
|
402 |
-
msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
|
403 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
404 |
|
405 |
-
#: inc/php/settings.php:
|
406 |
msgid "Left"
|
407 |
msgstr "Слева"
|
408 |
|
409 |
-
#: inc/php/settings.php:
|
410 |
msgid "Center"
|
411 |
msgstr "По центру"
|
412 |
|
413 |
-
#: inc/php/settings.php:
|
414 |
msgid "Right"
|
415 |
msgstr "Справа"
|
416 |
|
417 |
-
#: inc/php/settings.php:
|
418 |
-
msgid "
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
-
#: inc/php/settings.php:
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: inc/php/settings.php:
|
426 |
msgid "Caption"
|
427 |
msgstr "Заголовок"
|
428 |
|
429 |
-
#: inc/php/settings.php:
|
430 |
-
msgid "Enter the caption to your social media follow buttons bar. It will be
|
431 |
msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
|
432 |
|
433 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Live Preview"
|
435 |
msgstr "Просмотр в реальном времени"
|
436 |
|
437 |
-
#: inc/php/settings.php:
|
438 |
msgid "Click the \"Save changes\" button to update this preview."
|
439 |
msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
440 |
|
441 |
-
#: inc/php/settings.php:
|
442 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
443 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
444 |
|
445 |
-
#: inc/php/settings.php:
|
446 |
msgid "Thanks for your support!"
|
447 |
msgstr "Спасибо за вашу поддержку!"
|
448 |
|
@@ -450,19 +492,19 @@ msgstr "Спасибо за вашу поддержку!"
|
|
450 |
msgid "We are «Space X-Chimp»"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/sidebar.php:
|
454 |
msgid "About"
|
455 |
msgstr "О плагине"
|
456 |
|
457 |
-
#: inc/php/sidebar.php:
|
458 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
459 |
msgstr "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое место на вашем веб-сайте."
|
460 |
|
461 |
-
#: inc/php/sidebar.php:
|
462 |
msgid "Help"
|
463 |
msgstr "Помощь"
|
464 |
|
465 |
-
#: inc/php/sidebar.php:
|
466 |
msgid "If you have a question, please read the information in the FAQ section."
|
467 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
468 |
|
@@ -486,11 +528,23 @@ msgstr "Space X-Chimp"
|
|
486 |
msgid "https://www.spacexchimp.com"
|
487 |
msgstr "https://www.spacexchimp.com"
|
488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
490 |
#~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
|
491 |
|
492 |
#~ 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."
|
493 |
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
494 |
|
495 |
-
#~ 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."
|
496 |
#~ msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:46+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:47+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
27 |
+
#: inc/php/core.php:33 inc/php/core.php:48
|
28 |
+
msgid "Upgrade to PRO"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: inc/php/core.php:47
|
32 |
msgid "Donate"
|
33 |
msgstr "Поддержать"
|
34 |
|
35 |
+
#: inc/php/core.php:63
|
36 |
msgid "Social Media Follow Buttons"
|
37 |
msgstr "Социальные Медиа Кнопки Следования"
|
38 |
|
39 |
#: inc/php/items.php:1
|
40 |
#, php-format
|
41 |
+
msgid "Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
42 |
+
msgstr "Введите URL вашей страницы профиля в %s. URL должен содержать идентификатор протокола (<b>http://</b> или <b>https://</b>)."
|
43 |
|
44 |
#: inc/php/items.php:1
|
45 |
+
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."
|
46 |
+
msgstr "Введите свое имя в Skype с приставкой <b>skype:</b> и суффиксом <b>?call</b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра профиля."
|
47 |
|
48 |
#: inc/php/items.php:1
|
49 |
+
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
50 |
+
msgstr "Введите номер телефона с префиксом <b>tel://</b>."
|
51 |
|
52 |
#: inc/php/items.php:1
|
53 |
+
msgid "Enter your email address with prefix <b>mailto:</b>."
|
54 |
+
msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>."
|
55 |
|
56 |
#: inc/php/items.php:1
|
57 |
+
msgid "Enter the URL of your personal website."
|
58 |
+
msgstr "Введите URL вашего персонального сайта."
|
59 |
|
60 |
#: inc/php/items.php:1
|
61 |
+
msgid "Enter the URL of your RSS feed."
|
62 |
+
msgstr "Введите URL вашего RSS потока."
|
63 |
|
64 |
#: inc/php/messages.php:26
|
65 |
msgid "Hello. We are the team of Space X-Chimp."
|
95 |
msgid "F.A.Q."
|
96 |
msgstr "F.A.Q."
|
97 |
|
98 |
+
#: inc/php/page.php:46 inc/php/settings.php:150 inc/php/sidebar.php:47
|
99 |
msgid "Support"
|
100 |
msgstr "Поддержка"
|
101 |
|
116 |
msgstr "Перейдите на вкладку «Настройки»."
|
117 |
|
118 |
#: inc/php/page.php:68
|
119 |
+
msgid "Select the desired buttons and fill in the required URL fields."
|
120 |
msgstr "Заполните необходимые поля."
|
121 |
|
122 |
#: inc/php/page.php:69
|
132 |
msgstr "Теперь у вас есть несколько способов отображения панели социальных сетей (далее просто «кнопки»). Просто выберите ту, которая больше подходит для вашего дела."
|
133 |
|
134 |
#: inc/php/page.php:72
|
135 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
136 |
msgstr "<b>А)</b> Для отображения кнопок ниже содержимого на каждой странице или/и страницах, просто установите флажок “Показывать в записях” или/и “Показывать на страницах” в разделе “Настройки отображения”, затем нажмите кнопку “Сохранить изменения”."
|
137 |
|
138 |
#: inc/php/page.php:73
|
139 |
+
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
140 |
msgstr "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WordPress Post/Page используйте следующий короткий код:"
|
141 |
|
142 |
#: inc/php/page.php:75
|
143 |
+
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
144 |
msgstr "<b>В)</b> Для добавления кнопки в область виджетов (в боковой панели, нижнем колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий короткий код:"
|
145 |
|
146 |
#: inc/php/page.php:77
|
147 |
+
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
148 |
msgstr "<b>Г)</b> Для добавления кнопок непосредственно к файлам темы, просто добавьте следующий код в нужное место (где вы хотите отображать кнопки) в файлах темы:"
|
149 |
|
150 |
#: inc/php/page.php:80
|
155 |
msgid "It's that simple!"
|
156 |
msgstr "Вот так просто!"
|
157 |
|
|
|
|
|
|
|
|
|
158 |
#: inc/php/page.php:83
|
159 |
#, php-format
|
160 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
206 |
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения». Наслаждайтесь вашими модными Социальными медиа кнопками следования. Это так просто!"
|
207 |
|
208 |
#: inc/php/page.php:140
|
209 |
+
msgid "Can I configure my buttons bar instance?"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/php/page.php:141
|
213 |
+
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
214 |
+
msgstr "На вкладке «Настройки» выберите нужные параметры и нажмите кнопку «Сохранить изменения». Это так просто!"
|
215 |
+
|
216 |
+
#: inc/php/page.php:143
|
217 |
+
msgid "How many buttons bar instances can I create?"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: inc/php/page.php:144
|
221 |
+
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:145
|
225 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:147
|
229 |
msgid "Does this plugin requires any modification of the theme?"
|
230 |
msgstr "Этот плагин требует изменения темы?"
|
231 |
|
232 |
+
#: inc/php/page.php:148
|
233 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
234 |
msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
|
235 |
|
236 |
+
#: inc/php/page.php:150
|
237 |
msgid "Does this require any knowledge of HTML or CSS?"
|
238 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
239 |
|
240 |
+
#: inc/php/page.php:151
|
241 |
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
242 |
msgstr "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
243 |
|
244 |
+
#: inc/php/page.php:153
|
245 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
246 |
msgstr "Что делать, если в тесте Google Page Speed сказано, что изображения этого плагина должны быть сжаты?"
|
247 |
|
248 |
+
#: inc/php/page.php:154
|
249 |
+
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
250 |
msgstr "Изображения, которые используются в этом плагине, уже сжаты, но я сделаю все возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать их ещё лучше."
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid "It's not working. What could be wrong?"
|
254 |
msgstr "Оно не работает. Что может быть не так?"
|
255 |
|
256 |
+
#: inc/php/page.php:157
|
257 |
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."
|
258 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
|
259 |
|
260 |
+
#: inc/php/page.php:158
|
261 |
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."
|
262 |
msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
|
263 |
|
264 |
+
#: inc/php/page.php:160
|
265 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
266 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
267 |
|
268 |
+
#: inc/php/page.php:161
|
269 |
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."
|
270 |
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
271 |
|
272 |
+
#: inc/php/page.php:163
|
273 |
msgid "Where to report bug if found?"
|
274 |
msgstr "Где можно сообщить об ошибке?"
|
275 |
|
276 |
+
#: inc/php/page.php:165
|
277 |
#, php-format
|
278 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
279 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
280 |
|
281 |
+
#: inc/php/page.php:171
|
282 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
283 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
284 |
|
285 |
+
#: inc/php/page.php:173
|
286 |
#, php-format
|
287 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
288 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
289 |
|
290 |
+
#: inc/php/page.php:179
|
291 |
msgid "I love this plugin! Can I help somehow?"
|
292 |
msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
|
293 |
|
294 |
+
#: inc/php/page.php:181
|
295 |
#, php-format
|
296 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
297 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
298 |
|
299 |
+
#: inc/php/page.php:187
|
300 |
msgid "My question wasn't answered here."
|
301 |
msgstr "Моего вопроса здесь нет."
|
302 |
|
303 |
+
#: inc/php/page.php:189
|
304 |
#, php-format
|
305 |
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."
|
306 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
307 |
|
308 |
+
#: inc/php/page.php:203
|
309 |
msgid "Support Us"
|
310 |
msgstr "Поддержать нас"
|
311 |
|
312 |
+
#: inc/php/page.php:211 inc/php/settings.php:157 inc/php/sidebar.php:54
|
313 |
msgid "Donate with PayPal"
|
314 |
msgstr "Пожертвовать через PayPal"
|
315 |
|
316 |
+
#: inc/php/page.php:216
|
317 |
#, php-format
|
318 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:224
|
322 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:225
|
326 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
327 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
|
328 |
|
329 |
+
#: inc/php/page.php:226
|
330 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
331 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
332 |
|
333 |
+
#: inc/php/page.php:227
|
334 |
msgid "Thank you for your support!"
|
335 |
msgstr "Спасибо за вашу поддержку!"
|
336 |
|
337 |
+
#: inc/php/settings.php:21 inc/php/settings.php:139
|
338 |
msgid "Save changes"
|
339 |
msgstr "Сохранить изменения"
|
340 |
|
359 |
msgstr ""
|
360 |
|
361 |
#: inc/php/settings.php:49
|
362 |
+
msgid "Buttons URL"
|
363 |
msgstr "Ссылки кнопок"
|
364 |
|
365 |
#: inc/php/settings.php:51
|
366 |
+
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
367 |
msgstr ""
|
368 |
|
369 |
#: inc/php/settings.php:76
|
371 |
msgstr "Настройки отображения"
|
372 |
|
373 |
#: inc/php/settings.php:78
|
374 |
+
#| msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
|
375 |
+
msgid "Here you can customize the display of your social media follow buttons bar."
|
376 |
+
msgstr ""
|
377 |
|
378 |
#: inc/php/settings.php:82
|
379 |
+
msgid "Button size"
|
380 |
+
msgstr "Размер иконки"
|
381 |
|
382 |
#: inc/php/settings.php:83
|
383 |
+
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
384 |
+
msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
|
|
|
|
|
|
|
|
|
385 |
|
386 |
#: inc/php/settings.php:87
|
387 |
+
msgid "Positioning"
|
388 |
+
msgstr ""
|
389 |
|
390 |
#: inc/php/settings.php:90
|
391 |
+
#| msgid "Buttons URL"
|
392 |
+
msgid "Button margin"
|
393 |
+
msgstr ""
|
394 |
|
395 |
#: inc/php/settings.php:91
|
396 |
+
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
|
398 |
|
399 |
+
#: inc/php/settings.php:96
|
400 |
msgid "Left"
|
401 |
msgstr "Слева"
|
402 |
|
403 |
+
#: inc/php/settings.php:97
|
404 |
msgid "Center"
|
405 |
msgstr "По центру"
|
406 |
|
407 |
+
#: inc/php/settings.php:98
|
408 |
msgid "Right"
|
409 |
msgstr "Справа"
|
410 |
|
411 |
+
#: inc/php/settings.php:100
|
412 |
+
#| msgid "Buttons URL"
|
413 |
+
msgid "Buttons bar alignment"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: inc/php/settings.php:101
|
417 |
+
#| msgid "You can choose the alignment of the entire buttons bar."
|
418 |
+
msgid "You can choose the alignment of the entire buttons bar."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: inc/php/settings.php:105
|
422 |
+
msgid "Links open method"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: inc/php/settings.php:108
|
426 |
+
msgid "Open in new tab"
|
427 |
+
msgstr "Открыть в новой вкладке"
|
428 |
+
|
429 |
+
#: inc/php/settings.php:109
|
430 |
+
msgid "Open links in a new tab/window."
|
431 |
+
msgstr "Открывать ссылки в новом окне/вкладке."
|
432 |
|
433 |
+
#: inc/php/settings.php:112
|
434 |
+
msgid "Additional"
|
435 |
+
msgstr ""
|
436 |
|
437 |
+
#: inc/php/settings.php:115
|
438 |
msgid "Caption"
|
439 |
msgstr "Заголовок"
|
440 |
|
441 |
+
#: inc/php/settings.php:116
|
442 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
443 |
msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
|
444 |
|
445 |
+
#: inc/php/settings.php:120
|
446 |
+
msgid "Tooltips"
|
447 |
+
msgstr "Подсказки"
|
448 |
+
|
449 |
+
#: inc/php/settings.php:121
|
450 |
+
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
451 |
+
msgstr "Включить всплывающие подсказки с именем социальных сетей над каждой кнопкой."
|
452 |
+
|
453 |
+
#: inc/php/settings.php:124
|
454 |
+
msgid "Autoload"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: inc/php/settings.php:127
|
458 |
+
msgid "Show on Posts"
|
459 |
+
msgstr "Показывать в записях"
|
460 |
+
|
461 |
+
#: inc/php/settings.php:128
|
462 |
+
#| msgid "Automatically display the social media follow buttons below content on Posts."
|
463 |
+
msgid "Automatically display the buttons bar below content on Posts."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: inc/php/settings.php:131
|
467 |
+
msgid "Show on Pages"
|
468 |
+
msgstr "Показывать на страницах"
|
469 |
+
|
470 |
+
#: inc/php/settings.php:132
|
471 |
+
#| msgid "Automatically display the social media follow buttons below content on Pages."
|
472 |
+
msgid "Automatically display the buttons bar below content on Pages."
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: inc/php/settings.php:142
|
476 |
msgid "Live Preview"
|
477 |
msgstr "Просмотр в реальном времени"
|
478 |
|
479 |
+
#: inc/php/settings.php:144
|
480 |
msgid "Click the \"Save changes\" button to update this preview."
|
481 |
msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
|
482 |
|
483 |
+
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
484 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
485 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
486 |
|
487 |
+
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
488 |
msgid "Thanks for your support!"
|
489 |
msgstr "Спасибо за вашу поддержку!"
|
490 |
|
492 |
msgid "We are «Space X-Chimp»"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/php/sidebar.php:33
|
496 |
msgid "About"
|
497 |
msgstr "О плагине"
|
498 |
|
499 |
+
#: inc/php/sidebar.php:35
|
500 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
501 |
msgstr "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое место на вашем веб-сайте."
|
502 |
|
503 |
+
#: inc/php/sidebar.php:40
|
504 |
msgid "Help"
|
505 |
msgstr "Помощь"
|
506 |
|
507 |
+
#: inc/php/sidebar.php:42
|
508 |
msgid "If you have a question, please read the information in the FAQ section."
|
509 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
510 |
|
528 |
msgid "https://www.spacexchimp.com"
|
529 |
msgstr "https://www.spacexchimp.com"
|
530 |
|
531 |
+
#~ msgid "Note!"
|
532 |
+
#~ msgstr "Примечание!"
|
533 |
+
|
534 |
+
#~ msgid "Here you can configure the display options."
|
535 |
+
#~ msgstr "Здесь вы можете настроить параметры отображения."
|
536 |
+
|
537 |
+
#~ msgid "Margin"
|
538 |
+
#~ msgstr "Отступ"
|
539 |
+
|
540 |
+
#~ msgid "Alignment"
|
541 |
+
#~ msgstr "Выравнивание"
|
542 |
+
|
543 |
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
544 |
#~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
|
545 |
|
546 |
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
547 |
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
548 |
|
549 |
+
#~ msgid "Just fill in the required URL fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don't want to use any of the following buttons, you can not fill them and then they do not appear."
|
550 |
#~ msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
|
languages/social-media-buttons-toolbar.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -22,37 +22,41 @@ msgstr ""
|
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: inc/php/core.php:
|
|
|
|
|
|
|
|
|
26 |
msgid "Donate"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: inc/php/core.php:
|
30 |
msgid "Social Media Follow Buttons"
|
31 |
msgstr ""
|
32 |
|
33 |
#: inc/php/items.php:1
|
34 |
#, php-format
|
35 |
-
msgid "Enter the
|
36 |
msgstr ""
|
37 |
|
38 |
#: inc/php/items.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 ""
|
41 |
|
42 |
#: inc/php/items.php:1
|
43 |
-
msgid "Enter your telephone number with prefix <b>tel://</b
|
44 |
msgstr ""
|
45 |
|
46 |
#: inc/php/items.php:1
|
47 |
-
msgid "Enter your email address with prefix <b>mailto:</b
|
48 |
msgstr ""
|
49 |
|
50 |
#: inc/php/items.php:1
|
51 |
-
msgid "Enter the
|
52 |
msgstr ""
|
53 |
|
54 |
#: inc/php/items.php:1
|
55 |
-
msgid "Enter the
|
56 |
msgstr ""
|
57 |
|
58 |
#: inc/php/messages.php:26
|
@@ -89,7 +93,7 @@ msgstr ""
|
|
89 |
msgid "F.A.Q."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/php/page.php:46 inc/php/settings.php:
|
93 |
msgid "Support"
|
94 |
msgstr ""
|
95 |
|
@@ -110,7 +114,7 @@ msgid "Go to the \"Settings\" tab on this page."
|
|
110 |
msgstr ""
|
111 |
|
112 |
#: inc/php/page.php:68
|
113 |
-
msgid "
|
114 |
msgstr ""
|
115 |
|
116 |
#: inc/php/page.php:69
|
@@ -126,19 +130,19 @@ msgid "Now you have several methods for display the social media follow buttons
|
|
126 |
msgstr ""
|
127 |
|
128 |
#: inc/php/page.php:72
|
129 |
-
msgid "<b>A)</b>
|
130 |
msgstr ""
|
131 |
|
132 |
#: inc/php/page.php:73
|
133 |
-
msgid "<b>B)</b>
|
134 |
msgstr ""
|
135 |
|
136 |
#: inc/php/page.php:75
|
137 |
-
msgid "<b>C)</b>
|
138 |
msgstr ""
|
139 |
|
140 |
#: inc/php/page.php:77
|
141 |
-
msgid "<b>D)</b>
|
142 |
msgstr ""
|
143 |
|
144 |
#: inc/php/page.php:80
|
@@ -149,10 +153,6 @@ msgstr ""
|
|
149 |
msgid "It's that simple!"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:82
|
153 |
-
msgid "Note!"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
#: inc/php/page.php:83
|
157 |
#, php-format
|
158 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
@@ -204,115 +204,135 @@ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save
|
|
204 |
msgstr ""
|
205 |
|
206 |
#: inc/php/page.php:140
|
207 |
-
msgid "
|
208 |
msgstr ""
|
209 |
|
210 |
#: inc/php/page.php:141
|
211 |
-
msgid "
|
212 |
msgstr ""
|
213 |
|
214 |
#: inc/php/page.php:143
|
215 |
-
msgid "
|
216 |
msgstr ""
|
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 ""
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
-
msgid "The images that uses in this plugin are already compressed, but
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
msgid "It's not working. What could be wrong?"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
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:
|
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 ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
243 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
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 ""
|
249 |
|
250 |
-
#: inc/php/page.php:
|
251 |
msgid "Where to report bug if found?"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/php/page.php:
|
255 |
#, php-format
|
256 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: inc/php/page.php:
|
260 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: inc/php/page.php:
|
264 |
#, php-format
|
265 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "I love this plugin! Can I help somehow?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
#, php-format
|
274 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: inc/php/page.php:
|
278 |
msgid "My question wasn't answered here."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/php/page.php:
|
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 ""
|
285 |
|
286 |
-
#: inc/php/page.php:
|
287 |
msgid "Support Us"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
msgid "Donate with PayPal"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
#, php-format
|
296 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: inc/php/page.php:
|
308 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Thank you for your support!"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/settings.php:21 inc/php/settings.php:
|
316 |
msgid "Save changes"
|
317 |
msgstr ""
|
318 |
|
@@ -337,11 +357,11 @@ msgid "Additional buttons"
|
|
337 |
msgstr ""
|
338 |
|
339 |
#: inc/php/settings.php:49
|
340 |
-
msgid "
|
341 |
msgstr ""
|
342 |
|
343 |
#: inc/php/settings.php:51
|
344 |
-
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
|
345 |
msgstr ""
|
346 |
|
347 |
#: inc/php/settings.php:76
|
@@ -349,98 +369,114 @@ msgid "Display options"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: inc/php/settings.php:78
|
352 |
-
msgid "Here you can
|
353 |
msgstr ""
|
354 |
|
355 |
#: inc/php/settings.php:82
|
356 |
-
msgid "
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/settings.php:83
|
360 |
-
msgid "
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: inc/php/settings.php:86
|
364 |
-
msgid "Show on Pages"
|
365 |
msgstr ""
|
366 |
|
367 |
#: inc/php/settings.php:87
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
#: inc/php/settings.php:90
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
#: inc/php/settings.php:91
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/settings.php:
|
380 |
-
msgid "
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/settings.php:
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
#: inc/php/settings.php:98
|
388 |
-
msgid "
|
|
|
|
|
|
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/settings.php:
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/settings.php:
|
396 |
-
msgid "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/php/settings.php:
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
#: inc/php/settings.php:109
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/php/settings.php:
|
408 |
-
msgid "
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/php/settings.php:
|
412 |
-
msgid "
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/settings.php:
|
416 |
-
msgid "
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: inc/php/settings.php:
|
420 |
-
msgid "
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/php/settings.php:
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/settings.php:
|
428 |
-
msgid "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/settings.php:
|
432 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
#: inc/php/settings.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
msgid "Click the \"Save changes\" button to update this preview."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/settings.php:
|
440 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/settings.php:
|
444 |
msgid "Thanks for your support!"
|
445 |
msgstr ""
|
446 |
|
@@ -448,19 +484,19 @@ msgstr ""
|
|
448 |
msgid "We are «Space X-Chimp»"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: inc/php/sidebar.php:
|
452 |
msgid "About"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/sidebar.php:
|
456 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/sidebar.php:
|
460 |
msgid "Help"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/sidebar.php:
|
464 |
msgid "If you have a question, please read the information in the FAQ section."
|
465 |
msgstr ""
|
466 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Social Media Follow Buttons Bar\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:47+0200\n"
|
7 |
"PO-Revision-Date: 2015-12-17 02:16+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: inc/php/core.php:33 inc/php/core.php:48
|
26 |
+
msgid "Upgrade to PRO"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: inc/php/core.php:47
|
30 |
msgid "Donate"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/php/core.php:63
|
34 |
msgid "Social Media Follow Buttons"
|
35 |
msgstr ""
|
36 |
|
37 |
#: inc/php/items.php:1
|
38 |
#, php-format
|
39 |
+
msgid "Enter the URL of your profile page on %s. The URL must contain the protocol identifier (<b>http://</b> or <b>https://</b>)."
|
40 |
msgstr ""
|
41 |
|
42 |
#: inc/php/items.php:1
|
43 |
+
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."
|
44 |
msgstr ""
|
45 |
|
46 |
#: inc/php/items.php:1
|
47 |
+
msgid "Enter your telephone number with prefix <b>tel://</b>."
|
48 |
msgstr ""
|
49 |
|
50 |
#: inc/php/items.php:1
|
51 |
+
msgid "Enter your email address with prefix <b>mailto:</b>."
|
52 |
msgstr ""
|
53 |
|
54 |
#: inc/php/items.php:1
|
55 |
+
msgid "Enter the URL of your personal website."
|
56 |
msgstr ""
|
57 |
|
58 |
#: inc/php/items.php:1
|
59 |
+
msgid "Enter the URL of your RSS feed."
|
60 |
msgstr ""
|
61 |
|
62 |
#: inc/php/messages.php:26
|
93 |
msgid "F.A.Q."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: inc/php/page.php:46 inc/php/settings.php:150 inc/php/sidebar.php:47
|
97 |
msgid "Support"
|
98 |
msgstr ""
|
99 |
|
114 |
msgstr ""
|
115 |
|
116 |
#: inc/php/page.php:68
|
117 |
+
msgid "Select the desired buttons and fill in the required URL fields."
|
118 |
msgstr ""
|
119 |
|
120 |
#: inc/php/page.php:69
|
130 |
msgstr ""
|
131 |
|
132 |
#: inc/php/page.php:72
|
133 |
+
msgid "<b>A)</b> To automatically display the buttons below a content on every Posts and/or Pages, simply check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
|
134 |
msgstr ""
|
135 |
|
136 |
#: inc/php/page.php:73
|
137 |
+
msgid "<b>B)</b> To add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
#: inc/php/page.php:75
|
141 |
+
msgid "<b>C)</b> To add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
|
142 |
msgstr ""
|
143 |
|
144 |
#: inc/php/page.php:77
|
145 |
+
msgid "<b>D)</b> To add the buttons directly to the theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
|
146 |
msgstr ""
|
147 |
|
148 |
#: inc/php/page.php:80
|
153 |
msgid "It's that simple!"
|
154 |
msgstr ""
|
155 |
|
|
|
|
|
|
|
|
|
156 |
#: inc/php/page.php:83
|
157 |
#, php-format
|
158 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
204 |
msgstr ""
|
205 |
|
206 |
#: inc/php/page.php:140
|
207 |
+
msgid "Can I configure my buttons bar instance?"
|
208 |
msgstr ""
|
209 |
|
210 |
#: inc/php/page.php:141
|
211 |
+
msgid "Yes. On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. It's that simple!"
|
212 |
msgstr ""
|
213 |
|
214 |
#: inc/php/page.php:143
|
215 |
+
msgid "How many buttons bar instances can I create?"
|
216 |
msgstr ""
|
217 |
|
218 |
#: inc/php/page.php:144
|
219 |
+
msgid "The free version of this plugin supports only 1 instance of the buttons bar."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: inc/php/page.php:145
|
223 |
+
msgid "In the premium version of this plugin you can create up to 10 of buttons bar instances. This is very useful, because that way you can manage your buttons bar instances separately. Soon we will remove the limit on the number of buttons bar instances so that you can create an unlimited number of buttons bar instances."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: inc/php/page.php:147
|
227 |
+
msgid "Does this plugin requires any modification of the theme?"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: inc/php/page.php:148
|
231 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: inc/php/page.php:150
|
235 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: inc/php/page.php:151
|
239 |
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:153
|
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:154
|
247 |
+
msgid "The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:156
|
251 |
msgid "It's not working. What could be wrong?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:157
|
255 |
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."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:158
|
259 |
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."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:160
|
263 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:161
|
267 |
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."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:163
|
271 |
msgid "Where to report bug if found?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:165
|
275 |
#, php-format
|
276 |
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:171
|
280 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/php/page.php:173
|
284 |
#, php-format
|
285 |
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:179
|
289 |
msgid "I love this plugin! Can I help somehow?"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:181
|
293 |
#, php-format
|
294 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/php/page.php:187
|
298 |
msgid "My question wasn't answered here."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/php/page.php:189
|
302 |
#, php-format
|
303 |
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."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/page.php:203
|
307 |
msgid "Support Us"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/page.php:211 inc/php/settings.php:157 inc/php/sidebar.php:54
|
311 |
msgid "Donate with PayPal"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/page.php:216
|
315 |
#, php-format
|
316 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:224
|
320 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/php/page.php:225
|
324 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/page.php:226
|
328 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:227
|
332 |
msgid "Thank you for your support!"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/php/settings.php:21 inc/php/settings.php:139
|
336 |
msgid "Save changes"
|
337 |
msgstr ""
|
338 |
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/settings.php:49
|
360 |
+
msgid "Buttons URL"
|
361 |
msgstr ""
|
362 |
|
363 |
#: inc/php/settings.php:51
|
364 |
+
msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in the section above."
|
365 |
msgstr ""
|
366 |
|
367 |
#: inc/php/settings.php:76
|
369 |
msgstr ""
|
370 |
|
371 |
#: inc/php/settings.php:78
|
372 |
+
msgid "Here you can customize the display of your social media follow buttons bar."
|
373 |
msgstr ""
|
374 |
|
375 |
#: inc/php/settings.php:82
|
376 |
+
msgid "Button size"
|
377 |
msgstr ""
|
378 |
|
379 |
#: inc/php/settings.php:83
|
380 |
+
msgid "You can choose the size of the buttons (in pixels). Default is 64 pixels."
|
|
|
|
|
|
|
|
|
381 |
msgstr ""
|
382 |
|
383 |
#: inc/php/settings.php:87
|
384 |
+
msgid "Positioning"
|
385 |
msgstr ""
|
386 |
|
387 |
#: inc/php/settings.php:90
|
388 |
+
msgid "Button margin"
|
389 |
msgstr ""
|
390 |
|
391 |
#: inc/php/settings.php:91
|
392 |
+
msgid "You can choose the size of the space (in pixels) between each button. Default is 10 pixels."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: inc/php/settings.php:96
|
396 |
+
msgid "Left"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: inc/php/settings.php:97
|
400 |
+
msgid "Center"
|
401 |
msgstr ""
|
402 |
|
403 |
#: inc/php/settings.php:98
|
404 |
+
msgid "Right"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: inc/php/settings.php:100
|
408 |
+
msgid "Buttons bar alignment"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: inc/php/settings.php:101
|
412 |
+
msgid "You can choose the alignment of the entire buttons bar."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: inc/php/settings.php:105
|
416 |
+
msgid "Links open method"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: inc/php/settings.php:108
|
420 |
+
msgid "Open in new tab"
|
421 |
msgstr ""
|
422 |
|
423 |
#: inc/php/settings.php:109
|
424 |
+
msgid "Open links in a new tab/window."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: inc/php/settings.php:112
|
428 |
+
msgid "Additional"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: inc/php/settings.php:115
|
432 |
+
msgid "Caption"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: inc/php/settings.php:116
|
436 |
+
msgid "Enter the caption to your social media follow buttons bar. It will be displayed above the buttons bar."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: inc/php/settings.php:120
|
440 |
+
msgid "Tooltips"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: inc/php/settings.php:121
|
444 |
+
msgid "Enable tooltips with the name of social media that will be displayed next to each button."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: inc/php/settings.php:124
|
448 |
+
msgid "Autoload"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: inc/php/settings.php:127
|
452 |
+
msgid "Show on Posts"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: inc/php/settings.php:128
|
456 |
+
msgid "Automatically display the buttons bar below content on Posts."
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: inc/php/settings.php:131
|
460 |
+
msgid "Show on Pages"
|
461 |
msgstr ""
|
462 |
|
463 |
#: inc/php/settings.php:132
|
464 |
+
msgid "Automatically display the buttons bar below content on Pages."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: inc/php/settings.php:142
|
468 |
+
msgid "Live Preview"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: inc/php/settings.php:144
|
472 |
msgid "Click the \"Save changes\" button to update this preview."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: inc/php/settings.php:152 inc/php/sidebar.php:49
|
476 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: inc/php/settings.php:159 inc/php/sidebar.php:56
|
480 |
msgid "Thanks for your support!"
|
481 |
msgstr ""
|
482 |
|
484 |
msgid "We are «Space X-Chimp»"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: inc/php/sidebar.php:33
|
488 |
msgid "About"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: inc/php/sidebar.php:35
|
492 |
msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/php/sidebar.php:40
|
496 |
msgid "Help"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: inc/php/sidebar.php:42
|
500 |
msgid "If you have a question, please read the information in the FAQ section."
|
501 |
msgstr ""
|
502 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, bitbucket, dailypaintworks, flipboard, feedsfloor, gab, minds, wattpad, itunes podcasts, aboutme, group, stitcher, strava, wechat, weibo, blackberry-world, iheart, livestream, tunein, untappd, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -15,11 +15,13 @@ Easily add the smart bar with social media follow buttons (not share, only link
|
|
15 |
|
16 |
An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily add the smart bar with social media follow buttons to any place (post, page, widget, sidebar, footer) of your WordPress website.
|
17 |
|
18 |
-
The
|
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
|
|
|
|
|
23 |
|
24 |
**Features**
|
25 |
|
@@ -34,13 +36,28 @@ It give you finer control over buttons. You can configure they on plugins settin
|
|
34 |
**Key features include**
|
35 |
|
36 |
* Beautiful icons
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
* Ability to select only the desired buttons
|
38 |
-
*
|
39 |
-
* Tooltips with name of the social media above every button
|
40 |
-
* Shortcode for add social media follow buttons from Post/Page Editor
|
41 |
-
* PHP/HTML code for add social media follow buttons directly in your theme files
|
42 |
* And much, much more!
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
**Supported social media and links:**
|
45 |
|
46 |
* Facebook
|
@@ -144,7 +161,7 @@ It give you finer control over buttons. You can configure they on plugins settin
|
|
144 |
* Telephone
|
145 |
* RSS Feed
|
146 |
|
147 |
-
**Got more ideas? Tell
|
148 |
|
149 |
**Translation**
|
150 |
|
@@ -220,7 +237,7 @@ A. Absolutely not. This plugin is configurable entirely from the plugin settings
|
|
220 |
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.
|
221 |
|
222 |
= Q. What I need to do if the Google PageSpeed test says that this plugin images must be compressed? =
|
223 |
-
A. The images that uses in this plugin are already compressed, but
|
224 |
|
225 |
= Q. It's not working. What could be wrong? =
|
226 |
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.
|
@@ -282,6 +299,26 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
282 |
|
283 |
== Changelog ==
|
284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
= 4.44 =
|
286 |
* Improvement: Design of the plugin settings page is improved.
|
287 |
* Improved code to reset CSS styles to "default " for the buttons bar elements.
|
3 |
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, bitbucket, dailypaintworks, flipboard, feedsfloor, gab, minds, wattpad, itunes podcasts, aboutme, group, stitcher, strava, wechat, weibo, blackberry-world, iheart, livestream, tunein, untappd, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.0
|
7 |
+
Stable tag: 4.45
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
15 |
|
16 |
An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily add the smart bar with social media follow buttons to any place (post, page, widget, sidebar, footer) of your WordPress website.
|
17 |
|
18 |
+
The social media follow buttons bar - is a bar with set of icons of the popular social media which are linked directly to your profile on this social networks. I.e. clicking the Facebook icon will take the user to your Facebook page, clicking the Twitter icon will take them to your Twitter page.
|
19 |
|
20 |
Unlike the other plugins, this plugin creates a live bar. The bar automatically adapt to the width of the block where it placed. If the buttons do not fit to the one line, then they will be placed on multiple lines. So they can be arranged horizontally or vertically, in one line or in a few, and all of this is done automatically. 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 Posts and/or Pages, and can position the link buttons using either a widget, a shortcode or a template action hook. If you want more options, then let us know and we will be happy to add them.
|
23 |
+
|
24 |
+
This plugin is just plug and play, no tedious configurations or hacks, just install, enable and start enjoy your fancy social media follow buttons. It's that simple!
|
25 |
|
26 |
**Features**
|
27 |
|
36 |
**Key features include**
|
37 |
|
38 |
* Beautiful icons
|
39 |
+
* Automatically display buttons bar in all posts and/or pages
|
40 |
+
* Display buttons bar in any post or page with a WordPress shortcode
|
41 |
+
* Display buttons bar in widgets with a WordPress shortcode
|
42 |
+
* Include buttons bar directly in your theme files with a PHP short code
|
43 |
+
* Supported 100 social media sites and additional links
|
44 |
+
* Tooltips with the name of social media next to each button
|
45 |
* Ability to select only the desired buttons
|
46 |
+
* Live preview on the plugin settings page
|
|
|
|
|
|
|
47 |
* And much, much more!
|
48 |
|
49 |
+
**PRO features include**
|
50 |
+
|
51 |
+
* Up to 10 buttons bar instances
|
52 |
+
* Separate settings for buttons bars
|
53 |
+
* Separate preview for each buttons bar
|
54 |
+
* Ability to give a name/label for each buttons bar for easy management
|
55 |
+
* Ability to choose which one from your buttons bars you like to autoload.
|
56 |
+
* Ability to automatically display the buttons bar not only below content on Posts, but also above content on Posts.
|
57 |
+
* Ability to automatically display the buttons bar not only below content on Pages, but also above content on Pages.
|
58 |
+
* No ads on the settings page
|
59 |
+
* Well documented
|
60 |
+
|
61 |
**Supported social media and links:**
|
62 |
|
63 |
* Facebook
|
161 |
* Telephone
|
162 |
* RSS Feed
|
163 |
|
164 |
+
**Got more ideas? Tell us!**
|
165 |
|
166 |
**Translation**
|
167 |
|
237 |
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.
|
238 |
|
239 |
= Q. What I need to do if the Google PageSpeed test says that this plugin images must be compressed? =
|
240 |
+
A. The images that uses in this plugin are already compressed, but we will do our best to find out what else can be done with the images in order to compress them even better.
|
241 |
|
242 |
= Q. It's not working. What could be wrong? =
|
243 |
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser'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.
|
299 |
|
300 |
== Changelog ==
|
301 |
|
302 |
+
= 4.45 =
|
303 |
+
* Added information about the PRO version of the plugin.
|
304 |
+
* Options on the settings page are resorted.
|
305 |
+
* Options on the settings page are renamed.
|
306 |
+
* On the plugin settings page added separators with title for option groups.
|
307 |
+
* Content of the "Usage" section updated.
|
308 |
+
* Content of the "FAQ" section updated.
|
309 |
+
* Many texts are updated.
|
310 |
+
* The function "_tollbar" is renamed to "_generator".
|
311 |
+
* The autoload function "_addContent" is renamed to "_autoload" and improved.
|
312 |
+
* The function "_load_scripts_dynamic_css" is improved.
|
313 |
+
* In the "frontend.css" file, useless CSS code is removed.
|
314 |
+
* Added class "sxc-follow-button" to the LI element of the buttons bar.
|
315 |
+
* Some variables in the "enqueue.php" file are renamed.
|
316 |
+
* Code formatting in the "admin.js" file improved.
|
317 |
+
* Code formatting in the "functional.php" file improved.
|
318 |
+
* Code commenting improved.
|
319 |
+
* The copyright date updated.
|
320 |
+
* Translation files are updated.
|
321 |
+
|
322 |
= 4.44 =
|
323 |
* Improvement: Design of the plugin settings page is improved.
|
324 |
* Improved code to reset CSS styles to "default " for the buttons bar elements.
|
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: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
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: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.45
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2015-2019 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
|