Social Media Share Buttons | MashShare - Version 3.1.5

Version Description

  • Fix: Twitter title for floating sidebar and sharebar add-on is wrong when on frontpages with multiple blogposts
  • Fix: Telegram button missing style in mashsb.css
  • Fix: Wrong textdomain
  • Fix: Size of inline css when using AMP Plugin is too big.
  • Tweak: Missing update notice after succesfull settings import
  • Tweak: Improve Open Graph and Twitter Card settings description
  • New: Hide User Profile MashShare meta box with setting Meta Box Visibility in general settings
Download this release

Release Info

Developer ReneHermi
Plugin Icon 128x128 Social Media Share Buttons | MashShare
Version 3.1.5
Comparing to
See all releases

Code changes from version 3.1.4 to 3.1.5

includes/admin/admin-notices.php CHANGED
@@ -43,8 +43,9 @@ function mashsb_check_active_networks() {
43
  function mashsb_admin_messages() {
44
  global $mashsb_options;
45
 
46
- if( !current_user_can( 'update_plugins' ) )
47
  return;
 
48
 
49
  if( mashsb_is_admin_page() && !function_exists( 'curl_init' ) ) {
50
  echo '<div class="error">';
@@ -101,7 +102,17 @@ function mashsb_admin_messages() {
101
  echo '</div>';
102
  }
103
 
104
-
 
 
 
 
 
 
 
 
 
 
105
 
106
  // Please rate us
107
  $install_date = get_option( 'mashsb_installDate' );
43
  function mashsb_admin_messages() {
44
  global $mashsb_options;
45
 
46
+ if( !current_user_can( 'update_plugins' ) ){
47
  return;
48
+ }
49
 
50
  if( mashsb_is_admin_page() && !function_exists( 'curl_init' ) ) {
51
  echo '<div class="error">';
102
  echo '</div>';
103
  }
104
 
105
+ // Show save notice
106
+ if( isset( $_GET['mashsb-message'] ) ) {
107
+ switch ( $_GET['mashsb-message'] ) {
108
+ case 'settings-imported' :
109
+ echo '<div class="updated">';
110
+ echo '<p>' . __( 'The settings have been imported', 'mashsb' ) . '</p>';
111
+ echo '</div>';
112
+ break;
113
+ }
114
+ }
115
+
116
 
117
  // Please rate us
118
  $install_date = get_option( 'mashsb_installDate' );
includes/admin/settings/metabox-settings.php CHANGED
@@ -14,7 +14,7 @@
14
  * Show meta box when user role is not specified
15
  *
16
  * @global array $mashsb_options
17
- * @return bool true when meta boxes are should be shown for a specific user role
18
  */
19
  function mashsb_show_meta_box(){
20
  global $mashsb_options, $wp_roles;
14
  * Show meta box when user role is not specified
15
  *
16
  * @global array $mashsb_options
17
+ * @return bool true when meta boxes should be shown for a specific user role
18
  */
19
  function mashsb_show_meta_box(){
20
  global $mashsb_options, $wp_roles;
includes/admin/settings/register-settings.php CHANGED
@@ -237,7 +237,7 @@ function mashsb_get_registered_settings() {
237
  "user_roles_for_sharing_options" => array(
238
  "id" => "user_roles_for_sharing_options",
239
  "name" => __("Meta Box Visibility", "mashsb"),
240
- "desc" => __("Select user roles which can see MashShare Social Sharing Meta Box Options on posts and pages edit screen", "mashsb"),
241
  "type" => "multiselect",
242
  "options" => mashsb_get_user_roles(),
243
  "placeholder" => __("Select User Roles", "mashsb"),
@@ -273,13 +273,15 @@ function mashsb_get_registered_settings() {
273
  'twitter_card' => array(
274
  'id' => 'twitter_card',
275
  'name' => __( 'Twitter Card', 'mashsb' ),
276
- 'desc' => __( 'Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack plugin their meta tags will be removed and MashShare will use existing meta data from these plugins. Default: On', 'mashsb' ),
 
277
  'type' => 'checkbox'
278
  ),
279
  'open_graph' => array(
280
  'id' => 'open_graph',
281
  'name' => __( 'Open Graph Meta Tags', 'mashsb' ),
282
- 'desc' => __( 'Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or Jetpack plugin their meta tags will be removed and MashShare will use existing meta data from these plugins.', 'mashsb' ),
 
283
  'type' => 'checkbox'
284
  ),
285
  'visible_services' => array(
237
  "user_roles_for_sharing_options" => array(
238
  "id" => "user_roles_for_sharing_options",
239
  "name" => __("Meta Box Visibility", "mashsb"),
240
+ "desc" => __("Select user roles which can only see MashShare Social Sharing Meta Box Options on posts and pages edit screen and User Meta Box on user profiles. If nothing is set meta boxes are shown for all user roles", "mashsb"),
241
  "type" => "multiselect",
242
  "options" => mashsb_get_user_roles(),
243
  "placeholder" => __("Select User Roles", "mashsb"),
273
  'twitter_card' => array(
274
  'id' => 'twitter_card',
275
  'name' => __( 'Twitter Card', 'mashsb' ),
276
+ 'desc' => __( 'If this is activated MashShare is creating new tags in head of your site for twitter card data and populates them with data coming from the MashShare Twitter Meta Box from the post editing screen or in case you are using Yoast these fields will be populated with the Yoast Twitter Card Data.<br><br>
277
+ So the MashShare twitter card tags will be containing the same social meta data that YOAST would be supplying on your site. So you can use that feature parallel to the Yoast twitter card integration and you do not need to deactivate it even when you prefer to use the Yoast Twitter Card editor.', 'mashsb' ),
278
  'type' => 'checkbox'
279
  ),
280
  'open_graph' => array(
281
  'id' => 'open_graph',
282
  'name' => __( 'Open Graph Meta Tags', 'mashsb' ),
283
+ 'desc' => __( 'If this is activated MashShare is creating new tags in head of your site for open graph data and populates them with data coming from the MashShare Open Graph Meta Box from the post editing screen or in case you are using Yoast these fields will be populated with the Yoast Open Graph Data.<br><br>
284
+ So the MashShare open graph data will be containing the same social meta data that YOAST would be supplying on your site. So you can use that feature parallel to the Yoast open graph integration and you do not need to deactivate it even when you prefer to use the Yoast Open Graph editor.', 'mashsb' ),
285
  'type' => 'checkbox'
286
  ),
287
  'visible_services' => array(
includes/admin/settings/user-profiles.php CHANGED
@@ -1,48 +1,51 @@
1
- <?php
2
-
3
- // Queue up our profile field functions
4
- add_action( 'show_user_profile', 'mashsb_render_user_profiles' );
5
- add_action( 'edit_user_profile', 'mashsb_render_user_profiles' );
6
- add_action( 'personal_options_update', 'mashsb_save_user_profiles' );
7
- add_action( 'edit_user_profile_update', 'mashsb_save_user_profiles' );
8
-
9
- /**
10
- * Render the user profile settings
11
- *
12
- * @param array $user
13
- * @return string html
14
- */
15
- function mashsb_render_user_profiles( $user ) {
16
- $html = '<h3>' . __( 'MashShare Social Media Integration', 'mashsb' ) . '</h3>' .
17
- '<table class="form-table">' .
18
- '<tr>' .
19
- '<th><label for="twitter">' . __( 'Twitter Username', 'mashsb' ) . '</label></th>' .
20
- '<td>' .
21
- '<input type="text" name="mashsb_twitter_handle" id="mashsb_twitter_handle" value="' . esc_attr( get_the_author_meta( 'mashsb_twitter_handle', $user->ID ) ) . '" class="regular-text" />' .
22
- '<br /><span class="description">' . __( 'Your Twitter username (without the @ symbol)', 'mashsb' ) . '</span>' .
23
- '</tr>' .
24
- '<th><label for="mashsb_fb_author_url">' . __( 'Facebook Author URL', 'mashsb' ) . '</label></th>' .
25
- '<td>' .
26
- '<input type="text" name="mashsb_fb_author_url" id="mashsb_fb_author_url" value="' . esc_attr( get_the_author_meta( 'mashsb_fb_author_url', $user->ID ) ) . '" class="regular-text" />' .
27
- '<br /><span class="description">' . __( 'URL to your Facebok profile.', 'mashsb' ) . '</span>' .
28
- '</td>' .
29
- '</tr>' .
30
- '</table>';
31
-
32
- echo $html;
33
- }
34
-
35
- /**
36
- * Save user profile
37
- *
38
- * @param type $user_id
39
- * @return boolean
40
- */
41
- function mashsb_save_user_profiles( $user_id ) {
42
-
43
- if( !current_user_can( 'edit_user', $user_id ) )
44
- return false;
45
-
46
- update_usermeta( $user_id, 'mashsb_twitter_handle', $_POST['mashsb_twitter_handle'] );
47
- update_usermeta( $user_id, 'mashsb_fb_author_url', $_POST['mashsb_fb_author_url'] );
48
- }
 
 
 
1
+ <?php
2
+
3
+ // Queue up our profile field functions
4
+ add_action( 'show_user_profile', 'mashsb_render_user_profiles' );
5
+ add_action( 'edit_user_profile', 'mashsb_render_user_profiles' );
6
+ add_action( 'personal_options_update', 'mashsb_save_user_profiles' );
7
+ add_action( 'edit_user_profile_update', 'mashsb_save_user_profiles' );
8
+
9
+ /**
10
+ * Render the user profile settings
11
+ *
12
+ * @param array $user
13
+ * @return string html
14
+ */
15
+ function mashsb_render_user_profiles( $user ) {
16
+
17
+ $html = '<h3>' . __( 'MashShare Social Media Integration', 'mashsb' ) . '</h3>' .
18
+ '<table class="form-table">' .
19
+ '<tr>' .
20
+ '<th><label for="twitter">' . __( 'Twitter Username', 'mashsb' ) . '</label></th>' .
21
+ '<td>' .
22
+ '<input type="text" name="mashsb_twitter_handle" id="mashsb_twitter_handle" value="' . esc_attr( get_the_author_meta( 'mashsb_twitter_handle', $user->ID ) ) . '" class="regular-text" />' .
23
+ '<br /><span class="description">' . __( 'Your Twitter username (without the @ symbol)', 'mashsb' ) . '</span>' .
24
+ '</tr>' .
25
+ '<th><label for="mashsb_fb_author_url">' . __( 'Facebook Author URL', 'mashsb' ) . '</label></th>' .
26
+ '<td>' .
27
+ '<input type="text" name="mashsb_fb_author_url" id="mashsb_fb_author_url" value="' . esc_attr( get_the_author_meta( 'mashsb_fb_author_url', $user->ID ) ) . '" class="regular-text" />' .
28
+ '<br /><span class="description">' . __( 'URL to your Facebok profile.', 'mashsb' ) . '</span>' .
29
+ '</td>' .
30
+ '</tr>' .
31
+ '</table>';
32
+
33
+ if( mashsb_show_meta_box() ){
34
+ echo $html;
35
+ }
36
+ }
37
+
38
+ /**
39
+ * Save user profile
40
+ *
41
+ * @param type $user_id
42
+ * @return boolean
43
+ */
44
+ function mashsb_save_user_profiles( $user_id ) {
45
+
46
+ if( !current_user_can( 'edit_user', $user_id ) )
47
+ return false;
48
+
49
+ update_usermeta( $user_id, 'mashsb_twitter_handle', $_POST['mashsb_twitter_handle'] );
50
+ update_usermeta( $user_id, 'mashsb_fb_author_url', $_POST['mashsb_fb_author_url'] );
51
+ }
includes/scripts.php CHANGED
@@ -258,9 +258,22 @@ function mashsb_amp_load_css() {
258
  $share_color = isset( $mashsb_options['share_color'] ) ? $mashsb_options['share_color'] : '#ccc';
259
  $custom_css = isset( $mashsb_options['custom_css'] ) ? $mashsb_options['custom_css'] : '';
260
  $amp_css = isset( $mashsb_options['amp_css'] ) ? $mashsb_options['amp_css'] : '';
261
-
262
- // Get default css
263
- $css = file_get_contents( MASHSB_PLUGIN_DIR . '/templates/mashsb.min.css' );
 
 
 
 
 
 
 
 
 
 
 
 
 
264
 
265
  // add custom css
266
  $css .= $custom_css;
258
  $share_color = isset( $mashsb_options['share_color'] ) ? $mashsb_options['share_color'] : '#ccc';
259
  $custom_css = isset( $mashsb_options['custom_css'] ) ? $mashsb_options['custom_css'] : '';
260
  $amp_css = isset( $mashsb_options['amp_css'] ) ? $mashsb_options['amp_css'] : '';
261
+
262
+ $css = "@font-face {
263
+ font-family: 'mashsb-font';
264
+ src: url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.eot?29924580');
265
+ src: url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.eot?29924580#iefix') format('embedded-opentype'),
266
+ url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.woff2?29924580') format('woff2'),
267
+ url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.woff?29924580') format('woff'),
268
+ url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.ttf?29924580') format('truetype'),
269
+ url('" . MASHSB_PLUGIN_URL . "templates/fonts/mashsb-font.svg?29924580#mashsb-font') format('svg');
270
+ font-weight: normal;
271
+ font-style: normal;
272
+ }";
273
+
274
+ // Get default css file
275
+ $css .= file_get_contents( MASHSB_PLUGIN_DIR . '/templates/mashsb-amp.css' );
276
+
277
 
278
  // add custom css
279
  $css .= $custom_css;
includes/template-functions.php CHANGED
@@ -938,12 +938,12 @@ function mashsb_get_title() {
938
  $title = urlencode( $title );
939
  $title = str_replace( '#', '%23', $title );
940
  $title = esc_html( $title );
941
- } else if( !empty( $post->ID ) ) {
942
- $title = get_the_title( $post->ID );
943
- $title = html_entity_decode( $title, ENT_QUOTES, 'UTF-8' );
944
- $title = urlencode( $title );
945
- $title = str_replace( '#', '%23', $title );
946
- $title = esc_html( $title );
947
  } else {
948
  $title = mashsb_get_document_title();
949
  $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
@@ -1088,10 +1088,6 @@ function mashsb_get_twitter_username() {
1088
  * @return string Tag with the document title.
1089
  */
1090
  function mashsb_get_document_title() {
1091
- // wp_get_document_title() exist since WP 4.4
1092
- /*if( function_exists( 'wp_get_document_title' ) ) {
1093
- return wp_get_document_title();
1094
- }*/
1095
 
1096
  /**
1097
  * Filter the document title before it is generated.
@@ -1103,13 +1099,6 @@ function mashsb_get_document_title() {
1103
  *
1104
  * @param string $title The document title. Default empty string.
1105
  */
1106
- //$title = apply_filters( 'pre_get_document_title', '' );
1107
- /*if( !empty( $title ) ) {
1108
- return $title;
1109
- }*/
1110
-
1111
- global $post;
1112
-
1113
 
1114
  // If it's a 404 page, use a "Page not found" title.
1115
  if( is_404() ) {
@@ -1123,7 +1112,7 @@ function mashsb_get_document_title() {
1123
  // If on a post type archive, use the post type archive title.
1124
  } elseif( is_post_type_archive() ) {
1125
  $title = post_type_archive_title( '', false );
1126
-
1127
  // If on a taxonomy archive, use the term title.
1128
  } elseif( is_tax() ) {
1129
  $title = single_term_title( '', false );
@@ -1132,9 +1121,8 @@ function mashsb_get_document_title() {
1132
  * If we're on the blog page that is not the homepage or
1133
  * a single post of any post type, use the post title.
1134
  */
1135
- } elseif( is_home() || is_singular() ) {
1136
- //$title = single_post_title( '', false );
1137
- //$title = get_the_title( $post->ID );
1138
  $title = the_title_attribute('echo=0');
1139
 
1140
  // If on the front page, use the site title.
938
  $title = urlencode( $title );
939
  $title = str_replace( '#', '%23', $title );
940
  $title = esc_html( $title );
941
+ // } else if( !empty( $post->ID ) ) {
942
+ // $title = get_the_title( $post->ID );
943
+ // $title = html_entity_decode( $title, ENT_QUOTES, 'UTF-8' );
944
+ // $title = urlencode( $title );
945
+ // $title = str_replace( '#', '%23', $title );
946
+ // $title = esc_html( $title );
947
  } else {
948
  $title = mashsb_get_document_title();
949
  $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
1088
  * @return string Tag with the document title.
1089
  */
1090
  function mashsb_get_document_title() {
 
 
 
 
1091
 
1092
  /**
1093
  * Filter the document title before it is generated.
1099
  *
1100
  * @param string $title The document title. Default empty string.
1101
  */
 
 
 
 
 
 
 
1102
 
1103
  // If it's a 404 page, use a "Page not found" title.
1104
  if( is_404() ) {
1112
  // If on a post type archive, use the post type archive title.
1113
  } elseif( is_post_type_archive() ) {
1114
  $title = post_type_archive_title( '', false );
1115
+
1116
  // If on a taxonomy archive, use the term title.
1117
  } elseif( is_tax() ) {
1118
  $title = single_term_title( '', false );
1121
  * If we're on the blog page that is not the homepage or
1122
  * a single post of any post type, use the post title.
1123
  */
1124
+ //} elseif( !is_home() || is_singular() ) {
1125
+ } elseif( is_singular() ) {
 
1126
  $title = the_title_attribute('echo=0');
1127
 
1128
  // If on the front page, use the site title.
languages/mashsb-ar_AR.mo DELETED
Binary file
languages/mashsb-ar_AR.po DELETED
@@ -1,1691 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # shadi <shadishare@gmail.com>, 2015
5
- # yahia zakaria <yahiazak@hotmail.com>, 2015
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Mashshare\n"
9
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
10
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
11
- "PO-Revision-Date: 2016-06-23 19:07+0100\n"
12
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
13
- "Language-Team: Arabic (http://www.transifex.com/renehermenau/mashshare/"
14
- "language/ar/)\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Language: ar\n"
19
- "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
20
- "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
21
- "X-Generator: Poedit 1.5.6\n"
22
-
23
- msgid ""
24
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
25
- "Highly customizable Social Media ecosystem"
26
- msgstr ""
27
-
28
- #: includes/MASHSB_SL_Plugin_Updater.php:177
29
- msgid ""
30
- "There is a new version of %1$s available. <a target=\"_blank\" class="
31
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
32
- msgstr ""
33
-
34
- #: includes/MASHSB_SL_Plugin_Updater.php:184
35
- msgid ""
36
- "There is a new version of %1$s available. <a target=\"_blank\" class="
37
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
38
- "\">update now</a>."
39
- msgstr ""
40
-
41
- #: includes/MASHSB_SL_Plugin_Updater.php:324
42
- msgid "You do not have permission to install plugin updates"
43
- msgstr ""
44
-
45
- #: includes/MASHSB_SL_Plugin_Updater.php:324
46
- #: includes/class-mashsb-license-handler.php:319
47
- msgid "Error"
48
- msgstr ""
49
-
50
- #: includes/admin/add-ons.php:27
51
- msgid "Add Ons for Mashshare"
52
- msgstr "إضافات لـ Mashshare"
53
-
54
- #: includes/admin/add-ons.php:28
55
- msgid "Visit Website"
56
- msgstr "زيارة الموقع"
57
-
58
- #: includes/admin/add-ons.php:28
59
- msgid "See Details"
60
- msgstr "شاهد التفاصيل"
61
-
62
- #: includes/admin/add-ons.php:30
63
- msgid "These add-ons extend the functionality of Mashshare."
64
- msgstr "هذة الوظيفة الاضافية تزيد من قدرات التشغيل الخاصة ب Mashshare."
65
-
66
- #: includes/admin/add-ons.php:54
67
- msgid ""
68
- "There was an error retrieving the Mashshare addon list from the server. "
69
- "Please try again later."
70
- msgstr ""
71
- "يوجد خطاء في الخادم ويتعذر استعادة قائمة الخدمات الاضافية الخاصة ب "
72
- "Mashshare . برجاء المحاولة مرة اخرى ."
73
-
74
- #: includes/admin/admin-footer.php:24
75
- msgid ""
76
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
77
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
78
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
79
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
80
- "\"blank\">Documentation</a>"
81
- msgstr ""
82
-
83
- #: includes/admin/admin-notices.php:51
84
- msgid ""
85
- "MashShare needs the PHP extension cURL which is not installed on your "
86
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
87
- "to be able to collect share count of your posts."
88
- msgstr ""
89
-
90
- #: includes/admin/admin-notices.php:58
91
- msgid ""
92
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
93
- ">Social Networks</a> and enable at least one Social Network."
94
- msgstr ""
95
-
96
- #: includes/admin/admin-notices.php:64
97
- msgid ""
98
- "Your Sharebar Add-On version is not using new short url mechanism of "
99
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
100
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
101
- "short urls will not stop working in one of the next updates. This requires a "
102
- "valid license of the Sharebar Add-On"
103
- msgstr ""
104
-
105
- #: includes/admin/admin-notices.php:70
106
- msgid ""
107
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
108
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
109
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
110
- "twitter short urls will not stop working in one of the next updates. This "
111
- "requires a valid license of the Floating Sidebar Add-On"
112
- msgstr ""
113
-
114
- #: includes/admin/admin-notices.php:76
115
- msgid ""
116
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
117
- ">Short URL Integration</i></a> and check the Google API key."
118
- msgstr ""
119
-
120
- #: includes/admin/admin-notices.php:82
121
- msgid ""
122
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
123
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
124
- "check the Bitly API key."
125
- msgstr ""
126
-
127
- #: includes/admin/admin-notices.php:88
128
- msgid ""
129
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
130
- "is not longer needed and having it activated leads to duplicate open graph "
131
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
132
- msgstr ""
133
-
134
- #: includes/admin/admin-notices.php:94
135
- msgid ""
136
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
137
- "not longer needed and already built in MashShare. Deactivate it from <a href="
138
- "\"%s\"> Plugin Settings</a> "
139
- msgstr ""
140
-
141
- #: includes/admin/admin-notices.php:100
142
- msgid ""
143
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
144
- "\">Permalinks</a> must be enabled to count shares. Share count is "
145
- "deactivated until you have fixed this."
146
- msgstr ""
147
-
148
- #: includes/admin/admin-notices.php:258
149
- msgid ""
150
- "There seems to be an issue with the server. Please try again in a few "
151
- "minutes."
152
- msgstr "يوجد خطا ما في السيرفر من فضلك حاول مرة اخرة بعد عدة دقائق"
153
-
154
- #: includes/admin/admin-pages.php:31
155
- msgid "MashShare"
156
- msgstr ""
157
-
158
- #: includes/admin/admin-pages.php:32
159
- msgid "MashShare Settings"
160
- msgstr ""
161
-
162
- #: includes/admin/admin-pages.php:32
163
- #: includes/admin/settings/register-settings.php:744
164
- msgid "Settings"
165
- msgstr "اعدادات"
166
-
167
- #: includes/admin/admin-pages.php:33
168
- msgid "MashShare Add Ons"
169
- msgstr ""
170
-
171
- #: includes/admin/admin-pages.php:33
172
- msgid "Get Add Ons"
173
- msgstr ""
174
-
175
- #: includes/admin/admin-pages.php:34
176
- msgid "MashShare Tools"
177
- msgstr ""
178
-
179
- #: includes/admin/admin-pages.php:34
180
- msgid "Im/Export & System"
181
- msgstr ""
182
-
183
- #: includes/admin/meta-box/inc/core.php:40
184
- msgid "Documentation"
185
- msgstr ""
186
-
187
- #: includes/admin/meta-box/inc/core.php:41
188
- msgid "Extensions"
189
- msgstr "امتدادات"
190
-
191
- #: includes/admin/meta-box/inc/field.php:196
192
- msgid "+ Add more"
193
- msgstr ""
194
-
195
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
196
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
197
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
198
- msgid "Delete"
199
- msgstr ""
200
-
201
- #: includes/admin/meta-box/inc/fields/button.php:29
202
- msgid "Click me"
203
- msgstr ""
204
-
205
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
206
- msgid "Yes"
207
- msgstr ""
208
-
209
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
210
- msgid "No"
211
- msgstr ""
212
-
213
- #: includes/admin/meta-box/inc/fields/file-input.php:18
214
- msgid "Select File"
215
- msgstr ""
216
-
217
- #: includes/admin/meta-box/inc/fields/file-input.php:41
218
- #: includes/admin/meta-box/inc/fields/select.php:91
219
- msgid "Select"
220
- msgstr ""
221
-
222
- #: includes/admin/meta-box/inc/fields/file-input.php:43
223
- msgid "Remove"
224
- msgstr ""
225
-
226
- #: includes/admin/meta-box/inc/fields/file.php:15
227
- msgid "You may only upload maximum %d file"
228
- msgstr ""
229
-
230
- #: includes/admin/meta-box/inc/fields/file.php:16
231
- msgid "You may only upload maximum %d files"
232
- msgstr ""
233
-
234
- #: includes/admin/meta-box/inc/fields/file.php:83
235
- msgid "Error: Cannot delete file"
236
- msgstr ""
237
-
238
- #: includes/admin/meta-box/inc/fields/file.php:96
239
- msgctxt "file upload"
240
- msgid "Upload Files"
241
- msgstr ""
242
-
243
- #: includes/admin/meta-box/inc/fields/file.php:97
244
- msgctxt "file upload"
245
- msgid "+ Add new file"
246
- msgstr ""
247
-
248
- #: includes/admin/meta-box/inc/fields/file.php:153
249
- msgctxt "file upload"
250
- msgid "Delete"
251
- msgstr ""
252
-
253
- #: includes/admin/meta-box/inc/fields/file.php:154
254
- msgctxt "file upload"
255
- msgid "Edit"
256
- msgstr ""
257
-
258
- #: includes/admin/meta-box/inc/fields/image.php:61
259
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
260
- msgctxt "image upload"
261
- msgid "Upload Images"
262
- msgstr ""
263
-
264
- #: includes/admin/meta-box/inc/fields/image.php:62
265
- msgctxt "image upload"
266
- msgid "+ Add new image"
267
- msgstr ""
268
-
269
- #: includes/admin/meta-box/inc/fields/image.php:124
270
- msgctxt "image upload"
271
- msgid "Delete"
272
- msgstr ""
273
-
274
- #: includes/admin/meta-box/inc/fields/image.php:125
275
- msgctxt "image upload"
276
- msgid "Edit"
277
- msgstr ""
278
-
279
- #: includes/admin/meta-box/inc/fields/key-value.php:19
280
- msgid "Key"
281
- msgstr ""
282
-
283
- #: includes/admin/meta-box/inc/fields/key-value.php:25
284
- msgid "Value"
285
- msgstr ""
286
-
287
- #: includes/admin/meta-box/inc/fields/map.php:49
288
- msgid "Find Address"
289
- msgstr ""
290
-
291
- #: includes/admin/meta-box/inc/fields/media.php:18
292
- msgctxt "media"
293
- msgid "Add Image"
294
- msgstr ""
295
-
296
- #: includes/admin/meta-box/inc/fields/media.php:19
297
- msgctxt "media"
298
- msgid " file"
299
- msgstr ""
300
-
301
- #: includes/admin/meta-box/inc/fields/media.php:20
302
- msgctxt "media"
303
- msgid " files"
304
- msgstr ""
305
-
306
- #: includes/admin/meta-box/inc/fields/media.php:21
307
- msgctxt "media"
308
- msgid "Remove"
309
- msgstr ""
310
-
311
- #: includes/admin/meta-box/inc/fields/media.php:22
312
- msgctxt "media"
313
- msgid "Edit"
314
- msgstr ""
315
-
316
- #: includes/admin/meta-box/inc/fields/media.php:23
317
- msgctxt "media"
318
- msgid "View"
319
- msgstr ""
320
-
321
- #: includes/admin/meta-box/inc/fields/media.php:24
322
- msgctxt "media"
323
- msgid "No Title"
324
- msgstr ""
325
-
326
- #: includes/admin/meta-box/inc/fields/media.php:27
327
- msgctxt "media"
328
- msgid "Select Files"
329
- msgstr ""
330
-
331
- #: includes/admin/meta-box/inc/fields/media.php:28
332
- msgctxt "media"
333
- msgid "Drop files here to upload"
334
- msgstr ""
335
-
336
- #: includes/admin/meta-box/inc/fields/oembed.php:65
337
- msgid "Embed HTML not available."
338
- msgstr ""
339
-
340
- #: includes/admin/meta-box/inc/fields/oembed.php:84
341
- msgid "Preview"
342
- msgstr ""
343
-
344
- #: includes/admin/meta-box/inc/fields/post.php:34
345
- msgid "Select a post"
346
- msgstr ""
347
-
348
- #: includes/admin/meta-box/inc/fields/post.php:38
349
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
350
- msgid "Select a %s"
351
- msgstr ""
352
-
353
- #: includes/admin/meta-box/inc/fields/select.php:91
354
- msgid "All"
355
- msgstr "جميع"
356
-
357
- #: includes/admin/meta-box/inc/fields/select.php:91
358
- msgid "None"
359
- msgstr "بلا"
360
-
361
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
362
- msgid "Select a term"
363
- msgstr ""
364
-
365
- #: includes/admin/meta-box/inc/fields/user.php:34
366
- msgid "Select an user"
367
- msgstr ""
368
-
369
- #: includes/admin/meta-box/inc/validation.php:42
370
- msgid "Please correct the errors highlighted below and try again."
371
- msgstr ""
372
-
373
- #: includes/admin/plugins.php:27
374
- msgid "General Settings"
375
- msgstr "إعدادات عامة"
376
-
377
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
378
- msgid "Getting Started"
379
- msgstr "بداية الاستخدام"
380
-
381
- #: includes/admin/plugins.php:51
382
- msgid "Add Ons"
383
- msgstr "وظائف إضافية"
384
-
385
- #: includes/admin/settings/contextual-help.php:29
386
- msgid "For more information:"
387
- msgstr "للمزيد من المعلومات"
388
-
389
- #: includes/admin/settings/contextual-help.php:30
390
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
391
- msgstr "تفضل بزيارة <a href=\"%s\">الوثائق</a> علي الموقع الخاص ب Mashshare."
392
-
393
- #: includes/admin/settings/contextual-help.php:32
394
- msgid ""
395
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
396
- "href=\"%s\">extensions</a>."
397
- msgstr ""
398
- "<a href=\"%s\">قم بنشر المشكلة</a>علي<a href=\"%s\">Mashshare</a>. عرض <a "
399
- "href=\"%s\">ملحقات</a>."
400
-
401
- #: includes/admin/settings/contextual-help.php:41
402
- msgid "General"
403
- msgstr "عامة"
404
-
405
- #: includes/admin/settings/contextual-help.php:42
406
- msgid "This screen provides the most basic settings for configuring Mashshare."
407
- msgstr "هذة الشاشة توفر الاعدادات الاساسية التى تمكنك من ضبط Mashshare"
408
-
409
- #: includes/admin/settings/display-settings.php:133
410
- msgid "MashShare "
411
- msgstr ""
412
-
413
- #: includes/admin/settings/metabox-settings.php:102
414
- msgid "Social Media Image"
415
- msgstr ""
416
-
417
- #: includes/admin/settings/metabox-settings.php:103
418
- msgid ""
419
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
420
- "1200px x 630px. Aspect ratio 1.9:1"
421
- msgstr ""
422
-
423
- #: includes/admin/settings/metabox-settings.php:112
424
- msgid "Social Media Title"
425
- msgstr ""
426
-
427
- #: includes/admin/settings/metabox-settings.php:113
428
- msgid ""
429
- "This title is used by the open graph meta tag og:title and will be used when "
430
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
431
- "to use "
432
- msgstr ""
433
-
434
- #: includes/admin/settings/metabox-settings.php:113
435
- msgid "Yoast Facebook / SEO title"
436
- msgstr ""
437
-
438
- #: includes/admin/settings/metabox-settings.php:121
439
- msgid "Social Media Description"
440
- msgstr ""
441
-
442
- #: includes/admin/settings/metabox-settings.php:122
443
- msgid ""
444
- "This description is used by the open graph meta tag og:description and will "
445
- "be used when users share your content on Facebook, LinkedIn, and Google "
446
- "Plus. Leave this blank to use "
447
- msgstr ""
448
-
449
- #: includes/admin/settings/metabox-settings.php:122
450
- msgid "Yoast Facebook open graph description or the post excerpt."
451
- msgstr ""
452
-
453
- #: includes/admin/settings/metabox-settings.php:135
454
- msgid "Pinterest Image"
455
- msgstr ""
456
-
457
- #: includes/admin/settings/metabox-settings.php:135
458
- #: includes/admin/settings/metabox-settings.php:145
459
- msgid ""
460
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
461
- "the Pinterest Features"
462
- msgstr ""
463
-
464
- #: includes/admin/settings/metabox-settings.php:136
465
- msgid ""
466
- "Pinned images need to be more vertical than horizontal in orientation. Use "
467
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
468
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
469
- msgstr ""
470
-
471
- #: includes/admin/settings/metabox-settings.php:145
472
- msgid "Pinterest Description"
473
- msgstr ""
474
-
475
- #: includes/admin/settings/metabox-settings.php:146
476
- msgid ""
477
- "Place a customized message that will be used when this post is shared on "
478
- "Pinterest. Leave this blank to use the "
479
- msgstr ""
480
-
481
- #: includes/admin/settings/metabox-settings.php:146
482
- msgid "Yoast SEO title"
483
- msgstr ""
484
-
485
- #: includes/admin/settings/metabox-settings.php:146
486
- msgid "the post title"
487
- msgstr ""
488
-
489
- #: includes/admin/settings/metabox-settings.php:154
490
- msgid "Custom Tweet"
491
- msgstr ""
492
-
493
- #: includes/admin/settings/metabox-settings.php:176
494
- msgid ""
495
- "Publish the post and validate if the open graph meta tags on your site are "
496
- "correct! Incorrect data can result in wrong share description, title or "
497
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
498
- "new scrape information\" to purge the facebook cache."
499
- msgstr ""
500
-
501
- #: includes/admin/settings/metabox-settings.php:206
502
- msgid "Based on your username @"
503
- msgstr ""
504
-
505
- #: includes/admin/settings/metabox-settings.php:206
506
- msgid " ,the shortened post url and the current content above"
507
- msgstr ""
508
-
509
- #: includes/admin/settings/metabox-settings.php:208
510
- msgid "Based on the shortened post url and the current content above"
511
- msgstr ""
512
-
513
- #: includes/admin/settings/metabox-settings.php:210
514
- msgid " your tweet has a maximum of 140 characters. "
515
- msgstr ""
516
-
517
- #: includes/admin/settings/metabox-settings.php:212
518
- msgid "If this is left blank the post title will be used. "
519
- msgstr ""
520
-
521
- #: includes/admin/settings/metabox-settings.php:214
522
- msgid ""
523
- "If this is left blank the Yoast Twitter Title or post title will be used. "
524
- msgstr ""
525
-
526
- #: includes/admin/settings/register-settings.php:120
527
- msgid "General settings"
528
- msgstr "اعدادات عامة"
529
-
530
- #: includes/admin/settings/register-settings.php:126
531
- msgid "Share counts"
532
- msgstr ""
533
-
534
- #: includes/admin/settings/register-settings.php:127
535
- msgid ""
536
- "<i>MashEngine</i> collects shares by direct request to social networks. "
537
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
538
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
539
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
540
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
541
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
542
- "this free service to get the twitter share count. Visit the newsharecount "
543
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
544
- "Thats it!"
545
- msgstr ""
546
-
547
- #: includes/admin/settings/register-settings.php:136
548
- msgid "Sharedcount.com API Key"
549
- msgstr ""
550
-
551
- #: includes/admin/settings/register-settings.php:137
552
- msgid ""
553
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
554
- "\">SharedCount.com</a> for 10.000 free daily requests."
555
- msgstr ""
556
-
557
- #: includes/admin/settings/register-settings.php:143
558
- msgid "Sharedcount.com endpint"
559
- msgstr ""
560
-
561
- #: includes/admin/settings/register-settings.php:144
562
- msgid ""
563
- "The SharedCount Domain your API key is configured to query. For example, "
564
- "free.sharedcount.com. This may update automatically if configured "
565
- "incorrectly."
566
- msgstr ""
567
-
568
- #: includes/admin/settings/register-settings.php:151
569
- msgid "Caching Method"
570
- msgstr ""
571
-
572
- #: includes/admin/settings/register-settings.php:152
573
- msgid ""
574
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
575
- "visitor and refreshes the cache asyncronously in the background. New posts "
576
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
577
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
578
- "cache while page is loading and adds a little extra time during inital page "
579
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
580
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
581
- "was using before version 3.0"
582
- msgstr ""
583
-
584
- #: includes/admin/settings/register-settings.php:161
585
- msgid "Cache expiration"
586
- msgstr ""
587
-
588
- #: includes/admin/settings/register-settings.php:162
589
- msgid ""
590
- "Shares are counted for posts after a certain time and counts are not updated "
591
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
592
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
593
- "more"
594
- msgstr ""
595
-
596
- #: includes/admin/settings/register-settings.php:168
597
- msgid "Facebook Count"
598
- msgstr ""
599
-
600
- #: includes/admin/settings/register-settings.php:169
601
- msgid ""
602
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
603
- "the pure share count"
604
- msgstr ""
605
-
606
- #: includes/admin/settings/register-settings.php:179
607
- msgid "Fake Share counts"
608
- msgstr "تعداد مشاركات غير صحيح "
609
-
610
- #: includes/admin/settings/register-settings.php:180
611
- msgid ""
612
- "This number will be aggregated to all your share counts and is multiplied "
613
- "with a post specific factor. (Number of post title words divided with 10)."
614
- msgstr ""
615
-
616
- #: includes/admin/settings/register-settings.php:186
617
- msgid "Disable Sharecount"
618
- msgstr "تعطيل Sharecount"
619
-
620
- #: includes/admin/settings/register-settings.php:187
621
- msgid ""
622
- "Use this when curl() is not supported on your server or share counts should "
623
- "not counted. This mode does not call the database and no SQL queries are "
624
- "generated. (Only less performance benefit. All db requests are cached) "
625
- "Default: false"
626
- msgstr ""
627
-
628
- #: includes/admin/settings/register-settings.php:192
629
- msgid "Hide Sharecount"
630
- msgstr "اخفاء Sharecount"
631
-
632
- #: includes/admin/settings/register-settings.php:193
633
- msgid ""
634
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
635
- "specific post are not shown until the share count of this number is reached."
636
- msgstr ""
637
- "<strong>اختياري:</strong> اذا قمت بتحديد عدد هنا, فان المشاركات لمقالة محددة "
638
- "لا يتم اظهارها الا في حالة وصول المشاركات لهذا العدد"
639
-
640
- #: includes/admin/settings/register-settings.php:199
641
- msgid "Execution Order"
642
- msgstr "امر التنفيذ"
643
-
644
- #: includes/admin/settings/register-settings.php:200
645
- msgid ""
646
- "If you use other content plugins you can define here the execution order. "
647
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
648
- "executed before any other plugin (When the other plugin is not overwriting "
649
- "our execution order). Default is \"1000\""
650
- msgstr ""
651
-
652
- #: includes/admin/settings/register-settings.php:207
653
- msgid "JavaScript in Footer"
654
- msgstr ""
655
-
656
- #: includes/admin/settings/register-settings.php:208
657
- msgid ""
658
- "Enable this to load all *.js files into footer. Make sure your theme uses "
659
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
660
- msgstr ""
661
-
662
- #: includes/admin/settings/register-settings.php:213
663
- msgid "JS & CSS Everywhere"
664
- msgstr ""
665
-
666
- #: includes/admin/settings/register-settings.php:214
667
- msgid ""
668
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
669
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
670
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
671
- "option to allow conditional loading so MashShare's JS and CSS files are "
672
- "loaded only on pages where MashShare is used."
673
- msgstr ""
674
-
675
- #: includes/admin/settings/register-settings.php:220
676
- msgid "Twitter Popup disabled"
677
- msgstr ""
678
-
679
- #: includes/admin/settings/register-settings.php:221
680
- msgid ""
681
- "Check this box if your twitter popup is openening twice. This happens "
682
- "sometimes when you are using any third party twitter plugin or the twitter "
683
- "SDK on your website."
684
- msgstr ""
685
-
686
- #: includes/admin/settings/register-settings.php:227
687
- msgid "Remove Data on Uninstall?"
688
- msgstr "احذف البيانات في حالة إلغاء التثبيت"
689
-
690
- #: includes/admin/settings/register-settings.php:228
691
- msgid ""
692
- "Check this box if you would like Mashshare to completely remove all of its "
693
- "data when the plugin is deleted."
694
- msgstr ""
695
-
696
- #: includes/admin/settings/register-settings.php:233
697
- msgid "Allow Usage Tracking"
698
- msgstr ""
699
-
700
- #: includes/admin/settings/register-settings.php:234
701
- #: includes/admin/tracking.php:265
702
- msgid ""
703
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
704
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
705
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
706
- "Ons</a>. No sensitive data is tracked."
707
- msgstr ""
708
-
709
- #: includes/admin/settings/register-settings.php:239
710
- msgid "User Roles Options Visibility"
711
- msgstr ""
712
-
713
- #: includes/admin/settings/register-settings.php:240
714
- msgid ""
715
- "Select user roles which can see page and post MashShare Social Sharing Meta "
716
- "Box Options"
717
- msgstr ""
718
-
719
- #: includes/admin/settings/register-settings.php:243
720
- msgid "Select User Roles"
721
- msgstr ""
722
-
723
- #: includes/admin/settings/register-settings.php:244
724
- msgid "All Roles"
725
- msgstr ""
726
-
727
- #: includes/admin/settings/register-settings.php:248
728
- #: includes/admin/settings/register-settings.php:294
729
- #: includes/admin/settings/register-settings.php:751
730
- msgid "Social Networks"
731
- msgstr "شبكات التواصل الاجتماعية"
732
-
733
- #: includes/admin/settings/register-settings.php:254
734
- msgid "Facebook page url"
735
- msgstr ""
736
-
737
- #: includes/admin/settings/register-settings.php:255
738
- msgid "Optional: The url of the main facebook account connected with this site"
739
- msgstr ""
740
-
741
- #: includes/admin/settings/register-settings.php:261
742
- msgid "Facebook App ID"
743
- msgstr ""
744
-
745
- #: includes/admin/settings/register-settings.php:262
746
- msgid ""
747
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
748
- "a>"
749
- msgstr ""
750
-
751
- #: includes/admin/settings/register-settings.php:268
752
- #: includes/admin/settings/user-profiles.php:19
753
- msgid "Twitter Username"
754
- msgstr ""
755
-
756
- #: includes/admin/settings/register-settings.php:269
757
- msgid ""
758
- "<strong>Optional:</strong> Using your twitter username results in via "
759
- "@username"
760
- msgstr ""
761
-
762
- #: includes/admin/settings/register-settings.php:275
763
- msgid "Twitter Card"
764
- msgstr ""
765
-
766
- #: includes/admin/settings/register-settings.php:276
767
- msgid ""
768
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
769
- "plugin their meta tags will be removed and MashShare will use existing meta "
770
- "data from these plugins. Default: On"
771
- msgstr ""
772
-
773
- #: includes/admin/settings/register-settings.php:281
774
- msgid "Open Graph Meta Tags"
775
- msgstr ""
776
-
777
- #: includes/admin/settings/register-settings.php:282
778
- msgid ""
779
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
780
- "Jetpack plugin their meta tags will be removed and MashShare will use "
781
- "existing meta data from these plugins."
782
- msgstr ""
783
-
784
- #: includes/admin/settings/register-settings.php:287
785
- msgid "Large Buttons"
786
- msgstr "مفاتيح كبيرة"
787
-
788
- #: includes/admin/settings/register-settings.php:288
789
- msgid ""
790
- "Specify how many services and social networks are visible before the \"Plus"
791
- "\" Button is shown. This buttons turn into large prominent buttons."
792
- msgstr ""
793
-
794
- #: includes/admin/settings/register-settings.php:295
795
- msgid ""
796
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
797
- "that should be visible. <br>Activate more networks than number of \"Large "
798
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
799
- msgstr ""
800
-
801
- #: includes/admin/settings/register-settings.php:321
802
- msgid "Short URL Integration"
803
- msgstr ""
804
-
805
- #: includes/admin/settings/register-settings.php:328
806
- msgid "Bitly access token"
807
- msgstr ""
808
-
809
- #: includes/admin/settings/register-settings.php:329
810
- msgid ""
811
- "If you like to use bitly.com shortener get a free bitly access token <a href="
812
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
813
- "ly/cXnjsh. "
814
- msgstr ""
815
-
816
- #: includes/admin/settings/register-settings.php:335
817
- msgid "Google API Key (goo.gl)"
818
- msgstr ""
819
-
820
- #: includes/admin/settings/register-settings.php:342
821
- msgid "Shorturl method"
822
- msgstr ""
823
-
824
- #: includes/admin/settings/register-settings.php:343
825
- msgid ""
826
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
827
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
828
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
829
- "%s ?p=101</i>"
830
- msgstr ""
831
-
832
- #: includes/admin/settings/register-settings.php:354
833
- msgid "Important: Read this!"
834
- msgstr ""
835
-
836
- #: includes/admin/settings/register-settings.php:355
837
- msgid ""
838
- "<strong>The post short url is NOT generated immediatly after first page load!"
839
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
840
- "12 hours for old posts."
841
- msgstr ""
842
-
843
- #: includes/admin/settings/register-settings.php:374
844
- msgid "Customization"
845
- msgstr ""
846
-
847
- #: includes/admin/settings/register-settings.php:380
848
- msgid "Round up Shares"
849
- msgstr ""
850
-
851
- #: includes/admin/settings/register-settings.php:381
852
- msgid ""
853
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
854
- "as 1M"
855
- msgstr ""
856
-
857
- #: includes/admin/settings/register-settings.php:386
858
- msgid "Animate Shares"
859
- msgstr "اضافة تحريك المشاركات"
860
-
861
- #: includes/admin/settings/register-settings.php:387
862
- msgid ""
863
- "Count up the shares on page loading with a nice looking animation effect. "
864
- "This only works on singular pages and not with shortcodes generated buttons."
865
- msgstr ""
866
-
867
- #: includes/admin/settings/register-settings.php:392
868
- #: includes/class-mashsb-shared-posts-widget.php:53
869
- msgid "Share Count Label"
870
- msgstr ""
871
-
872
- #: includes/admin/settings/register-settings.php:393
873
- msgid ""
874
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
875
- msgstr ""
876
-
877
- #: includes/admin/settings/register-settings.php:408
878
- msgid "Share Count Color"
879
- msgstr ""
880
-
881
- #: includes/admin/settings/register-settings.php:409
882
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
883
- msgstr "اختيار لون عدد المشاركات بتنسيق سدااسي مثال. #7FC04C:"
884
-
885
- #: includes/admin/settings/register-settings.php:416
886
- msgid "Border Radius"
887
- msgstr "انصاف قطر الاطار"
888
-
889
- #: includes/admin/settings/register-settings.php:417
890
- msgid ""
891
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
892
- "results in circle buttons. Default value is zero."
893
- msgstr ""
894
-
895
- #: includes/admin/settings/register-settings.php:447
896
- msgid "Button Width"
897
- msgstr ""
898
-
899
- #: includes/admin/settings/register-settings.php:448
900
- msgid "Minimum with of the large share buttons in pixels"
901
- msgstr ""
902
-
903
- #: includes/admin/settings/register-settings.php:455
904
- msgid "Share Button Style"
905
- msgstr ""
906
-
907
- #: includes/admin/settings/register-settings.php:456
908
- msgid "Change visual appearance of the share buttons."
909
- msgstr "تغير النمط المرئي لمفاتيح المشاركة"
910
-
911
- #: includes/admin/settings/register-settings.php:467
912
- msgid "Small Share Buttons"
913
- msgstr ""
914
-
915
- #: includes/admin/settings/register-settings.php:468
916
- msgid ""
917
- "All buttons will be shown as pure small icons without any text on desktop "
918
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
919
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
920
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
921
- msgstr ""
922
-
923
- #: includes/admin/settings/register-settings.php:479
924
- msgid "Subscribe Button"
925
- msgstr ""
926
-
927
- #: includes/admin/settings/register-settings.php:480
928
- msgid ""
929
- "Specify if the subscribe button is opening a content box below the button or "
930
- "if the button is linked to the \"subscribe url\" below."
931
- msgstr ""
932
-
933
- #: includes/admin/settings/register-settings.php:490
934
- msgid "Subscribe URL"
935
- msgstr ""
936
-
937
- #: includes/admin/settings/register-settings.php:491
938
- msgid ""
939
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
940
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
941
- msgstr ""
942
-
943
- #: includes/admin/settings/register-settings.php:498
944
- msgid "Additional Content"
945
- msgstr ""
946
-
947
- #: includes/admin/settings/register-settings.php:504
948
- msgid "Content Above"
949
- msgstr ""
950
-
951
- #: includes/admin/settings/register-settings.php:505
952
- msgid ""
953
- "Content appearing above share buttons. Use HTML, formulars, like button, "
954
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
955
- msgstr ""
956
-
957
- #: includes/admin/settings/register-settings.php:512
958
- msgid "Content Below"
959
- msgstr ""
960
-
961
- #: includes/admin/settings/register-settings.php:513
962
- msgid ""
963
- "Content appearing below share buttons. Use HTML, formulars, like button, "
964
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
965
- msgstr ""
966
-
967
- #: includes/admin/settings/register-settings.php:520
968
- msgid "Subscribe content"
969
- msgstr "محتوى الاشتراك"
970
-
971
- #: includes/admin/settings/register-settings.php:521
972
- msgid ""
973
- "Define the content of the opening toggle subscribe window here. Use "
974
- "formulars, like button, links or any other text. Shortcodes are supported, e."
975
- "g.: [contact-form-7]"
976
- msgstr ""
977
-
978
- #: includes/admin/settings/register-settings.php:530
979
- msgid "Custom Styles"
980
- msgstr ""
981
-
982
- #: includes/admin/settings/register-settings.php:536
983
- msgid "General CSS"
984
- msgstr ""
985
-
986
- #: includes/admin/settings/register-settings.php:537
987
- msgid ""
988
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
989
- "it's loaded as an additonal inline css on your site"
990
- msgstr ""
991
-
992
- #: includes/admin/settings/register-settings.php:544
993
- msgid "AMP CSS"
994
- msgstr ""
995
-
996
- #: includes/admin/settings/register-settings.php:545
997
- msgid ""
998
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
999
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
1000
- "\">AMP Plugin</a> installed."
1001
- msgstr ""
1002
-
1003
- #: includes/admin/settings/register-settings.php:562
1004
- msgid "Location & Position"
1005
- msgstr "مكان وموقع"
1006
-
1007
- #: includes/admin/settings/register-settings.php:568
1008
- msgid "Position"
1009
- msgstr "الموضع"
1010
-
1011
- #: includes/admin/settings/register-settings.php:569
1012
- msgid ""
1013
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1014
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1015
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1016
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1017
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1018
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1019
- "shortcodes</a>."
1020
- msgstr ""
1021
-
1022
- #: includes/admin/settings/register-settings.php:572
1023
- msgid "Top"
1024
- msgstr "اعلى"
1025
-
1026
- #: includes/admin/settings/register-settings.php:573
1027
- msgid "Bottom"
1028
- msgstr "اسفل"
1029
-
1030
- #: includes/admin/settings/register-settings.php:574
1031
- msgid "Top and Bottom"
1032
- msgstr "الاعلي والاسفل"
1033
-
1034
- #: includes/admin/settings/register-settings.php:575
1035
- msgid "Manual"
1036
- msgstr "يدوي"
1037
-
1038
- #: includes/admin/settings/register-settings.php:580
1039
- msgid "Post Types"
1040
- msgstr "نوع المقالة"
1041
-
1042
- #: includes/admin/settings/register-settings.php:581
1043
- msgid ""
1044
- "Select on which post_types the share buttons appear. These values will be "
1045
- "ignored when \"manual\" position is selected."
1046
- msgstr ""
1047
-
1048
- #: includes/admin/settings/register-settings.php:586
1049
- msgid "Exclude from post id"
1050
- msgstr ""
1051
-
1052
- #: includes/admin/settings/register-settings.php:587
1053
- msgid ""
1054
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1055
- "by a comma, e.g. 23, 63, 114 "
1056
- msgstr ""
1057
-
1058
- #: includes/admin/settings/register-settings.php:593
1059
- msgid "Categories"
1060
- msgstr "فئات"
1061
-
1062
- #: includes/admin/settings/register-settings.php:594
1063
- msgid ""
1064
- "Enable this checkbox to enable Mashshare on categories with multiple "
1065
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1066
- msgstr ""
1067
-
1068
- #: includes/admin/settings/register-settings.php:600
1069
- msgid "Frontpage"
1070
- msgstr "الصفحة الرئيسية"
1071
-
1072
- #: includes/admin/settings/register-settings.php:601
1073
- msgid "Enable share buttons on frontpage"
1074
- msgstr "تمكين زرار المشاركة في الصفحة الرئيسية"
1075
-
1076
- #: includes/admin/settings/register-settings.php:606
1077
- msgid "Debug"
1078
- msgstr "تتبع الأخطاء"
1079
-
1080
- #: includes/admin/settings/register-settings.php:612
1081
- msgid "Disable Cache"
1082
- msgstr ""
1083
-
1084
- #: includes/admin/settings/register-settings.php:618
1085
- msgid "Attention: Purge DB Cache"
1086
- msgstr ""
1087
-
1088
- #: includes/admin/settings/register-settings.php:624
1089
- msgid "Debug mode"
1090
- msgstr "وضع تتبع الاخطاء"
1091
-
1092
- #: includes/admin/settings/register-settings.php:633
1093
- msgid "Activate your Add-Ons"
1094
- msgstr ""
1095
-
1096
- #: includes/admin/settings/register-settings.php:634
1097
- msgid ""
1098
- "Activate your license key to get important security and feature updates for "
1099
- "your Add-On!"
1100
- msgstr ""
1101
-
1102
- #: includes/admin/settings/register-settings.php:634
1103
- msgid ""
1104
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1105
- "Add-Ons</a>"
1106
- msgstr ""
1107
-
1108
- #: includes/admin/settings/register-settings.php:714
1109
- msgid "Settings updated."
1110
- msgstr "تحديث الاعدادات"
1111
-
1112
- #: includes/admin/settings/register-settings.php:747
1113
- msgid "Visual"
1114
- msgstr "مرئ"
1115
-
1116
- #: includes/admin/settings/register-settings.php:755
1117
- msgid "Add-On Settings"
1118
- msgstr ""
1119
-
1120
- #: includes/admin/settings/register-settings.php:759
1121
- msgid "Licenses"
1122
- msgstr "رخصة"
1123
-
1124
- #: includes/admin/settings/register-settings.php:761
1125
- msgid "Get More Add-Ons"
1126
- msgstr ""
1127
-
1128
- #: includes/admin/settings/register-settings.php:1012
1129
- msgid ""
1130
- "The callback function used for the <strong>%s</strong> setting is missing."
1131
- msgstr ""
1132
-
1133
- #: includes/admin/settings/register-settings.php:1152
1134
- msgid "Upload File"
1135
- msgstr "تحميل الملف"
1136
-
1137
- #: includes/admin/settings/register-settings.php:1255
1138
- msgid ""
1139
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1140
- "title=\"Renew your license key\">renew your license key</a>."
1141
- msgstr ""
1142
-
1143
- #: includes/admin/settings/register-settings.php:1268
1144
- msgid ""
1145
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1146
- "account page\">visit your account page</a> and verify it."
1147
- msgstr ""
1148
-
1149
- #: includes/admin/settings/register-settings.php:1281
1150
- msgid ""
1151
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1152
- "title=\"Visit account page\">visit your account page</a> to manage your "
1153
- "license key URLs."
1154
- msgstr ""
1155
-
1156
- #: includes/admin/settings/register-settings.php:1293
1157
- msgid "This is not a %s."
1158
- msgstr ""
1159
-
1160
- #: includes/admin/settings/register-settings.php:1302
1161
- msgid ""
1162
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1163
- "possible upgrades</a> now."
1164
- msgstr ""
1165
-
1166
- #: includes/admin/settings/register-settings.php:1324
1167
- msgid "License key never expires."
1168
- msgstr ""
1169
-
1170
- #: includes/admin/settings/register-settings.php:1331
1171
- msgid ""
1172
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1173
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1174
- msgstr ""
1175
-
1176
- #: includes/admin/settings/register-settings.php:1341
1177
- msgid "Your license key expires on %s."
1178
- msgstr ""
1179
-
1180
- #: includes/admin/settings/register-settings.php:1363
1181
- msgid "Deactivate License"
1182
- msgstr "إيقاف نشاط الرخصة"
1183
-
1184
- #: includes/admin/settings/register-settings.php:1427
1185
- msgid "Social Network"
1186
- msgstr ""
1187
-
1188
- #: includes/admin/settings/register-settings.php:1428
1189
- msgid "Status"
1190
- msgstr ""
1191
-
1192
- #: includes/admin/settings/register-settings.php:1429
1193
- msgid "Custom Label"
1194
- msgstr ""
1195
-
1196
- #: includes/admin/settings/register-settings.php:1497
1197
- msgid "Select Image"
1198
- msgstr "حدد صورة"
1199
-
1200
- #: includes/admin/settings/register-settings.php:1636
1201
- msgid "All Services"
1202
- msgstr "جميع الخدمات"
1203
-
1204
- #: includes/admin/settings/register-settings.php:1653
1205
- msgid ""
1206
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1207
- "after doing the job."
1208
- msgstr ""
1209
- "تم محو الذاكرة المؤقتة لقاعدة البيانات! لا تنسى وضع علامة علي هذا المربع "
1210
- "لتحسين الاداء بعد الانتهاء من المهمة."
1211
-
1212
- #: includes/admin/settings/register-settings.php:1666
1213
- msgid "Transient Cache disabled! Enable it for performance increase."
1214
- msgstr "الذاكرة المؤقتة معطلة ، قم بالتفعيل للحصول علي اداء افضل"
1215
-
1216
- #: includes/admin/settings/register-settings.php:1679
1217
- msgid ""
1218
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1219
- "content/plugins/mashsharer/logs/"
1220
- msgstr ""
1221
-
1222
- #: includes/admin/settings/user-profiles.php:16
1223
- msgid "MashShare Social Media Integration"
1224
- msgstr ""
1225
-
1226
- #: includes/admin/settings/user-profiles.php:22
1227
- msgid "Your Twitter username (without the @ symbol)"
1228
- msgstr ""
1229
-
1230
- #: includes/admin/settings/user-profiles.php:24
1231
- msgid "Facebook Author URL"
1232
- msgstr ""
1233
-
1234
- #: includes/admin/settings/user-profiles.php:27
1235
- msgid "URL to your Facebok profile."
1236
- msgstr ""
1237
-
1238
- #: includes/admin/tools.php:68
1239
- msgid "Import/Export"
1240
- msgstr ""
1241
-
1242
- #: includes/admin/tools.php:69
1243
- msgid "System Info"
1244
- msgstr ""
1245
-
1246
- #: includes/admin/tools.php:91
1247
- msgid "Export Settings"
1248
- msgstr ""
1249
-
1250
- #: includes/admin/tools.php:93
1251
- msgid ""
1252
- "Export the Mashshare settings for this site as a .json file. This allows you "
1253
- "to easily import the configuration into another site."
1254
- msgstr ""
1255
-
1256
- #: includes/admin/tools.php:99
1257
- msgid "Export"
1258
- msgstr ""
1259
-
1260
- #: includes/admin/tools.php:106
1261
- msgid "Import Settings"
1262
- msgstr ""
1263
-
1264
- #: includes/admin/tools.php:108
1265
- msgid ""
1266
- "Import the Mashshare settings from a .json file. This file can be obtained "
1267
- "by exporting the settings on another site using the form above."
1268
- msgstr ""
1269
-
1270
- #: includes/admin/tools.php:116
1271
- msgid "Import"
1272
- msgstr ""
1273
-
1274
- #: includes/admin/tools.php:218
1275
- msgid "Please upload a valid .json file"
1276
- msgstr ""
1277
-
1278
- #: includes/admin/tools.php:224
1279
- msgid "Please upload a file to import"
1280
- msgstr ""
1281
-
1282
- #: includes/admin/tracking.php:266
1283
- msgid "Allow"
1284
- msgstr ""
1285
-
1286
- #: includes/admin/tracking.php:267
1287
- msgid "Do not allow"
1288
- msgstr ""
1289
-
1290
- #: includes/admin/welcome.php:51
1291
- msgid "Welcome to MashShare"
1292
- msgstr ""
1293
-
1294
- #: includes/admin/welcome.php:56
1295
- msgid "MashShare Changelog"
1296
- msgstr ""
1297
-
1298
- #: includes/admin/welcome.php:61
1299
- msgid "Quickstart"
1300
- msgstr ""
1301
-
1302
- #: includes/admin/welcome.php:66
1303
- msgid "The people that build MashShare"
1304
- msgstr ""
1305
-
1306
- #: includes/admin/welcome.php:128
1307
- msgid ""
1308
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1309
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1310
- "needs."
1311
- msgstr ""
1312
-
1313
- #: includes/admin/welcome.php:131
1314
- msgid "Create Your First Social Sharing Button"
1315
- msgstr ""
1316
-
1317
- #: includes/admin/welcome.php:137
1318
- msgid "Settings &rarr; Social Networks"
1319
- msgstr ""
1320
-
1321
- #: includes/admin/welcome.php:138
1322
- msgid ""
1323
- "The Social Network menu is your general access point for activating the "
1324
- "desired share buttons and for customizing the share button label"
1325
- msgstr ""
1326
-
1327
- #: includes/admin/welcome.php:139
1328
- msgid "Settings &rarr; Location & Position"
1329
- msgstr ""
1330
-
1331
- #: includes/admin/welcome.php:140
1332
- msgid ""
1333
- "Select the location and exact position of the share buttons within your "
1334
- "content"
1335
- msgstr ""
1336
-
1337
- #: includes/admin/welcome.php:141
1338
- msgid "You are done! Easy, isn't it?"
1339
- msgstr ""
1340
-
1341
- #: includes/admin/welcome.php:149
1342
- msgid "Display a Most Shared Post Widget"
1343
- msgstr ""
1344
-
1345
- #: includes/admin/welcome.php:155
1346
- msgid "Appearance &rarr; Widgets"
1347
- msgstr ""
1348
-
1349
- #: includes/admin/welcome.php:157
1350
- msgid ""
1351
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1352
- "br>into the desired widget location and save it"
1353
- msgstr ""
1354
-
1355
- #: includes/admin/welcome.php:165
1356
- msgid "Content Shortcodes"
1357
- msgstr ""
1358
-
1359
- #: includes/admin/welcome.php:172
1360
- msgid ""
1361
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1362
- "bold;\">[mashshare]</i>."
1363
- msgstr ""
1364
-
1365
- #: includes/admin/welcome.php:174
1366
- msgid ""
1367
- "Paste the shortcode in content of your posts or pages with the post editor "
1368
- "at the place you want the share buttons appear"
1369
- msgstr ""
1370
-
1371
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1372
- msgid ""
1373
- "There are various parameters you can use for the mashshare shortcode. Find a "
1374
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1375
- "\">here</a>"
1376
- msgstr ""
1377
-
1378
- #: includes/admin/welcome.php:182
1379
- msgid "PHP Template Shortcode"
1380
- msgstr ""
1381
-
1382
- #: includes/admin/welcome.php:188
1383
- msgid ""
1384
- "Add MashShare directly into your theme template files with using the PHP "
1385
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1386
- "&gt;</i>"
1387
- msgstr ""
1388
-
1389
- #: includes/admin/welcome.php:199
1390
- msgid "Need Help?"
1391
- msgstr ""
1392
-
1393
- #: includes/admin/welcome.php:202
1394
- msgid "Great Support"
1395
- msgstr ""
1396
-
1397
- #: includes/admin/welcome.php:203
1398
- msgid ""
1399
- "We do our best to provide the best support we can. If you encounter a "
1400
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1401
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1402
- msgstr ""
1403
-
1404
- #: includes/admin/welcome.php:227
1405
- msgid "Welcome to MashShare %s"
1406
- msgstr ""
1407
-
1408
- #: includes/admin/welcome.php:229
1409
- msgid ""
1410
- "Thank you for updating to the latest version! MashShare is installed and "
1411
- "ready to grow your traffic from social networks!"
1412
- msgstr ""
1413
-
1414
- #: includes/admin/welcome.php:252
1415
- msgid "1. Asyncronous Share Count Aggregation"
1416
- msgstr ""
1417
-
1418
- #: includes/admin/welcome.php:256
1419
- msgid ""
1420
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1421
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1422
- "will be aggregated only after page loading and never while page loads. This "
1423
- "is a huge performance update."
1424
- msgstr ""
1425
-
1426
- #: includes/admin/welcome.php:259
1427
- msgid "2. Open Graph and Twitter Card Integration"
1428
- msgstr ""
1429
-
1430
- #: includes/admin/welcome.php:260
1431
- msgid ""
1432
- "Use open graph and twitter card to specify the content you like to share. If "
1433
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1434
- "and extend it with custom data to get the maximum out of your valuable "
1435
- "content."
1436
- msgstr ""
1437
-
1438
- #: includes/admin/welcome.php:267
1439
- msgid "3. Responsive Buttons per default"
1440
- msgstr ""
1441
-
1442
- #: includes/admin/welcome.php:268
1443
- msgid ""
1444
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1445
- "buttons look great on mobile and desktop devices."
1446
- msgstr ""
1447
-
1448
- #: includes/admin/welcome.php:270
1449
- msgid "4. Share Count Dashboard"
1450
- msgstr ""
1451
-
1452
- #: includes/admin/welcome.php:271
1453
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1454
- msgstr ""
1455
-
1456
- #: includes/admin/welcome.php:275
1457
- msgid "5. A much cleaner user interface"
1458
- msgstr ""
1459
-
1460
- #: includes/admin/welcome.php:276
1461
- msgid ""
1462
- "We spent a lot of time to make useful first time settings and improved the "
1463
- "user interface for an easier experience."
1464
- msgstr ""
1465
-
1466
- #: includes/admin/welcome.php:284
1467
- msgid "Additional Updates"
1468
- msgstr ""
1469
-
1470
- #: includes/admin/welcome.php:287
1471
- msgid "Developer Friendly"
1472
- msgstr ""
1473
-
1474
- #: includes/admin/welcome.php:288
1475
- msgid ""
1476
- "Are you a theme developer and want to use MashShare as your build in share "
1477
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1478
- "instructions.</a>"
1479
- msgstr ""
1480
-
1481
- #: includes/admin/welcome.php:291
1482
- msgid "Check Open Graph Settings"
1483
- msgstr ""
1484
-
1485
- #: includes/admin/welcome.php:292
1486
- msgid ""
1487
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1488
- "data on your site is working as expected or conflicts with other open graph "
1489
- "data."
1490
- msgstr ""
1491
-
1492
- #: includes/admin/welcome.php:295
1493
- msgid "Use Yoast SEO Title"
1494
- msgstr ""
1495
-
1496
- #: includes/admin/welcome.php:296
1497
- msgid "MashShare will use the YOAST SEO title if it is defined."
1498
- msgstr ""
1499
-
1500
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1501
- msgid "Go to MashShare Settings"
1502
- msgstr ""
1503
-
1504
- #: includes/admin/welcome.php:303
1505
- msgid "View the Full Changelog"
1506
- msgstr ""
1507
-
1508
- #: includes/admin/welcome.php:326
1509
- msgid "What's New"
1510
- msgstr ""
1511
-
1512
- #: includes/admin/welcome.php:332
1513
- msgid "Credits"
1514
- msgstr ""
1515
-
1516
- #: includes/admin/welcome.php:353
1517
- msgid ""
1518
- "Mashshare is created by a René Hermenau and developers all over the world "
1519
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1520
- "WordPress."
1521
- msgstr ""
1522
-
1523
- #: includes/admin/welcome.php:356
1524
- msgid ""
1525
- " If you want to be credited here participate on the development and make "
1526
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1527
- msgstr ""
1528
-
1529
- #: includes/admin/welcome.php:381
1530
- msgid "View %s"
1531
- msgstr ""
1532
-
1533
- #: includes/admin/welcome.php:436
1534
- msgid "No valid changelog was found."
1535
- msgstr ""
1536
-
1537
- #: includes/admin/welcome.php:469
1538
- msgid "Full Changelog"
1539
- msgstr ""
1540
-
1541
- #: includes/class-mashsb-html-elements.php:43
1542
- msgctxt "all dropdown items"
1543
- msgid "All"
1544
- msgstr "جميع"
1545
-
1546
- #: includes/class-mashsb-html-elements.php:44
1547
- msgctxt "no dropdown items"
1548
- msgid "None"
1549
- msgstr "بلا"
1550
-
1551
- #: includes/class-mashsb-html-elements.php:232
1552
- msgid "Enter username"
1553
- msgstr "ادخل اسم المستخدم"
1554
-
1555
- #: includes/class-mashsb-license-handler.php:177
1556
- msgid "%1$s License Key"
1557
- msgstr "%1$s ‏‏مفتاح ترخيص"
1558
-
1559
- #: includes/class-mashsb-license-handler.php:210
1560
- msgid ""
1561
- "Enter your extension license keys here to receive updates for purchased "
1562
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1563
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1564
- msgstr ""
1565
-
1566
- #: includes/class-mashsb-license-handler.php:319
1567
- msgid "Nonce verification failed"
1568
- msgstr ""
1569
-
1570
- #: includes/class-mashsb-license-handler.php:436
1571
- msgid ""
1572
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1573
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1574
- "issue."
1575
- msgstr ""
1576
-
1577
- #: includes/class-mashsb-license-handler.php:475
1578
- msgid "Enter valid license key for automatic updates."
1579
- msgstr ""
1580
-
1581
- #: includes/class-mashsb-shared-posts-widget.php:13
1582
- msgid "Mashshare - Most Shared Posts"
1583
- msgstr ""
1584
-
1585
- #: includes/class-mashsb-shared-posts-widget.php:37
1586
- msgid "Widget Title"
1587
- msgstr ""
1588
-
1589
- #: includes/class-mashsb-shared-posts-widget.php:42
1590
- msgid "How many posts to display?"
1591
- msgstr ""
1592
-
1593
- #: includes/class-mashsb-shared-posts-widget.php:46
1594
- msgid "Show Shares? Say \"No\" when using fake shares!"
1595
- msgstr ""
1596
-
1597
- #: includes/class-mashsb-shared-posts-widget.php:61
1598
- msgid "Show shares below post title"
1599
- msgstr ""
1600
-
1601
- #: includes/class-mashsb-shared-posts-widget.php:68
1602
- msgid "Time period and age of posts"
1603
- msgstr ""
1604
-
1605
- #: includes/template-functions.php:249
1606
- msgid "Subscribe"
1607
- msgstr "اشتراك"
1608
-
1609
- #: includes/template-functions.php:517
1610
- msgid "SHARES"
1611
- msgstr "مشاركات"
1612
-
1613
- #: includes/template-functions.php:1114
1614
- msgid "Page not found"
1615
- msgstr ""
1616
-
1617
- #. translators: %s: search phrase
1618
- #: includes/template-functions.php:1119
1619
- msgid "Search Results for &#8220;%s&#8221;"
1620
- msgstr ""
1621
-
1622
- #: includes/template-functions.php:1152
1623
- msgctxt "yearly archives date format"
1624
- msgid "Y"
1625
- msgstr ""
1626
-
1627
- #: includes/template-functions.php:1154
1628
- msgctxt "monthly archives date format"
1629
- msgid "F Y"
1630
- msgstr ""
1631
-
1632
- #: mashshare.php:124 mashshare.php:136
1633
- msgid "Cheatin&#8217; huh?"
1634
- msgstr ""
1635
-
1636
- #: templates/sidebar.php:17
1637
- msgid "Increase your Shares and Social Traffic"
1638
- msgstr ""
1639
-
1640
- #: templates/sidebar.php:20
1641
- msgid "Get 20% Off!"
1642
- msgstr ""
1643
-
1644
- #: templates/sidebar.php:25
1645
- msgid ""
1646
- "Submit your name and email and we'll send you a coupon for 20% off your "
1647
- "upgrade to the pro version."
1648
- msgstr ""
1649
-
1650
- #: templates/sidebar.php:29
1651
- msgid "Your Email"
1652
- msgstr ""
1653
-
1654
- #: templates/sidebar.php:33
1655
- msgid "First Name"
1656
- msgstr ""
1657
-
1658
- #: templates/sidebar.php:37
1659
- msgid "Last Name"
1660
- msgstr ""
1661
-
1662
- #: templates/sidebar.php:44
1663
- msgid "Send me the coupon"
1664
- msgstr ""
1665
-
1666
- #: templates/sidebar.php:48
1667
- msgid ""
1668
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1669
- "click anytime."
1670
- msgstr ""
1671
-
1672
- #. Plugin Name of the plugin/theme
1673
- msgid "Mashshare Share Buttons"
1674
- msgstr ""
1675
-
1676
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1677
- #. Plugin URI of the plugin/theme
1678
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1679
- #. Author URI of the plugin/theme
1680
- msgid "https://www.mashshare.net"
1681
- msgstr ""
1682
-
1683
- #. Description of the plugin/theme
1684
- msgid ""
1685
- "Mashshare is a Share functionality inspired by the the great website "
1686
- "Mashable for Facebook and Twitter. More networks available."
1687
- msgstr ""
1688
-
1689
- #. Author of the plugin/theme
1690
- msgid "René Hermenau"
1691
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-de_DE.mo DELETED
Binary file
languages/mashsb-de_DE.po DELETED
@@ -1,1694 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Rene Hermenau <info@mashshare.net>, 2014,2016
5
- # Wasilis Mandratzis-Walz, 2015
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Mashshare\n"
9
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
10
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
11
- "PO-Revision-Date: 2016-06-23 17:57+0100\n"
12
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
13
- "Language-Team: German (http://www.transifex.com/renehermenau/mashshare/"
14
- "language/de/)\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Language: de\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Generator: Poedit 1.5.6\n"
21
-
22
- msgid ""
23
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
24
- "Highly customizable Social Media ecosystem"
25
- msgstr ""
26
- "Social Media Share Buttons für Twitter, Facebook und weitere Soziale "
27
- "Netzwerke. Extrem anpassbares Social Media Ökosystem."
28
-
29
- #: includes/MASHSB_SL_Plugin_Updater.php:177
30
- msgid ""
31
- "There is a new version of %1$s available. <a target=\"_blank\" class="
32
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
33
- msgstr ""
34
-
35
- #: includes/MASHSB_SL_Plugin_Updater.php:184
36
- msgid ""
37
- "There is a new version of %1$s available. <a target=\"_blank\" class="
38
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
39
- "\">update now</a>."
40
- msgstr ""
41
-
42
- #: includes/MASHSB_SL_Plugin_Updater.php:324
43
- msgid "You do not have permission to install plugin updates"
44
- msgstr ""
45
-
46
- #: includes/MASHSB_SL_Plugin_Updater.php:324
47
- #: includes/class-mashsb-license-handler.php:319
48
- msgid "Error"
49
- msgstr ""
50
-
51
- #: includes/admin/add-ons.php:27
52
- msgid "Add Ons for Mashshare"
53
- msgstr "Add-Ons für Mashshare"
54
-
55
- #: includes/admin/add-ons.php:28
56
- msgid "Visit Website"
57
- msgstr "Besuche Webseite"
58
-
59
- #: includes/admin/add-ons.php:28
60
- msgid "See Details"
61
- msgstr "Details"
62
-
63
- #: includes/admin/add-ons.php:30
64
- msgid "These add-ons extend the functionality of Mashshare."
65
- msgstr "Diese Add-Ons erweitern die Funktionalität von Mashshare"
66
-
67
- #: includes/admin/add-ons.php:54
68
- msgid ""
69
- "There was an error retrieving the Mashshare addon list from the server. "
70
- "Please try again later."
71
- msgstr ""
72
- "Es gab einen Fehler als versucht wurde die Mashshare Add-On Auflistung vom "
73
- "Server zu laden. Bitte versuche es später erneut."
74
-
75
- #: includes/admin/admin-footer.php:24
76
- msgid ""
77
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
78
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
79
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
80
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
81
- "\"blank\">Documentation</a>"
82
- msgstr ""
83
-
84
- #: includes/admin/admin-notices.php:51
85
- msgid ""
86
- "MashShare needs the PHP extension cURL which is not installed on your "
87
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
88
- "to be able to collect share count of your posts."
89
- msgstr ""
90
-
91
- #: includes/admin/admin-notices.php:58
92
- msgid ""
93
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
94
- ">Social Networks</a> and enable at least one Social Network."
95
- msgstr ""
96
-
97
- #: includes/admin/admin-notices.php:64
98
- msgid ""
99
- "Your Sharebar Add-On version is not using new short url mechanism of "
100
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
101
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
102
- "short urls will not stop working in one of the next updates. This requires a "
103
- "valid license of the Sharebar Add-On"
104
- msgstr ""
105
-
106
- #: includes/admin/admin-notices.php:70
107
- msgid ""
108
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
109
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
110
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
111
- "twitter short urls will not stop working in one of the next updates. This "
112
- "requires a valid license of the Floating Sidebar Add-On"
113
- msgstr ""
114
-
115
- #: includes/admin/admin-notices.php:76
116
- msgid ""
117
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
118
- ">Short URL Integration</i></a> and check the Google API key."
119
- msgstr ""
120
-
121
- #: includes/admin/admin-notices.php:82
122
- msgid ""
123
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
124
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
125
- "check the Bitly API key."
126
- msgstr ""
127
-
128
- #: includes/admin/admin-notices.php:88
129
- msgid ""
130
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
131
- "is not longer needed and having it activated leads to duplicate open graph "
132
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
133
- msgstr ""
134
-
135
- #: includes/admin/admin-notices.php:94
136
- msgid ""
137
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
138
- "not longer needed and already built in MashShare. Deactivate it from <a href="
139
- "\"%s\"> Plugin Settings</a> "
140
- msgstr ""
141
-
142
- #: includes/admin/admin-notices.php:100
143
- msgid ""
144
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
145
- "\">Permalinks</a> must be enabled to count shares. Share count is "
146
- "deactivated until you have fixed this."
147
- msgstr ""
148
-
149
- #: includes/admin/admin-notices.php:258
150
- msgid ""
151
- "There seems to be an issue with the server. Please try again in a few "
152
- "minutes."
153
- msgstr ""
154
- "Es scheint ein Problem mit dem Server sein. Bitte versuchen Sie es in ein "
155
- "paar Minuten."
156
-
157
- #: includes/admin/admin-pages.php:31
158
- msgid "MashShare"
159
- msgstr ""
160
-
161
- #: includes/admin/admin-pages.php:32
162
- msgid "MashShare Settings"
163
- msgstr ""
164
-
165
- #: includes/admin/admin-pages.php:32
166
- #: includes/admin/settings/register-settings.php:744
167
- msgid "Settings"
168
- msgstr "Einstellungen"
169
-
170
- #: includes/admin/admin-pages.php:33
171
- msgid "MashShare Add Ons"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:33
175
- msgid "Get Add Ons"
176
- msgstr ""
177
-
178
- #: includes/admin/admin-pages.php:34
179
- msgid "MashShare Tools"
180
- msgstr ""
181
-
182
- #: includes/admin/admin-pages.php:34
183
- msgid "Im/Export & System"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/core.php:40
187
- msgid "Documentation"
188
- msgstr ""
189
-
190
- #: includes/admin/meta-box/inc/core.php:41
191
- msgid "Extensions"
192
- msgstr ""
193
-
194
- #: includes/admin/meta-box/inc/field.php:196
195
- msgid "+ Add more"
196
- msgstr ""
197
-
198
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
199
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
200
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
201
- msgid "Delete"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/button.php:29
205
- msgid "Click me"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
209
- msgid "Yes"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
213
- msgid "No"
214
- msgstr ""
215
-
216
- #: includes/admin/meta-box/inc/fields/file-input.php:18
217
- msgid "Select File"
218
- msgstr ""
219
-
220
- #: includes/admin/meta-box/inc/fields/file-input.php:41
221
- #: includes/admin/meta-box/inc/fields/select.php:91
222
- msgid "Select"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file-input.php:43
226
- msgid "Remove"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:15
230
- msgid "You may only upload maximum %d file"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:16
234
- msgid "You may only upload maximum %d files"
235
- msgstr ""
236
-
237
- #: includes/admin/meta-box/inc/fields/file.php:83
238
- msgid "Error: Cannot delete file"
239
- msgstr ""
240
-
241
- #: includes/admin/meta-box/inc/fields/file.php:96
242
- msgctxt "file upload"
243
- msgid "Upload Files"
244
- msgstr ""
245
-
246
- #: includes/admin/meta-box/inc/fields/file.php:97
247
- msgctxt "file upload"
248
- msgid "+ Add new file"
249
- msgstr ""
250
-
251
- #: includes/admin/meta-box/inc/fields/file.php:153
252
- msgctxt "file upload"
253
- msgid "Delete"
254
- msgstr ""
255
-
256
- #: includes/admin/meta-box/inc/fields/file.php:154
257
- msgctxt "file upload"
258
- msgid "Edit"
259
- msgstr ""
260
-
261
- #: includes/admin/meta-box/inc/fields/image.php:61
262
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
263
- msgctxt "image upload"
264
- msgid "Upload Images"
265
- msgstr ""
266
-
267
- #: includes/admin/meta-box/inc/fields/image.php:62
268
- msgctxt "image upload"
269
- msgid "+ Add new image"
270
- msgstr ""
271
-
272
- #: includes/admin/meta-box/inc/fields/image.php:124
273
- msgctxt "image upload"
274
- msgid "Delete"
275
- msgstr ""
276
-
277
- #: includes/admin/meta-box/inc/fields/image.php:125
278
- msgctxt "image upload"
279
- msgid "Edit"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/key-value.php:19
283
- msgid "Key"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/key-value.php:25
287
- msgid "Value"
288
- msgstr ""
289
-
290
- #: includes/admin/meta-box/inc/fields/map.php:49
291
- msgid "Find Address"
292
- msgstr ""
293
-
294
- #: includes/admin/meta-box/inc/fields/media.php:18
295
- msgctxt "media"
296
- msgid "Add Image"
297
- msgstr ""
298
-
299
- #: includes/admin/meta-box/inc/fields/media.php:19
300
- msgctxt "media"
301
- msgid " file"
302
- msgstr ""
303
-
304
- #: includes/admin/meta-box/inc/fields/media.php:20
305
- msgctxt "media"
306
- msgid " files"
307
- msgstr ""
308
-
309
- #: includes/admin/meta-box/inc/fields/media.php:21
310
- msgctxt "media"
311
- msgid "Remove"
312
- msgstr ""
313
-
314
- #: includes/admin/meta-box/inc/fields/media.php:22
315
- msgctxt "media"
316
- msgid "Edit"
317
- msgstr ""
318
-
319
- #: includes/admin/meta-box/inc/fields/media.php:23
320
- msgctxt "media"
321
- msgid "View"
322
- msgstr ""
323
-
324
- #: includes/admin/meta-box/inc/fields/media.php:24
325
- msgctxt "media"
326
- msgid "No Title"
327
- msgstr ""
328
-
329
- #: includes/admin/meta-box/inc/fields/media.php:27
330
- msgctxt "media"
331
- msgid "Select Files"
332
- msgstr ""
333
-
334
- #: includes/admin/meta-box/inc/fields/media.php:28
335
- msgctxt "media"
336
- msgid "Drop files here to upload"
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/oembed.php:65
340
- msgid "Embed HTML not available."
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/oembed.php:84
344
- msgid "Preview"
345
- msgstr ""
346
-
347
- #: includes/admin/meta-box/inc/fields/post.php:34
348
- msgid "Select a post"
349
- msgstr ""
350
-
351
- #: includes/admin/meta-box/inc/fields/post.php:38
352
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
353
- msgid "Select a %s"
354
- msgstr ""
355
-
356
- #: includes/admin/meta-box/inc/fields/select.php:91
357
- msgid "All"
358
- msgstr ""
359
-
360
- #: includes/admin/meta-box/inc/fields/select.php:91
361
- msgid "None"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
365
- msgid "Select a term"
366
- msgstr ""
367
-
368
- #: includes/admin/meta-box/inc/fields/user.php:34
369
- msgid "Select an user"
370
- msgstr ""
371
-
372
- #: includes/admin/meta-box/inc/validation.php:42
373
- msgid "Please correct the errors highlighted below and try again."
374
- msgstr ""
375
-
376
- #: includes/admin/plugins.php:27
377
- msgid "General Settings"
378
- msgstr "Allgemeine Einstellungen"
379
-
380
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
381
- msgid "Getting Started"
382
- msgstr "Einführung"
383
-
384
- #: includes/admin/plugins.php:51
385
- msgid "Add Ons"
386
- msgstr "Add Ons"
387
-
388
- #: includes/admin/settings/contextual-help.php:29
389
- msgid "For more information:"
390
- msgstr "Für mehr Informationen:"
391
-
392
- #: includes/admin/settings/contextual-help.php:30
393
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
394
- msgstr ""
395
- "Besuchen Sie die <a href=\"%s\"> Dokumentation </a> auf der Mashshare "
396
- "Website."
397
-
398
- #: includes/admin/settings/contextual-help.php:32
399
- msgid ""
400
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
401
- "href=\"%s\">extensions</a>."
402
- msgstr ""
403
- "<a href=\"%s\"> Sende ein Problem </a> auf <a href=\"%s\"> Mashshare </a>. "
404
- "Ansicht <a href=\"%s\"> Erweiterungen </a>."
405
-
406
- #: includes/admin/settings/contextual-help.php:41
407
- msgid "General"
408
- msgstr "Allgemein"
409
-
410
- #: includes/admin/settings/contextual-help.php:42
411
- msgid "This screen provides the most basic settings for configuring Mashshare."
412
- msgstr ""
413
- "Diese Anzeige enthält die grundlegenden Einstellungen für die Konfiguration "
414
- "von Mashshare."
415
-
416
- #: includes/admin/settings/display-settings.php:133
417
- msgid "MashShare "
418
- msgstr ""
419
-
420
- #: includes/admin/settings/metabox-settings.php:102
421
- msgid "Social Media Image"
422
- msgstr ""
423
-
424
- #: includes/admin/settings/metabox-settings.php:103
425
- msgid ""
426
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
427
- "1200px x 630px. Aspect ratio 1.9:1"
428
- msgstr ""
429
-
430
- #: includes/admin/settings/metabox-settings.php:112
431
- msgid "Social Media Title"
432
- msgstr ""
433
-
434
- #: includes/admin/settings/metabox-settings.php:113
435
- msgid ""
436
- "This title is used by the open graph meta tag og:title and will be used when "
437
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
438
- "to use "
439
- msgstr ""
440
-
441
- #: includes/admin/settings/metabox-settings.php:113
442
- msgid "Yoast Facebook / SEO title"
443
- msgstr ""
444
-
445
- #: includes/admin/settings/metabox-settings.php:121
446
- msgid "Social Media Description"
447
- msgstr ""
448
-
449
- #: includes/admin/settings/metabox-settings.php:122
450
- msgid ""
451
- "This description is used by the open graph meta tag og:description and will "
452
- "be used when users share your content on Facebook, LinkedIn, and Google "
453
- "Plus. Leave this blank to use "
454
- msgstr ""
455
-
456
- #: includes/admin/settings/metabox-settings.php:122
457
- msgid "Yoast Facebook open graph description or the post excerpt."
458
- msgstr ""
459
-
460
- #: includes/admin/settings/metabox-settings.php:135
461
- msgid "Pinterest Image"
462
- msgstr ""
463
-
464
- #: includes/admin/settings/metabox-settings.php:135
465
- #: includes/admin/settings/metabox-settings.php:145
466
- msgid ""
467
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
468
- "the Pinterest Features"
469
- msgstr ""
470
-
471
- #: includes/admin/settings/metabox-settings.php:136
472
- msgid ""
473
- "Pinned images need to be more vertical than horizontal in orientation. Use "
474
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
475
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
476
- msgstr ""
477
-
478
- #: includes/admin/settings/metabox-settings.php:145
479
- msgid "Pinterest Description"
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:146
483
- msgid ""
484
- "Place a customized message that will be used when this post is shared on "
485
- "Pinterest. Leave this blank to use the "
486
- msgstr ""
487
-
488
- #: includes/admin/settings/metabox-settings.php:146
489
- msgid "Yoast SEO title"
490
- msgstr ""
491
-
492
- #: includes/admin/settings/metabox-settings.php:146
493
- msgid "the post title"
494
- msgstr ""
495
-
496
- #: includes/admin/settings/metabox-settings.php:154
497
- msgid "Custom Tweet"
498
- msgstr ""
499
-
500
- #: includes/admin/settings/metabox-settings.php:176
501
- msgid ""
502
- "Publish the post and validate if the open graph meta tags on your site are "
503
- "correct! Incorrect data can result in wrong share description, title or "
504
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
505
- "new scrape information\" to purge the facebook cache."
506
- msgstr ""
507
-
508
- #: includes/admin/settings/metabox-settings.php:206
509
- msgid "Based on your username @"
510
- msgstr ""
511
-
512
- #: includes/admin/settings/metabox-settings.php:206
513
- msgid " ,the shortened post url and the current content above"
514
- msgstr ""
515
-
516
- #: includes/admin/settings/metabox-settings.php:208
517
- msgid "Based on the shortened post url and the current content above"
518
- msgstr ""
519
-
520
- #: includes/admin/settings/metabox-settings.php:210
521
- msgid " your tweet has a maximum of 140 characters. "
522
- msgstr ""
523
-
524
- #: includes/admin/settings/metabox-settings.php:212
525
- msgid "If this is left blank the post title will be used. "
526
- msgstr ""
527
-
528
- #: includes/admin/settings/metabox-settings.php:214
529
- msgid ""
530
- "If this is left blank the Yoast Twitter Title or post title will be used. "
531
- msgstr ""
532
-
533
- #: includes/admin/settings/register-settings.php:120
534
- msgid "General settings"
535
- msgstr "Allgemeine Einstellungen"
536
-
537
- #: includes/admin/settings/register-settings.php:126
538
- msgid "Share counts"
539
- msgstr ""
540
-
541
- #: includes/admin/settings/register-settings.php:127
542
- msgid ""
543
- "<i>MashEngine</i> collects shares by direct request to social networks. "
544
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
545
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
546
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
547
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
548
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
549
- "this free service to get the twitter share count. Visit the newsharecount "
550
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
551
- "Thats it!"
552
- msgstr ""
553
-
554
- #: includes/admin/settings/register-settings.php:136
555
- msgid "Sharedcount.com API Key"
556
- msgstr ""
557
-
558
- #: includes/admin/settings/register-settings.php:137
559
- msgid ""
560
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
561
- "\">SharedCount.com</a> for 10.000 free daily requests."
562
- msgstr ""
563
-
564
- #: includes/admin/settings/register-settings.php:143
565
- msgid "Sharedcount.com endpint"
566
- msgstr ""
567
-
568
- #: includes/admin/settings/register-settings.php:144
569
- msgid ""
570
- "The SharedCount Domain your API key is configured to query. For example, "
571
- "free.sharedcount.com. This may update automatically if configured "
572
- "incorrectly."
573
- msgstr ""
574
-
575
- #: includes/admin/settings/register-settings.php:151
576
- msgid "Caching Method"
577
- msgstr ""
578
-
579
- #: includes/admin/settings/register-settings.php:152
580
- msgid ""
581
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
582
- "visitor and refreshes the cache asyncronously in the background. New posts "
583
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
584
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
585
- "cache while page is loading and adds a little extra time during inital page "
586
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
587
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
588
- "was using before version 3.0"
589
- msgstr ""
590
-
591
- #: includes/admin/settings/register-settings.php:161
592
- msgid "Cache expiration"
593
- msgstr ""
594
-
595
- #: includes/admin/settings/register-settings.php:162
596
- msgid ""
597
- "Shares are counted for posts after a certain time and counts are not updated "
598
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
599
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
600
- "more"
601
- msgstr ""
602
-
603
- #: includes/admin/settings/register-settings.php:168
604
- msgid "Facebook Count"
605
- msgstr ""
606
-
607
- #: includes/admin/settings/register-settings.php:169
608
- msgid ""
609
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
610
- "the pure share count"
611
- msgstr ""
612
-
613
- #: includes/admin/settings/register-settings.php:179
614
- msgid "Fake Share counts"
615
- msgstr ""
616
-
617
- #: includes/admin/settings/register-settings.php:180
618
- msgid ""
619
- "This number will be aggregated to all your share counts and is multiplied "
620
- "with a post specific factor. (Number of post title words divided with 10)."
621
- msgstr ""
622
-
623
- #: includes/admin/settings/register-settings.php:186
624
- msgid "Disable Sharecount"
625
- msgstr "Sharecount deaktivieren"
626
-
627
- #: includes/admin/settings/register-settings.php:187
628
- msgid ""
629
- "Use this when curl() is not supported on your server or share counts should "
630
- "not counted. This mode does not call the database and no SQL queries are "
631
- "generated. (Only less performance benefit. All db requests are cached) "
632
- "Default: false"
633
- msgstr ""
634
-
635
- #: includes/admin/settings/register-settings.php:192
636
- msgid "Hide Sharecount"
637
- msgstr ""
638
-
639
- #: includes/admin/settings/register-settings.php:193
640
- msgid ""
641
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
642
- "specific post are not shown until the share count of this number is reached."
643
- msgstr ""
644
-
645
- #: includes/admin/settings/register-settings.php:199
646
- msgid "Execution Order"
647
- msgstr ""
648
-
649
- #: includes/admin/settings/register-settings.php:200
650
- msgid ""
651
- "If you use other content plugins you can define here the execution order. "
652
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
653
- "executed before any other plugin (When the other plugin is not overwriting "
654
- "our execution order). Default is \"1000\""
655
- msgstr ""
656
-
657
- #: includes/admin/settings/register-settings.php:207
658
- msgid "JavaScript in Footer"
659
- msgstr ""
660
-
661
- #: includes/admin/settings/register-settings.php:208
662
- msgid ""
663
- "Enable this to load all *.js files into footer. Make sure your theme uses "
664
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
665
- msgstr ""
666
-
667
- #: includes/admin/settings/register-settings.php:213
668
- msgid "JS & CSS Everywhere"
669
- msgstr ""
670
-
671
- #: includes/admin/settings/register-settings.php:214
672
- msgid ""
673
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
674
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
675
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
676
- "option to allow conditional loading so MashShare's JS and CSS files are "
677
- "loaded only on pages where MashShare is used."
678
- msgstr ""
679
-
680
- #: includes/admin/settings/register-settings.php:220
681
- msgid "Twitter Popup disabled"
682
- msgstr ""
683
-
684
- #: includes/admin/settings/register-settings.php:221
685
- msgid ""
686
- "Check this box if your twitter popup is openening twice. This happens "
687
- "sometimes when you are using any third party twitter plugin or the twitter "
688
- "SDK on your website."
689
- msgstr ""
690
-
691
- #: includes/admin/settings/register-settings.php:227
692
- msgid "Remove Data on Uninstall?"
693
- msgstr ""
694
-
695
- #: includes/admin/settings/register-settings.php:228
696
- msgid ""
697
- "Check this box if you would like Mashshare to completely remove all of its "
698
- "data when the plugin is deleted."
699
- msgstr ""
700
-
701
- #: includes/admin/settings/register-settings.php:233
702
- msgid "Allow Usage Tracking"
703
- msgstr ""
704
-
705
- #: includes/admin/settings/register-settings.php:234
706
- #: includes/admin/tracking.php:265
707
- msgid ""
708
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
709
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
710
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
711
- "Ons</a>. No sensitive data is tracked."
712
- msgstr ""
713
-
714
- #: includes/admin/settings/register-settings.php:239
715
- msgid "User Roles Options Visibility"
716
- msgstr ""
717
-
718
- #: includes/admin/settings/register-settings.php:240
719
- msgid ""
720
- "Select user roles which can see page and post MashShare Social Sharing Meta "
721
- "Box Options"
722
- msgstr ""
723
-
724
- #: includes/admin/settings/register-settings.php:243
725
- msgid "Select User Roles"
726
- msgstr ""
727
-
728
- #: includes/admin/settings/register-settings.php:244
729
- msgid "All Roles"
730
- msgstr ""
731
-
732
- #: includes/admin/settings/register-settings.php:248
733
- #: includes/admin/settings/register-settings.php:294
734
- #: includes/admin/settings/register-settings.php:751
735
- msgid "Social Networks"
736
- msgstr ""
737
-
738
- #: includes/admin/settings/register-settings.php:254
739
- msgid "Facebook page url"
740
- msgstr ""
741
-
742
- #: includes/admin/settings/register-settings.php:255
743
- msgid "Optional: The url of the main facebook account connected with this site"
744
- msgstr ""
745
-
746
- #: includes/admin/settings/register-settings.php:261
747
- msgid "Facebook App ID"
748
- msgstr ""
749
-
750
- #: includes/admin/settings/register-settings.php:262
751
- msgid ""
752
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
753
- "a>"
754
- msgstr ""
755
-
756
- #: includes/admin/settings/register-settings.php:268
757
- #: includes/admin/settings/user-profiles.php:19
758
- msgid "Twitter Username"
759
- msgstr ""
760
-
761
- #: includes/admin/settings/register-settings.php:269
762
- msgid ""
763
- "<strong>Optional:</strong> Using your twitter username results in via "
764
- "@username"
765
- msgstr ""
766
-
767
- #: includes/admin/settings/register-settings.php:275
768
- msgid "Twitter Card"
769
- msgstr ""
770
-
771
- #: includes/admin/settings/register-settings.php:276
772
- msgid ""
773
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
774
- "plugin their meta tags will be removed and MashShare will use existing meta "
775
- "data from these plugins. Default: On"
776
- msgstr ""
777
-
778
- #: includes/admin/settings/register-settings.php:281
779
- msgid "Open Graph Meta Tags"
780
- msgstr ""
781
-
782
- #: includes/admin/settings/register-settings.php:282
783
- msgid ""
784
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
785
- "Jetpack plugin their meta tags will be removed and MashShare will use "
786
- "existing meta data from these plugins."
787
- msgstr ""
788
-
789
- #: includes/admin/settings/register-settings.php:287
790
- msgid "Large Buttons"
791
- msgstr ""
792
-
793
- #: includes/admin/settings/register-settings.php:288
794
- msgid ""
795
- "Specify how many services and social networks are visible before the \"Plus"
796
- "\" Button is shown. This buttons turn into large prominent buttons."
797
- msgstr ""
798
-
799
- #: includes/admin/settings/register-settings.php:295
800
- msgid ""
801
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
802
- "that should be visible. <br>Activate more networks than number of \"Large "
803
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
804
- msgstr ""
805
-
806
- #: includes/admin/settings/register-settings.php:321
807
- msgid "Short URL Integration"
808
- msgstr ""
809
-
810
- #: includes/admin/settings/register-settings.php:328
811
- msgid "Bitly access token"
812
- msgstr ""
813
-
814
- #: includes/admin/settings/register-settings.php:329
815
- msgid ""
816
- "If you like to use bitly.com shortener get a free bitly access token <a href="
817
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
818
- "ly/cXnjsh. "
819
- msgstr ""
820
-
821
- #: includes/admin/settings/register-settings.php:335
822
- msgid "Google API Key (goo.gl)"
823
- msgstr ""
824
-
825
- #: includes/admin/settings/register-settings.php:342
826
- msgid "Shorturl method"
827
- msgstr ""
828
-
829
- #: includes/admin/settings/register-settings.php:343
830
- msgid ""
831
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
832
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
833
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
834
- "%s ?p=101</i>"
835
- msgstr ""
836
-
837
- #: includes/admin/settings/register-settings.php:354
838
- msgid "Important: Read this!"
839
- msgstr ""
840
-
841
- #: includes/admin/settings/register-settings.php:355
842
- msgid ""
843
- "<strong>The post short url is NOT generated immediatly after first page load!"
844
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
845
- "12 hours for old posts."
846
- msgstr ""
847
-
848
- #: includes/admin/settings/register-settings.php:374
849
- msgid "Customization"
850
- msgstr ""
851
-
852
- #: includes/admin/settings/register-settings.php:380
853
- msgid "Round up Shares"
854
- msgstr ""
855
-
856
- #: includes/admin/settings/register-settings.php:381
857
- msgid ""
858
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
859
- "as 1M"
860
- msgstr ""
861
-
862
- #: includes/admin/settings/register-settings.php:386
863
- msgid "Animate Shares"
864
- msgstr ""
865
-
866
- #: includes/admin/settings/register-settings.php:387
867
- msgid ""
868
- "Count up the shares on page loading with a nice looking animation effect. "
869
- "This only works on singular pages and not with shortcodes generated buttons."
870
- msgstr ""
871
-
872
- #: includes/admin/settings/register-settings.php:392
873
- #: includes/class-mashsb-shared-posts-widget.php:53
874
- msgid "Share Count Label"
875
- msgstr ""
876
-
877
- #: includes/admin/settings/register-settings.php:393
878
- msgid ""
879
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
880
- msgstr ""
881
-
882
- #: includes/admin/settings/register-settings.php:408
883
- msgid "Share Count Color"
884
- msgstr ""
885
-
886
- #: includes/admin/settings/register-settings.php:409
887
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
888
- msgstr ""
889
-
890
- #: includes/admin/settings/register-settings.php:416
891
- msgid "Border Radius"
892
- msgstr ""
893
-
894
- #: includes/admin/settings/register-settings.php:417
895
- msgid ""
896
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
897
- "results in circle buttons. Default value is zero."
898
- msgstr ""
899
-
900
- #: includes/admin/settings/register-settings.php:447
901
- msgid "Button Width"
902
- msgstr ""
903
-
904
- #: includes/admin/settings/register-settings.php:448
905
- msgid "Minimum with of the large share buttons in pixels"
906
- msgstr ""
907
-
908
- #: includes/admin/settings/register-settings.php:455
909
- msgid "Share Button Style"
910
- msgstr ""
911
-
912
- #: includes/admin/settings/register-settings.php:456
913
- msgid "Change visual appearance of the share buttons."
914
- msgstr ""
915
-
916
- #: includes/admin/settings/register-settings.php:467
917
- msgid "Small Share Buttons"
918
- msgstr ""
919
-
920
- #: includes/admin/settings/register-settings.php:468
921
- msgid ""
922
- "All buttons will be shown as pure small icons without any text on desktop "
923
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
924
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
925
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
926
- msgstr ""
927
-
928
- #: includes/admin/settings/register-settings.php:479
929
- msgid "Subscribe Button"
930
- msgstr ""
931
-
932
- #: includes/admin/settings/register-settings.php:480
933
- msgid ""
934
- "Specify if the subscribe button is opening a content box below the button or "
935
- "if the button is linked to the \"subscribe url\" below."
936
- msgstr ""
937
-
938
- #: includes/admin/settings/register-settings.php:490
939
- msgid "Subscribe URL"
940
- msgstr ""
941
-
942
- #: includes/admin/settings/register-settings.php:491
943
- msgid ""
944
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
945
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
946
- msgstr ""
947
-
948
- #: includes/admin/settings/register-settings.php:498
949
- msgid "Additional Content"
950
- msgstr ""
951
-
952
- #: includes/admin/settings/register-settings.php:504
953
- msgid "Content Above"
954
- msgstr ""
955
-
956
- #: includes/admin/settings/register-settings.php:505
957
- msgid ""
958
- "Content appearing above share buttons. Use HTML, formulars, like button, "
959
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
960
- msgstr ""
961
-
962
- #: includes/admin/settings/register-settings.php:512
963
- msgid "Content Below"
964
- msgstr ""
965
-
966
- #: includes/admin/settings/register-settings.php:513
967
- msgid ""
968
- "Content appearing below share buttons. Use HTML, formulars, like button, "
969
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
970
- msgstr ""
971
-
972
- #: includes/admin/settings/register-settings.php:520
973
- msgid "Subscribe content"
974
- msgstr ""
975
-
976
- #: includes/admin/settings/register-settings.php:521
977
- msgid ""
978
- "Define the content of the opening toggle subscribe window here. Use "
979
- "formulars, like button, links or any other text. Shortcodes are supported, e."
980
- "g.: [contact-form-7]"
981
- msgstr ""
982
-
983
- #: includes/admin/settings/register-settings.php:530
984
- msgid "Custom Styles"
985
- msgstr ""
986
-
987
- #: includes/admin/settings/register-settings.php:536
988
- msgid "General CSS"
989
- msgstr ""
990
-
991
- #: includes/admin/settings/register-settings.php:537
992
- msgid ""
993
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
994
- "it's loaded as an additonal inline css on your site"
995
- msgstr ""
996
-
997
- #: includes/admin/settings/register-settings.php:544
998
- msgid "AMP CSS"
999
- msgstr ""
1000
-
1001
- #: includes/admin/settings/register-settings.php:545
1002
- msgid ""
1003
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
1004
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
1005
- "\">AMP Plugin</a> installed."
1006
- msgstr ""
1007
-
1008
- #: includes/admin/settings/register-settings.php:562
1009
- msgid "Location & Position"
1010
- msgstr ""
1011
-
1012
- #: includes/admin/settings/register-settings.php:568
1013
- msgid "Position"
1014
- msgstr ""
1015
-
1016
- #: includes/admin/settings/register-settings.php:569
1017
- msgid ""
1018
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1019
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1020
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1021
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1022
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1023
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1024
- "shortcodes</a>."
1025
- msgstr ""
1026
-
1027
- #: includes/admin/settings/register-settings.php:572
1028
- msgid "Top"
1029
- msgstr ""
1030
-
1031
- #: includes/admin/settings/register-settings.php:573
1032
- msgid "Bottom"
1033
- msgstr ""
1034
-
1035
- #: includes/admin/settings/register-settings.php:574
1036
- msgid "Top and Bottom"
1037
- msgstr ""
1038
-
1039
- #: includes/admin/settings/register-settings.php:575
1040
- msgid "Manual"
1041
- msgstr ""
1042
-
1043
- #: includes/admin/settings/register-settings.php:580
1044
- msgid "Post Types"
1045
- msgstr ""
1046
-
1047
- #: includes/admin/settings/register-settings.php:581
1048
- msgid ""
1049
- "Select on which post_types the share buttons appear. These values will be "
1050
- "ignored when \"manual\" position is selected."
1051
- msgstr ""
1052
-
1053
- #: includes/admin/settings/register-settings.php:586
1054
- msgid "Exclude from post id"
1055
- msgstr ""
1056
-
1057
- #: includes/admin/settings/register-settings.php:587
1058
- msgid ""
1059
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1060
- "by a comma, e.g. 23, 63, 114 "
1061
- msgstr ""
1062
-
1063
- #: includes/admin/settings/register-settings.php:593
1064
- msgid "Categories"
1065
- msgstr ""
1066
-
1067
- #: includes/admin/settings/register-settings.php:594
1068
- msgid ""
1069
- "Enable this checkbox to enable Mashshare on categories with multiple "
1070
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1071
- msgstr ""
1072
-
1073
- #: includes/admin/settings/register-settings.php:600
1074
- msgid "Frontpage"
1075
- msgstr ""
1076
-
1077
- #: includes/admin/settings/register-settings.php:601
1078
- msgid "Enable share buttons on frontpage"
1079
- msgstr ""
1080
-
1081
- #: includes/admin/settings/register-settings.php:606
1082
- msgid "Debug"
1083
- msgstr ""
1084
-
1085
- #: includes/admin/settings/register-settings.php:612
1086
- msgid "Disable Cache"
1087
- msgstr ""
1088
-
1089
- #: includes/admin/settings/register-settings.php:618
1090
- msgid "Attention: Purge DB Cache"
1091
- msgstr ""
1092
-
1093
- #: includes/admin/settings/register-settings.php:624
1094
- msgid "Debug mode"
1095
- msgstr ""
1096
-
1097
- #: includes/admin/settings/register-settings.php:633
1098
- msgid "Activate your Add-Ons"
1099
- msgstr ""
1100
-
1101
- #: includes/admin/settings/register-settings.php:634
1102
- msgid ""
1103
- "Activate your license key to get important security and feature updates for "
1104
- "your Add-On!"
1105
- msgstr ""
1106
-
1107
- #: includes/admin/settings/register-settings.php:634
1108
- msgid ""
1109
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1110
- "Add-Ons</a>"
1111
- msgstr ""
1112
-
1113
- #: includes/admin/settings/register-settings.php:714
1114
- msgid "Settings updated."
1115
- msgstr ""
1116
-
1117
- #: includes/admin/settings/register-settings.php:747
1118
- msgid "Visual"
1119
- msgstr ""
1120
-
1121
- #: includes/admin/settings/register-settings.php:755
1122
- msgid "Add-On Settings"
1123
- msgstr ""
1124
-
1125
- #: includes/admin/settings/register-settings.php:759
1126
- msgid "Licenses"
1127
- msgstr ""
1128
-
1129
- #: includes/admin/settings/register-settings.php:761
1130
- msgid "Get More Add-Ons"
1131
- msgstr ""
1132
-
1133
- #: includes/admin/settings/register-settings.php:1012
1134
- msgid ""
1135
- "The callback function used for the <strong>%s</strong> setting is missing."
1136
- msgstr ""
1137
-
1138
- #: includes/admin/settings/register-settings.php:1152
1139
- msgid "Upload File"
1140
- msgstr ""
1141
-
1142
- #: includes/admin/settings/register-settings.php:1255
1143
- msgid ""
1144
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1145
- "title=\"Renew your license key\">renew your license key</a>."
1146
- msgstr ""
1147
-
1148
- #: includes/admin/settings/register-settings.php:1268
1149
- msgid ""
1150
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1151
- "account page\">visit your account page</a> and verify it."
1152
- msgstr ""
1153
-
1154
- #: includes/admin/settings/register-settings.php:1281
1155
- msgid ""
1156
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1157
- "title=\"Visit account page\">visit your account page</a> to manage your "
1158
- "license key URLs."
1159
- msgstr ""
1160
-
1161
- #: includes/admin/settings/register-settings.php:1293
1162
- msgid "This is not a %s."
1163
- msgstr ""
1164
-
1165
- #: includes/admin/settings/register-settings.php:1302
1166
- msgid ""
1167
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1168
- "possible upgrades</a> now."
1169
- msgstr ""
1170
-
1171
- #: includes/admin/settings/register-settings.php:1324
1172
- msgid "License key never expires."
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1331
1176
- msgid ""
1177
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1178
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1179
- msgstr ""
1180
-
1181
- #: includes/admin/settings/register-settings.php:1341
1182
- msgid "Your license key expires on %s."
1183
- msgstr ""
1184
-
1185
- #: includes/admin/settings/register-settings.php:1363
1186
- msgid "Deactivate License"
1187
- msgstr ""
1188
-
1189
- #: includes/admin/settings/register-settings.php:1427
1190
- msgid "Social Network"
1191
- msgstr ""
1192
-
1193
- #: includes/admin/settings/register-settings.php:1428
1194
- msgid "Status"
1195
- msgstr ""
1196
-
1197
- #: includes/admin/settings/register-settings.php:1429
1198
- msgid "Custom Label"
1199
- msgstr ""
1200
-
1201
- #: includes/admin/settings/register-settings.php:1497
1202
- msgid "Select Image"
1203
- msgstr ""
1204
-
1205
- #: includes/admin/settings/register-settings.php:1636
1206
- msgid "All Services"
1207
- msgstr ""
1208
-
1209
- #: includes/admin/settings/register-settings.php:1653
1210
- msgid ""
1211
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1212
- "after doing the job."
1213
- msgstr ""
1214
-
1215
- #: includes/admin/settings/register-settings.php:1666
1216
- msgid "Transient Cache disabled! Enable it for performance increase."
1217
- msgstr ""
1218
-
1219
- #: includes/admin/settings/register-settings.php:1679
1220
- msgid ""
1221
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1222
- "content/plugins/mashsharer/logs/"
1223
- msgstr ""
1224
-
1225
- #: includes/admin/settings/user-profiles.php:16
1226
- msgid "MashShare Social Media Integration"
1227
- msgstr ""
1228
-
1229
- #: includes/admin/settings/user-profiles.php:22
1230
- msgid "Your Twitter username (without the @ symbol)"
1231
- msgstr ""
1232
-
1233
- #: includes/admin/settings/user-profiles.php:24
1234
- msgid "Facebook Author URL"
1235
- msgstr ""
1236
-
1237
- #: includes/admin/settings/user-profiles.php:27
1238
- msgid "URL to your Facebok profile."
1239
- msgstr ""
1240
-
1241
- #: includes/admin/tools.php:68
1242
- msgid "Import/Export"
1243
- msgstr ""
1244
-
1245
- #: includes/admin/tools.php:69
1246
- msgid "System Info"
1247
- msgstr ""
1248
-
1249
- #: includes/admin/tools.php:91
1250
- msgid "Export Settings"
1251
- msgstr ""
1252
-
1253
- #: includes/admin/tools.php:93
1254
- msgid ""
1255
- "Export the Mashshare settings for this site as a .json file. This allows you "
1256
- "to easily import the configuration into another site."
1257
- msgstr ""
1258
-
1259
- #: includes/admin/tools.php:99
1260
- msgid "Export"
1261
- msgstr ""
1262
-
1263
- #: includes/admin/tools.php:106
1264
- msgid "Import Settings"
1265
- msgstr ""
1266
-
1267
- #: includes/admin/tools.php:108
1268
- msgid ""
1269
- "Import the Mashshare settings from a .json file. This file can be obtained "
1270
- "by exporting the settings on another site using the form above."
1271
- msgstr ""
1272
-
1273
- #: includes/admin/tools.php:116
1274
- msgid "Import"
1275
- msgstr ""
1276
-
1277
- #: includes/admin/tools.php:218
1278
- msgid "Please upload a valid .json file"
1279
- msgstr ""
1280
-
1281
- #: includes/admin/tools.php:224
1282
- msgid "Please upload a file to import"
1283
- msgstr ""
1284
-
1285
- #: includes/admin/tracking.php:266
1286
- msgid "Allow"
1287
- msgstr ""
1288
-
1289
- #: includes/admin/tracking.php:267
1290
- msgid "Do not allow"
1291
- msgstr ""
1292
-
1293
- #: includes/admin/welcome.php:51
1294
- msgid "Welcome to MashShare"
1295
- msgstr ""
1296
-
1297
- #: includes/admin/welcome.php:56
1298
- msgid "MashShare Changelog"
1299
- msgstr ""
1300
-
1301
- #: includes/admin/welcome.php:61
1302
- msgid "Quickstart"
1303
- msgstr ""
1304
-
1305
- #: includes/admin/welcome.php:66
1306
- msgid "The people that build MashShare"
1307
- msgstr ""
1308
-
1309
- #: includes/admin/welcome.php:128
1310
- msgid ""
1311
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1312
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1313
- "needs."
1314
- msgstr ""
1315
-
1316
- #: includes/admin/welcome.php:131
1317
- msgid "Create Your First Social Sharing Button"
1318
- msgstr ""
1319
-
1320
- #: includes/admin/welcome.php:137
1321
- msgid "Settings &rarr; Social Networks"
1322
- msgstr ""
1323
-
1324
- #: includes/admin/welcome.php:138
1325
- msgid ""
1326
- "The Social Network menu is your general access point for activating the "
1327
- "desired share buttons and for customizing the share button label"
1328
- msgstr ""
1329
-
1330
- #: includes/admin/welcome.php:139
1331
- msgid "Settings &rarr; Location & Position"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/welcome.php:140
1335
- msgid ""
1336
- "Select the location and exact position of the share buttons within your "
1337
- "content"
1338
- msgstr ""
1339
-
1340
- #: includes/admin/welcome.php:141
1341
- msgid "You are done! Easy, isn't it?"
1342
- msgstr ""
1343
-
1344
- #: includes/admin/welcome.php:149
1345
- msgid "Display a Most Shared Post Widget"
1346
- msgstr ""
1347
-
1348
- #: includes/admin/welcome.php:155
1349
- msgid "Appearance &rarr; Widgets"
1350
- msgstr ""
1351
-
1352
- #: includes/admin/welcome.php:157
1353
- msgid ""
1354
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1355
- "br>into the desired widget location and save it"
1356
- msgstr ""
1357
-
1358
- #: includes/admin/welcome.php:165
1359
- msgid "Content Shortcodes"
1360
- msgstr ""
1361
-
1362
- #: includes/admin/welcome.php:172
1363
- msgid ""
1364
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1365
- "bold;\">[mashshare]</i>."
1366
- msgstr ""
1367
-
1368
- #: includes/admin/welcome.php:174
1369
- msgid ""
1370
- "Paste the shortcode in content of your posts or pages with the post editor "
1371
- "at the place you want the share buttons appear"
1372
- msgstr ""
1373
-
1374
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1375
- msgid ""
1376
- "There are various parameters you can use for the mashshare shortcode. Find a "
1377
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1378
- "\">here</a>"
1379
- msgstr ""
1380
-
1381
- #: includes/admin/welcome.php:182
1382
- msgid "PHP Template Shortcode"
1383
- msgstr ""
1384
-
1385
- #: includes/admin/welcome.php:188
1386
- msgid ""
1387
- "Add MashShare directly into your theme template files with using the PHP "
1388
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1389
- "&gt;</i>"
1390
- msgstr ""
1391
-
1392
- #: includes/admin/welcome.php:199
1393
- msgid "Need Help?"
1394
- msgstr ""
1395
-
1396
- #: includes/admin/welcome.php:202
1397
- msgid "Great Support"
1398
- msgstr ""
1399
-
1400
- #: includes/admin/welcome.php:203
1401
- msgid ""
1402
- "We do our best to provide the best support we can. If you encounter a "
1403
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1404
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1405
- msgstr ""
1406
-
1407
- #: includes/admin/welcome.php:227
1408
- msgid "Welcome to MashShare %s"
1409
- msgstr ""
1410
-
1411
- #: includes/admin/welcome.php:229
1412
- msgid ""
1413
- "Thank you for updating to the latest version! MashShare is installed and "
1414
- "ready to grow your traffic from social networks!"
1415
- msgstr ""
1416
-
1417
- #: includes/admin/welcome.php:252
1418
- msgid "1. Asyncronous Share Count Aggregation"
1419
- msgstr ""
1420
-
1421
- #: includes/admin/welcome.php:256
1422
- msgid ""
1423
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1424
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1425
- "will be aggregated only after page loading and never while page loads. This "
1426
- "is a huge performance update."
1427
- msgstr ""
1428
-
1429
- #: includes/admin/welcome.php:259
1430
- msgid "2. Open Graph and Twitter Card Integration"
1431
- msgstr ""
1432
-
1433
- #: includes/admin/welcome.php:260
1434
- msgid ""
1435
- "Use open graph and twitter card to specify the content you like to share. If "
1436
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1437
- "and extend it with custom data to get the maximum out of your valuable "
1438
- "content."
1439
- msgstr ""
1440
-
1441
- #: includes/admin/welcome.php:267
1442
- msgid "3. Responsive Buttons per default"
1443
- msgstr ""
1444
-
1445
- #: includes/admin/welcome.php:268
1446
- msgid ""
1447
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1448
- "buttons look great on mobile and desktop devices."
1449
- msgstr ""
1450
-
1451
- #: includes/admin/welcome.php:270
1452
- msgid "4. Share Count Dashboard"
1453
- msgstr ""
1454
-
1455
- #: includes/admin/welcome.php:271
1456
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1457
- msgstr ""
1458
-
1459
- #: includes/admin/welcome.php:275
1460
- msgid "5. A much cleaner user interface"
1461
- msgstr ""
1462
-
1463
- #: includes/admin/welcome.php:276
1464
- msgid ""
1465
- "We spent a lot of time to make useful first time settings and improved the "
1466
- "user interface for an easier experience."
1467
- msgstr ""
1468
-
1469
- #: includes/admin/welcome.php:284
1470
- msgid "Additional Updates"
1471
- msgstr ""
1472
-
1473
- #: includes/admin/welcome.php:287
1474
- msgid "Developer Friendly"
1475
- msgstr ""
1476
-
1477
- #: includes/admin/welcome.php:288
1478
- msgid ""
1479
- "Are you a theme developer and want to use MashShare as your build in share "
1480
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1481
- "instructions.</a>"
1482
- msgstr ""
1483
-
1484
- #: includes/admin/welcome.php:291
1485
- msgid "Check Open Graph Settings"
1486
- msgstr ""
1487
-
1488
- #: includes/admin/welcome.php:292
1489
- msgid ""
1490
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1491
- "data on your site is working as expected or conflicts with other open graph "
1492
- "data."
1493
- msgstr ""
1494
-
1495
- #: includes/admin/welcome.php:295
1496
- msgid "Use Yoast SEO Title"
1497
- msgstr ""
1498
-
1499
- #: includes/admin/welcome.php:296
1500
- msgid "MashShare will use the YOAST SEO title if it is defined."
1501
- msgstr ""
1502
-
1503
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1504
- msgid "Go to MashShare Settings"
1505
- msgstr ""
1506
-
1507
- #: includes/admin/welcome.php:303
1508
- msgid "View the Full Changelog"
1509
- msgstr ""
1510
-
1511
- #: includes/admin/welcome.php:326
1512
- msgid "What's New"
1513
- msgstr ""
1514
-
1515
- #: includes/admin/welcome.php:332
1516
- msgid "Credits"
1517
- msgstr ""
1518
-
1519
- #: includes/admin/welcome.php:353
1520
- msgid ""
1521
- "Mashshare is created by a René Hermenau and developers all over the world "
1522
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1523
- "WordPress."
1524
- msgstr ""
1525
-
1526
- #: includes/admin/welcome.php:356
1527
- msgid ""
1528
- " If you want to be credited here participate on the development and make "
1529
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1530
- msgstr ""
1531
-
1532
- #: includes/admin/welcome.php:381
1533
- msgid "View %s"
1534
- msgstr ""
1535
-
1536
- #: includes/admin/welcome.php:436
1537
- msgid "No valid changelog was found."
1538
- msgstr ""
1539
-
1540
- #: includes/admin/welcome.php:469
1541
- msgid "Full Changelog"
1542
- msgstr ""
1543
-
1544
- #: includes/class-mashsb-html-elements.php:43
1545
- msgctxt "all dropdown items"
1546
- msgid "All"
1547
- msgstr ""
1548
-
1549
- #: includes/class-mashsb-html-elements.php:44
1550
- msgctxt "no dropdown items"
1551
- msgid "None"
1552
- msgstr ""
1553
-
1554
- #: includes/class-mashsb-html-elements.php:232
1555
- msgid "Enter username"
1556
- msgstr ""
1557
-
1558
- #: includes/class-mashsb-license-handler.php:177
1559
- msgid "%1$s License Key"
1560
- msgstr ""
1561
-
1562
- #: includes/class-mashsb-license-handler.php:210
1563
- msgid ""
1564
- "Enter your extension license keys here to receive updates for purchased "
1565
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1566
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1567
- msgstr ""
1568
-
1569
- #: includes/class-mashsb-license-handler.php:319
1570
- msgid "Nonce verification failed"
1571
- msgstr ""
1572
-
1573
- #: includes/class-mashsb-license-handler.php:436
1574
- msgid ""
1575
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1576
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1577
- "issue."
1578
- msgstr ""
1579
-
1580
- #: includes/class-mashsb-license-handler.php:475
1581
- msgid "Enter valid license key for automatic updates."
1582
- msgstr ""
1583
-
1584
- #: includes/class-mashsb-shared-posts-widget.php:13
1585
- msgid "Mashshare - Most Shared Posts"
1586
- msgstr ""
1587
-
1588
- #: includes/class-mashsb-shared-posts-widget.php:37
1589
- msgid "Widget Title"
1590
- msgstr ""
1591
-
1592
- #: includes/class-mashsb-shared-posts-widget.php:42
1593
- msgid "How many posts to display?"
1594
- msgstr ""
1595
-
1596
- #: includes/class-mashsb-shared-posts-widget.php:46
1597
- msgid "Show Shares? Say \"No\" when using fake shares!"
1598
- msgstr ""
1599
-
1600
- #: includes/class-mashsb-shared-posts-widget.php:61
1601
- msgid "Show shares below post title"
1602
- msgstr ""
1603
-
1604
- #: includes/class-mashsb-shared-posts-widget.php:68
1605
- msgid "Time period and age of posts"
1606
- msgstr ""
1607
-
1608
- #: includes/template-functions.php:249
1609
- msgid "Subscribe"
1610
- msgstr ""
1611
-
1612
- #: includes/template-functions.php:517
1613
- msgid "SHARES"
1614
- msgstr ""
1615
-
1616
- #: includes/template-functions.php:1114
1617
- msgid "Page not found"
1618
- msgstr ""
1619
-
1620
- #. translators: %s: search phrase
1621
- #: includes/template-functions.php:1119
1622
- msgid "Search Results for &#8220;%s&#8221;"
1623
- msgstr ""
1624
-
1625
- #: includes/template-functions.php:1152
1626
- msgctxt "yearly archives date format"
1627
- msgid "Y"
1628
- msgstr ""
1629
-
1630
- #: includes/template-functions.php:1154
1631
- msgctxt "monthly archives date format"
1632
- msgid "F Y"
1633
- msgstr ""
1634
-
1635
- #: mashshare.php:124 mashshare.php:136
1636
- msgid "Cheatin&#8217; huh?"
1637
- msgstr ""
1638
-
1639
- #: templates/sidebar.php:17
1640
- msgid "Increase your Shares and Social Traffic"
1641
- msgstr ""
1642
-
1643
- #: templates/sidebar.php:20
1644
- msgid "Get 20% Off!"
1645
- msgstr ""
1646
-
1647
- #: templates/sidebar.php:25
1648
- msgid ""
1649
- "Submit your name and email and we'll send you a coupon for 20% off your "
1650
- "upgrade to the pro version."
1651
- msgstr ""
1652
-
1653
- #: templates/sidebar.php:29
1654
- msgid "Your Email"
1655
- msgstr ""
1656
-
1657
- #: templates/sidebar.php:33
1658
- msgid "First Name"
1659
- msgstr ""
1660
-
1661
- #: templates/sidebar.php:37
1662
- msgid "Last Name"
1663
- msgstr ""
1664
-
1665
- #: templates/sidebar.php:44
1666
- msgid "Send me the coupon"
1667
- msgstr ""
1668
-
1669
- #: templates/sidebar.php:48
1670
- msgid ""
1671
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1672
- "click anytime."
1673
- msgstr ""
1674
-
1675
- #. Plugin Name of the plugin/theme
1676
- msgid "Mashshare Share Buttons"
1677
- msgstr ""
1678
-
1679
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1680
- #. Plugin URI of the plugin/theme
1681
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1682
- #. Author URI of the plugin/theme
1683
- msgid "https://www.mashshare.net"
1684
- msgstr ""
1685
-
1686
- #. Description of the plugin/theme
1687
- msgid ""
1688
- "Mashshare is a Share functionality inspired by the the great website "
1689
- "Mashable for Facebook and Twitter. More networks available."
1690
- msgstr ""
1691
-
1692
- #. Author of the plugin/theme
1693
- msgid "René Hermenau"
1694
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-el_EL.mo DELETED
Binary file
languages/mashsb-el_EL.po DELETED
@@ -1,1680 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: Mashshare\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
8
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
9
- "PO-Revision-Date: 2016-06-23 19:08+0100\n"
10
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
11
- "Language-Team: Greek (http://www.transifex.com/renehermenau/mashshare/"
12
- "language/el/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: el\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.5.6\n"
19
-
20
- msgid ""
21
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
22
- "Highly customizable Social Media ecosystem"
23
- msgstr ""
24
-
25
- #: includes/MASHSB_SL_Plugin_Updater.php:177
26
- msgid ""
27
- "There is a new version of %1$s available. <a target=\"_blank\" class="
28
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
29
- msgstr ""
30
-
31
- #: includes/MASHSB_SL_Plugin_Updater.php:184
32
- msgid ""
33
- "There is a new version of %1$s available. <a target=\"_blank\" class="
34
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
35
- "\">update now</a>."
36
- msgstr ""
37
-
38
- #: includes/MASHSB_SL_Plugin_Updater.php:324
39
- msgid "You do not have permission to install plugin updates"
40
- msgstr ""
41
-
42
- #: includes/MASHSB_SL_Plugin_Updater.php:324
43
- #: includes/class-mashsb-license-handler.php:319
44
- msgid "Error"
45
- msgstr ""
46
-
47
- #: includes/admin/add-ons.php:27
48
- msgid "Add Ons for Mashshare"
49
- msgstr ""
50
-
51
- #: includes/admin/add-ons.php:28
52
- msgid "Visit Website"
53
- msgstr ""
54
-
55
- #: includes/admin/add-ons.php:28
56
- msgid "See Details"
57
- msgstr ""
58
-
59
- #: includes/admin/add-ons.php:30
60
- msgid "These add-ons extend the functionality of Mashshare."
61
- msgstr ""
62
-
63
- #: includes/admin/add-ons.php:54
64
- msgid ""
65
- "There was an error retrieving the Mashshare addon list from the server. "
66
- "Please try again later."
67
- msgstr ""
68
-
69
- #: includes/admin/admin-footer.php:24
70
- msgid ""
71
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
72
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
73
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
74
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
75
- "\"blank\">Documentation</a>"
76
- msgstr ""
77
-
78
- #: includes/admin/admin-notices.php:51
79
- msgid ""
80
- "MashShare needs the PHP extension cURL which is not installed on your "
81
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
82
- "to be able to collect share count of your posts."
83
- msgstr ""
84
-
85
- #: includes/admin/admin-notices.php:58
86
- msgid ""
87
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
88
- ">Social Networks</a> and enable at least one Social Network."
89
- msgstr ""
90
-
91
- #: includes/admin/admin-notices.php:64
92
- msgid ""
93
- "Your Sharebar Add-On version is not using new short url mechanism of "
94
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
95
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
96
- "short urls will not stop working in one of the next updates. This requires a "
97
- "valid license of the Sharebar Add-On"
98
- msgstr ""
99
-
100
- #: includes/admin/admin-notices.php:70
101
- msgid ""
102
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
103
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
104
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
105
- "twitter short urls will not stop working in one of the next updates. This "
106
- "requires a valid license of the Floating Sidebar Add-On"
107
- msgstr ""
108
-
109
- #: includes/admin/admin-notices.php:76
110
- msgid ""
111
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
112
- ">Short URL Integration</i></a> and check the Google API key."
113
- msgstr ""
114
-
115
- #: includes/admin/admin-notices.php:82
116
- msgid ""
117
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
118
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
119
- "check the Bitly API key."
120
- msgstr ""
121
-
122
- #: includes/admin/admin-notices.php:88
123
- msgid ""
124
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
125
- "is not longer needed and having it activated leads to duplicate open graph "
126
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
127
- msgstr ""
128
-
129
- #: includes/admin/admin-notices.php:94
130
- msgid ""
131
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
132
- "not longer needed and already built in MashShare. Deactivate it from <a href="
133
- "\"%s\"> Plugin Settings</a> "
134
- msgstr ""
135
-
136
- #: includes/admin/admin-notices.php:100
137
- msgid ""
138
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
139
- "\">Permalinks</a> must be enabled to count shares. Share count is "
140
- "deactivated until you have fixed this."
141
- msgstr ""
142
-
143
- #: includes/admin/admin-notices.php:258
144
- msgid ""
145
- "There seems to be an issue with the server. Please try again in a few "
146
- "minutes."
147
- msgstr ""
148
-
149
- #: includes/admin/admin-pages.php:31
150
- msgid "MashShare"
151
- msgstr ""
152
-
153
- #: includes/admin/admin-pages.php:32
154
- msgid "MashShare Settings"
155
- msgstr ""
156
-
157
- #: includes/admin/admin-pages.php:32
158
- #: includes/admin/settings/register-settings.php:744
159
- msgid "Settings"
160
- msgstr ""
161
-
162
- #: includes/admin/admin-pages.php:33
163
- msgid "MashShare Add Ons"
164
- msgstr ""
165
-
166
- #: includes/admin/admin-pages.php:33
167
- msgid "Get Add Ons"
168
- msgstr ""
169
-
170
- #: includes/admin/admin-pages.php:34
171
- msgid "MashShare Tools"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:34
175
- msgid "Im/Export & System"
176
- msgstr ""
177
-
178
- #: includes/admin/meta-box/inc/core.php:40
179
- msgid "Documentation"
180
- msgstr ""
181
-
182
- #: includes/admin/meta-box/inc/core.php:41
183
- msgid "Extensions"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/field.php:196
187
- msgid "+ Add more"
188
- msgstr ""
189
-
190
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
191
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
192
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
193
- msgid "Delete"
194
- msgstr ""
195
-
196
- #: includes/admin/meta-box/inc/fields/button.php:29
197
- msgid "Click me"
198
- msgstr ""
199
-
200
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
201
- msgid "Yes"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
205
- msgid "No"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/file-input.php:18
209
- msgid "Select File"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/file-input.php:41
213
- #: includes/admin/meta-box/inc/fields/select.php:91
214
- msgid "Select"
215
- msgstr ""
216
-
217
- #: includes/admin/meta-box/inc/fields/file-input.php:43
218
- msgid "Remove"
219
- msgstr ""
220
-
221
- #: includes/admin/meta-box/inc/fields/file.php:15
222
- msgid "You may only upload maximum %d file"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file.php:16
226
- msgid "You may only upload maximum %d files"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:83
230
- msgid "Error: Cannot delete file"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:96
234
- msgctxt "file upload"
235
- msgid "Upload Files"
236
- msgstr ""
237
-
238
- #: includes/admin/meta-box/inc/fields/file.php:97
239
- msgctxt "file upload"
240
- msgid "+ Add new file"
241
- msgstr ""
242
-
243
- #: includes/admin/meta-box/inc/fields/file.php:153
244
- msgctxt "file upload"
245
- msgid "Delete"
246
- msgstr ""
247
-
248
- #: includes/admin/meta-box/inc/fields/file.php:154
249
- msgctxt "file upload"
250
- msgid "Edit"
251
- msgstr ""
252
-
253
- #: includes/admin/meta-box/inc/fields/image.php:61
254
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
255
- msgctxt "image upload"
256
- msgid "Upload Images"
257
- msgstr ""
258
-
259
- #: includes/admin/meta-box/inc/fields/image.php:62
260
- msgctxt "image upload"
261
- msgid "+ Add new image"
262
- msgstr ""
263
-
264
- #: includes/admin/meta-box/inc/fields/image.php:124
265
- msgctxt "image upload"
266
- msgid "Delete"
267
- msgstr ""
268
-
269
- #: includes/admin/meta-box/inc/fields/image.php:125
270
- msgctxt "image upload"
271
- msgid "Edit"
272
- msgstr ""
273
-
274
- #: includes/admin/meta-box/inc/fields/key-value.php:19
275
- msgid "Key"
276
- msgstr ""
277
-
278
- #: includes/admin/meta-box/inc/fields/key-value.php:25
279
- msgid "Value"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/map.php:49
283
- msgid "Find Address"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/media.php:18
287
- msgctxt "media"
288
- msgid "Add Image"
289
- msgstr ""
290
-
291
- #: includes/admin/meta-box/inc/fields/media.php:19
292
- msgctxt "media"
293
- msgid " file"
294
- msgstr ""
295
-
296
- #: includes/admin/meta-box/inc/fields/media.php:20
297
- msgctxt "media"
298
- msgid " files"
299
- msgstr ""
300
-
301
- #: includes/admin/meta-box/inc/fields/media.php:21
302
- msgctxt "media"
303
- msgid "Remove"
304
- msgstr ""
305
-
306
- #: includes/admin/meta-box/inc/fields/media.php:22
307
- msgctxt "media"
308
- msgid "Edit"
309
- msgstr ""
310
-
311
- #: includes/admin/meta-box/inc/fields/media.php:23
312
- msgctxt "media"
313
- msgid "View"
314
- msgstr ""
315
-
316
- #: includes/admin/meta-box/inc/fields/media.php:24
317
- msgctxt "media"
318
- msgid "No Title"
319
- msgstr ""
320
-
321
- #: includes/admin/meta-box/inc/fields/media.php:27
322
- msgctxt "media"
323
- msgid "Select Files"
324
- msgstr ""
325
-
326
- #: includes/admin/meta-box/inc/fields/media.php:28
327
- msgctxt "media"
328
- msgid "Drop files here to upload"
329
- msgstr ""
330
-
331
- #: includes/admin/meta-box/inc/fields/oembed.php:65
332
- msgid "Embed HTML not available."
333
- msgstr ""
334
-
335
- #: includes/admin/meta-box/inc/fields/oembed.php:84
336
- msgid "Preview"
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/post.php:34
340
- msgid "Select a post"
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/post.php:38
344
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
345
- msgid "Select a %s"
346
- msgstr ""
347
-
348
- #: includes/admin/meta-box/inc/fields/select.php:91
349
- msgid "All"
350
- msgstr ""
351
-
352
- #: includes/admin/meta-box/inc/fields/select.php:91
353
- msgid "None"
354
- msgstr ""
355
-
356
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
357
- msgid "Select a term"
358
- msgstr ""
359
-
360
- #: includes/admin/meta-box/inc/fields/user.php:34
361
- msgid "Select an user"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/validation.php:42
365
- msgid "Please correct the errors highlighted below and try again."
366
- msgstr ""
367
-
368
- #: includes/admin/plugins.php:27
369
- msgid "General Settings"
370
- msgstr ""
371
-
372
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
373
- msgid "Getting Started"
374
- msgstr ""
375
-
376
- #: includes/admin/plugins.php:51
377
- msgid "Add Ons"
378
- msgstr ""
379
-
380
- #: includes/admin/settings/contextual-help.php:29
381
- msgid "For more information:"
382
- msgstr ""
383
-
384
- #: includes/admin/settings/contextual-help.php:30
385
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
386
- msgstr ""
387
-
388
- #: includes/admin/settings/contextual-help.php:32
389
- msgid ""
390
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
391
- "href=\"%s\">extensions</a>."
392
- msgstr ""
393
-
394
- #: includes/admin/settings/contextual-help.php:41
395
- msgid "General"
396
- msgstr ""
397
-
398
- #: includes/admin/settings/contextual-help.php:42
399
- msgid "This screen provides the most basic settings for configuring Mashshare."
400
- msgstr ""
401
-
402
- #: includes/admin/settings/display-settings.php:133
403
- msgid "MashShare "
404
- msgstr ""
405
-
406
- #: includes/admin/settings/metabox-settings.php:102
407
- msgid "Social Media Image"
408
- msgstr ""
409
-
410
- #: includes/admin/settings/metabox-settings.php:103
411
- msgid ""
412
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
413
- "1200px x 630px. Aspect ratio 1.9:1"
414
- msgstr ""
415
-
416
- #: includes/admin/settings/metabox-settings.php:112
417
- msgid "Social Media Title"
418
- msgstr ""
419
-
420
- #: includes/admin/settings/metabox-settings.php:113
421
- msgid ""
422
- "This title is used by the open graph meta tag og:title and will be used when "
423
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
424
- "to use "
425
- msgstr ""
426
-
427
- #: includes/admin/settings/metabox-settings.php:113
428
- msgid "Yoast Facebook / SEO title"
429
- msgstr ""
430
-
431
- #: includes/admin/settings/metabox-settings.php:121
432
- msgid "Social Media Description"
433
- msgstr ""
434
-
435
- #: includes/admin/settings/metabox-settings.php:122
436
- msgid ""
437
- "This description is used by the open graph meta tag og:description and will "
438
- "be used when users share your content on Facebook, LinkedIn, and Google "
439
- "Plus. Leave this blank to use "
440
- msgstr ""
441
-
442
- #: includes/admin/settings/metabox-settings.php:122
443
- msgid "Yoast Facebook open graph description or the post excerpt."
444
- msgstr ""
445
-
446
- #: includes/admin/settings/metabox-settings.php:135
447
- msgid "Pinterest Image"
448
- msgstr ""
449
-
450
- #: includes/admin/settings/metabox-settings.php:135
451
- #: includes/admin/settings/metabox-settings.php:145
452
- msgid ""
453
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
454
- "the Pinterest Features"
455
- msgstr ""
456
-
457
- #: includes/admin/settings/metabox-settings.php:136
458
- msgid ""
459
- "Pinned images need to be more vertical than horizontal in orientation. Use "
460
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
461
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
462
- msgstr ""
463
-
464
- #: includes/admin/settings/metabox-settings.php:145
465
- msgid "Pinterest Description"
466
- msgstr ""
467
-
468
- #: includes/admin/settings/metabox-settings.php:146
469
- msgid ""
470
- "Place a customized message that will be used when this post is shared on "
471
- "Pinterest. Leave this blank to use the "
472
- msgstr ""
473
-
474
- #: includes/admin/settings/metabox-settings.php:146
475
- msgid "Yoast SEO title"
476
- msgstr ""
477
-
478
- #: includes/admin/settings/metabox-settings.php:146
479
- msgid "the post title"
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:154
483
- msgid "Custom Tweet"
484
- msgstr ""
485
-
486
- #: includes/admin/settings/metabox-settings.php:176
487
- msgid ""
488
- "Publish the post and validate if the open graph meta tags on your site are "
489
- "correct! Incorrect data can result in wrong share description, title or "
490
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
491
- "new scrape information\" to purge the facebook cache."
492
- msgstr ""
493
-
494
- #: includes/admin/settings/metabox-settings.php:206
495
- msgid "Based on your username @"
496
- msgstr ""
497
-
498
- #: includes/admin/settings/metabox-settings.php:206
499
- msgid " ,the shortened post url and the current content above"
500
- msgstr ""
501
-
502
- #: includes/admin/settings/metabox-settings.php:208
503
- msgid "Based on the shortened post url and the current content above"
504
- msgstr ""
505
-
506
- #: includes/admin/settings/metabox-settings.php:210
507
- msgid " your tweet has a maximum of 140 characters. "
508
- msgstr ""
509
-
510
- #: includes/admin/settings/metabox-settings.php:212
511
- msgid "If this is left blank the post title will be used. "
512
- msgstr ""
513
-
514
- #: includes/admin/settings/metabox-settings.php:214
515
- msgid ""
516
- "If this is left blank the Yoast Twitter Title or post title will be used. "
517
- msgstr ""
518
-
519
- #: includes/admin/settings/register-settings.php:120
520
- msgid "General settings"
521
- msgstr ""
522
-
523
- #: includes/admin/settings/register-settings.php:126
524
- msgid "Share counts"
525
- msgstr ""
526
-
527
- #: includes/admin/settings/register-settings.php:127
528
- msgid ""
529
- "<i>MashEngine</i> collects shares by direct request to social networks. "
530
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
531
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
532
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
533
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
534
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
535
- "this free service to get the twitter share count. Visit the newsharecount "
536
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
537
- "Thats it!"
538
- msgstr ""
539
-
540
- #: includes/admin/settings/register-settings.php:136
541
- msgid "Sharedcount.com API Key"
542
- msgstr ""
543
-
544
- #: includes/admin/settings/register-settings.php:137
545
- msgid ""
546
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
547
- "\">SharedCount.com</a> for 10.000 free daily requests."
548
- msgstr ""
549
-
550
- #: includes/admin/settings/register-settings.php:143
551
- msgid "Sharedcount.com endpint"
552
- msgstr ""
553
-
554
- #: includes/admin/settings/register-settings.php:144
555
- msgid ""
556
- "The SharedCount Domain your API key is configured to query. For example, "
557
- "free.sharedcount.com. This may update automatically if configured "
558
- "incorrectly."
559
- msgstr ""
560
-
561
- #: includes/admin/settings/register-settings.php:151
562
- msgid "Caching Method"
563
- msgstr ""
564
-
565
- #: includes/admin/settings/register-settings.php:152
566
- msgid ""
567
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
568
- "visitor and refreshes the cache asyncronously in the background. New posts "
569
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
570
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
571
- "cache while page is loading and adds a little extra time during inital page "
572
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
573
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
574
- "was using before version 3.0"
575
- msgstr ""
576
-
577
- #: includes/admin/settings/register-settings.php:161
578
- msgid "Cache expiration"
579
- msgstr ""
580
-
581
- #: includes/admin/settings/register-settings.php:162
582
- msgid ""
583
- "Shares are counted for posts after a certain time and counts are not updated "
584
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
585
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
586
- "more"
587
- msgstr ""
588
-
589
- #: includes/admin/settings/register-settings.php:168
590
- msgid "Facebook Count"
591
- msgstr ""
592
-
593
- #: includes/admin/settings/register-settings.php:169
594
- msgid ""
595
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
596
- "the pure share count"
597
- msgstr ""
598
-
599
- #: includes/admin/settings/register-settings.php:179
600
- msgid "Fake Share counts"
601
- msgstr ""
602
-
603
- #: includes/admin/settings/register-settings.php:180
604
- msgid ""
605
- "This number will be aggregated to all your share counts and is multiplied "
606
- "with a post specific factor. (Number of post title words divided with 10)."
607
- msgstr ""
608
-
609
- #: includes/admin/settings/register-settings.php:186
610
- msgid "Disable Sharecount"
611
- msgstr ""
612
-
613
- #: includes/admin/settings/register-settings.php:187
614
- msgid ""
615
- "Use this when curl() is not supported on your server or share counts should "
616
- "not counted. This mode does not call the database and no SQL queries are "
617
- "generated. (Only less performance benefit. All db requests are cached) "
618
- "Default: false"
619
- msgstr ""
620
-
621
- #: includes/admin/settings/register-settings.php:192
622
- msgid "Hide Sharecount"
623
- msgstr ""
624
-
625
- #: includes/admin/settings/register-settings.php:193
626
- msgid ""
627
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
628
- "specific post are not shown until the share count of this number is reached."
629
- msgstr ""
630
-
631
- #: includes/admin/settings/register-settings.php:199
632
- msgid "Execution Order"
633
- msgstr ""
634
-
635
- #: includes/admin/settings/register-settings.php:200
636
- msgid ""
637
- "If you use other content plugins you can define here the execution order. "
638
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
639
- "executed before any other plugin (When the other plugin is not overwriting "
640
- "our execution order). Default is \"1000\""
641
- msgstr ""
642
-
643
- #: includes/admin/settings/register-settings.php:207
644
- msgid "JavaScript in Footer"
645
- msgstr ""
646
-
647
- #: includes/admin/settings/register-settings.php:208
648
- msgid ""
649
- "Enable this to load all *.js files into footer. Make sure your theme uses "
650
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
651
- msgstr ""
652
-
653
- #: includes/admin/settings/register-settings.php:213
654
- msgid "JS & CSS Everywhere"
655
- msgstr ""
656
-
657
- #: includes/admin/settings/register-settings.php:214
658
- msgid ""
659
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
660
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
661
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
662
- "option to allow conditional loading so MashShare's JS and CSS files are "
663
- "loaded only on pages where MashShare is used."
664
- msgstr ""
665
-
666
- #: includes/admin/settings/register-settings.php:220
667
- msgid "Twitter Popup disabled"
668
- msgstr ""
669
-
670
- #: includes/admin/settings/register-settings.php:221
671
- msgid ""
672
- "Check this box if your twitter popup is openening twice. This happens "
673
- "sometimes when you are using any third party twitter plugin or the twitter "
674
- "SDK on your website."
675
- msgstr ""
676
-
677
- #: includes/admin/settings/register-settings.php:227
678
- msgid "Remove Data on Uninstall?"
679
- msgstr ""
680
-
681
- #: includes/admin/settings/register-settings.php:228
682
- msgid ""
683
- "Check this box if you would like Mashshare to completely remove all of its "
684
- "data when the plugin is deleted."
685
- msgstr ""
686
-
687
- #: includes/admin/settings/register-settings.php:233
688
- msgid "Allow Usage Tracking"
689
- msgstr ""
690
-
691
- #: includes/admin/settings/register-settings.php:234
692
- #: includes/admin/tracking.php:265
693
- msgid ""
694
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
695
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
696
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
697
- "Ons</a>. No sensitive data is tracked."
698
- msgstr ""
699
-
700
- #: includes/admin/settings/register-settings.php:239
701
- msgid "User Roles Options Visibility"
702
- msgstr ""
703
-
704
- #: includes/admin/settings/register-settings.php:240
705
- msgid ""
706
- "Select user roles which can see page and post MashShare Social Sharing Meta "
707
- "Box Options"
708
- msgstr ""
709
-
710
- #: includes/admin/settings/register-settings.php:243
711
- msgid "Select User Roles"
712
- msgstr ""
713
-
714
- #: includes/admin/settings/register-settings.php:244
715
- msgid "All Roles"
716
- msgstr ""
717
-
718
- #: includes/admin/settings/register-settings.php:248
719
- #: includes/admin/settings/register-settings.php:294
720
- #: includes/admin/settings/register-settings.php:751
721
- msgid "Social Networks"
722
- msgstr ""
723
-
724
- #: includes/admin/settings/register-settings.php:254
725
- msgid "Facebook page url"
726
- msgstr ""
727
-
728
- #: includes/admin/settings/register-settings.php:255
729
- msgid "Optional: The url of the main facebook account connected with this site"
730
- msgstr ""
731
-
732
- #: includes/admin/settings/register-settings.php:261
733
- msgid "Facebook App ID"
734
- msgstr ""
735
-
736
- #: includes/admin/settings/register-settings.php:262
737
- msgid ""
738
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
739
- "a>"
740
- msgstr ""
741
-
742
- #: includes/admin/settings/register-settings.php:268
743
- #: includes/admin/settings/user-profiles.php:19
744
- msgid "Twitter Username"
745
- msgstr ""
746
-
747
- #: includes/admin/settings/register-settings.php:269
748
- msgid ""
749
- "<strong>Optional:</strong> Using your twitter username results in via "
750
- "@username"
751
- msgstr ""
752
-
753
- #: includes/admin/settings/register-settings.php:275
754
- msgid "Twitter Card"
755
- msgstr ""
756
-
757
- #: includes/admin/settings/register-settings.php:276
758
- msgid ""
759
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
760
- "plugin their meta tags will be removed and MashShare will use existing meta "
761
- "data from these plugins. Default: On"
762
- msgstr ""
763
-
764
- #: includes/admin/settings/register-settings.php:281
765
- msgid "Open Graph Meta Tags"
766
- msgstr ""
767
-
768
- #: includes/admin/settings/register-settings.php:282
769
- msgid ""
770
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
771
- "Jetpack plugin their meta tags will be removed and MashShare will use "
772
- "existing meta data from these plugins."
773
- msgstr ""
774
-
775
- #: includes/admin/settings/register-settings.php:287
776
- msgid "Large Buttons"
777
- msgstr ""
778
-
779
- #: includes/admin/settings/register-settings.php:288
780
- msgid ""
781
- "Specify how many services and social networks are visible before the \"Plus"
782
- "\" Button is shown. This buttons turn into large prominent buttons."
783
- msgstr ""
784
-
785
- #: includes/admin/settings/register-settings.php:295
786
- msgid ""
787
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
788
- "that should be visible. <br>Activate more networks than number of \"Large "
789
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
790
- msgstr ""
791
-
792
- #: includes/admin/settings/register-settings.php:321
793
- msgid "Short URL Integration"
794
- msgstr ""
795
-
796
- #: includes/admin/settings/register-settings.php:328
797
- msgid "Bitly access token"
798
- msgstr ""
799
-
800
- #: includes/admin/settings/register-settings.php:329
801
- msgid ""
802
- "If you like to use bitly.com shortener get a free bitly access token <a href="
803
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
804
- "ly/cXnjsh. "
805
- msgstr ""
806
-
807
- #: includes/admin/settings/register-settings.php:335
808
- msgid "Google API Key (goo.gl)"
809
- msgstr ""
810
-
811
- #: includes/admin/settings/register-settings.php:342
812
- msgid "Shorturl method"
813
- msgstr ""
814
-
815
- #: includes/admin/settings/register-settings.php:343
816
- msgid ""
817
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
818
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
819
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
820
- "%s ?p=101</i>"
821
- msgstr ""
822
-
823
- #: includes/admin/settings/register-settings.php:354
824
- msgid "Important: Read this!"
825
- msgstr ""
826
-
827
- #: includes/admin/settings/register-settings.php:355
828
- msgid ""
829
- "<strong>The post short url is NOT generated immediatly after first page load!"
830
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
831
- "12 hours for old posts."
832
- msgstr ""
833
-
834
- #: includes/admin/settings/register-settings.php:374
835
- msgid "Customization"
836
- msgstr ""
837
-
838
- #: includes/admin/settings/register-settings.php:380
839
- msgid "Round up Shares"
840
- msgstr ""
841
-
842
- #: includes/admin/settings/register-settings.php:381
843
- msgid ""
844
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
845
- "as 1M"
846
- msgstr ""
847
-
848
- #: includes/admin/settings/register-settings.php:386
849
- msgid "Animate Shares"
850
- msgstr ""
851
-
852
- #: includes/admin/settings/register-settings.php:387
853
- msgid ""
854
- "Count up the shares on page loading with a nice looking animation effect. "
855
- "This only works on singular pages and not with shortcodes generated buttons."
856
- msgstr ""
857
-
858
- #: includes/admin/settings/register-settings.php:392
859
- #: includes/class-mashsb-shared-posts-widget.php:53
860
- msgid "Share Count Label"
861
- msgstr ""
862
-
863
- #: includes/admin/settings/register-settings.php:393
864
- msgid ""
865
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
866
- msgstr ""
867
-
868
- #: includes/admin/settings/register-settings.php:408
869
- msgid "Share Count Color"
870
- msgstr ""
871
-
872
- #: includes/admin/settings/register-settings.php:409
873
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
874
- msgstr ""
875
-
876
- #: includes/admin/settings/register-settings.php:416
877
- msgid "Border Radius"
878
- msgstr ""
879
-
880
- #: includes/admin/settings/register-settings.php:417
881
- msgid ""
882
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
883
- "results in circle buttons. Default value is zero."
884
- msgstr ""
885
-
886
- #: includes/admin/settings/register-settings.php:447
887
- msgid "Button Width"
888
- msgstr ""
889
-
890
- #: includes/admin/settings/register-settings.php:448
891
- msgid "Minimum with of the large share buttons in pixels"
892
- msgstr ""
893
-
894
- #: includes/admin/settings/register-settings.php:455
895
- msgid "Share Button Style"
896
- msgstr ""
897
-
898
- #: includes/admin/settings/register-settings.php:456
899
- msgid "Change visual appearance of the share buttons."
900
- msgstr ""
901
-
902
- #: includes/admin/settings/register-settings.php:467
903
- msgid "Small Share Buttons"
904
- msgstr ""
905
-
906
- #: includes/admin/settings/register-settings.php:468
907
- msgid ""
908
- "All buttons will be shown as pure small icons without any text on desktop "
909
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
910
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
911
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
912
- msgstr ""
913
-
914
- #: includes/admin/settings/register-settings.php:479
915
- msgid "Subscribe Button"
916
- msgstr ""
917
-
918
- #: includes/admin/settings/register-settings.php:480
919
- msgid ""
920
- "Specify if the subscribe button is opening a content box below the button or "
921
- "if the button is linked to the \"subscribe url\" below."
922
- msgstr ""
923
-
924
- #: includes/admin/settings/register-settings.php:490
925
- msgid "Subscribe URL"
926
- msgstr ""
927
-
928
- #: includes/admin/settings/register-settings.php:491
929
- msgid ""
930
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
931
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
932
- msgstr ""
933
-
934
- #: includes/admin/settings/register-settings.php:498
935
- msgid "Additional Content"
936
- msgstr ""
937
-
938
- #: includes/admin/settings/register-settings.php:504
939
- msgid "Content Above"
940
- msgstr ""
941
-
942
- #: includes/admin/settings/register-settings.php:505
943
- msgid ""
944
- "Content appearing above share buttons. Use HTML, formulars, like button, "
945
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
946
- msgstr ""
947
-
948
- #: includes/admin/settings/register-settings.php:512
949
- msgid "Content Below"
950
- msgstr ""
951
-
952
- #: includes/admin/settings/register-settings.php:513
953
- msgid ""
954
- "Content appearing below share buttons. Use HTML, formulars, like button, "
955
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
956
- msgstr ""
957
-
958
- #: includes/admin/settings/register-settings.php:520
959
- msgid "Subscribe content"
960
- msgstr ""
961
-
962
- #: includes/admin/settings/register-settings.php:521
963
- msgid ""
964
- "Define the content of the opening toggle subscribe window here. Use "
965
- "formulars, like button, links or any other text. Shortcodes are supported, e."
966
- "g.: [contact-form-7]"
967
- msgstr ""
968
-
969
- #: includes/admin/settings/register-settings.php:530
970
- msgid "Custom Styles"
971
- msgstr ""
972
-
973
- #: includes/admin/settings/register-settings.php:536
974
- msgid "General CSS"
975
- msgstr ""
976
-
977
- #: includes/admin/settings/register-settings.php:537
978
- msgid ""
979
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
980
- "it's loaded as an additonal inline css on your site"
981
- msgstr ""
982
-
983
- #: includes/admin/settings/register-settings.php:544
984
- msgid "AMP CSS"
985
- msgstr ""
986
-
987
- #: includes/admin/settings/register-settings.php:545
988
- msgid ""
989
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
990
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
991
- "\">AMP Plugin</a> installed."
992
- msgstr ""
993
-
994
- #: includes/admin/settings/register-settings.php:562
995
- msgid "Location & Position"
996
- msgstr ""
997
-
998
- #: includes/admin/settings/register-settings.php:568
999
- msgid "Position"
1000
- msgstr ""
1001
-
1002
- #: includes/admin/settings/register-settings.php:569
1003
- msgid ""
1004
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1005
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1006
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1007
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1008
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1009
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1010
- "shortcodes</a>."
1011
- msgstr ""
1012
-
1013
- #: includes/admin/settings/register-settings.php:572
1014
- msgid "Top"
1015
- msgstr ""
1016
-
1017
- #: includes/admin/settings/register-settings.php:573
1018
- msgid "Bottom"
1019
- msgstr ""
1020
-
1021
- #: includes/admin/settings/register-settings.php:574
1022
- msgid "Top and Bottom"
1023
- msgstr ""
1024
-
1025
- #: includes/admin/settings/register-settings.php:575
1026
- msgid "Manual"
1027
- msgstr ""
1028
-
1029
- #: includes/admin/settings/register-settings.php:580
1030
- msgid "Post Types"
1031
- msgstr ""
1032
-
1033
- #: includes/admin/settings/register-settings.php:581
1034
- msgid ""
1035
- "Select on which post_types the share buttons appear. These values will be "
1036
- "ignored when \"manual\" position is selected."
1037
- msgstr ""
1038
-
1039
- #: includes/admin/settings/register-settings.php:586
1040
- msgid "Exclude from post id"
1041
- msgstr ""
1042
-
1043
- #: includes/admin/settings/register-settings.php:587
1044
- msgid ""
1045
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1046
- "by a comma, e.g. 23, 63, 114 "
1047
- msgstr ""
1048
-
1049
- #: includes/admin/settings/register-settings.php:593
1050
- msgid "Categories"
1051
- msgstr ""
1052
-
1053
- #: includes/admin/settings/register-settings.php:594
1054
- msgid ""
1055
- "Enable this checkbox to enable Mashshare on categories with multiple "
1056
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1057
- msgstr ""
1058
-
1059
- #: includes/admin/settings/register-settings.php:600
1060
- msgid "Frontpage"
1061
- msgstr ""
1062
-
1063
- #: includes/admin/settings/register-settings.php:601
1064
- msgid "Enable share buttons on frontpage"
1065
- msgstr ""
1066
-
1067
- #: includes/admin/settings/register-settings.php:606
1068
- msgid "Debug"
1069
- msgstr ""
1070
-
1071
- #: includes/admin/settings/register-settings.php:612
1072
- msgid "Disable Cache"
1073
- msgstr ""
1074
-
1075
- #: includes/admin/settings/register-settings.php:618
1076
- msgid "Attention: Purge DB Cache"
1077
- msgstr ""
1078
-
1079
- #: includes/admin/settings/register-settings.php:624
1080
- msgid "Debug mode"
1081
- msgstr ""
1082
-
1083
- #: includes/admin/settings/register-settings.php:633
1084
- msgid "Activate your Add-Ons"
1085
- msgstr ""
1086
-
1087
- #: includes/admin/settings/register-settings.php:634
1088
- msgid ""
1089
- "Activate your license key to get important security and feature updates for "
1090
- "your Add-On!"
1091
- msgstr ""
1092
-
1093
- #: includes/admin/settings/register-settings.php:634
1094
- msgid ""
1095
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1096
- "Add-Ons</a>"
1097
- msgstr ""
1098
-
1099
- #: includes/admin/settings/register-settings.php:714
1100
- msgid "Settings updated."
1101
- msgstr ""
1102
-
1103
- #: includes/admin/settings/register-settings.php:747
1104
- msgid "Visual"
1105
- msgstr ""
1106
-
1107
- #: includes/admin/settings/register-settings.php:755
1108
- msgid "Add-On Settings"
1109
- msgstr ""
1110
-
1111
- #: includes/admin/settings/register-settings.php:759
1112
- msgid "Licenses"
1113
- msgstr ""
1114
-
1115
- #: includes/admin/settings/register-settings.php:761
1116
- msgid "Get More Add-Ons"
1117
- msgstr ""
1118
-
1119
- #: includes/admin/settings/register-settings.php:1012
1120
- msgid ""
1121
- "The callback function used for the <strong>%s</strong> setting is missing."
1122
- msgstr ""
1123
-
1124
- #: includes/admin/settings/register-settings.php:1152
1125
- msgid "Upload File"
1126
- msgstr ""
1127
-
1128
- #: includes/admin/settings/register-settings.php:1255
1129
- msgid ""
1130
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1131
- "title=\"Renew your license key\">renew your license key</a>."
1132
- msgstr ""
1133
-
1134
- #: includes/admin/settings/register-settings.php:1268
1135
- msgid ""
1136
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1137
- "account page\">visit your account page</a> and verify it."
1138
- msgstr ""
1139
-
1140
- #: includes/admin/settings/register-settings.php:1281
1141
- msgid ""
1142
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1143
- "title=\"Visit account page\">visit your account page</a> to manage your "
1144
- "license key URLs."
1145
- msgstr ""
1146
-
1147
- #: includes/admin/settings/register-settings.php:1293
1148
- msgid "This is not a %s."
1149
- msgstr ""
1150
-
1151
- #: includes/admin/settings/register-settings.php:1302
1152
- msgid ""
1153
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1154
- "possible upgrades</a> now."
1155
- msgstr ""
1156
-
1157
- #: includes/admin/settings/register-settings.php:1324
1158
- msgid "License key never expires."
1159
- msgstr ""
1160
-
1161
- #: includes/admin/settings/register-settings.php:1331
1162
- msgid ""
1163
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1164
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1165
- msgstr ""
1166
-
1167
- #: includes/admin/settings/register-settings.php:1341
1168
- msgid "Your license key expires on %s."
1169
- msgstr ""
1170
-
1171
- #: includes/admin/settings/register-settings.php:1363
1172
- msgid "Deactivate License"
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1427
1176
- msgid "Social Network"
1177
- msgstr ""
1178
-
1179
- #: includes/admin/settings/register-settings.php:1428
1180
- msgid "Status"
1181
- msgstr ""
1182
-
1183
- #: includes/admin/settings/register-settings.php:1429
1184
- msgid "Custom Label"
1185
- msgstr ""
1186
-
1187
- #: includes/admin/settings/register-settings.php:1497
1188
- msgid "Select Image"
1189
- msgstr ""
1190
-
1191
- #: includes/admin/settings/register-settings.php:1636
1192
- msgid "All Services"
1193
- msgstr ""
1194
-
1195
- #: includes/admin/settings/register-settings.php:1653
1196
- msgid ""
1197
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1198
- "after doing the job."
1199
- msgstr ""
1200
-
1201
- #: includes/admin/settings/register-settings.php:1666
1202
- msgid "Transient Cache disabled! Enable it for performance increase."
1203
- msgstr ""
1204
-
1205
- #: includes/admin/settings/register-settings.php:1679
1206
- msgid ""
1207
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1208
- "content/plugins/mashsharer/logs/"
1209
- msgstr ""
1210
-
1211
- #: includes/admin/settings/user-profiles.php:16
1212
- msgid "MashShare Social Media Integration"
1213
- msgstr ""
1214
-
1215
- #: includes/admin/settings/user-profiles.php:22
1216
- msgid "Your Twitter username (without the @ symbol)"
1217
- msgstr ""
1218
-
1219
- #: includes/admin/settings/user-profiles.php:24
1220
- msgid "Facebook Author URL"
1221
- msgstr ""
1222
-
1223
- #: includes/admin/settings/user-profiles.php:27
1224
- msgid "URL to your Facebok profile."
1225
- msgstr ""
1226
-
1227
- #: includes/admin/tools.php:68
1228
- msgid "Import/Export"
1229
- msgstr ""
1230
-
1231
- #: includes/admin/tools.php:69
1232
- msgid "System Info"
1233
- msgstr ""
1234
-
1235
- #: includes/admin/tools.php:91
1236
- msgid "Export Settings"
1237
- msgstr ""
1238
-
1239
- #: includes/admin/tools.php:93
1240
- msgid ""
1241
- "Export the Mashshare settings for this site as a .json file. This allows you "
1242
- "to easily import the configuration into another site."
1243
- msgstr ""
1244
-
1245
- #: includes/admin/tools.php:99
1246
- msgid "Export"
1247
- msgstr ""
1248
-
1249
- #: includes/admin/tools.php:106
1250
- msgid "Import Settings"
1251
- msgstr ""
1252
-
1253
- #: includes/admin/tools.php:108
1254
- msgid ""
1255
- "Import the Mashshare settings from a .json file. This file can be obtained "
1256
- "by exporting the settings on another site using the form above."
1257
- msgstr ""
1258
-
1259
- #: includes/admin/tools.php:116
1260
- msgid "Import"
1261
- msgstr ""
1262
-
1263
- #: includes/admin/tools.php:218
1264
- msgid "Please upload a valid .json file"
1265
- msgstr ""
1266
-
1267
- #: includes/admin/tools.php:224
1268
- msgid "Please upload a file to import"
1269
- msgstr ""
1270
-
1271
- #: includes/admin/tracking.php:266
1272
- msgid "Allow"
1273
- msgstr ""
1274
-
1275
- #: includes/admin/tracking.php:267
1276
- msgid "Do not allow"
1277
- msgstr ""
1278
-
1279
- #: includes/admin/welcome.php:51
1280
- msgid "Welcome to MashShare"
1281
- msgstr ""
1282
-
1283
- #: includes/admin/welcome.php:56
1284
- msgid "MashShare Changelog"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/welcome.php:61
1288
- msgid "Quickstart"
1289
- msgstr ""
1290
-
1291
- #: includes/admin/welcome.php:66
1292
- msgid "The people that build MashShare"
1293
- msgstr ""
1294
-
1295
- #: includes/admin/welcome.php:128
1296
- msgid ""
1297
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1298
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1299
- "needs."
1300
- msgstr ""
1301
-
1302
- #: includes/admin/welcome.php:131
1303
- msgid "Create Your First Social Sharing Button"
1304
- msgstr ""
1305
-
1306
- #: includes/admin/welcome.php:137
1307
- msgid "Settings &rarr; Social Networks"
1308
- msgstr ""
1309
-
1310
- #: includes/admin/welcome.php:138
1311
- msgid ""
1312
- "The Social Network menu is your general access point for activating the "
1313
- "desired share buttons and for customizing the share button label"
1314
- msgstr ""
1315
-
1316
- #: includes/admin/welcome.php:139
1317
- msgid "Settings &rarr; Location & Position"
1318
- msgstr ""
1319
-
1320
- #: includes/admin/welcome.php:140
1321
- msgid ""
1322
- "Select the location and exact position of the share buttons within your "
1323
- "content"
1324
- msgstr ""
1325
-
1326
- #: includes/admin/welcome.php:141
1327
- msgid "You are done! Easy, isn't it?"
1328
- msgstr ""
1329
-
1330
- #: includes/admin/welcome.php:149
1331
- msgid "Display a Most Shared Post Widget"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/welcome.php:155
1335
- msgid "Appearance &rarr; Widgets"
1336
- msgstr ""
1337
-
1338
- #: includes/admin/welcome.php:157
1339
- msgid ""
1340
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1341
- "br>into the desired widget location and save it"
1342
- msgstr ""
1343
-
1344
- #: includes/admin/welcome.php:165
1345
- msgid "Content Shortcodes"
1346
- msgstr ""
1347
-
1348
- #: includes/admin/welcome.php:172
1349
- msgid ""
1350
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1351
- "bold;\">[mashshare]</i>."
1352
- msgstr ""
1353
-
1354
- #: includes/admin/welcome.php:174
1355
- msgid ""
1356
- "Paste the shortcode in content of your posts or pages with the post editor "
1357
- "at the place you want the share buttons appear"
1358
- msgstr ""
1359
-
1360
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1361
- msgid ""
1362
- "There are various parameters you can use for the mashshare shortcode. Find a "
1363
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1364
- "\">here</a>"
1365
- msgstr ""
1366
-
1367
- #: includes/admin/welcome.php:182
1368
- msgid "PHP Template Shortcode"
1369
- msgstr ""
1370
-
1371
- #: includes/admin/welcome.php:188
1372
- msgid ""
1373
- "Add MashShare directly into your theme template files with using the PHP "
1374
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1375
- "&gt;</i>"
1376
- msgstr ""
1377
-
1378
- #: includes/admin/welcome.php:199
1379
- msgid "Need Help?"
1380
- msgstr ""
1381
-
1382
- #: includes/admin/welcome.php:202
1383
- msgid "Great Support"
1384
- msgstr ""
1385
-
1386
- #: includes/admin/welcome.php:203
1387
- msgid ""
1388
- "We do our best to provide the best support we can. If you encounter a "
1389
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1390
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1391
- msgstr ""
1392
-
1393
- #: includes/admin/welcome.php:227
1394
- msgid "Welcome to MashShare %s"
1395
- msgstr ""
1396
-
1397
- #: includes/admin/welcome.php:229
1398
- msgid ""
1399
- "Thank you for updating to the latest version! MashShare is installed and "
1400
- "ready to grow your traffic from social networks!"
1401
- msgstr ""
1402
-
1403
- #: includes/admin/welcome.php:252
1404
- msgid "1. Asyncronous Share Count Aggregation"
1405
- msgstr ""
1406
-
1407
- #: includes/admin/welcome.php:256
1408
- msgid ""
1409
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1410
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1411
- "will be aggregated only after page loading and never while page loads. This "
1412
- "is a huge performance update."
1413
- msgstr ""
1414
-
1415
- #: includes/admin/welcome.php:259
1416
- msgid "2. Open Graph and Twitter Card Integration"
1417
- msgstr ""
1418
-
1419
- #: includes/admin/welcome.php:260
1420
- msgid ""
1421
- "Use open graph and twitter card to specify the content you like to share. If "
1422
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1423
- "and extend it with custom data to get the maximum out of your valuable "
1424
- "content."
1425
- msgstr ""
1426
-
1427
- #: includes/admin/welcome.php:267
1428
- msgid "3. Responsive Buttons per default"
1429
- msgstr ""
1430
-
1431
- #: includes/admin/welcome.php:268
1432
- msgid ""
1433
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1434
- "buttons look great on mobile and desktop devices."
1435
- msgstr ""
1436
-
1437
- #: includes/admin/welcome.php:270
1438
- msgid "4. Share Count Dashboard"
1439
- msgstr ""
1440
-
1441
- #: includes/admin/welcome.php:271
1442
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1443
- msgstr ""
1444
-
1445
- #: includes/admin/welcome.php:275
1446
- msgid "5. A much cleaner user interface"
1447
- msgstr ""
1448
-
1449
- #: includes/admin/welcome.php:276
1450
- msgid ""
1451
- "We spent a lot of time to make useful first time settings and improved the "
1452
- "user interface for an easier experience."
1453
- msgstr ""
1454
-
1455
- #: includes/admin/welcome.php:284
1456
- msgid "Additional Updates"
1457
- msgstr ""
1458
-
1459
- #: includes/admin/welcome.php:287
1460
- msgid "Developer Friendly"
1461
- msgstr ""
1462
-
1463
- #: includes/admin/welcome.php:288
1464
- msgid ""
1465
- "Are you a theme developer and want to use MashShare as your build in share "
1466
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1467
- "instructions.</a>"
1468
- msgstr ""
1469
-
1470
- #: includes/admin/welcome.php:291
1471
- msgid "Check Open Graph Settings"
1472
- msgstr ""
1473
-
1474
- #: includes/admin/welcome.php:292
1475
- msgid ""
1476
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1477
- "data on your site is working as expected or conflicts with other open graph "
1478
- "data."
1479
- msgstr ""
1480
-
1481
- #: includes/admin/welcome.php:295
1482
- msgid "Use Yoast SEO Title"
1483
- msgstr ""
1484
-
1485
- #: includes/admin/welcome.php:296
1486
- msgid "MashShare will use the YOAST SEO title if it is defined."
1487
- msgstr ""
1488
-
1489
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1490
- msgid "Go to MashShare Settings"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/welcome.php:303
1494
- msgid "View the Full Changelog"
1495
- msgstr ""
1496
-
1497
- #: includes/admin/welcome.php:326
1498
- msgid "What's New"
1499
- msgstr ""
1500
-
1501
- #: includes/admin/welcome.php:332
1502
- msgid "Credits"
1503
- msgstr ""
1504
-
1505
- #: includes/admin/welcome.php:353
1506
- msgid ""
1507
- "Mashshare is created by a René Hermenau and developers all over the world "
1508
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1509
- "WordPress."
1510
- msgstr ""
1511
-
1512
- #: includes/admin/welcome.php:356
1513
- msgid ""
1514
- " If you want to be credited here participate on the development and make "
1515
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1516
- msgstr ""
1517
-
1518
- #: includes/admin/welcome.php:381
1519
- msgid "View %s"
1520
- msgstr ""
1521
-
1522
- #: includes/admin/welcome.php:436
1523
- msgid "No valid changelog was found."
1524
- msgstr ""
1525
-
1526
- #: includes/admin/welcome.php:469
1527
- msgid "Full Changelog"
1528
- msgstr ""
1529
-
1530
- #: includes/class-mashsb-html-elements.php:43
1531
- msgctxt "all dropdown items"
1532
- msgid "All"
1533
- msgstr ""
1534
-
1535
- #: includes/class-mashsb-html-elements.php:44
1536
- msgctxt "no dropdown items"
1537
- msgid "None"
1538
- msgstr ""
1539
-
1540
- #: includes/class-mashsb-html-elements.php:232
1541
- msgid "Enter username"
1542
- msgstr ""
1543
-
1544
- #: includes/class-mashsb-license-handler.php:177
1545
- msgid "%1$s License Key"
1546
- msgstr ""
1547
-
1548
- #: includes/class-mashsb-license-handler.php:210
1549
- msgid ""
1550
- "Enter your extension license keys here to receive updates for purchased "
1551
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1552
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1553
- msgstr ""
1554
-
1555
- #: includes/class-mashsb-license-handler.php:319
1556
- msgid "Nonce verification failed"
1557
- msgstr ""
1558
-
1559
- #: includes/class-mashsb-license-handler.php:436
1560
- msgid ""
1561
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1562
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1563
- "issue."
1564
- msgstr ""
1565
-
1566
- #: includes/class-mashsb-license-handler.php:475
1567
- msgid "Enter valid license key for automatic updates."
1568
- msgstr ""
1569
-
1570
- #: includes/class-mashsb-shared-posts-widget.php:13
1571
- msgid "Mashshare - Most Shared Posts"
1572
- msgstr ""
1573
-
1574
- #: includes/class-mashsb-shared-posts-widget.php:37
1575
- msgid "Widget Title"
1576
- msgstr ""
1577
-
1578
- #: includes/class-mashsb-shared-posts-widget.php:42
1579
- msgid "How many posts to display?"
1580
- msgstr ""
1581
-
1582
- #: includes/class-mashsb-shared-posts-widget.php:46
1583
- msgid "Show Shares? Say \"No\" when using fake shares!"
1584
- msgstr ""
1585
-
1586
- #: includes/class-mashsb-shared-posts-widget.php:61
1587
- msgid "Show shares below post title"
1588
- msgstr ""
1589
-
1590
- #: includes/class-mashsb-shared-posts-widget.php:68
1591
- msgid "Time period and age of posts"
1592
- msgstr ""
1593
-
1594
- #: includes/template-functions.php:249
1595
- msgid "Subscribe"
1596
- msgstr ""
1597
-
1598
- #: includes/template-functions.php:517
1599
- msgid "SHARES"
1600
- msgstr ""
1601
-
1602
- #: includes/template-functions.php:1114
1603
- msgid "Page not found"
1604
- msgstr ""
1605
-
1606
- #. translators: %s: search phrase
1607
- #: includes/template-functions.php:1119
1608
- msgid "Search Results for &#8220;%s&#8221;"
1609
- msgstr ""
1610
-
1611
- #: includes/template-functions.php:1152
1612
- msgctxt "yearly archives date format"
1613
- msgid "Y"
1614
- msgstr ""
1615
-
1616
- #: includes/template-functions.php:1154
1617
- msgctxt "monthly archives date format"
1618
- msgid "F Y"
1619
- msgstr ""
1620
-
1621
- #: mashshare.php:124 mashshare.php:136
1622
- msgid "Cheatin&#8217; huh?"
1623
- msgstr ""
1624
-
1625
- #: templates/sidebar.php:17
1626
- msgid "Increase your Shares and Social Traffic"
1627
- msgstr ""
1628
-
1629
- #: templates/sidebar.php:20
1630
- msgid "Get 20% Off!"
1631
- msgstr ""
1632
-
1633
- #: templates/sidebar.php:25
1634
- msgid ""
1635
- "Submit your name and email and we'll send you a coupon for 20% off your "
1636
- "upgrade to the pro version."
1637
- msgstr ""
1638
-
1639
- #: templates/sidebar.php:29
1640
- msgid "Your Email"
1641
- msgstr ""
1642
-
1643
- #: templates/sidebar.php:33
1644
- msgid "First Name"
1645
- msgstr ""
1646
-
1647
- #: templates/sidebar.php:37
1648
- msgid "Last Name"
1649
- msgstr ""
1650
-
1651
- #: templates/sidebar.php:44
1652
- msgid "Send me the coupon"
1653
- msgstr ""
1654
-
1655
- #: templates/sidebar.php:48
1656
- msgid ""
1657
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1658
- "click anytime."
1659
- msgstr ""
1660
-
1661
- #. Plugin Name of the plugin/theme
1662
- msgid "Mashshare Share Buttons"
1663
- msgstr ""
1664
-
1665
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1666
- #. Plugin URI of the plugin/theme
1667
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1668
- #. Author URI of the plugin/theme
1669
- msgid "https://www.mashshare.net"
1670
- msgstr ""
1671
-
1672
- #. Description of the plugin/theme
1673
- msgid ""
1674
- "Mashshare is a Share functionality inspired by the the great website "
1675
- "Mashable for Facebook and Twitter. More networks available."
1676
- msgstr ""
1677
-
1678
- #. Author of the plugin/theme
1679
- msgid "René Hermenau"
1680
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-et_ET.mo DELETED
Binary file
languages/mashsb-et_ET.po DELETED
@@ -1,1681 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Henry Kaasik <kaasikhenry@gmail.com>, 2015
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mashshare\n"
8
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
9
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
10
- "PO-Revision-Date: 2016-06-23 19:09+0100\n"
11
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
12
- "Language-Team: Estonian (Estonia) (http://www.transifex.com/renehermenau/"
13
- "mashshare/language/et_EE/)\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Language: et_EE\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 1.5.6\n"
20
-
21
- msgid ""
22
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
23
- "Highly customizable Social Media ecosystem"
24
- msgstr ""
25
-
26
- #: includes/MASHSB_SL_Plugin_Updater.php:177
27
- msgid ""
28
- "There is a new version of %1$s available. <a target=\"_blank\" class="
29
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
30
- msgstr ""
31
-
32
- #: includes/MASHSB_SL_Plugin_Updater.php:184
33
- msgid ""
34
- "There is a new version of %1$s available. <a target=\"_blank\" class="
35
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
36
- "\">update now</a>."
37
- msgstr ""
38
-
39
- #: includes/MASHSB_SL_Plugin_Updater.php:324
40
- msgid "You do not have permission to install plugin updates"
41
- msgstr ""
42
-
43
- #: includes/MASHSB_SL_Plugin_Updater.php:324
44
- #: includes/class-mashsb-license-handler.php:319
45
- msgid "Error"
46
- msgstr ""
47
-
48
- #: includes/admin/add-ons.php:27
49
- msgid "Add Ons for Mashshare"
50
- msgstr ""
51
-
52
- #: includes/admin/add-ons.php:28
53
- msgid "Visit Website"
54
- msgstr ""
55
-
56
- #: includes/admin/add-ons.php:28
57
- msgid "See Details"
58
- msgstr ""
59
-
60
- #: includes/admin/add-ons.php:30
61
- msgid "These add-ons extend the functionality of Mashshare."
62
- msgstr ""
63
-
64
- #: includes/admin/add-ons.php:54
65
- msgid ""
66
- "There was an error retrieving the Mashshare addon list from the server. "
67
- "Please try again later."
68
- msgstr ""
69
-
70
- #: includes/admin/admin-footer.php:24
71
- msgid ""
72
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
73
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
74
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
75
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
76
- "\"blank\">Documentation</a>"
77
- msgstr ""
78
-
79
- #: includes/admin/admin-notices.php:51
80
- msgid ""
81
- "MashShare needs the PHP extension cURL which is not installed on your "
82
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
83
- "to be able to collect share count of your posts."
84
- msgstr ""
85
-
86
- #: includes/admin/admin-notices.php:58
87
- msgid ""
88
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
89
- ">Social Networks</a> and enable at least one Social Network."
90
- msgstr ""
91
-
92
- #: includes/admin/admin-notices.php:64
93
- msgid ""
94
- "Your Sharebar Add-On version is not using new short url mechanism of "
95
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
96
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
97
- "short urls will not stop working in one of the next updates. This requires a "
98
- "valid license of the Sharebar Add-On"
99
- msgstr ""
100
-
101
- #: includes/admin/admin-notices.php:70
102
- msgid ""
103
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
104
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
105
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
106
- "twitter short urls will not stop working in one of the next updates. This "
107
- "requires a valid license of the Floating Sidebar Add-On"
108
- msgstr ""
109
-
110
- #: includes/admin/admin-notices.php:76
111
- msgid ""
112
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
113
- ">Short URL Integration</i></a> and check the Google API key."
114
- msgstr ""
115
-
116
- #: includes/admin/admin-notices.php:82
117
- msgid ""
118
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
119
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
120
- "check the Bitly API key."
121
- msgstr ""
122
-
123
- #: includes/admin/admin-notices.php:88
124
- msgid ""
125
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
126
- "is not longer needed and having it activated leads to duplicate open graph "
127
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
128
- msgstr ""
129
-
130
- #: includes/admin/admin-notices.php:94
131
- msgid ""
132
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
133
- "not longer needed and already built in MashShare. Deactivate it from <a href="
134
- "\"%s\"> Plugin Settings</a> "
135
- msgstr ""
136
-
137
- #: includes/admin/admin-notices.php:100
138
- msgid ""
139
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
140
- "\">Permalinks</a> must be enabled to count shares. Share count is "
141
- "deactivated until you have fixed this."
142
- msgstr ""
143
-
144
- #: includes/admin/admin-notices.php:258
145
- msgid ""
146
- "There seems to be an issue with the server. Please try again in a few "
147
- "minutes."
148
- msgstr ""
149
-
150
- #: includes/admin/admin-pages.php:31
151
- msgid "MashShare"
152
- msgstr ""
153
-
154
- #: includes/admin/admin-pages.php:32
155
- msgid "MashShare Settings"
156
- msgstr ""
157
-
158
- #: includes/admin/admin-pages.php:32
159
- #: includes/admin/settings/register-settings.php:744
160
- msgid "Settings"
161
- msgstr "Seaded"
162
-
163
- #: includes/admin/admin-pages.php:33
164
- msgid "MashShare Add Ons"
165
- msgstr ""
166
-
167
- #: includes/admin/admin-pages.php:33
168
- msgid "Get Add Ons"
169
- msgstr ""
170
-
171
- #: includes/admin/admin-pages.php:34
172
- msgid "MashShare Tools"
173
- msgstr ""
174
-
175
- #: includes/admin/admin-pages.php:34
176
- msgid "Im/Export & System"
177
- msgstr ""
178
-
179
- #: includes/admin/meta-box/inc/core.php:40
180
- msgid "Documentation"
181
- msgstr ""
182
-
183
- #: includes/admin/meta-box/inc/core.php:41
184
- msgid "Extensions"
185
- msgstr ""
186
-
187
- #: includes/admin/meta-box/inc/field.php:196
188
- msgid "+ Add more"
189
- msgstr ""
190
-
191
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
192
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
193
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
194
- msgid "Delete"
195
- msgstr ""
196
-
197
- #: includes/admin/meta-box/inc/fields/button.php:29
198
- msgid "Click me"
199
- msgstr ""
200
-
201
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
202
- msgid "Yes"
203
- msgstr ""
204
-
205
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
206
- msgid "No"
207
- msgstr ""
208
-
209
- #: includes/admin/meta-box/inc/fields/file-input.php:18
210
- msgid "Select File"
211
- msgstr ""
212
-
213
- #: includes/admin/meta-box/inc/fields/file-input.php:41
214
- #: includes/admin/meta-box/inc/fields/select.php:91
215
- msgid "Select"
216
- msgstr ""
217
-
218
- #: includes/admin/meta-box/inc/fields/file-input.php:43
219
- msgid "Remove"
220
- msgstr ""
221
-
222
- #: includes/admin/meta-box/inc/fields/file.php:15
223
- msgid "You may only upload maximum %d file"
224
- msgstr ""
225
-
226
- #: includes/admin/meta-box/inc/fields/file.php:16
227
- msgid "You may only upload maximum %d files"
228
- msgstr ""
229
-
230
- #: includes/admin/meta-box/inc/fields/file.php:83
231
- msgid "Error: Cannot delete file"
232
- msgstr ""
233
-
234
- #: includes/admin/meta-box/inc/fields/file.php:96
235
- msgctxt "file upload"
236
- msgid "Upload Files"
237
- msgstr ""
238
-
239
- #: includes/admin/meta-box/inc/fields/file.php:97
240
- msgctxt "file upload"
241
- msgid "+ Add new file"
242
- msgstr ""
243
-
244
- #: includes/admin/meta-box/inc/fields/file.php:153
245
- msgctxt "file upload"
246
- msgid "Delete"
247
- msgstr ""
248
-
249
- #: includes/admin/meta-box/inc/fields/file.php:154
250
- msgctxt "file upload"
251
- msgid "Edit"
252
- msgstr ""
253
-
254
- #: includes/admin/meta-box/inc/fields/image.php:61
255
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
256
- msgctxt "image upload"
257
- msgid "Upload Images"
258
- msgstr ""
259
-
260
- #: includes/admin/meta-box/inc/fields/image.php:62
261
- msgctxt "image upload"
262
- msgid "+ Add new image"
263
- msgstr ""
264
-
265
- #: includes/admin/meta-box/inc/fields/image.php:124
266
- msgctxt "image upload"
267
- msgid "Delete"
268
- msgstr ""
269
-
270
- #: includes/admin/meta-box/inc/fields/image.php:125
271
- msgctxt "image upload"
272
- msgid "Edit"
273
- msgstr ""
274
-
275
- #: includes/admin/meta-box/inc/fields/key-value.php:19
276
- msgid "Key"
277
- msgstr ""
278
-
279
- #: includes/admin/meta-box/inc/fields/key-value.php:25
280
- msgid "Value"
281
- msgstr ""
282
-
283
- #: includes/admin/meta-box/inc/fields/map.php:49
284
- msgid "Find Address"
285
- msgstr ""
286
-
287
- #: includes/admin/meta-box/inc/fields/media.php:18
288
- msgctxt "media"
289
- msgid "Add Image"
290
- msgstr ""
291
-
292
- #: includes/admin/meta-box/inc/fields/media.php:19
293
- msgctxt "media"
294
- msgid " file"
295
- msgstr ""
296
-
297
- #: includes/admin/meta-box/inc/fields/media.php:20
298
- msgctxt "media"
299
- msgid " files"
300
- msgstr ""
301
-
302
- #: includes/admin/meta-box/inc/fields/media.php:21
303
- msgctxt "media"
304
- msgid "Remove"
305
- msgstr ""
306
-
307
- #: includes/admin/meta-box/inc/fields/media.php:22
308
- msgctxt "media"
309
- msgid "Edit"
310
- msgstr ""
311
-
312
- #: includes/admin/meta-box/inc/fields/media.php:23
313
- msgctxt "media"
314
- msgid "View"
315
- msgstr ""
316
-
317
- #: includes/admin/meta-box/inc/fields/media.php:24
318
- msgctxt "media"
319
- msgid "No Title"
320
- msgstr ""
321
-
322
- #: includes/admin/meta-box/inc/fields/media.php:27
323
- msgctxt "media"
324
- msgid "Select Files"
325
- msgstr ""
326
-
327
- #: includes/admin/meta-box/inc/fields/media.php:28
328
- msgctxt "media"
329
- msgid "Drop files here to upload"
330
- msgstr ""
331
-
332
- #: includes/admin/meta-box/inc/fields/oembed.php:65
333
- msgid "Embed HTML not available."
334
- msgstr ""
335
-
336
- #: includes/admin/meta-box/inc/fields/oembed.php:84
337
- msgid "Preview"
338
- msgstr ""
339
-
340
- #: includes/admin/meta-box/inc/fields/post.php:34
341
- msgid "Select a post"
342
- msgstr ""
343
-
344
- #: includes/admin/meta-box/inc/fields/post.php:38
345
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
346
- msgid "Select a %s"
347
- msgstr ""
348
-
349
- #: includes/admin/meta-box/inc/fields/select.php:91
350
- msgid "All"
351
- msgstr ""
352
-
353
- #: includes/admin/meta-box/inc/fields/select.php:91
354
- msgid "None"
355
- msgstr ""
356
-
357
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
358
- msgid "Select a term"
359
- msgstr ""
360
-
361
- #: includes/admin/meta-box/inc/fields/user.php:34
362
- msgid "Select an user"
363
- msgstr ""
364
-
365
- #: includes/admin/meta-box/inc/validation.php:42
366
- msgid "Please correct the errors highlighted below and try again."
367
- msgstr ""
368
-
369
- #: includes/admin/plugins.php:27
370
- msgid "General Settings"
371
- msgstr "Üldised seaded"
372
-
373
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
374
- msgid "Getting Started"
375
- msgstr "Alustamine"
376
-
377
- #: includes/admin/plugins.php:51
378
- msgid "Add Ons"
379
- msgstr "Lisad"
380
-
381
- #: includes/admin/settings/contextual-help.php:29
382
- msgid "For more information:"
383
- msgstr "Lisa informatsioon"
384
-
385
- #: includes/admin/settings/contextual-help.php:30
386
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
387
- msgstr ""
388
-
389
- #: includes/admin/settings/contextual-help.php:32
390
- msgid ""
391
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
392
- "href=\"%s\">extensions</a>."
393
- msgstr ""
394
-
395
- #: includes/admin/settings/contextual-help.php:41
396
- msgid "General"
397
- msgstr "Üldine"
398
-
399
- #: includes/admin/settings/contextual-help.php:42
400
- msgid "This screen provides the most basic settings for configuring Mashshare."
401
- msgstr ""
402
-
403
- #: includes/admin/settings/display-settings.php:133
404
- msgid "MashShare "
405
- msgstr ""
406
-
407
- #: includes/admin/settings/metabox-settings.php:102
408
- msgid "Social Media Image"
409
- msgstr ""
410
-
411
- #: includes/admin/settings/metabox-settings.php:103
412
- msgid ""
413
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
414
- "1200px x 630px. Aspect ratio 1.9:1"
415
- msgstr ""
416
-
417
- #: includes/admin/settings/metabox-settings.php:112
418
- msgid "Social Media Title"
419
- msgstr ""
420
-
421
- #: includes/admin/settings/metabox-settings.php:113
422
- msgid ""
423
- "This title is used by the open graph meta tag og:title and will be used when "
424
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
425
- "to use "
426
- msgstr ""
427
-
428
- #: includes/admin/settings/metabox-settings.php:113
429
- msgid "Yoast Facebook / SEO title"
430
- msgstr ""
431
-
432
- #: includes/admin/settings/metabox-settings.php:121
433
- msgid "Social Media Description"
434
- msgstr ""
435
-
436
- #: includes/admin/settings/metabox-settings.php:122
437
- msgid ""
438
- "This description is used by the open graph meta tag og:description and will "
439
- "be used when users share your content on Facebook, LinkedIn, and Google "
440
- "Plus. Leave this blank to use "
441
- msgstr ""
442
-
443
- #: includes/admin/settings/metabox-settings.php:122
444
- msgid "Yoast Facebook open graph description or the post excerpt."
445
- msgstr ""
446
-
447
- #: includes/admin/settings/metabox-settings.php:135
448
- msgid "Pinterest Image"
449
- msgstr ""
450
-
451
- #: includes/admin/settings/metabox-settings.php:135
452
- #: includes/admin/settings/metabox-settings.php:145
453
- msgid ""
454
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
455
- "the Pinterest Features"
456
- msgstr ""
457
-
458
- #: includes/admin/settings/metabox-settings.php:136
459
- msgid ""
460
- "Pinned images need to be more vertical than horizontal in orientation. Use "
461
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
462
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
463
- msgstr ""
464
-
465
- #: includes/admin/settings/metabox-settings.php:145
466
- msgid "Pinterest Description"
467
- msgstr ""
468
-
469
- #: includes/admin/settings/metabox-settings.php:146
470
- msgid ""
471
- "Place a customized message that will be used when this post is shared on "
472
- "Pinterest. Leave this blank to use the "
473
- msgstr ""
474
-
475
- #: includes/admin/settings/metabox-settings.php:146
476
- msgid "Yoast SEO title"
477
- msgstr ""
478
-
479
- #: includes/admin/settings/metabox-settings.php:146
480
- msgid "the post title"
481
- msgstr ""
482
-
483
- #: includes/admin/settings/metabox-settings.php:154
484
- msgid "Custom Tweet"
485
- msgstr ""
486
-
487
- #: includes/admin/settings/metabox-settings.php:176
488
- msgid ""
489
- "Publish the post and validate if the open graph meta tags on your site are "
490
- "correct! Incorrect data can result in wrong share description, title or "
491
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
492
- "new scrape information\" to purge the facebook cache."
493
- msgstr ""
494
-
495
- #: includes/admin/settings/metabox-settings.php:206
496
- msgid "Based on your username @"
497
- msgstr ""
498
-
499
- #: includes/admin/settings/metabox-settings.php:206
500
- msgid " ,the shortened post url and the current content above"
501
- msgstr ""
502
-
503
- #: includes/admin/settings/metabox-settings.php:208
504
- msgid "Based on the shortened post url and the current content above"
505
- msgstr ""
506
-
507
- #: includes/admin/settings/metabox-settings.php:210
508
- msgid " your tweet has a maximum of 140 characters. "
509
- msgstr ""
510
-
511
- #: includes/admin/settings/metabox-settings.php:212
512
- msgid "If this is left blank the post title will be used. "
513
- msgstr ""
514
-
515
- #: includes/admin/settings/metabox-settings.php:214
516
- msgid ""
517
- "If this is left blank the Yoast Twitter Title or post title will be used. "
518
- msgstr ""
519
-
520
- #: includes/admin/settings/register-settings.php:120
521
- msgid "General settings"
522
- msgstr ""
523
-
524
- #: includes/admin/settings/register-settings.php:126
525
- msgid "Share counts"
526
- msgstr ""
527
-
528
- #: includes/admin/settings/register-settings.php:127
529
- msgid ""
530
- "<i>MashEngine</i> collects shares by direct request to social networks. "
531
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
532
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
533
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
534
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
535
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
536
- "this free service to get the twitter share count. Visit the newsharecount "
537
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
538
- "Thats it!"
539
- msgstr ""
540
-
541
- #: includes/admin/settings/register-settings.php:136
542
- msgid "Sharedcount.com API Key"
543
- msgstr ""
544
-
545
- #: includes/admin/settings/register-settings.php:137
546
- msgid ""
547
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
548
- "\">SharedCount.com</a> for 10.000 free daily requests."
549
- msgstr ""
550
-
551
- #: includes/admin/settings/register-settings.php:143
552
- msgid "Sharedcount.com endpint"
553
- msgstr ""
554
-
555
- #: includes/admin/settings/register-settings.php:144
556
- msgid ""
557
- "The SharedCount Domain your API key is configured to query. For example, "
558
- "free.sharedcount.com. This may update automatically if configured "
559
- "incorrectly."
560
- msgstr ""
561
-
562
- #: includes/admin/settings/register-settings.php:151
563
- msgid "Caching Method"
564
- msgstr ""
565
-
566
- #: includes/admin/settings/register-settings.php:152
567
- msgid ""
568
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
569
- "visitor and refreshes the cache asyncronously in the background. New posts "
570
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
571
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
572
- "cache while page is loading and adds a little extra time during inital page "
573
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
574
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
575
- "was using before version 3.0"
576
- msgstr ""
577
-
578
- #: includes/admin/settings/register-settings.php:161
579
- msgid "Cache expiration"
580
- msgstr ""
581
-
582
- #: includes/admin/settings/register-settings.php:162
583
- msgid ""
584
- "Shares are counted for posts after a certain time and counts are not updated "
585
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
586
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
587
- "more"
588
- msgstr ""
589
-
590
- #: includes/admin/settings/register-settings.php:168
591
- msgid "Facebook Count"
592
- msgstr ""
593
-
594
- #: includes/admin/settings/register-settings.php:169
595
- msgid ""
596
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
597
- "the pure share count"
598
- msgstr ""
599
-
600
- #: includes/admin/settings/register-settings.php:179
601
- msgid "Fake Share counts"
602
- msgstr ""
603
-
604
- #: includes/admin/settings/register-settings.php:180
605
- msgid ""
606
- "This number will be aggregated to all your share counts and is multiplied "
607
- "with a post specific factor. (Number of post title words divided with 10)."
608
- msgstr ""
609
-
610
- #: includes/admin/settings/register-settings.php:186
611
- msgid "Disable Sharecount"
612
- msgstr ""
613
-
614
- #: includes/admin/settings/register-settings.php:187
615
- msgid ""
616
- "Use this when curl() is not supported on your server or share counts should "
617
- "not counted. This mode does not call the database and no SQL queries are "
618
- "generated. (Only less performance benefit. All db requests are cached) "
619
- "Default: false"
620
- msgstr ""
621
-
622
- #: includes/admin/settings/register-settings.php:192
623
- msgid "Hide Sharecount"
624
- msgstr ""
625
-
626
- #: includes/admin/settings/register-settings.php:193
627
- msgid ""
628
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
629
- "specific post are not shown until the share count of this number is reached."
630
- msgstr ""
631
-
632
- #: includes/admin/settings/register-settings.php:199
633
- msgid "Execution Order"
634
- msgstr ""
635
-
636
- #: includes/admin/settings/register-settings.php:200
637
- msgid ""
638
- "If you use other content plugins you can define here the execution order. "
639
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
640
- "executed before any other plugin (When the other plugin is not overwriting "
641
- "our execution order). Default is \"1000\""
642
- msgstr ""
643
-
644
- #: includes/admin/settings/register-settings.php:207
645
- msgid "JavaScript in Footer"
646
- msgstr ""
647
-
648
- #: includes/admin/settings/register-settings.php:208
649
- msgid ""
650
- "Enable this to load all *.js files into footer. Make sure your theme uses "
651
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
652
- msgstr ""
653
-
654
- #: includes/admin/settings/register-settings.php:213
655
- msgid "JS & CSS Everywhere"
656
- msgstr ""
657
-
658
- #: includes/admin/settings/register-settings.php:214
659
- msgid ""
660
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
661
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
662
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
663
- "option to allow conditional loading so MashShare's JS and CSS files are "
664
- "loaded only on pages where MashShare is used."
665
- msgstr ""
666
-
667
- #: includes/admin/settings/register-settings.php:220
668
- msgid "Twitter Popup disabled"
669
- msgstr ""
670
-
671
- #: includes/admin/settings/register-settings.php:221
672
- msgid ""
673
- "Check this box if your twitter popup is openening twice. This happens "
674
- "sometimes when you are using any third party twitter plugin or the twitter "
675
- "SDK on your website."
676
- msgstr ""
677
-
678
- #: includes/admin/settings/register-settings.php:227
679
- msgid "Remove Data on Uninstall?"
680
- msgstr ""
681
-
682
- #: includes/admin/settings/register-settings.php:228
683
- msgid ""
684
- "Check this box if you would like Mashshare to completely remove all of its "
685
- "data when the plugin is deleted."
686
- msgstr ""
687
-
688
- #: includes/admin/settings/register-settings.php:233
689
- msgid "Allow Usage Tracking"
690
- msgstr ""
691
-
692
- #: includes/admin/settings/register-settings.php:234
693
- #: includes/admin/tracking.php:265
694
- msgid ""
695
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
696
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
697
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
698
- "Ons</a>. No sensitive data is tracked."
699
- msgstr ""
700
-
701
- #: includes/admin/settings/register-settings.php:239
702
- msgid "User Roles Options Visibility"
703
- msgstr ""
704
-
705
- #: includes/admin/settings/register-settings.php:240
706
- msgid ""
707
- "Select user roles which can see page and post MashShare Social Sharing Meta "
708
- "Box Options"
709
- msgstr ""
710
-
711
- #: includes/admin/settings/register-settings.php:243
712
- msgid "Select User Roles"
713
- msgstr ""
714
-
715
- #: includes/admin/settings/register-settings.php:244
716
- msgid "All Roles"
717
- msgstr ""
718
-
719
- #: includes/admin/settings/register-settings.php:248
720
- #: includes/admin/settings/register-settings.php:294
721
- #: includes/admin/settings/register-settings.php:751
722
- msgid "Social Networks"
723
- msgstr ""
724
-
725
- #: includes/admin/settings/register-settings.php:254
726
- msgid "Facebook page url"
727
- msgstr ""
728
-
729
- #: includes/admin/settings/register-settings.php:255
730
- msgid "Optional: The url of the main facebook account connected with this site"
731
- msgstr ""
732
-
733
- #: includes/admin/settings/register-settings.php:261
734
- msgid "Facebook App ID"
735
- msgstr ""
736
-
737
- #: includes/admin/settings/register-settings.php:262
738
- msgid ""
739
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
740
- "a>"
741
- msgstr ""
742
-
743
- #: includes/admin/settings/register-settings.php:268
744
- #: includes/admin/settings/user-profiles.php:19
745
- msgid "Twitter Username"
746
- msgstr ""
747
-
748
- #: includes/admin/settings/register-settings.php:269
749
- msgid ""
750
- "<strong>Optional:</strong> Using your twitter username results in via "
751
- "@username"
752
- msgstr ""
753
-
754
- #: includes/admin/settings/register-settings.php:275
755
- msgid "Twitter Card"
756
- msgstr ""
757
-
758
- #: includes/admin/settings/register-settings.php:276
759
- msgid ""
760
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
761
- "plugin their meta tags will be removed and MashShare will use existing meta "
762
- "data from these plugins. Default: On"
763
- msgstr ""
764
-
765
- #: includes/admin/settings/register-settings.php:281
766
- msgid "Open Graph Meta Tags"
767
- msgstr ""
768
-
769
- #: includes/admin/settings/register-settings.php:282
770
- msgid ""
771
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
772
- "Jetpack plugin their meta tags will be removed and MashShare will use "
773
- "existing meta data from these plugins."
774
- msgstr ""
775
-
776
- #: includes/admin/settings/register-settings.php:287
777
- msgid "Large Buttons"
778
- msgstr ""
779
-
780
- #: includes/admin/settings/register-settings.php:288
781
- msgid ""
782
- "Specify how many services and social networks are visible before the \"Plus"
783
- "\" Button is shown. This buttons turn into large prominent buttons."
784
- msgstr ""
785
-
786
- #: includes/admin/settings/register-settings.php:295
787
- msgid ""
788
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
789
- "that should be visible. <br>Activate more networks than number of \"Large "
790
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
791
- msgstr ""
792
-
793
- #: includes/admin/settings/register-settings.php:321
794
- msgid "Short URL Integration"
795
- msgstr ""
796
-
797
- #: includes/admin/settings/register-settings.php:328
798
- msgid "Bitly access token"
799
- msgstr ""
800
-
801
- #: includes/admin/settings/register-settings.php:329
802
- msgid ""
803
- "If you like to use bitly.com shortener get a free bitly access token <a href="
804
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
805
- "ly/cXnjsh. "
806
- msgstr ""
807
-
808
- #: includes/admin/settings/register-settings.php:335
809
- msgid "Google API Key (goo.gl)"
810
- msgstr ""
811
-
812
- #: includes/admin/settings/register-settings.php:342
813
- msgid "Shorturl method"
814
- msgstr ""
815
-
816
- #: includes/admin/settings/register-settings.php:343
817
- msgid ""
818
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
819
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
820
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
821
- "%s ?p=101</i>"
822
- msgstr ""
823
-
824
- #: includes/admin/settings/register-settings.php:354
825
- msgid "Important: Read this!"
826
- msgstr ""
827
-
828
- #: includes/admin/settings/register-settings.php:355
829
- msgid ""
830
- "<strong>The post short url is NOT generated immediatly after first page load!"
831
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
832
- "12 hours for old posts."
833
- msgstr ""
834
-
835
- #: includes/admin/settings/register-settings.php:374
836
- msgid "Customization"
837
- msgstr ""
838
-
839
- #: includes/admin/settings/register-settings.php:380
840
- msgid "Round up Shares"
841
- msgstr ""
842
-
843
- #: includes/admin/settings/register-settings.php:381
844
- msgid ""
845
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
846
- "as 1M"
847
- msgstr ""
848
-
849
- #: includes/admin/settings/register-settings.php:386
850
- msgid "Animate Shares"
851
- msgstr ""
852
-
853
- #: includes/admin/settings/register-settings.php:387
854
- msgid ""
855
- "Count up the shares on page loading with a nice looking animation effect. "
856
- "This only works on singular pages and not with shortcodes generated buttons."
857
- msgstr ""
858
-
859
- #: includes/admin/settings/register-settings.php:392
860
- #: includes/class-mashsb-shared-posts-widget.php:53
861
- msgid "Share Count Label"
862
- msgstr ""
863
-
864
- #: includes/admin/settings/register-settings.php:393
865
- msgid ""
866
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
867
- msgstr ""
868
-
869
- #: includes/admin/settings/register-settings.php:408
870
- msgid "Share Count Color"
871
- msgstr ""
872
-
873
- #: includes/admin/settings/register-settings.php:409
874
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
875
- msgstr ""
876
-
877
- #: includes/admin/settings/register-settings.php:416
878
- msgid "Border Radius"
879
- msgstr ""
880
-
881
- #: includes/admin/settings/register-settings.php:417
882
- msgid ""
883
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
884
- "results in circle buttons. Default value is zero."
885
- msgstr ""
886
-
887
- #: includes/admin/settings/register-settings.php:447
888
- msgid "Button Width"
889
- msgstr ""
890
-
891
- #: includes/admin/settings/register-settings.php:448
892
- msgid "Minimum with of the large share buttons in pixels"
893
- msgstr ""
894
-
895
- #: includes/admin/settings/register-settings.php:455
896
- msgid "Share Button Style"
897
- msgstr ""
898
-
899
- #: includes/admin/settings/register-settings.php:456
900
- msgid "Change visual appearance of the share buttons."
901
- msgstr ""
902
-
903
- #: includes/admin/settings/register-settings.php:467
904
- msgid "Small Share Buttons"
905
- msgstr ""
906
-
907
- #: includes/admin/settings/register-settings.php:468
908
- msgid ""
909
- "All buttons will be shown as pure small icons without any text on desktop "
910
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
911
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
912
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
913
- msgstr ""
914
-
915
- #: includes/admin/settings/register-settings.php:479
916
- msgid "Subscribe Button"
917
- msgstr ""
918
-
919
- #: includes/admin/settings/register-settings.php:480
920
- msgid ""
921
- "Specify if the subscribe button is opening a content box below the button or "
922
- "if the button is linked to the \"subscribe url\" below."
923
- msgstr ""
924
-
925
- #: includes/admin/settings/register-settings.php:490
926
- msgid "Subscribe URL"
927
- msgstr ""
928
-
929
- #: includes/admin/settings/register-settings.php:491
930
- msgid ""
931
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
932
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
933
- msgstr ""
934
-
935
- #: includes/admin/settings/register-settings.php:498
936
- msgid "Additional Content"
937
- msgstr ""
938
-
939
- #: includes/admin/settings/register-settings.php:504
940
- msgid "Content Above"
941
- msgstr ""
942
-
943
- #: includes/admin/settings/register-settings.php:505
944
- msgid ""
945
- "Content appearing above share buttons. Use HTML, formulars, like button, "
946
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
947
- msgstr ""
948
-
949
- #: includes/admin/settings/register-settings.php:512
950
- msgid "Content Below"
951
- msgstr ""
952
-
953
- #: includes/admin/settings/register-settings.php:513
954
- msgid ""
955
- "Content appearing below share buttons. Use HTML, formulars, like button, "
956
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
957
- msgstr ""
958
-
959
- #: includes/admin/settings/register-settings.php:520
960
- msgid "Subscribe content"
961
- msgstr ""
962
-
963
- #: includes/admin/settings/register-settings.php:521
964
- msgid ""
965
- "Define the content of the opening toggle subscribe window here. Use "
966
- "formulars, like button, links or any other text. Shortcodes are supported, e."
967
- "g.: [contact-form-7]"
968
- msgstr ""
969
-
970
- #: includes/admin/settings/register-settings.php:530
971
- msgid "Custom Styles"
972
- msgstr ""
973
-
974
- #: includes/admin/settings/register-settings.php:536
975
- msgid "General CSS"
976
- msgstr ""
977
-
978
- #: includes/admin/settings/register-settings.php:537
979
- msgid ""
980
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
981
- "it's loaded as an additonal inline css on your site"
982
- msgstr ""
983
-
984
- #: includes/admin/settings/register-settings.php:544
985
- msgid "AMP CSS"
986
- msgstr ""
987
-
988
- #: includes/admin/settings/register-settings.php:545
989
- msgid ""
990
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
991
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
992
- "\">AMP Plugin</a> installed."
993
- msgstr ""
994
-
995
- #: includes/admin/settings/register-settings.php:562
996
- msgid "Location & Position"
997
- msgstr ""
998
-
999
- #: includes/admin/settings/register-settings.php:568
1000
- msgid "Position"
1001
- msgstr ""
1002
-
1003
- #: includes/admin/settings/register-settings.php:569
1004
- msgid ""
1005
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1006
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1007
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1008
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1009
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1010
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1011
- "shortcodes</a>."
1012
- msgstr ""
1013
-
1014
- #: includes/admin/settings/register-settings.php:572
1015
- msgid "Top"
1016
- msgstr ""
1017
-
1018
- #: includes/admin/settings/register-settings.php:573
1019
- msgid "Bottom"
1020
- msgstr ""
1021
-
1022
- #: includes/admin/settings/register-settings.php:574
1023
- msgid "Top and Bottom"
1024
- msgstr ""
1025
-
1026
- #: includes/admin/settings/register-settings.php:575
1027
- msgid "Manual"
1028
- msgstr ""
1029
-
1030
- #: includes/admin/settings/register-settings.php:580
1031
- msgid "Post Types"
1032
- msgstr ""
1033
-
1034
- #: includes/admin/settings/register-settings.php:581
1035
- msgid ""
1036
- "Select on which post_types the share buttons appear. These values will be "
1037
- "ignored when \"manual\" position is selected."
1038
- msgstr ""
1039
-
1040
- #: includes/admin/settings/register-settings.php:586
1041
- msgid "Exclude from post id"
1042
- msgstr ""
1043
-
1044
- #: includes/admin/settings/register-settings.php:587
1045
- msgid ""
1046
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1047
- "by a comma, e.g. 23, 63, 114 "
1048
- msgstr ""
1049
-
1050
- #: includes/admin/settings/register-settings.php:593
1051
- msgid "Categories"
1052
- msgstr ""
1053
-
1054
- #: includes/admin/settings/register-settings.php:594
1055
- msgid ""
1056
- "Enable this checkbox to enable Mashshare on categories with multiple "
1057
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1058
- msgstr ""
1059
-
1060
- #: includes/admin/settings/register-settings.php:600
1061
- msgid "Frontpage"
1062
- msgstr ""
1063
-
1064
- #: includes/admin/settings/register-settings.php:601
1065
- msgid "Enable share buttons on frontpage"
1066
- msgstr ""
1067
-
1068
- #: includes/admin/settings/register-settings.php:606
1069
- msgid "Debug"
1070
- msgstr ""
1071
-
1072
- #: includes/admin/settings/register-settings.php:612
1073
- msgid "Disable Cache"
1074
- msgstr ""
1075
-
1076
- #: includes/admin/settings/register-settings.php:618
1077
- msgid "Attention: Purge DB Cache"
1078
- msgstr ""
1079
-
1080
- #: includes/admin/settings/register-settings.php:624
1081
- msgid "Debug mode"
1082
- msgstr ""
1083
-
1084
- #: includes/admin/settings/register-settings.php:633
1085
- msgid "Activate your Add-Ons"
1086
- msgstr ""
1087
-
1088
- #: includes/admin/settings/register-settings.php:634
1089
- msgid ""
1090
- "Activate your license key to get important security and feature updates for "
1091
- "your Add-On!"
1092
- msgstr ""
1093
-
1094
- #: includes/admin/settings/register-settings.php:634
1095
- msgid ""
1096
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1097
- "Add-Ons</a>"
1098
- msgstr ""
1099
-
1100
- #: includes/admin/settings/register-settings.php:714
1101
- msgid "Settings updated."
1102
- msgstr ""
1103
-
1104
- #: includes/admin/settings/register-settings.php:747
1105
- msgid "Visual"
1106
- msgstr ""
1107
-
1108
- #: includes/admin/settings/register-settings.php:755
1109
- msgid "Add-On Settings"
1110
- msgstr ""
1111
-
1112
- #: includes/admin/settings/register-settings.php:759
1113
- msgid "Licenses"
1114
- msgstr ""
1115
-
1116
- #: includes/admin/settings/register-settings.php:761
1117
- msgid "Get More Add-Ons"
1118
- msgstr ""
1119
-
1120
- #: includes/admin/settings/register-settings.php:1012
1121
- msgid ""
1122
- "The callback function used for the <strong>%s</strong> setting is missing."
1123
- msgstr ""
1124
-
1125
- #: includes/admin/settings/register-settings.php:1152
1126
- msgid "Upload File"
1127
- msgstr ""
1128
-
1129
- #: includes/admin/settings/register-settings.php:1255
1130
- msgid ""
1131
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1132
- "title=\"Renew your license key\">renew your license key</a>."
1133
- msgstr ""
1134
-
1135
- #: includes/admin/settings/register-settings.php:1268
1136
- msgid ""
1137
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1138
- "account page\">visit your account page</a> and verify it."
1139
- msgstr ""
1140
-
1141
- #: includes/admin/settings/register-settings.php:1281
1142
- msgid ""
1143
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1144
- "title=\"Visit account page\">visit your account page</a> to manage your "
1145
- "license key URLs."
1146
- msgstr ""
1147
-
1148
- #: includes/admin/settings/register-settings.php:1293
1149
- msgid "This is not a %s."
1150
- msgstr ""
1151
-
1152
- #: includes/admin/settings/register-settings.php:1302
1153
- msgid ""
1154
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1155
- "possible upgrades</a> now."
1156
- msgstr ""
1157
-
1158
- #: includes/admin/settings/register-settings.php:1324
1159
- msgid "License key never expires."
1160
- msgstr ""
1161
-
1162
- #: includes/admin/settings/register-settings.php:1331
1163
- msgid ""
1164
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1165
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1166
- msgstr ""
1167
-
1168
- #: includes/admin/settings/register-settings.php:1341
1169
- msgid "Your license key expires on %s."
1170
- msgstr ""
1171
-
1172
- #: includes/admin/settings/register-settings.php:1363
1173
- msgid "Deactivate License"
1174
- msgstr ""
1175
-
1176
- #: includes/admin/settings/register-settings.php:1427
1177
- msgid "Social Network"
1178
- msgstr ""
1179
-
1180
- #: includes/admin/settings/register-settings.php:1428
1181
- msgid "Status"
1182
- msgstr ""
1183
-
1184
- #: includes/admin/settings/register-settings.php:1429
1185
- msgid "Custom Label"
1186
- msgstr ""
1187
-
1188
- #: includes/admin/settings/register-settings.php:1497
1189
- msgid "Select Image"
1190
- msgstr ""
1191
-
1192
- #: includes/admin/settings/register-settings.php:1636
1193
- msgid "All Services"
1194
- msgstr ""
1195
-
1196
- #: includes/admin/settings/register-settings.php:1653
1197
- msgid ""
1198
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1199
- "after doing the job."
1200
- msgstr ""
1201
-
1202
- #: includes/admin/settings/register-settings.php:1666
1203
- msgid "Transient Cache disabled! Enable it for performance increase."
1204
- msgstr ""
1205
-
1206
- #: includes/admin/settings/register-settings.php:1679
1207
- msgid ""
1208
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1209
- "content/plugins/mashsharer/logs/"
1210
- msgstr ""
1211
-
1212
- #: includes/admin/settings/user-profiles.php:16
1213
- msgid "MashShare Social Media Integration"
1214
- msgstr ""
1215
-
1216
- #: includes/admin/settings/user-profiles.php:22
1217
- msgid "Your Twitter username (without the @ symbol)"
1218
- msgstr ""
1219
-
1220
- #: includes/admin/settings/user-profiles.php:24
1221
- msgid "Facebook Author URL"
1222
- msgstr ""
1223
-
1224
- #: includes/admin/settings/user-profiles.php:27
1225
- msgid "URL to your Facebok profile."
1226
- msgstr ""
1227
-
1228
- #: includes/admin/tools.php:68
1229
- msgid "Import/Export"
1230
- msgstr ""
1231
-
1232
- #: includes/admin/tools.php:69
1233
- msgid "System Info"
1234
- msgstr ""
1235
-
1236
- #: includes/admin/tools.php:91
1237
- msgid "Export Settings"
1238
- msgstr ""
1239
-
1240
- #: includes/admin/tools.php:93
1241
- msgid ""
1242
- "Export the Mashshare settings for this site as a .json file. This allows you "
1243
- "to easily import the configuration into another site."
1244
- msgstr ""
1245
-
1246
- #: includes/admin/tools.php:99
1247
- msgid "Export"
1248
- msgstr ""
1249
-
1250
- #: includes/admin/tools.php:106
1251
- msgid "Import Settings"
1252
- msgstr ""
1253
-
1254
- #: includes/admin/tools.php:108
1255
- msgid ""
1256
- "Import the Mashshare settings from a .json file. This file can be obtained "
1257
- "by exporting the settings on another site using the form above."
1258
- msgstr ""
1259
-
1260
- #: includes/admin/tools.php:116
1261
- msgid "Import"
1262
- msgstr ""
1263
-
1264
- #: includes/admin/tools.php:218
1265
- msgid "Please upload a valid .json file"
1266
- msgstr ""
1267
-
1268
- #: includes/admin/tools.php:224
1269
- msgid "Please upload a file to import"
1270
- msgstr ""
1271
-
1272
- #: includes/admin/tracking.php:266
1273
- msgid "Allow"
1274
- msgstr ""
1275
-
1276
- #: includes/admin/tracking.php:267
1277
- msgid "Do not allow"
1278
- msgstr ""
1279
-
1280
- #: includes/admin/welcome.php:51
1281
- msgid "Welcome to MashShare"
1282
- msgstr ""
1283
-
1284
- #: includes/admin/welcome.php:56
1285
- msgid "MashShare Changelog"
1286
- msgstr ""
1287
-
1288
- #: includes/admin/welcome.php:61
1289
- msgid "Quickstart"
1290
- msgstr ""
1291
-
1292
- #: includes/admin/welcome.php:66
1293
- msgid "The people that build MashShare"
1294
- msgstr ""
1295
-
1296
- #: includes/admin/welcome.php:128
1297
- msgid ""
1298
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1299
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1300
- "needs."
1301
- msgstr ""
1302
-
1303
- #: includes/admin/welcome.php:131
1304
- msgid "Create Your First Social Sharing Button"
1305
- msgstr ""
1306
-
1307
- #: includes/admin/welcome.php:137
1308
- msgid "Settings &rarr; Social Networks"
1309
- msgstr ""
1310
-
1311
- #: includes/admin/welcome.php:138
1312
- msgid ""
1313
- "The Social Network menu is your general access point for activating the "
1314
- "desired share buttons and for customizing the share button label"
1315
- msgstr ""
1316
-
1317
- #: includes/admin/welcome.php:139
1318
- msgid "Settings &rarr; Location & Position"
1319
- msgstr ""
1320
-
1321
- #: includes/admin/welcome.php:140
1322
- msgid ""
1323
- "Select the location and exact position of the share buttons within your "
1324
- "content"
1325
- msgstr ""
1326
-
1327
- #: includes/admin/welcome.php:141
1328
- msgid "You are done! Easy, isn't it?"
1329
- msgstr ""
1330
-
1331
- #: includes/admin/welcome.php:149
1332
- msgid "Display a Most Shared Post Widget"
1333
- msgstr ""
1334
-
1335
- #: includes/admin/welcome.php:155
1336
- msgid "Appearance &rarr; Widgets"
1337
- msgstr ""
1338
-
1339
- #: includes/admin/welcome.php:157
1340
- msgid ""
1341
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1342
- "br>into the desired widget location and save it"
1343
- msgstr ""
1344
-
1345
- #: includes/admin/welcome.php:165
1346
- msgid "Content Shortcodes"
1347
- msgstr ""
1348
-
1349
- #: includes/admin/welcome.php:172
1350
- msgid ""
1351
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1352
- "bold;\">[mashshare]</i>."
1353
- msgstr ""
1354
-
1355
- #: includes/admin/welcome.php:174
1356
- msgid ""
1357
- "Paste the shortcode in content of your posts or pages with the post editor "
1358
- "at the place you want the share buttons appear"
1359
- msgstr ""
1360
-
1361
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1362
- msgid ""
1363
- "There are various parameters you can use for the mashshare shortcode. Find a "
1364
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1365
- "\">here</a>"
1366
- msgstr ""
1367
-
1368
- #: includes/admin/welcome.php:182
1369
- msgid "PHP Template Shortcode"
1370
- msgstr ""
1371
-
1372
- #: includes/admin/welcome.php:188
1373
- msgid ""
1374
- "Add MashShare directly into your theme template files with using the PHP "
1375
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1376
- "&gt;</i>"
1377
- msgstr ""
1378
-
1379
- #: includes/admin/welcome.php:199
1380
- msgid "Need Help?"
1381
- msgstr ""
1382
-
1383
- #: includes/admin/welcome.php:202
1384
- msgid "Great Support"
1385
- msgstr ""
1386
-
1387
- #: includes/admin/welcome.php:203
1388
- msgid ""
1389
- "We do our best to provide the best support we can. If you encounter a "
1390
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1391
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1392
- msgstr ""
1393
-
1394
- #: includes/admin/welcome.php:227
1395
- msgid "Welcome to MashShare %s"
1396
- msgstr ""
1397
-
1398
- #: includes/admin/welcome.php:229
1399
- msgid ""
1400
- "Thank you for updating to the latest version! MashShare is installed and "
1401
- "ready to grow your traffic from social networks!"
1402
- msgstr ""
1403
-
1404
- #: includes/admin/welcome.php:252
1405
- msgid "1. Asyncronous Share Count Aggregation"
1406
- msgstr ""
1407
-
1408
- #: includes/admin/welcome.php:256
1409
- msgid ""
1410
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1411
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1412
- "will be aggregated only after page loading and never while page loads. This "
1413
- "is a huge performance update."
1414
- msgstr ""
1415
-
1416
- #: includes/admin/welcome.php:259
1417
- msgid "2. Open Graph and Twitter Card Integration"
1418
- msgstr ""
1419
-
1420
- #: includes/admin/welcome.php:260
1421
- msgid ""
1422
- "Use open graph and twitter card to specify the content you like to share. If "
1423
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1424
- "and extend it with custom data to get the maximum out of your valuable "
1425
- "content."
1426
- msgstr ""
1427
-
1428
- #: includes/admin/welcome.php:267
1429
- msgid "3. Responsive Buttons per default"
1430
- msgstr ""
1431
-
1432
- #: includes/admin/welcome.php:268
1433
- msgid ""
1434
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1435
- "buttons look great on mobile and desktop devices."
1436
- msgstr ""
1437
-
1438
- #: includes/admin/welcome.php:270
1439
- msgid "4. Share Count Dashboard"
1440
- msgstr ""
1441
-
1442
- #: includes/admin/welcome.php:271
1443
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1444
- msgstr ""
1445
-
1446
- #: includes/admin/welcome.php:275
1447
- msgid "5. A much cleaner user interface"
1448
- msgstr ""
1449
-
1450
- #: includes/admin/welcome.php:276
1451
- msgid ""
1452
- "We spent a lot of time to make useful first time settings and improved the "
1453
- "user interface for an easier experience."
1454
- msgstr ""
1455
-
1456
- #: includes/admin/welcome.php:284
1457
- msgid "Additional Updates"
1458
- msgstr ""
1459
-
1460
- #: includes/admin/welcome.php:287
1461
- msgid "Developer Friendly"
1462
- msgstr ""
1463
-
1464
- #: includes/admin/welcome.php:288
1465
- msgid ""
1466
- "Are you a theme developer and want to use MashShare as your build in share "
1467
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1468
- "instructions.</a>"
1469
- msgstr ""
1470
-
1471
- #: includes/admin/welcome.php:291
1472
- msgid "Check Open Graph Settings"
1473
- msgstr ""
1474
-
1475
- #: includes/admin/welcome.php:292
1476
- msgid ""
1477
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1478
- "data on your site is working as expected or conflicts with other open graph "
1479
- "data."
1480
- msgstr ""
1481
-
1482
- #: includes/admin/welcome.php:295
1483
- msgid "Use Yoast SEO Title"
1484
- msgstr ""
1485
-
1486
- #: includes/admin/welcome.php:296
1487
- msgid "MashShare will use the YOAST SEO title if it is defined."
1488
- msgstr ""
1489
-
1490
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1491
- msgid "Go to MashShare Settings"
1492
- msgstr ""
1493
-
1494
- #: includes/admin/welcome.php:303
1495
- msgid "View the Full Changelog"
1496
- msgstr ""
1497
-
1498
- #: includes/admin/welcome.php:326
1499
- msgid "What's New"
1500
- msgstr ""
1501
-
1502
- #: includes/admin/welcome.php:332
1503
- msgid "Credits"
1504
- msgstr ""
1505
-
1506
- #: includes/admin/welcome.php:353
1507
- msgid ""
1508
- "Mashshare is created by a René Hermenau and developers all over the world "
1509
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1510
- "WordPress."
1511
- msgstr ""
1512
-
1513
- #: includes/admin/welcome.php:356
1514
- msgid ""
1515
- " If you want to be credited here participate on the development and make "
1516
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1517
- msgstr ""
1518
-
1519
- #: includes/admin/welcome.php:381
1520
- msgid "View %s"
1521
- msgstr ""
1522
-
1523
- #: includes/admin/welcome.php:436
1524
- msgid "No valid changelog was found."
1525
- msgstr ""
1526
-
1527
- #: includes/admin/welcome.php:469
1528
- msgid "Full Changelog"
1529
- msgstr ""
1530
-
1531
- #: includes/class-mashsb-html-elements.php:43
1532
- msgctxt "all dropdown items"
1533
- msgid "All"
1534
- msgstr ""
1535
-
1536
- #: includes/class-mashsb-html-elements.php:44
1537
- msgctxt "no dropdown items"
1538
- msgid "None"
1539
- msgstr ""
1540
-
1541
- #: includes/class-mashsb-html-elements.php:232
1542
- msgid "Enter username"
1543
- msgstr ""
1544
-
1545
- #: includes/class-mashsb-license-handler.php:177
1546
- msgid "%1$s License Key"
1547
- msgstr ""
1548
-
1549
- #: includes/class-mashsb-license-handler.php:210
1550
- msgid ""
1551
- "Enter your extension license keys here to receive updates for purchased "
1552
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1553
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1554
- msgstr ""
1555
-
1556
- #: includes/class-mashsb-license-handler.php:319
1557
- msgid "Nonce verification failed"
1558
- msgstr ""
1559
-
1560
- #: includes/class-mashsb-license-handler.php:436
1561
- msgid ""
1562
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1563
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1564
- "issue."
1565
- msgstr ""
1566
-
1567
- #: includes/class-mashsb-license-handler.php:475
1568
- msgid "Enter valid license key for automatic updates."
1569
- msgstr ""
1570
-
1571
- #: includes/class-mashsb-shared-posts-widget.php:13
1572
- msgid "Mashshare - Most Shared Posts"
1573
- msgstr ""
1574
-
1575
- #: includes/class-mashsb-shared-posts-widget.php:37
1576
- msgid "Widget Title"
1577
- msgstr ""
1578
-
1579
- #: includes/class-mashsb-shared-posts-widget.php:42
1580
- msgid "How many posts to display?"
1581
- msgstr ""
1582
-
1583
- #: includes/class-mashsb-shared-posts-widget.php:46
1584
- msgid "Show Shares? Say \"No\" when using fake shares!"
1585
- msgstr ""
1586
-
1587
- #: includes/class-mashsb-shared-posts-widget.php:61
1588
- msgid "Show shares below post title"
1589
- msgstr ""
1590
-
1591
- #: includes/class-mashsb-shared-posts-widget.php:68
1592
- msgid "Time period and age of posts"
1593
- msgstr ""
1594
-
1595
- #: includes/template-functions.php:249
1596
- msgid "Subscribe"
1597
- msgstr ""
1598
-
1599
- #: includes/template-functions.php:517
1600
- msgid "SHARES"
1601
- msgstr "Jagamist"
1602
-
1603
- #: includes/template-functions.php:1114
1604
- msgid "Page not found"
1605
- msgstr ""
1606
-
1607
- #. translators: %s: search phrase
1608
- #: includes/template-functions.php:1119
1609
- msgid "Search Results for &#8220;%s&#8221;"
1610
- msgstr ""
1611
-
1612
- #: includes/template-functions.php:1152
1613
- msgctxt "yearly archives date format"
1614
- msgid "Y"
1615
- msgstr ""
1616
-
1617
- #: includes/template-functions.php:1154
1618
- msgctxt "monthly archives date format"
1619
- msgid "F Y"
1620
- msgstr ""
1621
-
1622
- #: mashshare.php:124 mashshare.php:136
1623
- msgid "Cheatin&#8217; huh?"
1624
- msgstr ""
1625
-
1626
- #: templates/sidebar.php:17
1627
- msgid "Increase your Shares and Social Traffic"
1628
- msgstr ""
1629
-
1630
- #: templates/sidebar.php:20
1631
- msgid "Get 20% Off!"
1632
- msgstr ""
1633
-
1634
- #: templates/sidebar.php:25
1635
- msgid ""
1636
- "Submit your name and email and we'll send you a coupon for 20% off your "
1637
- "upgrade to the pro version."
1638
- msgstr ""
1639
-
1640
- #: templates/sidebar.php:29
1641
- msgid "Your Email"
1642
- msgstr ""
1643
-
1644
- #: templates/sidebar.php:33
1645
- msgid "First Name"
1646
- msgstr ""
1647
-
1648
- #: templates/sidebar.php:37
1649
- msgid "Last Name"
1650
- msgstr ""
1651
-
1652
- #: templates/sidebar.php:44
1653
- msgid "Send me the coupon"
1654
- msgstr ""
1655
-
1656
- #: templates/sidebar.php:48
1657
- msgid ""
1658
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1659
- "click anytime."
1660
- msgstr ""
1661
-
1662
- #. Plugin Name of the plugin/theme
1663
- msgid "Mashshare Share Buttons"
1664
- msgstr ""
1665
-
1666
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1667
- #. Plugin URI of the plugin/theme
1668
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1669
- #. Author URI of the plugin/theme
1670
- msgid "https://www.mashshare.net"
1671
- msgstr ""
1672
-
1673
- #. Description of the plugin/theme
1674
- msgid ""
1675
- "Mashshare is a Share functionality inspired by the the great website "
1676
- "Mashable for Facebook and Twitter. More networks available."
1677
- msgstr ""
1678
-
1679
- #. Author of the plugin/theme
1680
- msgid "René Hermenau"
1681
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-fr_FR.mo DELETED
Binary file
languages/mashsb-fr_FR.po DELETED
@@ -1,1680 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: Mashshare\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
8
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
9
- "PO-Revision-Date: 2016-06-23 19:09+0100\n"
10
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
11
- "Language-Team: French (http://www.transifex.com/renehermenau/mashshare/"
12
- "language/fr/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: fr\n"
17
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "X-Generator: Poedit 1.5.6\n"
19
-
20
- msgid ""
21
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
22
- "Highly customizable Social Media ecosystem"
23
- msgstr ""
24
-
25
- #: includes/MASHSB_SL_Plugin_Updater.php:177
26
- msgid ""
27
- "There is a new version of %1$s available. <a target=\"_blank\" class="
28
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
29
- msgstr ""
30
-
31
- #: includes/MASHSB_SL_Plugin_Updater.php:184
32
- msgid ""
33
- "There is a new version of %1$s available. <a target=\"_blank\" class="
34
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
35
- "\">update now</a>."
36
- msgstr ""
37
-
38
- #: includes/MASHSB_SL_Plugin_Updater.php:324
39
- msgid "You do not have permission to install plugin updates"
40
- msgstr ""
41
-
42
- #: includes/MASHSB_SL_Plugin_Updater.php:324
43
- #: includes/class-mashsb-license-handler.php:319
44
- msgid "Error"
45
- msgstr ""
46
-
47
- #: includes/admin/add-ons.php:27
48
- msgid "Add Ons for Mashshare"
49
- msgstr ""
50
-
51
- #: includes/admin/add-ons.php:28
52
- msgid "Visit Website"
53
- msgstr ""
54
-
55
- #: includes/admin/add-ons.php:28
56
- msgid "See Details"
57
- msgstr ""
58
-
59
- #: includes/admin/add-ons.php:30
60
- msgid "These add-ons extend the functionality of Mashshare."
61
- msgstr ""
62
-
63
- #: includes/admin/add-ons.php:54
64
- msgid ""
65
- "There was an error retrieving the Mashshare addon list from the server. "
66
- "Please try again later."
67
- msgstr ""
68
-
69
- #: includes/admin/admin-footer.php:24
70
- msgid ""
71
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
72
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
73
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
74
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
75
- "\"blank\">Documentation</a>"
76
- msgstr ""
77
-
78
- #: includes/admin/admin-notices.php:51
79
- msgid ""
80
- "MashShare needs the PHP extension cURL which is not installed on your "
81
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
82
- "to be able to collect share count of your posts."
83
- msgstr ""
84
-
85
- #: includes/admin/admin-notices.php:58
86
- msgid ""
87
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
88
- ">Social Networks</a> and enable at least one Social Network."
89
- msgstr ""
90
-
91
- #: includes/admin/admin-notices.php:64
92
- msgid ""
93
- "Your Sharebar Add-On version is not using new short url mechanism of "
94
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
95
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
96
- "short urls will not stop working in one of the next updates. This requires a "
97
- "valid license of the Sharebar Add-On"
98
- msgstr ""
99
-
100
- #: includes/admin/admin-notices.php:70
101
- msgid ""
102
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
103
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
104
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
105
- "twitter short urls will not stop working in one of the next updates. This "
106
- "requires a valid license of the Floating Sidebar Add-On"
107
- msgstr ""
108
-
109
- #: includes/admin/admin-notices.php:76
110
- msgid ""
111
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
112
- ">Short URL Integration</i></a> and check the Google API key."
113
- msgstr ""
114
-
115
- #: includes/admin/admin-notices.php:82
116
- msgid ""
117
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
118
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
119
- "check the Bitly API key."
120
- msgstr ""
121
-
122
- #: includes/admin/admin-notices.php:88
123
- msgid ""
124
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
125
- "is not longer needed and having it activated leads to duplicate open graph "
126
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
127
- msgstr ""
128
-
129
- #: includes/admin/admin-notices.php:94
130
- msgid ""
131
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
132
- "not longer needed and already built in MashShare. Deactivate it from <a href="
133
- "\"%s\"> Plugin Settings</a> "
134
- msgstr ""
135
-
136
- #: includes/admin/admin-notices.php:100
137
- msgid ""
138
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
139
- "\">Permalinks</a> must be enabled to count shares. Share count is "
140
- "deactivated until you have fixed this."
141
- msgstr ""
142
-
143
- #: includes/admin/admin-notices.php:258
144
- msgid ""
145
- "There seems to be an issue with the server. Please try again in a few "
146
- "minutes."
147
- msgstr ""
148
-
149
- #: includes/admin/admin-pages.php:31
150
- msgid "MashShare"
151
- msgstr ""
152
-
153
- #: includes/admin/admin-pages.php:32
154
- msgid "MashShare Settings"
155
- msgstr ""
156
-
157
- #: includes/admin/admin-pages.php:32
158
- #: includes/admin/settings/register-settings.php:744
159
- msgid "Settings"
160
- msgstr ""
161
-
162
- #: includes/admin/admin-pages.php:33
163
- msgid "MashShare Add Ons"
164
- msgstr ""
165
-
166
- #: includes/admin/admin-pages.php:33
167
- msgid "Get Add Ons"
168
- msgstr ""
169
-
170
- #: includes/admin/admin-pages.php:34
171
- msgid "MashShare Tools"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:34
175
- msgid "Im/Export & System"
176
- msgstr ""
177
-
178
- #: includes/admin/meta-box/inc/core.php:40
179
- msgid "Documentation"
180
- msgstr ""
181
-
182
- #: includes/admin/meta-box/inc/core.php:41
183
- msgid "Extensions"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/field.php:196
187
- msgid "+ Add more"
188
- msgstr ""
189
-
190
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
191
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
192
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
193
- msgid "Delete"
194
- msgstr ""
195
-
196
- #: includes/admin/meta-box/inc/fields/button.php:29
197
- msgid "Click me"
198
- msgstr ""
199
-
200
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
201
- msgid "Yes"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
205
- msgid "No"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/file-input.php:18
209
- msgid "Select File"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/file-input.php:41
213
- #: includes/admin/meta-box/inc/fields/select.php:91
214
- msgid "Select"
215
- msgstr ""
216
-
217
- #: includes/admin/meta-box/inc/fields/file-input.php:43
218
- msgid "Remove"
219
- msgstr ""
220
-
221
- #: includes/admin/meta-box/inc/fields/file.php:15
222
- msgid "You may only upload maximum %d file"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file.php:16
226
- msgid "You may only upload maximum %d files"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:83
230
- msgid "Error: Cannot delete file"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:96
234
- msgctxt "file upload"
235
- msgid "Upload Files"
236
- msgstr ""
237
-
238
- #: includes/admin/meta-box/inc/fields/file.php:97
239
- msgctxt "file upload"
240
- msgid "+ Add new file"
241
- msgstr ""
242
-
243
- #: includes/admin/meta-box/inc/fields/file.php:153
244
- msgctxt "file upload"
245
- msgid "Delete"
246
- msgstr ""
247
-
248
- #: includes/admin/meta-box/inc/fields/file.php:154
249
- msgctxt "file upload"
250
- msgid "Edit"
251
- msgstr ""
252
-
253
- #: includes/admin/meta-box/inc/fields/image.php:61
254
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
255
- msgctxt "image upload"
256
- msgid "Upload Images"
257
- msgstr ""
258
-
259
- #: includes/admin/meta-box/inc/fields/image.php:62
260
- msgctxt "image upload"
261
- msgid "+ Add new image"
262
- msgstr ""
263
-
264
- #: includes/admin/meta-box/inc/fields/image.php:124
265
- msgctxt "image upload"
266
- msgid "Delete"
267
- msgstr ""
268
-
269
- #: includes/admin/meta-box/inc/fields/image.php:125
270
- msgctxt "image upload"
271
- msgid "Edit"
272
- msgstr ""
273
-
274
- #: includes/admin/meta-box/inc/fields/key-value.php:19
275
- msgid "Key"
276
- msgstr ""
277
-
278
- #: includes/admin/meta-box/inc/fields/key-value.php:25
279
- msgid "Value"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/map.php:49
283
- msgid "Find Address"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/media.php:18
287
- msgctxt "media"
288
- msgid "Add Image"
289
- msgstr ""
290
-
291
- #: includes/admin/meta-box/inc/fields/media.php:19
292
- msgctxt "media"
293
- msgid " file"
294
- msgstr ""
295
-
296
- #: includes/admin/meta-box/inc/fields/media.php:20
297
- msgctxt "media"
298
- msgid " files"
299
- msgstr ""
300
-
301
- #: includes/admin/meta-box/inc/fields/media.php:21
302
- msgctxt "media"
303
- msgid "Remove"
304
- msgstr ""
305
-
306
- #: includes/admin/meta-box/inc/fields/media.php:22
307
- msgctxt "media"
308
- msgid "Edit"
309
- msgstr ""
310
-
311
- #: includes/admin/meta-box/inc/fields/media.php:23
312
- msgctxt "media"
313
- msgid "View"
314
- msgstr ""
315
-
316
- #: includes/admin/meta-box/inc/fields/media.php:24
317
- msgctxt "media"
318
- msgid "No Title"
319
- msgstr ""
320
-
321
- #: includes/admin/meta-box/inc/fields/media.php:27
322
- msgctxt "media"
323
- msgid "Select Files"
324
- msgstr ""
325
-
326
- #: includes/admin/meta-box/inc/fields/media.php:28
327
- msgctxt "media"
328
- msgid "Drop files here to upload"
329
- msgstr ""
330
-
331
- #: includes/admin/meta-box/inc/fields/oembed.php:65
332
- msgid "Embed HTML not available."
333
- msgstr ""
334
-
335
- #: includes/admin/meta-box/inc/fields/oembed.php:84
336
- msgid "Preview"
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/post.php:34
340
- msgid "Select a post"
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/post.php:38
344
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
345
- msgid "Select a %s"
346
- msgstr ""
347
-
348
- #: includes/admin/meta-box/inc/fields/select.php:91
349
- msgid "All"
350
- msgstr ""
351
-
352
- #: includes/admin/meta-box/inc/fields/select.php:91
353
- msgid "None"
354
- msgstr ""
355
-
356
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
357
- msgid "Select a term"
358
- msgstr ""
359
-
360
- #: includes/admin/meta-box/inc/fields/user.php:34
361
- msgid "Select an user"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/validation.php:42
365
- msgid "Please correct the errors highlighted below and try again."
366
- msgstr ""
367
-
368
- #: includes/admin/plugins.php:27
369
- msgid "General Settings"
370
- msgstr ""
371
-
372
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
373
- msgid "Getting Started"
374
- msgstr ""
375
-
376
- #: includes/admin/plugins.php:51
377
- msgid "Add Ons"
378
- msgstr ""
379
-
380
- #: includes/admin/settings/contextual-help.php:29
381
- msgid "For more information:"
382
- msgstr ""
383
-
384
- #: includes/admin/settings/contextual-help.php:30
385
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
386
- msgstr ""
387
-
388
- #: includes/admin/settings/contextual-help.php:32
389
- msgid ""
390
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
391
- "href=\"%s\">extensions</a>."
392
- msgstr ""
393
-
394
- #: includes/admin/settings/contextual-help.php:41
395
- msgid "General"
396
- msgstr ""
397
-
398
- #: includes/admin/settings/contextual-help.php:42
399
- msgid "This screen provides the most basic settings for configuring Mashshare."
400
- msgstr ""
401
-
402
- #: includes/admin/settings/display-settings.php:133
403
- msgid "MashShare "
404
- msgstr ""
405
-
406
- #: includes/admin/settings/metabox-settings.php:102
407
- msgid "Social Media Image"
408
- msgstr ""
409
-
410
- #: includes/admin/settings/metabox-settings.php:103
411
- msgid ""
412
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
413
- "1200px x 630px. Aspect ratio 1.9:1"
414
- msgstr ""
415
-
416
- #: includes/admin/settings/metabox-settings.php:112
417
- msgid "Social Media Title"
418
- msgstr ""
419
-
420
- #: includes/admin/settings/metabox-settings.php:113
421
- msgid ""
422
- "This title is used by the open graph meta tag og:title and will be used when "
423
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
424
- "to use "
425
- msgstr ""
426
-
427
- #: includes/admin/settings/metabox-settings.php:113
428
- msgid "Yoast Facebook / SEO title"
429
- msgstr ""
430
-
431
- #: includes/admin/settings/metabox-settings.php:121
432
- msgid "Social Media Description"
433
- msgstr ""
434
-
435
- #: includes/admin/settings/metabox-settings.php:122
436
- msgid ""
437
- "This description is used by the open graph meta tag og:description and will "
438
- "be used when users share your content on Facebook, LinkedIn, and Google "
439
- "Plus. Leave this blank to use "
440
- msgstr ""
441
-
442
- #: includes/admin/settings/metabox-settings.php:122
443
- msgid "Yoast Facebook open graph description or the post excerpt."
444
- msgstr ""
445
-
446
- #: includes/admin/settings/metabox-settings.php:135
447
- msgid "Pinterest Image"
448
- msgstr ""
449
-
450
- #: includes/admin/settings/metabox-settings.php:135
451
- #: includes/admin/settings/metabox-settings.php:145
452
- msgid ""
453
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
454
- "the Pinterest Features"
455
- msgstr ""
456
-
457
- #: includes/admin/settings/metabox-settings.php:136
458
- msgid ""
459
- "Pinned images need to be more vertical than horizontal in orientation. Use "
460
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
461
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
462
- msgstr ""
463
-
464
- #: includes/admin/settings/metabox-settings.php:145
465
- msgid "Pinterest Description"
466
- msgstr ""
467
-
468
- #: includes/admin/settings/metabox-settings.php:146
469
- msgid ""
470
- "Place a customized message that will be used when this post is shared on "
471
- "Pinterest. Leave this blank to use the "
472
- msgstr ""
473
-
474
- #: includes/admin/settings/metabox-settings.php:146
475
- msgid "Yoast SEO title"
476
- msgstr ""
477
-
478
- #: includes/admin/settings/metabox-settings.php:146
479
- msgid "the post title"
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:154
483
- msgid "Custom Tweet"
484
- msgstr ""
485
-
486
- #: includes/admin/settings/metabox-settings.php:176
487
- msgid ""
488
- "Publish the post and validate if the open graph meta tags on your site are "
489
- "correct! Incorrect data can result in wrong share description, title or "
490
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
491
- "new scrape information\" to purge the facebook cache."
492
- msgstr ""
493
-
494
- #: includes/admin/settings/metabox-settings.php:206
495
- msgid "Based on your username @"
496
- msgstr ""
497
-
498
- #: includes/admin/settings/metabox-settings.php:206
499
- msgid " ,the shortened post url and the current content above"
500
- msgstr ""
501
-
502
- #: includes/admin/settings/metabox-settings.php:208
503
- msgid "Based on the shortened post url and the current content above"
504
- msgstr ""
505
-
506
- #: includes/admin/settings/metabox-settings.php:210
507
- msgid " your tweet has a maximum of 140 characters. "
508
- msgstr ""
509
-
510
- #: includes/admin/settings/metabox-settings.php:212
511
- msgid "If this is left blank the post title will be used. "
512
- msgstr ""
513
-
514
- #: includes/admin/settings/metabox-settings.php:214
515
- msgid ""
516
- "If this is left blank the Yoast Twitter Title or post title will be used. "
517
- msgstr ""
518
-
519
- #: includes/admin/settings/register-settings.php:120
520
- msgid "General settings"
521
- msgstr ""
522
-
523
- #: includes/admin/settings/register-settings.php:126
524
- msgid "Share counts"
525
- msgstr ""
526
-
527
- #: includes/admin/settings/register-settings.php:127
528
- msgid ""
529
- "<i>MashEngine</i> collects shares by direct request to social networks. "
530
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
531
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
532
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
533
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
534
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
535
- "this free service to get the twitter share count. Visit the newsharecount "
536
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
537
- "Thats it!"
538
- msgstr ""
539
-
540
- #: includes/admin/settings/register-settings.php:136
541
- msgid "Sharedcount.com API Key"
542
- msgstr ""
543
-
544
- #: includes/admin/settings/register-settings.php:137
545
- msgid ""
546
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
547
- "\">SharedCount.com</a> for 10.000 free daily requests."
548
- msgstr ""
549
-
550
- #: includes/admin/settings/register-settings.php:143
551
- msgid "Sharedcount.com endpint"
552
- msgstr ""
553
-
554
- #: includes/admin/settings/register-settings.php:144
555
- msgid ""
556
- "The SharedCount Domain your API key is configured to query. For example, "
557
- "free.sharedcount.com. This may update automatically if configured "
558
- "incorrectly."
559
- msgstr ""
560
-
561
- #: includes/admin/settings/register-settings.php:151
562
- msgid "Caching Method"
563
- msgstr ""
564
-
565
- #: includes/admin/settings/register-settings.php:152
566
- msgid ""
567
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
568
- "visitor and refreshes the cache asyncronously in the background. New posts "
569
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
570
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
571
- "cache while page is loading and adds a little extra time during inital page "
572
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
573
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
574
- "was using before version 3.0"
575
- msgstr ""
576
-
577
- #: includes/admin/settings/register-settings.php:161
578
- msgid "Cache expiration"
579
- msgstr ""
580
-
581
- #: includes/admin/settings/register-settings.php:162
582
- msgid ""
583
- "Shares are counted for posts after a certain time and counts are not updated "
584
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
585
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
586
- "more"
587
- msgstr ""
588
-
589
- #: includes/admin/settings/register-settings.php:168
590
- msgid "Facebook Count"
591
- msgstr ""
592
-
593
- #: includes/admin/settings/register-settings.php:169
594
- msgid ""
595
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
596
- "the pure share count"
597
- msgstr ""
598
-
599
- #: includes/admin/settings/register-settings.php:179
600
- msgid "Fake Share counts"
601
- msgstr ""
602
-
603
- #: includes/admin/settings/register-settings.php:180
604
- msgid ""
605
- "This number will be aggregated to all your share counts and is multiplied "
606
- "with a post specific factor. (Number of post title words divided with 10)."
607
- msgstr ""
608
-
609
- #: includes/admin/settings/register-settings.php:186
610
- msgid "Disable Sharecount"
611
- msgstr ""
612
-
613
- #: includes/admin/settings/register-settings.php:187
614
- msgid ""
615
- "Use this when curl() is not supported on your server or share counts should "
616
- "not counted. This mode does not call the database and no SQL queries are "
617
- "generated. (Only less performance benefit. All db requests are cached) "
618
- "Default: false"
619
- msgstr ""
620
-
621
- #: includes/admin/settings/register-settings.php:192
622
- msgid "Hide Sharecount"
623
- msgstr ""
624
-
625
- #: includes/admin/settings/register-settings.php:193
626
- msgid ""
627
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
628
- "specific post are not shown until the share count of this number is reached."
629
- msgstr ""
630
-
631
- #: includes/admin/settings/register-settings.php:199
632
- msgid "Execution Order"
633
- msgstr ""
634
-
635
- #: includes/admin/settings/register-settings.php:200
636
- msgid ""
637
- "If you use other content plugins you can define here the execution order. "
638
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
639
- "executed before any other plugin (When the other plugin is not overwriting "
640
- "our execution order). Default is \"1000\""
641
- msgstr ""
642
-
643
- #: includes/admin/settings/register-settings.php:207
644
- msgid "JavaScript in Footer"
645
- msgstr ""
646
-
647
- #: includes/admin/settings/register-settings.php:208
648
- msgid ""
649
- "Enable this to load all *.js files into footer. Make sure your theme uses "
650
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
651
- msgstr ""
652
-
653
- #: includes/admin/settings/register-settings.php:213
654
- msgid "JS & CSS Everywhere"
655
- msgstr ""
656
-
657
- #: includes/admin/settings/register-settings.php:214
658
- msgid ""
659
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
660
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
661
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
662
- "option to allow conditional loading so MashShare's JS and CSS files are "
663
- "loaded only on pages where MashShare is used."
664
- msgstr ""
665
-
666
- #: includes/admin/settings/register-settings.php:220
667
- msgid "Twitter Popup disabled"
668
- msgstr ""
669
-
670
- #: includes/admin/settings/register-settings.php:221
671
- msgid ""
672
- "Check this box if your twitter popup is openening twice. This happens "
673
- "sometimes when you are using any third party twitter plugin or the twitter "
674
- "SDK on your website."
675
- msgstr ""
676
-
677
- #: includes/admin/settings/register-settings.php:227
678
- msgid "Remove Data on Uninstall?"
679
- msgstr ""
680
-
681
- #: includes/admin/settings/register-settings.php:228
682
- msgid ""
683
- "Check this box if you would like Mashshare to completely remove all of its "
684
- "data when the plugin is deleted."
685
- msgstr ""
686
-
687
- #: includes/admin/settings/register-settings.php:233
688
- msgid "Allow Usage Tracking"
689
- msgstr ""
690
-
691
- #: includes/admin/settings/register-settings.php:234
692
- #: includes/admin/tracking.php:265
693
- msgid ""
694
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
695
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
696
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
697
- "Ons</a>. No sensitive data is tracked."
698
- msgstr ""
699
-
700
- #: includes/admin/settings/register-settings.php:239
701
- msgid "User Roles Options Visibility"
702
- msgstr ""
703
-
704
- #: includes/admin/settings/register-settings.php:240
705
- msgid ""
706
- "Select user roles which can see page and post MashShare Social Sharing Meta "
707
- "Box Options"
708
- msgstr ""
709
-
710
- #: includes/admin/settings/register-settings.php:243
711
- msgid "Select User Roles"
712
- msgstr ""
713
-
714
- #: includes/admin/settings/register-settings.php:244
715
- msgid "All Roles"
716
- msgstr ""
717
-
718
- #: includes/admin/settings/register-settings.php:248
719
- #: includes/admin/settings/register-settings.php:294
720
- #: includes/admin/settings/register-settings.php:751
721
- msgid "Social Networks"
722
- msgstr ""
723
-
724
- #: includes/admin/settings/register-settings.php:254
725
- msgid "Facebook page url"
726
- msgstr ""
727
-
728
- #: includes/admin/settings/register-settings.php:255
729
- msgid "Optional: The url of the main facebook account connected with this site"
730
- msgstr ""
731
-
732
- #: includes/admin/settings/register-settings.php:261
733
- msgid "Facebook App ID"
734
- msgstr ""
735
-
736
- #: includes/admin/settings/register-settings.php:262
737
- msgid ""
738
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
739
- "a>"
740
- msgstr ""
741
-
742
- #: includes/admin/settings/register-settings.php:268
743
- #: includes/admin/settings/user-profiles.php:19
744
- msgid "Twitter Username"
745
- msgstr ""
746
-
747
- #: includes/admin/settings/register-settings.php:269
748
- msgid ""
749
- "<strong>Optional:</strong> Using your twitter username results in via "
750
- "@username"
751
- msgstr ""
752
-
753
- #: includes/admin/settings/register-settings.php:275
754
- msgid "Twitter Card"
755
- msgstr ""
756
-
757
- #: includes/admin/settings/register-settings.php:276
758
- msgid ""
759
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
760
- "plugin their meta tags will be removed and MashShare will use existing meta "
761
- "data from these plugins. Default: On"
762
- msgstr ""
763
-
764
- #: includes/admin/settings/register-settings.php:281
765
- msgid "Open Graph Meta Tags"
766
- msgstr ""
767
-
768
- #: includes/admin/settings/register-settings.php:282
769
- msgid ""
770
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
771
- "Jetpack plugin their meta tags will be removed and MashShare will use "
772
- "existing meta data from these plugins."
773
- msgstr ""
774
-
775
- #: includes/admin/settings/register-settings.php:287
776
- msgid "Large Buttons"
777
- msgstr ""
778
-
779
- #: includes/admin/settings/register-settings.php:288
780
- msgid ""
781
- "Specify how many services and social networks are visible before the \"Plus"
782
- "\" Button is shown. This buttons turn into large prominent buttons."
783
- msgstr ""
784
-
785
- #: includes/admin/settings/register-settings.php:295
786
- msgid ""
787
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
788
- "that should be visible. <br>Activate more networks than number of \"Large "
789
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
790
- msgstr ""
791
-
792
- #: includes/admin/settings/register-settings.php:321
793
- msgid "Short URL Integration"
794
- msgstr ""
795
-
796
- #: includes/admin/settings/register-settings.php:328
797
- msgid "Bitly access token"
798
- msgstr ""
799
-
800
- #: includes/admin/settings/register-settings.php:329
801
- msgid ""
802
- "If you like to use bitly.com shortener get a free bitly access token <a href="
803
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
804
- "ly/cXnjsh. "
805
- msgstr ""
806
-
807
- #: includes/admin/settings/register-settings.php:335
808
- msgid "Google API Key (goo.gl)"
809
- msgstr ""
810
-
811
- #: includes/admin/settings/register-settings.php:342
812
- msgid "Shorturl method"
813
- msgstr ""
814
-
815
- #: includes/admin/settings/register-settings.php:343
816
- msgid ""
817
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
818
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
819
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
820
- "%s ?p=101</i>"
821
- msgstr ""
822
-
823
- #: includes/admin/settings/register-settings.php:354
824
- msgid "Important: Read this!"
825
- msgstr ""
826
-
827
- #: includes/admin/settings/register-settings.php:355
828
- msgid ""
829
- "<strong>The post short url is NOT generated immediatly after first page load!"
830
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
831
- "12 hours for old posts."
832
- msgstr ""
833
-
834
- #: includes/admin/settings/register-settings.php:374
835
- msgid "Customization"
836
- msgstr ""
837
-
838
- #: includes/admin/settings/register-settings.php:380
839
- msgid "Round up Shares"
840
- msgstr ""
841
-
842
- #: includes/admin/settings/register-settings.php:381
843
- msgid ""
844
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
845
- "as 1M"
846
- msgstr ""
847
-
848
- #: includes/admin/settings/register-settings.php:386
849
- msgid "Animate Shares"
850
- msgstr ""
851
-
852
- #: includes/admin/settings/register-settings.php:387
853
- msgid ""
854
- "Count up the shares on page loading with a nice looking animation effect. "
855
- "This only works on singular pages and not with shortcodes generated buttons."
856
- msgstr ""
857
-
858
- #: includes/admin/settings/register-settings.php:392
859
- #: includes/class-mashsb-shared-posts-widget.php:53
860
- msgid "Share Count Label"
861
- msgstr ""
862
-
863
- #: includes/admin/settings/register-settings.php:393
864
- msgid ""
865
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
866
- msgstr ""
867
-
868
- #: includes/admin/settings/register-settings.php:408
869
- msgid "Share Count Color"
870
- msgstr ""
871
-
872
- #: includes/admin/settings/register-settings.php:409
873
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
874
- msgstr ""
875
-
876
- #: includes/admin/settings/register-settings.php:416
877
- msgid "Border Radius"
878
- msgstr ""
879
-
880
- #: includes/admin/settings/register-settings.php:417
881
- msgid ""
882
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
883
- "results in circle buttons. Default value is zero."
884
- msgstr ""
885
-
886
- #: includes/admin/settings/register-settings.php:447
887
- msgid "Button Width"
888
- msgstr ""
889
-
890
- #: includes/admin/settings/register-settings.php:448
891
- msgid "Minimum with of the large share buttons in pixels"
892
- msgstr ""
893
-
894
- #: includes/admin/settings/register-settings.php:455
895
- msgid "Share Button Style"
896
- msgstr ""
897
-
898
- #: includes/admin/settings/register-settings.php:456
899
- msgid "Change visual appearance of the share buttons."
900
- msgstr ""
901
-
902
- #: includes/admin/settings/register-settings.php:467
903
- msgid "Small Share Buttons"
904
- msgstr ""
905
-
906
- #: includes/admin/settings/register-settings.php:468
907
- msgid ""
908
- "All buttons will be shown as pure small icons without any text on desktop "
909
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
910
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
911
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
912
- msgstr ""
913
-
914
- #: includes/admin/settings/register-settings.php:479
915
- msgid "Subscribe Button"
916
- msgstr ""
917
-
918
- #: includes/admin/settings/register-settings.php:480
919
- msgid ""
920
- "Specify if the subscribe button is opening a content box below the button or "
921
- "if the button is linked to the \"subscribe url\" below."
922
- msgstr ""
923
-
924
- #: includes/admin/settings/register-settings.php:490
925
- msgid "Subscribe URL"
926
- msgstr ""
927
-
928
- #: includes/admin/settings/register-settings.php:491
929
- msgid ""
930
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
931
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
932
- msgstr ""
933
-
934
- #: includes/admin/settings/register-settings.php:498
935
- msgid "Additional Content"
936
- msgstr ""
937
-
938
- #: includes/admin/settings/register-settings.php:504
939
- msgid "Content Above"
940
- msgstr ""
941
-
942
- #: includes/admin/settings/register-settings.php:505
943
- msgid ""
944
- "Content appearing above share buttons. Use HTML, formulars, like button, "
945
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
946
- msgstr ""
947
-
948
- #: includes/admin/settings/register-settings.php:512
949
- msgid "Content Below"
950
- msgstr ""
951
-
952
- #: includes/admin/settings/register-settings.php:513
953
- msgid ""
954
- "Content appearing below share buttons. Use HTML, formulars, like button, "
955
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
956
- msgstr ""
957
-
958
- #: includes/admin/settings/register-settings.php:520
959
- msgid "Subscribe content"
960
- msgstr ""
961
-
962
- #: includes/admin/settings/register-settings.php:521
963
- msgid ""
964
- "Define the content of the opening toggle subscribe window here. Use "
965
- "formulars, like button, links or any other text. Shortcodes are supported, e."
966
- "g.: [contact-form-7]"
967
- msgstr ""
968
-
969
- #: includes/admin/settings/register-settings.php:530
970
- msgid "Custom Styles"
971
- msgstr ""
972
-
973
- #: includes/admin/settings/register-settings.php:536
974
- msgid "General CSS"
975
- msgstr ""
976
-
977
- #: includes/admin/settings/register-settings.php:537
978
- msgid ""
979
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
980
- "it's loaded as an additonal inline css on your site"
981
- msgstr ""
982
-
983
- #: includes/admin/settings/register-settings.php:544
984
- msgid "AMP CSS"
985
- msgstr ""
986
-
987
- #: includes/admin/settings/register-settings.php:545
988
- msgid ""
989
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
990
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
991
- "\">AMP Plugin</a> installed."
992
- msgstr ""
993
-
994
- #: includes/admin/settings/register-settings.php:562
995
- msgid "Location & Position"
996
- msgstr ""
997
-
998
- #: includes/admin/settings/register-settings.php:568
999
- msgid "Position"
1000
- msgstr ""
1001
-
1002
- #: includes/admin/settings/register-settings.php:569
1003
- msgid ""
1004
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1005
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1006
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1007
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1008
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1009
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1010
- "shortcodes</a>."
1011
- msgstr ""
1012
-
1013
- #: includes/admin/settings/register-settings.php:572
1014
- msgid "Top"
1015
- msgstr ""
1016
-
1017
- #: includes/admin/settings/register-settings.php:573
1018
- msgid "Bottom"
1019
- msgstr ""
1020
-
1021
- #: includes/admin/settings/register-settings.php:574
1022
- msgid "Top and Bottom"
1023
- msgstr ""
1024
-
1025
- #: includes/admin/settings/register-settings.php:575
1026
- msgid "Manual"
1027
- msgstr ""
1028
-
1029
- #: includes/admin/settings/register-settings.php:580
1030
- msgid "Post Types"
1031
- msgstr ""
1032
-
1033
- #: includes/admin/settings/register-settings.php:581
1034
- msgid ""
1035
- "Select on which post_types the share buttons appear. These values will be "
1036
- "ignored when \"manual\" position is selected."
1037
- msgstr ""
1038
-
1039
- #: includes/admin/settings/register-settings.php:586
1040
- msgid "Exclude from post id"
1041
- msgstr ""
1042
-
1043
- #: includes/admin/settings/register-settings.php:587
1044
- msgid ""
1045
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1046
- "by a comma, e.g. 23, 63, 114 "
1047
- msgstr ""
1048
-
1049
- #: includes/admin/settings/register-settings.php:593
1050
- msgid "Categories"
1051
- msgstr ""
1052
-
1053
- #: includes/admin/settings/register-settings.php:594
1054
- msgid ""
1055
- "Enable this checkbox to enable Mashshare on categories with multiple "
1056
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1057
- msgstr ""
1058
-
1059
- #: includes/admin/settings/register-settings.php:600
1060
- msgid "Frontpage"
1061
- msgstr ""
1062
-
1063
- #: includes/admin/settings/register-settings.php:601
1064
- msgid "Enable share buttons on frontpage"
1065
- msgstr ""
1066
-
1067
- #: includes/admin/settings/register-settings.php:606
1068
- msgid "Debug"
1069
- msgstr ""
1070
-
1071
- #: includes/admin/settings/register-settings.php:612
1072
- msgid "Disable Cache"
1073
- msgstr ""
1074
-
1075
- #: includes/admin/settings/register-settings.php:618
1076
- msgid "Attention: Purge DB Cache"
1077
- msgstr ""
1078
-
1079
- #: includes/admin/settings/register-settings.php:624
1080
- msgid "Debug mode"
1081
- msgstr ""
1082
-
1083
- #: includes/admin/settings/register-settings.php:633
1084
- msgid "Activate your Add-Ons"
1085
- msgstr ""
1086
-
1087
- #: includes/admin/settings/register-settings.php:634
1088
- msgid ""
1089
- "Activate your license key to get important security and feature updates for "
1090
- "your Add-On!"
1091
- msgstr ""
1092
-
1093
- #: includes/admin/settings/register-settings.php:634
1094
- msgid ""
1095
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1096
- "Add-Ons</a>"
1097
- msgstr ""
1098
-
1099
- #: includes/admin/settings/register-settings.php:714
1100
- msgid "Settings updated."
1101
- msgstr ""
1102
-
1103
- #: includes/admin/settings/register-settings.php:747
1104
- msgid "Visual"
1105
- msgstr ""
1106
-
1107
- #: includes/admin/settings/register-settings.php:755
1108
- msgid "Add-On Settings"
1109
- msgstr ""
1110
-
1111
- #: includes/admin/settings/register-settings.php:759
1112
- msgid "Licenses"
1113
- msgstr ""
1114
-
1115
- #: includes/admin/settings/register-settings.php:761
1116
- msgid "Get More Add-Ons"
1117
- msgstr ""
1118
-
1119
- #: includes/admin/settings/register-settings.php:1012
1120
- msgid ""
1121
- "The callback function used for the <strong>%s</strong> setting is missing."
1122
- msgstr ""
1123
-
1124
- #: includes/admin/settings/register-settings.php:1152
1125
- msgid "Upload File"
1126
- msgstr ""
1127
-
1128
- #: includes/admin/settings/register-settings.php:1255
1129
- msgid ""
1130
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1131
- "title=\"Renew your license key\">renew your license key</a>."
1132
- msgstr ""
1133
-
1134
- #: includes/admin/settings/register-settings.php:1268
1135
- msgid ""
1136
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1137
- "account page\">visit your account page</a> and verify it."
1138
- msgstr ""
1139
-
1140
- #: includes/admin/settings/register-settings.php:1281
1141
- msgid ""
1142
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1143
- "title=\"Visit account page\">visit your account page</a> to manage your "
1144
- "license key URLs."
1145
- msgstr ""
1146
-
1147
- #: includes/admin/settings/register-settings.php:1293
1148
- msgid "This is not a %s."
1149
- msgstr ""
1150
-
1151
- #: includes/admin/settings/register-settings.php:1302
1152
- msgid ""
1153
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1154
- "possible upgrades</a> now."
1155
- msgstr ""
1156
-
1157
- #: includes/admin/settings/register-settings.php:1324
1158
- msgid "License key never expires."
1159
- msgstr ""
1160
-
1161
- #: includes/admin/settings/register-settings.php:1331
1162
- msgid ""
1163
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1164
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1165
- msgstr ""
1166
-
1167
- #: includes/admin/settings/register-settings.php:1341
1168
- msgid "Your license key expires on %s."
1169
- msgstr ""
1170
-
1171
- #: includes/admin/settings/register-settings.php:1363
1172
- msgid "Deactivate License"
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1427
1176
- msgid "Social Network"
1177
- msgstr ""
1178
-
1179
- #: includes/admin/settings/register-settings.php:1428
1180
- msgid "Status"
1181
- msgstr ""
1182
-
1183
- #: includes/admin/settings/register-settings.php:1429
1184
- msgid "Custom Label"
1185
- msgstr ""
1186
-
1187
- #: includes/admin/settings/register-settings.php:1497
1188
- msgid "Select Image"
1189
- msgstr ""
1190
-
1191
- #: includes/admin/settings/register-settings.php:1636
1192
- msgid "All Services"
1193
- msgstr ""
1194
-
1195
- #: includes/admin/settings/register-settings.php:1653
1196
- msgid ""
1197
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1198
- "after doing the job."
1199
- msgstr ""
1200
-
1201
- #: includes/admin/settings/register-settings.php:1666
1202
- msgid "Transient Cache disabled! Enable it for performance increase."
1203
- msgstr ""
1204
-
1205
- #: includes/admin/settings/register-settings.php:1679
1206
- msgid ""
1207
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1208
- "content/plugins/mashsharer/logs/"
1209
- msgstr ""
1210
-
1211
- #: includes/admin/settings/user-profiles.php:16
1212
- msgid "MashShare Social Media Integration"
1213
- msgstr ""
1214
-
1215
- #: includes/admin/settings/user-profiles.php:22
1216
- msgid "Your Twitter username (without the @ symbol)"
1217
- msgstr ""
1218
-
1219
- #: includes/admin/settings/user-profiles.php:24
1220
- msgid "Facebook Author URL"
1221
- msgstr ""
1222
-
1223
- #: includes/admin/settings/user-profiles.php:27
1224
- msgid "URL to your Facebok profile."
1225
- msgstr ""
1226
-
1227
- #: includes/admin/tools.php:68
1228
- msgid "Import/Export"
1229
- msgstr ""
1230
-
1231
- #: includes/admin/tools.php:69
1232
- msgid "System Info"
1233
- msgstr ""
1234
-
1235
- #: includes/admin/tools.php:91
1236
- msgid "Export Settings"
1237
- msgstr ""
1238
-
1239
- #: includes/admin/tools.php:93
1240
- msgid ""
1241
- "Export the Mashshare settings for this site as a .json file. This allows you "
1242
- "to easily import the configuration into another site."
1243
- msgstr ""
1244
-
1245
- #: includes/admin/tools.php:99
1246
- msgid "Export"
1247
- msgstr ""
1248
-
1249
- #: includes/admin/tools.php:106
1250
- msgid "Import Settings"
1251
- msgstr ""
1252
-
1253
- #: includes/admin/tools.php:108
1254
- msgid ""
1255
- "Import the Mashshare settings from a .json file. This file can be obtained "
1256
- "by exporting the settings on another site using the form above."
1257
- msgstr ""
1258
-
1259
- #: includes/admin/tools.php:116
1260
- msgid "Import"
1261
- msgstr ""
1262
-
1263
- #: includes/admin/tools.php:218
1264
- msgid "Please upload a valid .json file"
1265
- msgstr ""
1266
-
1267
- #: includes/admin/tools.php:224
1268
- msgid "Please upload a file to import"
1269
- msgstr ""
1270
-
1271
- #: includes/admin/tracking.php:266
1272
- msgid "Allow"
1273
- msgstr ""
1274
-
1275
- #: includes/admin/tracking.php:267
1276
- msgid "Do not allow"
1277
- msgstr ""
1278
-
1279
- #: includes/admin/welcome.php:51
1280
- msgid "Welcome to MashShare"
1281
- msgstr ""
1282
-
1283
- #: includes/admin/welcome.php:56
1284
- msgid "MashShare Changelog"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/welcome.php:61
1288
- msgid "Quickstart"
1289
- msgstr ""
1290
-
1291
- #: includes/admin/welcome.php:66
1292
- msgid "The people that build MashShare"
1293
- msgstr ""
1294
-
1295
- #: includes/admin/welcome.php:128
1296
- msgid ""
1297
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1298
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1299
- "needs."
1300
- msgstr ""
1301
-
1302
- #: includes/admin/welcome.php:131
1303
- msgid "Create Your First Social Sharing Button"
1304
- msgstr ""
1305
-
1306
- #: includes/admin/welcome.php:137
1307
- msgid "Settings &rarr; Social Networks"
1308
- msgstr ""
1309
-
1310
- #: includes/admin/welcome.php:138
1311
- msgid ""
1312
- "The Social Network menu is your general access point for activating the "
1313
- "desired share buttons and for customizing the share button label"
1314
- msgstr ""
1315
-
1316
- #: includes/admin/welcome.php:139
1317
- msgid "Settings &rarr; Location & Position"
1318
- msgstr ""
1319
-
1320
- #: includes/admin/welcome.php:140
1321
- msgid ""
1322
- "Select the location and exact position of the share buttons within your "
1323
- "content"
1324
- msgstr ""
1325
-
1326
- #: includes/admin/welcome.php:141
1327
- msgid "You are done! Easy, isn't it?"
1328
- msgstr ""
1329
-
1330
- #: includes/admin/welcome.php:149
1331
- msgid "Display a Most Shared Post Widget"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/welcome.php:155
1335
- msgid "Appearance &rarr; Widgets"
1336
- msgstr ""
1337
-
1338
- #: includes/admin/welcome.php:157
1339
- msgid ""
1340
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1341
- "br>into the desired widget location and save it"
1342
- msgstr ""
1343
-
1344
- #: includes/admin/welcome.php:165
1345
- msgid "Content Shortcodes"
1346
- msgstr ""
1347
-
1348
- #: includes/admin/welcome.php:172
1349
- msgid ""
1350
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1351
- "bold;\">[mashshare]</i>."
1352
- msgstr ""
1353
-
1354
- #: includes/admin/welcome.php:174
1355
- msgid ""
1356
- "Paste the shortcode in content of your posts or pages with the post editor "
1357
- "at the place you want the share buttons appear"
1358
- msgstr ""
1359
-
1360
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1361
- msgid ""
1362
- "There are various parameters you can use for the mashshare shortcode. Find a "
1363
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1364
- "\">here</a>"
1365
- msgstr ""
1366
-
1367
- #: includes/admin/welcome.php:182
1368
- msgid "PHP Template Shortcode"
1369
- msgstr ""
1370
-
1371
- #: includes/admin/welcome.php:188
1372
- msgid ""
1373
- "Add MashShare directly into your theme template files with using the PHP "
1374
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1375
- "&gt;</i>"
1376
- msgstr ""
1377
-
1378
- #: includes/admin/welcome.php:199
1379
- msgid "Need Help?"
1380
- msgstr ""
1381
-
1382
- #: includes/admin/welcome.php:202
1383
- msgid "Great Support"
1384
- msgstr ""
1385
-
1386
- #: includes/admin/welcome.php:203
1387
- msgid ""
1388
- "We do our best to provide the best support we can. If you encounter a "
1389
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1390
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1391
- msgstr ""
1392
-
1393
- #: includes/admin/welcome.php:227
1394
- msgid "Welcome to MashShare %s"
1395
- msgstr ""
1396
-
1397
- #: includes/admin/welcome.php:229
1398
- msgid ""
1399
- "Thank you for updating to the latest version! MashShare is installed and "
1400
- "ready to grow your traffic from social networks!"
1401
- msgstr ""
1402
-
1403
- #: includes/admin/welcome.php:252
1404
- msgid "1. Asyncronous Share Count Aggregation"
1405
- msgstr ""
1406
-
1407
- #: includes/admin/welcome.php:256
1408
- msgid ""
1409
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1410
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1411
- "will be aggregated only after page loading and never while page loads. This "
1412
- "is a huge performance update."
1413
- msgstr ""
1414
-
1415
- #: includes/admin/welcome.php:259
1416
- msgid "2. Open Graph and Twitter Card Integration"
1417
- msgstr ""
1418
-
1419
- #: includes/admin/welcome.php:260
1420
- msgid ""
1421
- "Use open graph and twitter card to specify the content you like to share. If "
1422
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1423
- "and extend it with custom data to get the maximum out of your valuable "
1424
- "content."
1425
- msgstr ""
1426
-
1427
- #: includes/admin/welcome.php:267
1428
- msgid "3. Responsive Buttons per default"
1429
- msgstr ""
1430
-
1431
- #: includes/admin/welcome.php:268
1432
- msgid ""
1433
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1434
- "buttons look great on mobile and desktop devices."
1435
- msgstr ""
1436
-
1437
- #: includes/admin/welcome.php:270
1438
- msgid "4. Share Count Dashboard"
1439
- msgstr ""
1440
-
1441
- #: includes/admin/welcome.php:271
1442
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1443
- msgstr ""
1444
-
1445
- #: includes/admin/welcome.php:275
1446
- msgid "5. A much cleaner user interface"
1447
- msgstr ""
1448
-
1449
- #: includes/admin/welcome.php:276
1450
- msgid ""
1451
- "We spent a lot of time to make useful first time settings and improved the "
1452
- "user interface for an easier experience."
1453
- msgstr ""
1454
-
1455
- #: includes/admin/welcome.php:284
1456
- msgid "Additional Updates"
1457
- msgstr ""
1458
-
1459
- #: includes/admin/welcome.php:287
1460
- msgid "Developer Friendly"
1461
- msgstr ""
1462
-
1463
- #: includes/admin/welcome.php:288
1464
- msgid ""
1465
- "Are you a theme developer and want to use MashShare as your build in share "
1466
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1467
- "instructions.</a>"
1468
- msgstr ""
1469
-
1470
- #: includes/admin/welcome.php:291
1471
- msgid "Check Open Graph Settings"
1472
- msgstr ""
1473
-
1474
- #: includes/admin/welcome.php:292
1475
- msgid ""
1476
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1477
- "data on your site is working as expected or conflicts with other open graph "
1478
- "data."
1479
- msgstr ""
1480
-
1481
- #: includes/admin/welcome.php:295
1482
- msgid "Use Yoast SEO Title"
1483
- msgstr ""
1484
-
1485
- #: includes/admin/welcome.php:296
1486
- msgid "MashShare will use the YOAST SEO title if it is defined."
1487
- msgstr ""
1488
-
1489
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1490
- msgid "Go to MashShare Settings"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/welcome.php:303
1494
- msgid "View the Full Changelog"
1495
- msgstr ""
1496
-
1497
- #: includes/admin/welcome.php:326
1498
- msgid "What's New"
1499
- msgstr ""
1500
-
1501
- #: includes/admin/welcome.php:332
1502
- msgid "Credits"
1503
- msgstr ""
1504
-
1505
- #: includes/admin/welcome.php:353
1506
- msgid ""
1507
- "Mashshare is created by a René Hermenau and developers all over the world "
1508
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1509
- "WordPress."
1510
- msgstr ""
1511
-
1512
- #: includes/admin/welcome.php:356
1513
- msgid ""
1514
- " If you want to be credited here participate on the development and make "
1515
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1516
- msgstr ""
1517
-
1518
- #: includes/admin/welcome.php:381
1519
- msgid "View %s"
1520
- msgstr ""
1521
-
1522
- #: includes/admin/welcome.php:436
1523
- msgid "No valid changelog was found."
1524
- msgstr ""
1525
-
1526
- #: includes/admin/welcome.php:469
1527
- msgid "Full Changelog"
1528
- msgstr ""
1529
-
1530
- #: includes/class-mashsb-html-elements.php:43
1531
- msgctxt "all dropdown items"
1532
- msgid "All"
1533
- msgstr ""
1534
-
1535
- #: includes/class-mashsb-html-elements.php:44
1536
- msgctxt "no dropdown items"
1537
- msgid "None"
1538
- msgstr ""
1539
-
1540
- #: includes/class-mashsb-html-elements.php:232
1541
- msgid "Enter username"
1542
- msgstr ""
1543
-
1544
- #: includes/class-mashsb-license-handler.php:177
1545
- msgid "%1$s License Key"
1546
- msgstr ""
1547
-
1548
- #: includes/class-mashsb-license-handler.php:210
1549
- msgid ""
1550
- "Enter your extension license keys here to receive updates for purchased "
1551
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1552
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1553
- msgstr ""
1554
-
1555
- #: includes/class-mashsb-license-handler.php:319
1556
- msgid "Nonce verification failed"
1557
- msgstr ""
1558
-
1559
- #: includes/class-mashsb-license-handler.php:436
1560
- msgid ""
1561
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1562
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1563
- "issue."
1564
- msgstr ""
1565
-
1566
- #: includes/class-mashsb-license-handler.php:475
1567
- msgid "Enter valid license key for automatic updates."
1568
- msgstr ""
1569
-
1570
- #: includes/class-mashsb-shared-posts-widget.php:13
1571
- msgid "Mashshare - Most Shared Posts"
1572
- msgstr ""
1573
-
1574
- #: includes/class-mashsb-shared-posts-widget.php:37
1575
- msgid "Widget Title"
1576
- msgstr ""
1577
-
1578
- #: includes/class-mashsb-shared-posts-widget.php:42
1579
- msgid "How many posts to display?"
1580
- msgstr ""
1581
-
1582
- #: includes/class-mashsb-shared-posts-widget.php:46
1583
- msgid "Show Shares? Say \"No\" when using fake shares!"
1584
- msgstr ""
1585
-
1586
- #: includes/class-mashsb-shared-posts-widget.php:61
1587
- msgid "Show shares below post title"
1588
- msgstr ""
1589
-
1590
- #: includes/class-mashsb-shared-posts-widget.php:68
1591
- msgid "Time period and age of posts"
1592
- msgstr ""
1593
-
1594
- #: includes/template-functions.php:249
1595
- msgid "Subscribe"
1596
- msgstr ""
1597
-
1598
- #: includes/template-functions.php:517
1599
- msgid "SHARES"
1600
- msgstr ""
1601
-
1602
- #: includes/template-functions.php:1114
1603
- msgid "Page not found"
1604
- msgstr ""
1605
-
1606
- #. translators: %s: search phrase
1607
- #: includes/template-functions.php:1119
1608
- msgid "Search Results for &#8220;%s&#8221;"
1609
- msgstr ""
1610
-
1611
- #: includes/template-functions.php:1152
1612
- msgctxt "yearly archives date format"
1613
- msgid "Y"
1614
- msgstr ""
1615
-
1616
- #: includes/template-functions.php:1154
1617
- msgctxt "monthly archives date format"
1618
- msgid "F Y"
1619
- msgstr ""
1620
-
1621
- #: mashshare.php:124 mashshare.php:136
1622
- msgid "Cheatin&#8217; huh?"
1623
- msgstr ""
1624
-
1625
- #: templates/sidebar.php:17
1626
- msgid "Increase your Shares and Social Traffic"
1627
- msgstr ""
1628
-
1629
- #: templates/sidebar.php:20
1630
- msgid "Get 20% Off!"
1631
- msgstr ""
1632
-
1633
- #: templates/sidebar.php:25
1634
- msgid ""
1635
- "Submit your name and email and we'll send you a coupon for 20% off your "
1636
- "upgrade to the pro version."
1637
- msgstr ""
1638
-
1639
- #: templates/sidebar.php:29
1640
- msgid "Your Email"
1641
- msgstr ""
1642
-
1643
- #: templates/sidebar.php:33
1644
- msgid "First Name"
1645
- msgstr ""
1646
-
1647
- #: templates/sidebar.php:37
1648
- msgid "Last Name"
1649
- msgstr ""
1650
-
1651
- #: templates/sidebar.php:44
1652
- msgid "Send me the coupon"
1653
- msgstr ""
1654
-
1655
- #: templates/sidebar.php:48
1656
- msgid ""
1657
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1658
- "click anytime."
1659
- msgstr ""
1660
-
1661
- #. Plugin Name of the plugin/theme
1662
- msgid "Mashshare Share Buttons"
1663
- msgstr ""
1664
-
1665
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1666
- #. Plugin URI of the plugin/theme
1667
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1668
- #. Author URI of the plugin/theme
1669
- msgid "https://www.mashshare.net"
1670
- msgstr ""
1671
-
1672
- #. Description of the plugin/theme
1673
- msgid ""
1674
- "Mashshare is a Share functionality inspired by the the great website "
1675
- "Mashable for Facebook and Twitter. More networks available."
1676
- msgstr ""
1677
-
1678
- #. Author of the plugin/theme
1679
- msgid "René Hermenau"
1680
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-id_ID.mo DELETED
Binary file
languages/mashsb-id_ID.po DELETED
@@ -1,1714 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # ipuL Hayat <redaksi.harianaceh@gmail.com>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mashshare\n"
8
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
9
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
10
- "PO-Revision-Date: 2016-06-23 19:10+0100\n"
11
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
12
- "Language-Team: Indonesian (http://www.transifex.com/renehermenau/mashshare/"
13
- "language/id/)\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Language: id\n"
18
- "Plural-Forms: nplurals=1; plural=0;\n"
19
- "X-Generator: Poedit 1.5.6\n"
20
-
21
- msgid ""
22
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
23
- "Highly customizable Social Media ecosystem"
24
- msgstr ""
25
-
26
- #: includes/MASHSB_SL_Plugin_Updater.php:177
27
- msgid ""
28
- "There is a new version of %1$s available. <a target=\"_blank\" class="
29
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
30
- msgstr ""
31
-
32
- #: includes/MASHSB_SL_Plugin_Updater.php:184
33
- msgid ""
34
- "There is a new version of %1$s available. <a target=\"_blank\" class="
35
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
36
- "\">update now</a>."
37
- msgstr ""
38
-
39
- #: includes/MASHSB_SL_Plugin_Updater.php:324
40
- msgid "You do not have permission to install plugin updates"
41
- msgstr ""
42
-
43
- #: includes/MASHSB_SL_Plugin_Updater.php:324
44
- #: includes/class-mashsb-license-handler.php:319
45
- msgid "Error"
46
- msgstr ""
47
-
48
- #: includes/admin/add-ons.php:27
49
- msgid "Add Ons for Mashshare"
50
- msgstr "Add Ons untuk Mashshare"
51
-
52
- #: includes/admin/add-ons.php:28
53
- msgid "Visit Website"
54
- msgstr "Kunjungi Website"
55
-
56
- #: includes/admin/add-ons.php:28
57
- msgid "See Details"
58
- msgstr "Lihat Detil"
59
-
60
- #: includes/admin/add-ons.php:30
61
- msgid "These add-ons extend the functionality of Mashshare."
62
- msgstr "Add-ons berikut mampu memperkaya fungsi Mashshare."
63
-
64
- #: includes/admin/add-ons.php:54
65
- msgid ""
66
- "There was an error retrieving the Mashshare addon list from the server. "
67
- "Please try again later."
68
- msgstr ""
69
- "Ada kesalahan saat mengambil daftar addon Mashshare dari server. Silakan "
70
- "coba lagi nanti."
71
-
72
- #: includes/admin/admin-footer.php:24
73
- msgid ""
74
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
75
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
76
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
77
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
78
- "\"blank\">Documentation</a>"
79
- msgstr ""
80
-
81
- #: includes/admin/admin-notices.php:51
82
- msgid ""
83
- "MashShare needs the PHP extension cURL which is not installed on your "
84
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
85
- "to be able to collect share count of your posts."
86
- msgstr ""
87
-
88
- #: includes/admin/admin-notices.php:58
89
- msgid ""
90
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
91
- ">Social Networks</a> and enable at least one Social Network."
92
- msgstr ""
93
-
94
- #: includes/admin/admin-notices.php:64
95
- msgid ""
96
- "Your Sharebar Add-On version is not using new short url mechanism of "
97
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
98
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
99
- "short urls will not stop working in one of the next updates. This requires a "
100
- "valid license of the Sharebar Add-On"
101
- msgstr ""
102
-
103
- #: includes/admin/admin-notices.php:70
104
- msgid ""
105
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
106
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
107
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
108
- "twitter short urls will not stop working in one of the next updates. This "
109
- "requires a valid license of the Floating Sidebar Add-On"
110
- msgstr ""
111
-
112
- #: includes/admin/admin-notices.php:76
113
- msgid ""
114
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
115
- ">Short URL Integration</i></a> and check the Google API key."
116
- msgstr ""
117
-
118
- #: includes/admin/admin-notices.php:82
119
- msgid ""
120
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
121
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
122
- "check the Bitly API key."
123
- msgstr ""
124
-
125
- #: includes/admin/admin-notices.php:88
126
- msgid ""
127
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
128
- "is not longer needed and having it activated leads to duplicate open graph "
129
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
130
- msgstr ""
131
-
132
- #: includes/admin/admin-notices.php:94
133
- msgid ""
134
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
135
- "not longer needed and already built in MashShare. Deactivate it from <a href="
136
- "\"%s\"> Plugin Settings</a> "
137
- msgstr ""
138
-
139
- #: includes/admin/admin-notices.php:100
140
- msgid ""
141
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
142
- "\">Permalinks</a> must be enabled to count shares. Share count is "
143
- "deactivated until you have fixed this."
144
- msgstr ""
145
-
146
- #: includes/admin/admin-notices.php:258
147
- msgid ""
148
- "There seems to be an issue with the server. Please try again in a few "
149
- "minutes."
150
- msgstr ""
151
- "Sepertinya ada masalah dengan server. Silakan coba lagi dalam beberapa menit."
152
-
153
- #: includes/admin/admin-pages.php:31
154
- msgid "MashShare"
155
- msgstr ""
156
-
157
- #: includes/admin/admin-pages.php:32
158
- msgid "MashShare Settings"
159
- msgstr ""
160
-
161
- #: includes/admin/admin-pages.php:32
162
- #: includes/admin/settings/register-settings.php:744
163
- msgid "Settings"
164
- msgstr "Pengaturan"
165
-
166
- #: includes/admin/admin-pages.php:33
167
- msgid "MashShare Add Ons"
168
- msgstr ""
169
-
170
- #: includes/admin/admin-pages.php:33
171
- msgid "Get Add Ons"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:34
175
- msgid "MashShare Tools"
176
- msgstr ""
177
-
178
- #: includes/admin/admin-pages.php:34
179
- msgid "Im/Export & System"
180
- msgstr ""
181
-
182
- #: includes/admin/meta-box/inc/core.php:40
183
- msgid "Documentation"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/core.php:41
187
- msgid "Extensions"
188
- msgstr "Ekstensi"
189
-
190
- #: includes/admin/meta-box/inc/field.php:196
191
- msgid "+ Add more"
192
- msgstr ""
193
-
194
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
195
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
196
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
197
- msgid "Delete"
198
- msgstr ""
199
-
200
- #: includes/admin/meta-box/inc/fields/button.php:29
201
- msgid "Click me"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
205
- msgid "Yes"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
209
- msgid "No"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/file-input.php:18
213
- msgid "Select File"
214
- msgstr ""
215
-
216
- #: includes/admin/meta-box/inc/fields/file-input.php:41
217
- #: includes/admin/meta-box/inc/fields/select.php:91
218
- msgid "Select"
219
- msgstr ""
220
-
221
- #: includes/admin/meta-box/inc/fields/file-input.php:43
222
- msgid "Remove"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file.php:15
226
- msgid "You may only upload maximum %d file"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:16
230
- msgid "You may only upload maximum %d files"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:83
234
- msgid "Error: Cannot delete file"
235
- msgstr ""
236
-
237
- #: includes/admin/meta-box/inc/fields/file.php:96
238
- msgctxt "file upload"
239
- msgid "Upload Files"
240
- msgstr ""
241
-
242
- #: includes/admin/meta-box/inc/fields/file.php:97
243
- msgctxt "file upload"
244
- msgid "+ Add new file"
245
- msgstr ""
246
-
247
- #: includes/admin/meta-box/inc/fields/file.php:153
248
- msgctxt "file upload"
249
- msgid "Delete"
250
- msgstr ""
251
-
252
- #: includes/admin/meta-box/inc/fields/file.php:154
253
- msgctxt "file upload"
254
- msgid "Edit"
255
- msgstr ""
256
-
257
- #: includes/admin/meta-box/inc/fields/image.php:61
258
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
259
- msgctxt "image upload"
260
- msgid "Upload Images"
261
- msgstr ""
262
-
263
- #: includes/admin/meta-box/inc/fields/image.php:62
264
- msgctxt "image upload"
265
- msgid "+ Add new image"
266
- msgstr ""
267
-
268
- #: includes/admin/meta-box/inc/fields/image.php:124
269
- msgctxt "image upload"
270
- msgid "Delete"
271
- msgstr ""
272
-
273
- #: includes/admin/meta-box/inc/fields/image.php:125
274
- msgctxt "image upload"
275
- msgid "Edit"
276
- msgstr ""
277
-
278
- #: includes/admin/meta-box/inc/fields/key-value.php:19
279
- msgid "Key"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/key-value.php:25
283
- msgid "Value"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/map.php:49
287
- msgid "Find Address"
288
- msgstr ""
289
-
290
- #: includes/admin/meta-box/inc/fields/media.php:18
291
- msgctxt "media"
292
- msgid "Add Image"
293
- msgstr ""
294
-
295
- #: includes/admin/meta-box/inc/fields/media.php:19
296
- msgctxt "media"
297
- msgid " file"
298
- msgstr ""
299
-
300
- #: includes/admin/meta-box/inc/fields/media.php:20
301
- msgctxt "media"
302
- msgid " files"
303
- msgstr ""
304
-
305
- #: includes/admin/meta-box/inc/fields/media.php:21
306
- msgctxt "media"
307
- msgid "Remove"
308
- msgstr ""
309
-
310
- #: includes/admin/meta-box/inc/fields/media.php:22
311
- msgctxt "media"
312
- msgid "Edit"
313
- msgstr ""
314
-
315
- #: includes/admin/meta-box/inc/fields/media.php:23
316
- msgctxt "media"
317
- msgid "View"
318
- msgstr ""
319
-
320
- #: includes/admin/meta-box/inc/fields/media.php:24
321
- msgctxt "media"
322
- msgid "No Title"
323
- msgstr ""
324
-
325
- #: includes/admin/meta-box/inc/fields/media.php:27
326
- msgctxt "media"
327
- msgid "Select Files"
328
- msgstr ""
329
-
330
- #: includes/admin/meta-box/inc/fields/media.php:28
331
- msgctxt "media"
332
- msgid "Drop files here to upload"
333
- msgstr ""
334
-
335
- #: includes/admin/meta-box/inc/fields/oembed.php:65
336
- msgid "Embed HTML not available."
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/oembed.php:84
340
- msgid "Preview"
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/post.php:34
344
- msgid "Select a post"
345
- msgstr ""
346
-
347
- #: includes/admin/meta-box/inc/fields/post.php:38
348
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
349
- msgid "Select a %s"
350
- msgstr ""
351
-
352
- #: includes/admin/meta-box/inc/fields/select.php:91
353
- msgid "All"
354
- msgstr "Semua"
355
-
356
- #: includes/admin/meta-box/inc/fields/select.php:91
357
- msgid "None"
358
- msgstr "Tidak ada"
359
-
360
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
361
- msgid "Select a term"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/fields/user.php:34
365
- msgid "Select an user"
366
- msgstr ""
367
-
368
- #: includes/admin/meta-box/inc/validation.php:42
369
- msgid "Please correct the errors highlighted below and try again."
370
- msgstr ""
371
-
372
- #: includes/admin/plugins.php:27
373
- msgid "General Settings"
374
- msgstr "Pengaturan Umum"
375
-
376
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
377
- msgid "Getting Started"
378
- msgstr "Memulai"
379
-
380
- #: includes/admin/plugins.php:51
381
- msgid "Add Ons"
382
- msgstr "Add Ons"
383
-
384
- #: includes/admin/settings/contextual-help.php:29
385
- msgid "For more information:"
386
- msgstr "Untuk informasi lebih lanjut:"
387
-
388
- #: includes/admin/settings/contextual-help.php:30
389
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
390
- msgstr "Kunjungi halaman <a href=\"%s\"> dokumentasi</a> di website Mashshare."
391
-
392
- #: includes/admin/settings/contextual-help.php:32
393
- msgid ""
394
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
395
- "href=\"%s\">extensions</a>."
396
- msgstr ""
397
- "<a href=\"%s\">Kirim permasalahan</a> di <a href=\"%s\">Mashshare </a>. "
398
- "Lihat ekstensi <a href=\"%s\"> </a>."
399
-
400
- #: includes/admin/settings/contextual-help.php:41
401
- msgid "General"
402
- msgstr "Umum"
403
-
404
- #: includes/admin/settings/contextual-help.php:42
405
- msgid "This screen provides the most basic settings for configuring Mashshare."
406
- msgstr ""
407
- "Layar ini memberikan pengaturan yang paling dasar untuk mengkonfigurasi "
408
- "Mashshare."
409
-
410
- #: includes/admin/settings/display-settings.php:133
411
- msgid "MashShare "
412
- msgstr ""
413
-
414
- #: includes/admin/settings/metabox-settings.php:102
415
- msgid "Social Media Image"
416
- msgstr ""
417
-
418
- #: includes/admin/settings/metabox-settings.php:103
419
- msgid ""
420
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
421
- "1200px x 630px. Aspect ratio 1.9:1"
422
- msgstr ""
423
-
424
- #: includes/admin/settings/metabox-settings.php:112
425
- msgid "Social Media Title"
426
- msgstr ""
427
-
428
- #: includes/admin/settings/metabox-settings.php:113
429
- msgid ""
430
- "This title is used by the open graph meta tag og:title and will be used when "
431
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
432
- "to use "
433
- msgstr ""
434
-
435
- #: includes/admin/settings/metabox-settings.php:113
436
- msgid "Yoast Facebook / SEO title"
437
- msgstr ""
438
-
439
- #: includes/admin/settings/metabox-settings.php:121
440
- msgid "Social Media Description"
441
- msgstr ""
442
-
443
- #: includes/admin/settings/metabox-settings.php:122
444
- msgid ""
445
- "This description is used by the open graph meta tag og:description and will "
446
- "be used when users share your content on Facebook, LinkedIn, and Google "
447
- "Plus. Leave this blank to use "
448
- msgstr ""
449
-
450
- #: includes/admin/settings/metabox-settings.php:122
451
- msgid "Yoast Facebook open graph description or the post excerpt."
452
- msgstr ""
453
-
454
- #: includes/admin/settings/metabox-settings.php:135
455
- msgid "Pinterest Image"
456
- msgstr ""
457
-
458
- #: includes/admin/settings/metabox-settings.php:135
459
- #: includes/admin/settings/metabox-settings.php:145
460
- msgid ""
461
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
462
- "the Pinterest Features"
463
- msgstr ""
464
-
465
- #: includes/admin/settings/metabox-settings.php:136
466
- msgid ""
467
- "Pinned images need to be more vertical than horizontal in orientation. Use "
468
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
469
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
470
- msgstr ""
471
-
472
- #: includes/admin/settings/metabox-settings.php:145
473
- msgid "Pinterest Description"
474
- msgstr ""
475
-
476
- #: includes/admin/settings/metabox-settings.php:146
477
- msgid ""
478
- "Place a customized message that will be used when this post is shared on "
479
- "Pinterest. Leave this blank to use the "
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:146
483
- msgid "Yoast SEO title"
484
- msgstr ""
485
-
486
- #: includes/admin/settings/metabox-settings.php:146
487
- msgid "the post title"
488
- msgstr ""
489
-
490
- #: includes/admin/settings/metabox-settings.php:154
491
- msgid "Custom Tweet"
492
- msgstr ""
493
-
494
- #: includes/admin/settings/metabox-settings.php:176
495
- msgid ""
496
- "Publish the post and validate if the open graph meta tags on your site are "
497
- "correct! Incorrect data can result in wrong share description, title or "
498
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
499
- "new scrape information\" to purge the facebook cache."
500
- msgstr ""
501
-
502
- #: includes/admin/settings/metabox-settings.php:206
503
- msgid "Based on your username @"
504
- msgstr ""
505
-
506
- #: includes/admin/settings/metabox-settings.php:206
507
- msgid " ,the shortened post url and the current content above"
508
- msgstr ""
509
-
510
- #: includes/admin/settings/metabox-settings.php:208
511
- msgid "Based on the shortened post url and the current content above"
512
- msgstr ""
513
-
514
- #: includes/admin/settings/metabox-settings.php:210
515
- msgid " your tweet has a maximum of 140 characters. "
516
- msgstr ""
517
-
518
- #: includes/admin/settings/metabox-settings.php:212
519
- msgid "If this is left blank the post title will be used. "
520
- msgstr ""
521
-
522
- #: includes/admin/settings/metabox-settings.php:214
523
- msgid ""
524
- "If this is left blank the Yoast Twitter Title or post title will be used. "
525
- msgstr ""
526
-
527
- #: includes/admin/settings/register-settings.php:120
528
- msgid "General settings"
529
- msgstr "Pengaturan Umum"
530
-
531
- #: includes/admin/settings/register-settings.php:126
532
- msgid "Share counts"
533
- msgstr ""
534
-
535
- #: includes/admin/settings/register-settings.php:127
536
- msgid ""
537
- "<i>MashEngine</i> collects shares by direct request to social networks. "
538
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
539
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
540
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
541
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
542
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
543
- "this free service to get the twitter share count. Visit the newsharecount "
544
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
545
- "Thats it!"
546
- msgstr ""
547
-
548
- #: includes/admin/settings/register-settings.php:136
549
- msgid "Sharedcount.com API Key"
550
- msgstr ""
551
-
552
- #: includes/admin/settings/register-settings.php:137
553
- msgid ""
554
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
555
- "\">SharedCount.com</a> for 10.000 free daily requests."
556
- msgstr ""
557
-
558
- #: includes/admin/settings/register-settings.php:143
559
- msgid "Sharedcount.com endpint"
560
- msgstr ""
561
-
562
- #: includes/admin/settings/register-settings.php:144
563
- msgid ""
564
- "The SharedCount Domain your API key is configured to query. For example, "
565
- "free.sharedcount.com. This may update automatically if configured "
566
- "incorrectly."
567
- msgstr ""
568
-
569
- #: includes/admin/settings/register-settings.php:151
570
- msgid "Caching Method"
571
- msgstr ""
572
-
573
- #: includes/admin/settings/register-settings.php:152
574
- msgid ""
575
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
576
- "visitor and refreshes the cache asyncronously in the background. New posts "
577
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
578
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
579
- "cache while page is loading and adds a little extra time during inital page "
580
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
581
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
582
- "was using before version 3.0"
583
- msgstr ""
584
-
585
- #: includes/admin/settings/register-settings.php:161
586
- msgid "Cache expiration"
587
- msgstr ""
588
-
589
- #: includes/admin/settings/register-settings.php:162
590
- msgid ""
591
- "Shares are counted for posts after a certain time and counts are not updated "
592
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
593
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
594
- "more"
595
- msgstr ""
596
-
597
- #: includes/admin/settings/register-settings.php:168
598
- msgid "Facebook Count"
599
- msgstr ""
600
-
601
- #: includes/admin/settings/register-settings.php:169
602
- msgid ""
603
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
604
- "the pure share count"
605
- msgstr ""
606
-
607
- #: includes/admin/settings/register-settings.php:179
608
- msgid "Fake Share counts"
609
- msgstr "Jumlah Berbagi Palsu"
610
-
611
- #: includes/admin/settings/register-settings.php:180
612
- msgid ""
613
- "This number will be aggregated to all your share counts and is multiplied "
614
- "with a post specific factor. (Number of post title words divided with 10)."
615
- msgstr ""
616
-
617
- #: includes/admin/settings/register-settings.php:186
618
- msgid "Disable Sharecount"
619
- msgstr "Nonaktifkan Sharecount"
620
-
621
- #: includes/admin/settings/register-settings.php:187
622
- msgid ""
623
- "Use this when curl() is not supported on your server or share counts should "
624
- "not counted. This mode does not call the database and no SQL queries are "
625
- "generated. (Only less performance benefit. All db requests are cached) "
626
- "Default: false"
627
- msgstr ""
628
-
629
- #: includes/admin/settings/register-settings.php:192
630
- msgid "Hide Sharecount"
631
- msgstr "Sembunyikan Sharecount"
632
-
633
- #: includes/admin/settings/register-settings.php:193
634
- msgid ""
635
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
636
- "specific post are not shown until the share count of this number is reached."
637
- msgstr ""
638
- "<strong>Opsional:</strong> Jika Anda mengisi angka di sini, berbagi untuk "
639
- "pos tertentu tidak muncul hingga hitungan angka berbagi ini tercapai."
640
-
641
- #: includes/admin/settings/register-settings.php:199
642
- msgid "Execution Order"
643
- msgstr "Pelaksanaan Eksekusi"
644
-
645
- #: includes/admin/settings/register-settings.php:200
646
- msgid ""
647
- "If you use other content plugins you can define here the execution order. "
648
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
649
- "executed before any other plugin (When the other plugin is not overwriting "
650
- "our execution order). Default is \"1000\""
651
- msgstr ""
652
- "Jika Anda menggunakan plugin konten lain, Anda dapat menentukannya di sini "
653
- "pelaksanaan eksekusi. Angka yang lebih rendah artinya eksekusi sebelumnya. "
654
- "Misalnya, Katakanlah \"0\" dan Mashshare dijalankan sebelum plugin lainnya "
655
- "(Ketika plugin lain tidak menimpa perintah eksekusi plugin ini). Default "
656
- "adalah \"1000\""
657
-
658
- #: includes/admin/settings/register-settings.php:207
659
- msgid "JavaScript in Footer"
660
- msgstr ""
661
-
662
- #: includes/admin/settings/register-settings.php:208
663
- msgid ""
664
- "Enable this to load all *.js files into footer. Make sure your theme uses "
665
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
666
- msgstr ""
667
-
668
- #: includes/admin/settings/register-settings.php:213
669
- msgid "JS & CSS Everywhere"
670
- msgstr ""
671
-
672
- #: includes/admin/settings/register-settings.php:214
673
- msgid ""
674
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
675
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
676
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
677
- "option to allow conditional loading so MashShare's JS and CSS files are "
678
- "loaded only on pages where MashShare is used."
679
- msgstr ""
680
-
681
- #: includes/admin/settings/register-settings.php:220
682
- msgid "Twitter Popup disabled"
683
- msgstr ""
684
-
685
- #: includes/admin/settings/register-settings.php:221
686
- msgid ""
687
- "Check this box if your twitter popup is openening twice. This happens "
688
- "sometimes when you are using any third party twitter plugin or the twitter "
689
- "SDK on your website."
690
- msgstr ""
691
-
692
- #: includes/admin/settings/register-settings.php:227
693
- msgid "Remove Data on Uninstall?"
694
- msgstr "Hapus Data Uninstall?"
695
-
696
- #: includes/admin/settings/register-settings.php:228
697
- msgid ""
698
- "Check this box if you would like Mashshare to completely remove all of its "
699
- "data when the plugin is deleted."
700
- msgstr ""
701
- "Centang kotak ini jika Anda ingin Mashshare menghapus semua data ketika "
702
- "plugin dihapus."
703
-
704
- #: includes/admin/settings/register-settings.php:233
705
- msgid "Allow Usage Tracking"
706
- msgstr ""
707
-
708
- #: includes/admin/settings/register-settings.php:234
709
- #: includes/admin/tracking.php:265
710
- msgid ""
711
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
712
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
713
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
714
- "Ons</a>. No sensitive data is tracked."
715
- msgstr ""
716
-
717
- #: includes/admin/settings/register-settings.php:239
718
- msgid "User Roles Options Visibility"
719
- msgstr ""
720
-
721
- #: includes/admin/settings/register-settings.php:240
722
- msgid ""
723
- "Select user roles which can see page and post MashShare Social Sharing Meta "
724
- "Box Options"
725
- msgstr ""
726
-
727
- #: includes/admin/settings/register-settings.php:243
728
- msgid "Select User Roles"
729
- msgstr ""
730
-
731
- #: includes/admin/settings/register-settings.php:244
732
- msgid "All Roles"
733
- msgstr ""
734
-
735
- #: includes/admin/settings/register-settings.php:248
736
- #: includes/admin/settings/register-settings.php:294
737
- #: includes/admin/settings/register-settings.php:751
738
- msgid "Social Networks"
739
- msgstr "Jaringan Sosial"
740
-
741
- #: includes/admin/settings/register-settings.php:254
742
- msgid "Facebook page url"
743
- msgstr ""
744
-
745
- #: includes/admin/settings/register-settings.php:255
746
- msgid "Optional: The url of the main facebook account connected with this site"
747
- msgstr ""
748
-
749
- #: includes/admin/settings/register-settings.php:261
750
- msgid "Facebook App ID"
751
- msgstr ""
752
-
753
- #: includes/admin/settings/register-settings.php:262
754
- msgid ""
755
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
756
- "a>"
757
- msgstr ""
758
-
759
- #: includes/admin/settings/register-settings.php:268
760
- #: includes/admin/settings/user-profiles.php:19
761
- msgid "Twitter Username"
762
- msgstr ""
763
-
764
- #: includes/admin/settings/register-settings.php:269
765
- msgid ""
766
- "<strong>Optional:</strong> Using your twitter username results in via "
767
- "@username"
768
- msgstr ""
769
-
770
- #: includes/admin/settings/register-settings.php:275
771
- msgid "Twitter Card"
772
- msgstr ""
773
-
774
- #: includes/admin/settings/register-settings.php:276
775
- msgid ""
776
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
777
- "plugin their meta tags will be removed and MashShare will use existing meta "
778
- "data from these plugins. Default: On"
779
- msgstr ""
780
-
781
- #: includes/admin/settings/register-settings.php:281
782
- msgid "Open Graph Meta Tags"
783
- msgstr ""
784
-
785
- #: includes/admin/settings/register-settings.php:282
786
- msgid ""
787
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
788
- "Jetpack plugin their meta tags will be removed and MashShare will use "
789
- "existing meta data from these plugins."
790
- msgstr ""
791
-
792
- #: includes/admin/settings/register-settings.php:287
793
- msgid "Large Buttons"
794
- msgstr "Tombol Besar"
795
-
796
- #: includes/admin/settings/register-settings.php:288
797
- msgid ""
798
- "Specify how many services and social networks are visible before the \"Plus"
799
- "\" Button is shown. This buttons turn into large prominent buttons."
800
- msgstr ""
801
- "Tentukan berapa banyak layanan dan jaringan sosial yang terlihat sebelum "
802
- "\"Plus\" Tombol ditampilkan. Tombol ini berubah menjadi tombol menonjol "
803
- "besar."
804
-
805
- #: includes/admin/settings/register-settings.php:295
806
- msgid ""
807
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
808
- "that should be visible. <br>Activate more networks than number of \"Large "
809
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
810
- msgstr ""
811
-
812
- #: includes/admin/settings/register-settings.php:321
813
- msgid "Short URL Integration"
814
- msgstr ""
815
-
816
- #: includes/admin/settings/register-settings.php:328
817
- msgid "Bitly access token"
818
- msgstr ""
819
-
820
- #: includes/admin/settings/register-settings.php:329
821
- msgid ""
822
- "If you like to use bitly.com shortener get a free bitly access token <a href="
823
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
824
- "ly/cXnjsh. "
825
- msgstr ""
826
-
827
- #: includes/admin/settings/register-settings.php:335
828
- msgid "Google API Key (goo.gl)"
829
- msgstr ""
830
-
831
- #: includes/admin/settings/register-settings.php:342
832
- msgid "Shorturl method"
833
- msgstr ""
834
-
835
- #: includes/admin/settings/register-settings.php:343
836
- msgid ""
837
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
838
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
839
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
840
- "%s ?p=101</i>"
841
- msgstr ""
842
-
843
- #: includes/admin/settings/register-settings.php:354
844
- msgid "Important: Read this!"
845
- msgstr ""
846
-
847
- #: includes/admin/settings/register-settings.php:355
848
- msgid ""
849
- "<strong>The post short url is NOT generated immediatly after first page load!"
850
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
851
- "12 hours for old posts."
852
- msgstr ""
853
-
854
- #: includes/admin/settings/register-settings.php:374
855
- msgid "Customization"
856
- msgstr ""
857
-
858
- #: includes/admin/settings/register-settings.php:380
859
- msgid "Round up Shares"
860
- msgstr ""
861
-
862
- #: includes/admin/settings/register-settings.php:381
863
- msgid ""
864
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
865
- "as 1M"
866
- msgstr ""
867
-
868
- #: includes/admin/settings/register-settings.php:386
869
- msgid "Animate Shares"
870
- msgstr "Animasikan Berbagi"
871
-
872
- #: includes/admin/settings/register-settings.php:387
873
- msgid ""
874
- "Count up the shares on page loading with a nice looking animation effect. "
875
- "This only works on singular pages and not with shortcodes generated buttons."
876
- msgstr ""
877
-
878
- #: includes/admin/settings/register-settings.php:392
879
- #: includes/class-mashsb-shared-posts-widget.php:53
880
- msgid "Share Count Label"
881
- msgstr ""
882
-
883
- #: includes/admin/settings/register-settings.php:393
884
- msgid ""
885
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
886
- msgstr ""
887
-
888
- #: includes/admin/settings/register-settings.php:408
889
- msgid "Share Count Color"
890
- msgstr ""
891
-
892
- #: includes/admin/settings/register-settings.php:409
893
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
894
- msgstr "Pilih warna jumlah berbagi dalam format hex, misalnya # 7FC04C:"
895
-
896
- #: includes/admin/settings/register-settings.php:416
897
- msgid "Border Radius"
898
- msgstr "Batas Radius"
899
-
900
- #: includes/admin/settings/register-settings.php:417
901
- msgid ""
902
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
903
- "results in circle buttons. Default value is zero."
904
- msgstr ""
905
- "entukan radius perbatasan semua tombol di pixel. Batas radius adalah 20px "
906
- "menghasilkan tombol lingkaran. Nilai default adalah nol."
907
-
908
- #: includes/admin/settings/register-settings.php:447
909
- msgid "Button Width"
910
- msgstr ""
911
-
912
- #: includes/admin/settings/register-settings.php:448
913
- msgid "Minimum with of the large share buttons in pixels"
914
- msgstr "Ukuran Minimum pada tombol berbagi yang besar tapi dalam ukuran pixel"
915
-
916
- #: includes/admin/settings/register-settings.php:455
917
- msgid "Share Button Style"
918
- msgstr ""
919
-
920
- #: includes/admin/settings/register-settings.php:456
921
- msgid "Change visual appearance of the share buttons."
922
- msgstr "Rubah tampilan visual tombol berbagi."
923
-
924
- #: includes/admin/settings/register-settings.php:467
925
- msgid "Small Share Buttons"
926
- msgstr ""
927
-
928
- #: includes/admin/settings/register-settings.php:468
929
- msgid ""
930
- "All buttons will be shown as pure small icons without any text on desktop "
931
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
932
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
933
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
934
- msgstr ""
935
- "Semua tombol akan ditampilkan dalam bentuk ikon kecil tanpa teks pada "
936
- "tampilan desktop dan perangkat mobile sepanjang waktu.<br><strong>Catatan:</"
937
- "strong> Nonaktifkan ini ketika Anda menggunakan <a href=\"https://www."
938
- "mashshare.net/downloads/mashshare-responsive/\" target=\"_blank\">responsive "
939
- "Add-On</a>"
940
-
941
- #: includes/admin/settings/register-settings.php:479
942
- msgid "Subscribe Button"
943
- msgstr ""
944
-
945
- #: includes/admin/settings/register-settings.php:480
946
- msgid ""
947
- "Specify if the subscribe button is opening a content box below the button or "
948
- "if the button is linked to the \"subscribe url\" below."
949
- msgstr ""
950
-
951
- #: includes/admin/settings/register-settings.php:490
952
- msgid "Subscribe URL"
953
- msgstr ""
954
-
955
- #: includes/admin/settings/register-settings.php:491
956
- msgid ""
957
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
958
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
959
- msgstr ""
960
-
961
- #: includes/admin/settings/register-settings.php:498
962
- msgid "Additional Content"
963
- msgstr ""
964
-
965
- #: includes/admin/settings/register-settings.php:504
966
- msgid "Content Above"
967
- msgstr ""
968
-
969
- #: includes/admin/settings/register-settings.php:505
970
- msgid ""
971
- "Content appearing above share buttons. Use HTML, formulars, like button, "
972
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
973
- msgstr ""
974
-
975
- #: includes/admin/settings/register-settings.php:512
976
- msgid "Content Below"
977
- msgstr ""
978
-
979
- #: includes/admin/settings/register-settings.php:513
980
- msgid ""
981
- "Content appearing below share buttons. Use HTML, formulars, like button, "
982
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
983
- msgstr ""
984
-
985
- #: includes/admin/settings/register-settings.php:520
986
- msgid "Subscribe content"
987
- msgstr "Konten berlangganan"
988
-
989
- #: includes/admin/settings/register-settings.php:521
990
- msgid ""
991
- "Define the content of the opening toggle subscribe window here. Use "
992
- "formulars, like button, links or any other text. Shortcodes are supported, e."
993
- "g.: [contact-form-7]"
994
- msgstr ""
995
- "Menentukan isi jendela beralih pembukaan berlangganan di sini. Gunakan "
996
- "rumus, seperti tombol, tautan atau teks lainnya. Shortcode juga bisa "
997
- "digunakan, mis .: [contact-form-7]"
998
-
999
- #: includes/admin/settings/register-settings.php:530
1000
- msgid "Custom Styles"
1001
- msgstr ""
1002
-
1003
- #: includes/admin/settings/register-settings.php:536
1004
- msgid "General CSS"
1005
- msgstr ""
1006
-
1007
- #: includes/admin/settings/register-settings.php:537
1008
- msgid ""
1009
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
1010
- "it's loaded as an additonal inline css on your site"
1011
- msgstr ""
1012
-
1013
- #: includes/admin/settings/register-settings.php:544
1014
- msgid "AMP CSS"
1015
- msgstr ""
1016
-
1017
- #: includes/admin/settings/register-settings.php:545
1018
- msgid ""
1019
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
1020
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
1021
- "\">AMP Plugin</a> installed."
1022
- msgstr ""
1023
-
1024
- #: includes/admin/settings/register-settings.php:562
1025
- msgid "Location & Position"
1026
- msgstr "Lokasi & Posisi"
1027
-
1028
- #: includes/admin/settings/register-settings.php:568
1029
- msgid "Position"
1030
- msgstr "Posisi"
1031
-
1032
- #: includes/admin/settings/register-settings.php:569
1033
- msgid ""
1034
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1035
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1036
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1037
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1038
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1039
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1040
- "shortcodes</a>."
1041
- msgstr ""
1042
-
1043
- #: includes/admin/settings/register-settings.php:572
1044
- msgid "Top"
1045
- msgstr "Atas"
1046
-
1047
- #: includes/admin/settings/register-settings.php:573
1048
- msgid "Bottom"
1049
- msgstr "Bawah"
1050
-
1051
- #: includes/admin/settings/register-settings.php:574
1052
- msgid "Top and Bottom"
1053
- msgstr "Atas dan Bawah"
1054
-
1055
- #: includes/admin/settings/register-settings.php:575
1056
- msgid "Manual"
1057
- msgstr "Manual"
1058
-
1059
- #: includes/admin/settings/register-settings.php:580
1060
- msgid "Post Types"
1061
- msgstr "Jenis Pos"
1062
-
1063
- #: includes/admin/settings/register-settings.php:581
1064
- msgid ""
1065
- "Select on which post_types the share buttons appear. These values will be "
1066
- "ignored when \"manual\" position is selected."
1067
- msgstr ""
1068
-
1069
- #: includes/admin/settings/register-settings.php:586
1070
- msgid "Exclude from post id"
1071
- msgstr ""
1072
-
1073
- #: includes/admin/settings/register-settings.php:587
1074
- msgid ""
1075
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1076
- "by a comma, e.g. 23, 63, 114 "
1077
- msgstr ""
1078
-
1079
- #: includes/admin/settings/register-settings.php:593
1080
- msgid "Categories"
1081
- msgstr "Kategori"
1082
-
1083
- #: includes/admin/settings/register-settings.php:594
1084
- msgid ""
1085
- "Enable this checkbox to enable Mashshare on categories with multiple "
1086
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1087
- msgstr ""
1088
-
1089
- #: includes/admin/settings/register-settings.php:600
1090
- msgid "Frontpage"
1091
- msgstr "Halaman Depan"
1092
-
1093
- #: includes/admin/settings/register-settings.php:601
1094
- msgid "Enable share buttons on frontpage"
1095
- msgstr "Aktifkan tombol berbagi di halaman depan"
1096
-
1097
- #: includes/admin/settings/register-settings.php:606
1098
- msgid "Debug"
1099
- msgstr "Debug"
1100
-
1101
- #: includes/admin/settings/register-settings.php:612
1102
- msgid "Disable Cache"
1103
- msgstr ""
1104
-
1105
- #: includes/admin/settings/register-settings.php:618
1106
- msgid "Attention: Purge DB Cache"
1107
- msgstr ""
1108
-
1109
- #: includes/admin/settings/register-settings.php:624
1110
- msgid "Debug mode"
1111
- msgstr "Mode debug"
1112
-
1113
- #: includes/admin/settings/register-settings.php:633
1114
- msgid "Activate your Add-Ons"
1115
- msgstr ""
1116
-
1117
- #: includes/admin/settings/register-settings.php:634
1118
- msgid ""
1119
- "Activate your license key to get important security and feature updates for "
1120
- "your Add-On!"
1121
- msgstr ""
1122
-
1123
- #: includes/admin/settings/register-settings.php:634
1124
- msgid ""
1125
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1126
- "Add-Ons</a>"
1127
- msgstr ""
1128
-
1129
- #: includes/admin/settings/register-settings.php:714
1130
- msgid "Settings updated."
1131
- msgstr "Pengaturan diperbarui."
1132
-
1133
- #: includes/admin/settings/register-settings.php:747
1134
- msgid "Visual"
1135
- msgstr "Visual"
1136
-
1137
- #: includes/admin/settings/register-settings.php:755
1138
- msgid "Add-On Settings"
1139
- msgstr ""
1140
-
1141
- #: includes/admin/settings/register-settings.php:759
1142
- msgid "Licenses"
1143
- msgstr "Lisensi"
1144
-
1145
- #: includes/admin/settings/register-settings.php:761
1146
- msgid "Get More Add-Ons"
1147
- msgstr ""
1148
-
1149
- #: includes/admin/settings/register-settings.php:1012
1150
- msgid ""
1151
- "The callback function used for the <strong>%s</strong> setting is missing."
1152
- msgstr ""
1153
- "Fungsi callback yang digunakan untuk <strong>%s</strong> pengaturan hilang."
1154
-
1155
- #: includes/admin/settings/register-settings.php:1152
1156
- msgid "Upload File"
1157
- msgstr "Unggah Berkas"
1158
-
1159
- #: includes/admin/settings/register-settings.php:1255
1160
- msgid ""
1161
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1162
- "title=\"Renew your license key\">renew your license key</a>."
1163
- msgstr ""
1164
-
1165
- #: includes/admin/settings/register-settings.php:1268
1166
- msgid ""
1167
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1168
- "account page\">visit your account page</a> and verify it."
1169
- msgstr ""
1170
-
1171
- #: includes/admin/settings/register-settings.php:1281
1172
- msgid ""
1173
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1174
- "title=\"Visit account page\">visit your account page</a> to manage your "
1175
- "license key URLs."
1176
- msgstr ""
1177
-
1178
- #: includes/admin/settings/register-settings.php:1293
1179
- msgid "This is not a %s."
1180
- msgstr ""
1181
-
1182
- #: includes/admin/settings/register-settings.php:1302
1183
- msgid ""
1184
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1185
- "possible upgrades</a> now."
1186
- msgstr ""
1187
-
1188
- #: includes/admin/settings/register-settings.php:1324
1189
- msgid "License key never expires."
1190
- msgstr ""
1191
-
1192
- #: includes/admin/settings/register-settings.php:1331
1193
- msgid ""
1194
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1195
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1196
- msgstr ""
1197
-
1198
- #: includes/admin/settings/register-settings.php:1341
1199
- msgid "Your license key expires on %s."
1200
- msgstr ""
1201
-
1202
- #: includes/admin/settings/register-settings.php:1363
1203
- msgid "Deactivate License"
1204
- msgstr "Nonaktifkan lisensi"
1205
-
1206
- #: includes/admin/settings/register-settings.php:1427
1207
- msgid "Social Network"
1208
- msgstr ""
1209
-
1210
- #: includes/admin/settings/register-settings.php:1428
1211
- msgid "Status"
1212
- msgstr ""
1213
-
1214
- #: includes/admin/settings/register-settings.php:1429
1215
- msgid "Custom Label"
1216
- msgstr ""
1217
-
1218
- #: includes/admin/settings/register-settings.php:1497
1219
- msgid "Select Image"
1220
- msgstr "Pilih Gambar"
1221
-
1222
- #: includes/admin/settings/register-settings.php:1636
1223
- msgid "All Services"
1224
- msgstr "Semua Layanan"
1225
-
1226
- #: includes/admin/settings/register-settings.php:1653
1227
- msgid ""
1228
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1229
- "after doing the job."
1230
- msgstr ""
1231
- "DB Cache dihapus! Jangan lupa hilangkan centang kotak ini untuk meningkatkan "
1232
- "kinerja setelah melakukan pekerjaan."
1233
-
1234
- #: includes/admin/settings/register-settings.php:1666
1235
- msgid "Transient Cache disabled! Enable it for performance increase."
1236
- msgstr ""
1237
- "Transien Cache dinonaktifkan! Mengaktifkannya untuk meningkatkan kinerja."
1238
-
1239
- #: includes/admin/settings/register-settings.php:1679
1240
- msgid ""
1241
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1242
- "content/plugins/mashsharer/logs/"
1243
- msgstr ""
1244
-
1245
- #: includes/admin/settings/user-profiles.php:16
1246
- msgid "MashShare Social Media Integration"
1247
- msgstr ""
1248
-
1249
- #: includes/admin/settings/user-profiles.php:22
1250
- msgid "Your Twitter username (without the @ symbol)"
1251
- msgstr ""
1252
-
1253
- #: includes/admin/settings/user-profiles.php:24
1254
- msgid "Facebook Author URL"
1255
- msgstr ""
1256
-
1257
- #: includes/admin/settings/user-profiles.php:27
1258
- msgid "URL to your Facebok profile."
1259
- msgstr ""
1260
-
1261
- #: includes/admin/tools.php:68
1262
- msgid "Import/Export"
1263
- msgstr ""
1264
-
1265
- #: includes/admin/tools.php:69
1266
- msgid "System Info"
1267
- msgstr ""
1268
-
1269
- #: includes/admin/tools.php:91
1270
- msgid "Export Settings"
1271
- msgstr ""
1272
-
1273
- #: includes/admin/tools.php:93
1274
- msgid ""
1275
- "Export the Mashshare settings for this site as a .json file. This allows you "
1276
- "to easily import the configuration into another site."
1277
- msgstr ""
1278
-
1279
- #: includes/admin/tools.php:99
1280
- msgid "Export"
1281
- msgstr ""
1282
-
1283
- #: includes/admin/tools.php:106
1284
- msgid "Import Settings"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/tools.php:108
1288
- msgid ""
1289
- "Import the Mashshare settings from a .json file. This file can be obtained "
1290
- "by exporting the settings on another site using the form above."
1291
- msgstr ""
1292
-
1293
- #: includes/admin/tools.php:116
1294
- msgid "Import"
1295
- msgstr ""
1296
-
1297
- #: includes/admin/tools.php:218
1298
- msgid "Please upload a valid .json file"
1299
- msgstr ""
1300
-
1301
- #: includes/admin/tools.php:224
1302
- msgid "Please upload a file to import"
1303
- msgstr ""
1304
-
1305
- #: includes/admin/tracking.php:266
1306
- msgid "Allow"
1307
- msgstr ""
1308
-
1309
- #: includes/admin/tracking.php:267
1310
- msgid "Do not allow"
1311
- msgstr ""
1312
-
1313
- #: includes/admin/welcome.php:51
1314
- msgid "Welcome to MashShare"
1315
- msgstr ""
1316
-
1317
- #: includes/admin/welcome.php:56
1318
- msgid "MashShare Changelog"
1319
- msgstr ""
1320
-
1321
- #: includes/admin/welcome.php:61
1322
- msgid "Quickstart"
1323
- msgstr ""
1324
-
1325
- #: includes/admin/welcome.php:66
1326
- msgid "The people that build MashShare"
1327
- msgstr ""
1328
-
1329
- #: includes/admin/welcome.php:128
1330
- msgid ""
1331
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1332
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1333
- "needs."
1334
- msgstr ""
1335
-
1336
- #: includes/admin/welcome.php:131
1337
- msgid "Create Your First Social Sharing Button"
1338
- msgstr ""
1339
-
1340
- #: includes/admin/welcome.php:137
1341
- msgid "Settings &rarr; Social Networks"
1342
- msgstr ""
1343
-
1344
- #: includes/admin/welcome.php:138
1345
- msgid ""
1346
- "The Social Network menu is your general access point for activating the "
1347
- "desired share buttons and for customizing the share button label"
1348
- msgstr ""
1349
-
1350
- #: includes/admin/welcome.php:139
1351
- msgid "Settings &rarr; Location & Position"
1352
- msgstr ""
1353
-
1354
- #: includes/admin/welcome.php:140
1355
- msgid ""
1356
- "Select the location and exact position of the share buttons within your "
1357
- "content"
1358
- msgstr ""
1359
-
1360
- #: includes/admin/welcome.php:141
1361
- msgid "You are done! Easy, isn't it?"
1362
- msgstr ""
1363
-
1364
- #: includes/admin/welcome.php:149
1365
- msgid "Display a Most Shared Post Widget"
1366
- msgstr ""
1367
-
1368
- #: includes/admin/welcome.php:155
1369
- msgid "Appearance &rarr; Widgets"
1370
- msgstr ""
1371
-
1372
- #: includes/admin/welcome.php:157
1373
- msgid ""
1374
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1375
- "br>into the desired widget location and save it"
1376
- msgstr ""
1377
-
1378
- #: includes/admin/welcome.php:165
1379
- msgid "Content Shortcodes"
1380
- msgstr ""
1381
-
1382
- #: includes/admin/welcome.php:172
1383
- msgid ""
1384
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1385
- "bold;\">[mashshare]</i>."
1386
- msgstr ""
1387
-
1388
- #: includes/admin/welcome.php:174
1389
- msgid ""
1390
- "Paste the shortcode in content of your posts or pages with the post editor "
1391
- "at the place you want the share buttons appear"
1392
- msgstr ""
1393
-
1394
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1395
- msgid ""
1396
- "There are various parameters you can use for the mashshare shortcode. Find a "
1397
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1398
- "\">here</a>"
1399
- msgstr ""
1400
-
1401
- #: includes/admin/welcome.php:182
1402
- msgid "PHP Template Shortcode"
1403
- msgstr ""
1404
-
1405
- #: includes/admin/welcome.php:188
1406
- msgid ""
1407
- "Add MashShare directly into your theme template files with using the PHP "
1408
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1409
- "&gt;</i>"
1410
- msgstr ""
1411
-
1412
- #: includes/admin/welcome.php:199
1413
- msgid "Need Help?"
1414
- msgstr ""
1415
-
1416
- #: includes/admin/welcome.php:202
1417
- msgid "Great Support"
1418
- msgstr ""
1419
-
1420
- #: includes/admin/welcome.php:203
1421
- msgid ""
1422
- "We do our best to provide the best support we can. If you encounter a "
1423
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1424
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1425
- msgstr ""
1426
-
1427
- #: includes/admin/welcome.php:227
1428
- msgid "Welcome to MashShare %s"
1429
- msgstr ""
1430
-
1431
- #: includes/admin/welcome.php:229
1432
- msgid ""
1433
- "Thank you for updating to the latest version! MashShare is installed and "
1434
- "ready to grow your traffic from social networks!"
1435
- msgstr ""
1436
-
1437
- #: includes/admin/welcome.php:252
1438
- msgid "1. Asyncronous Share Count Aggregation"
1439
- msgstr ""
1440
-
1441
- #: includes/admin/welcome.php:256
1442
- msgid ""
1443
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1444
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1445
- "will be aggregated only after page loading and never while page loads. This "
1446
- "is a huge performance update."
1447
- msgstr ""
1448
-
1449
- #: includes/admin/welcome.php:259
1450
- msgid "2. Open Graph and Twitter Card Integration"
1451
- msgstr ""
1452
-
1453
- #: includes/admin/welcome.php:260
1454
- msgid ""
1455
- "Use open graph and twitter card to specify the content you like to share. If "
1456
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1457
- "and extend it with custom data to get the maximum out of your valuable "
1458
- "content."
1459
- msgstr ""
1460
-
1461
- #: includes/admin/welcome.php:267
1462
- msgid "3. Responsive Buttons per default"
1463
- msgstr ""
1464
-
1465
- #: includes/admin/welcome.php:268
1466
- msgid ""
1467
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1468
- "buttons look great on mobile and desktop devices."
1469
- msgstr ""
1470
-
1471
- #: includes/admin/welcome.php:270
1472
- msgid "4. Share Count Dashboard"
1473
- msgstr ""
1474
-
1475
- #: includes/admin/welcome.php:271
1476
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1477
- msgstr ""
1478
-
1479
- #: includes/admin/welcome.php:275
1480
- msgid "5. A much cleaner user interface"
1481
- msgstr ""
1482
-
1483
- #: includes/admin/welcome.php:276
1484
- msgid ""
1485
- "We spent a lot of time to make useful first time settings and improved the "
1486
- "user interface for an easier experience."
1487
- msgstr ""
1488
-
1489
- #: includes/admin/welcome.php:284
1490
- msgid "Additional Updates"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/welcome.php:287
1494
- msgid "Developer Friendly"
1495
- msgstr ""
1496
-
1497
- #: includes/admin/welcome.php:288
1498
- msgid ""
1499
- "Are you a theme developer and want to use MashShare as your build in share "
1500
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1501
- "instructions.</a>"
1502
- msgstr ""
1503
-
1504
- #: includes/admin/welcome.php:291
1505
- msgid "Check Open Graph Settings"
1506
- msgstr ""
1507
-
1508
- #: includes/admin/welcome.php:292
1509
- msgid ""
1510
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1511
- "data on your site is working as expected or conflicts with other open graph "
1512
- "data."
1513
- msgstr ""
1514
-
1515
- #: includes/admin/welcome.php:295
1516
- msgid "Use Yoast SEO Title"
1517
- msgstr ""
1518
-
1519
- #: includes/admin/welcome.php:296
1520
- msgid "MashShare will use the YOAST SEO title if it is defined."
1521
- msgstr ""
1522
-
1523
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1524
- msgid "Go to MashShare Settings"
1525
- msgstr ""
1526
-
1527
- #: includes/admin/welcome.php:303
1528
- msgid "View the Full Changelog"
1529
- msgstr ""
1530
-
1531
- #: includes/admin/welcome.php:326
1532
- msgid "What's New"
1533
- msgstr ""
1534
-
1535
- #: includes/admin/welcome.php:332
1536
- msgid "Credits"
1537
- msgstr ""
1538
-
1539
- #: includes/admin/welcome.php:353
1540
- msgid ""
1541
- "Mashshare is created by a René Hermenau and developers all over the world "
1542
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1543
- "WordPress."
1544
- msgstr ""
1545
-
1546
- #: includes/admin/welcome.php:356
1547
- msgid ""
1548
- " If you want to be credited here participate on the development and make "
1549
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1550
- msgstr ""
1551
-
1552
- #: includes/admin/welcome.php:381
1553
- msgid "View %s"
1554
- msgstr ""
1555
-
1556
- #: includes/admin/welcome.php:436
1557
- msgid "No valid changelog was found."
1558
- msgstr ""
1559
-
1560
- #: includes/admin/welcome.php:469
1561
- msgid "Full Changelog"
1562
- msgstr ""
1563
-
1564
- #: includes/class-mashsb-html-elements.php:43
1565
- msgctxt "all dropdown items"
1566
- msgid "All"
1567
- msgstr "Semua"
1568
-
1569
- #: includes/class-mashsb-html-elements.php:44
1570
- msgctxt "no dropdown items"
1571
- msgid "None"
1572
- msgstr "Tidak ada"
1573
-
1574
- #: includes/class-mashsb-html-elements.php:232
1575
- msgid "Enter username"
1576
- msgstr "Masukkan nama pengguna"
1577
-
1578
- #: includes/class-mashsb-license-handler.php:177
1579
- msgid "%1$s License Key"
1580
- msgstr "%1$s Kunci Lisensi"
1581
-
1582
- #: includes/class-mashsb-license-handler.php:210
1583
- msgid ""
1584
- "Enter your extension license keys here to receive updates for purchased "
1585
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1586
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1587
- msgstr ""
1588
-
1589
- #: includes/class-mashsb-license-handler.php:319
1590
- msgid "Nonce verification failed"
1591
- msgstr ""
1592
-
1593
- #: includes/class-mashsb-license-handler.php:436
1594
- msgid ""
1595
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1596
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1597
- "issue."
1598
- msgstr ""
1599
-
1600
- #: includes/class-mashsb-license-handler.php:475
1601
- msgid "Enter valid license key for automatic updates."
1602
- msgstr ""
1603
-
1604
- #: includes/class-mashsb-shared-posts-widget.php:13
1605
- msgid "Mashshare - Most Shared Posts"
1606
- msgstr ""
1607
-
1608
- #: includes/class-mashsb-shared-posts-widget.php:37
1609
- msgid "Widget Title"
1610
- msgstr ""
1611
-
1612
- #: includes/class-mashsb-shared-posts-widget.php:42
1613
- msgid "How many posts to display?"
1614
- msgstr ""
1615
-
1616
- #: includes/class-mashsb-shared-posts-widget.php:46
1617
- msgid "Show Shares? Say \"No\" when using fake shares!"
1618
- msgstr ""
1619
-
1620
- #: includes/class-mashsb-shared-posts-widget.php:61
1621
- msgid "Show shares below post title"
1622
- msgstr ""
1623
-
1624
- #: includes/class-mashsb-shared-posts-widget.php:68
1625
- msgid "Time period and age of posts"
1626
- msgstr ""
1627
-
1628
- #: includes/template-functions.php:249
1629
- msgid "Subscribe"
1630
- msgstr "Berlangganan"
1631
-
1632
- #: includes/template-functions.php:517
1633
- msgid "SHARES"
1634
- msgstr "TERBAGIKAN"
1635
-
1636
- #: includes/template-functions.php:1114
1637
- msgid "Page not found"
1638
- msgstr ""
1639
-
1640
- #. translators: %s: search phrase
1641
- #: includes/template-functions.php:1119
1642
- msgid "Search Results for &#8220;%s&#8221;"
1643
- msgstr ""
1644
-
1645
- #: includes/template-functions.php:1152
1646
- msgctxt "yearly archives date format"
1647
- msgid "Y"
1648
- msgstr ""
1649
-
1650
- #: includes/template-functions.php:1154
1651
- msgctxt "monthly archives date format"
1652
- msgid "F Y"
1653
- msgstr ""
1654
-
1655
- #: mashshare.php:124 mashshare.php:136
1656
- msgid "Cheatin&#8217; huh?"
1657
- msgstr "Main curang&#8217; ya?"
1658
-
1659
- #: templates/sidebar.php:17
1660
- msgid "Increase your Shares and Social Traffic"
1661
- msgstr ""
1662
-
1663
- #: templates/sidebar.php:20
1664
- msgid "Get 20% Off!"
1665
- msgstr ""
1666
-
1667
- #: templates/sidebar.php:25
1668
- msgid ""
1669
- "Submit your name and email and we'll send you a coupon for 20% off your "
1670
- "upgrade to the pro version."
1671
- msgstr ""
1672
-
1673
- #: templates/sidebar.php:29
1674
- msgid "Your Email"
1675
- msgstr ""
1676
-
1677
- #: templates/sidebar.php:33
1678
- msgid "First Name"
1679
- msgstr ""
1680
-
1681
- #: templates/sidebar.php:37
1682
- msgid "Last Name"
1683
- msgstr ""
1684
-
1685
- #: templates/sidebar.php:44
1686
- msgid "Send me the coupon"
1687
- msgstr ""
1688
-
1689
- #: templates/sidebar.php:48
1690
- msgid ""
1691
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1692
- "click anytime."
1693
- msgstr ""
1694
-
1695
- #. Plugin Name of the plugin/theme
1696
- msgid "Mashshare Share Buttons"
1697
- msgstr ""
1698
-
1699
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1700
- #. Plugin URI of the plugin/theme
1701
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1702
- #. Author URI of the plugin/theme
1703
- msgid "https://www.mashshare.net"
1704
- msgstr ""
1705
-
1706
- #. Description of the plugin/theme
1707
- msgid ""
1708
- "Mashshare is a Share functionality inspired by the the great website "
1709
- "Mashable for Facebook and Twitter. More networks available."
1710
- msgstr ""
1711
-
1712
- #. Author of the plugin/theme
1713
- msgid "René Hermenau"
1714
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-nl_NL.mo DELETED
Binary file
languages/mashsb-nl_NL.po DELETED
@@ -1,1688 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Heimen Stoffels <vistausss@outlook.com>, 2016
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mashshare\n"
8
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
9
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
10
- "PO-Revision-Date: 2016-06-23 19:11+0100\n"
11
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
12
- "Language-Team: Dutch (http://www.transifex.com/renehermenau/mashshare/"
13
- "language/nl/)\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Language: nl\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 1.5.6\n"
20
-
21
- msgid ""
22
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
23
- "Highly customizable Social Media ecosystem"
24
- msgstr ""
25
-
26
- #: includes/MASHSB_SL_Plugin_Updater.php:177
27
- msgid ""
28
- "There is a new version of %1$s available. <a target=\"_blank\" class="
29
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
30
- msgstr ""
31
-
32
- #: includes/MASHSB_SL_Plugin_Updater.php:184
33
- msgid ""
34
- "There is a new version of %1$s available. <a target=\"_blank\" class="
35
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
36
- "\">update now</a>."
37
- msgstr ""
38
-
39
- #: includes/MASHSB_SL_Plugin_Updater.php:324
40
- msgid "You do not have permission to install plugin updates"
41
- msgstr ""
42
-
43
- #: includes/MASHSB_SL_Plugin_Updater.php:324
44
- #: includes/class-mashsb-license-handler.php:319
45
- msgid "Error"
46
- msgstr ""
47
-
48
- #: includes/admin/add-ons.php:27
49
- msgid "Add Ons for Mashshare"
50
- msgstr "Add-ons voor Mashshare"
51
-
52
- #: includes/admin/add-ons.php:28
53
- msgid "Visit Website"
54
- msgstr "Website bezoeken"
55
-
56
- #: includes/admin/add-ons.php:28
57
- msgid "See Details"
58
- msgstr "Details weergeven"
59
-
60
- #: includes/admin/add-ons.php:30
61
- msgid "These add-ons extend the functionality of Mashshare."
62
- msgstr "Deze add-ons breiden de functionaliteit van Mashshare uit."
63
-
64
- #: includes/admin/add-ons.php:54
65
- msgid ""
66
- "There was an error retrieving the Mashshare addon list from the server. "
67
- "Please try again later."
68
- msgstr ""
69
- "Er is een fout opgetreden tijdens het ophalen van de Mashshare-add-onlijst. "
70
- "Probeer het later opnieuw."
71
-
72
- #: includes/admin/admin-footer.php:24
73
- msgid ""
74
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
75
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
76
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
77
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
78
- "\"blank\">Documentation</a>"
79
- msgstr ""
80
-
81
- #: includes/admin/admin-notices.php:51
82
- msgid ""
83
- "MashShare needs the PHP extension cURL which is not installed on your "
84
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
85
- "to be able to collect share count of your posts."
86
- msgstr ""
87
-
88
- #: includes/admin/admin-notices.php:58
89
- msgid ""
90
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
91
- ">Social Networks</a> and enable at least one Social Network."
92
- msgstr ""
93
-
94
- #: includes/admin/admin-notices.php:64
95
- msgid ""
96
- "Your Sharebar Add-On version is not using new short url mechanism of "
97
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
98
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
99
- "short urls will not stop working in one of the next updates. This requires a "
100
- "valid license of the Sharebar Add-On"
101
- msgstr ""
102
-
103
- #: includes/admin/admin-notices.php:70
104
- msgid ""
105
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
106
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
107
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
108
- "twitter short urls will not stop working in one of the next updates. This "
109
- "requires a valid license of the Floating Sidebar Add-On"
110
- msgstr ""
111
-
112
- #: includes/admin/admin-notices.php:76
113
- msgid ""
114
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
115
- ">Short URL Integration</i></a> and check the Google API key."
116
- msgstr ""
117
-
118
- #: includes/admin/admin-notices.php:82
119
- msgid ""
120
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
121
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
122
- "check the Bitly API key."
123
- msgstr ""
124
-
125
- #: includes/admin/admin-notices.php:88
126
- msgid ""
127
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
128
- "is not longer needed and having it activated leads to duplicate open graph "
129
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
130
- msgstr ""
131
-
132
- #: includes/admin/admin-notices.php:94
133
- msgid ""
134
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
135
- "not longer needed and already built in MashShare. Deactivate it from <a href="
136
- "\"%s\"> Plugin Settings</a> "
137
- msgstr ""
138
-
139
- #: includes/admin/admin-notices.php:100
140
- msgid ""
141
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
142
- "\">Permalinks</a> must be enabled to count shares. Share count is "
143
- "deactivated until you have fixed this."
144
- msgstr ""
145
-
146
- #: includes/admin/admin-notices.php:258
147
- msgid ""
148
- "There seems to be an issue with the server. Please try again in a few "
149
- "minutes."
150
- msgstr ""
151
- "Het lijkt erop dat er problemen zijn met de server. Probeer het over een "
152
- "paar minuten opnieuw."
153
-
154
- #: includes/admin/admin-pages.php:31
155
- msgid "MashShare"
156
- msgstr ""
157
-
158
- #: includes/admin/admin-pages.php:32
159
- msgid "MashShare Settings"
160
- msgstr ""
161
-
162
- #: includes/admin/admin-pages.php:32
163
- #: includes/admin/settings/register-settings.php:744
164
- msgid "Settings"
165
- msgstr "Instellingen"
166
-
167
- #: includes/admin/admin-pages.php:33
168
- msgid "MashShare Add Ons"
169
- msgstr ""
170
-
171
- #: includes/admin/admin-pages.php:33
172
- msgid "Get Add Ons"
173
- msgstr ""
174
-
175
- #: includes/admin/admin-pages.php:34
176
- msgid "MashShare Tools"
177
- msgstr ""
178
-
179
- #: includes/admin/admin-pages.php:34
180
- msgid "Im/Export & System"
181
- msgstr ""
182
-
183
- #: includes/admin/meta-box/inc/core.php:40
184
- msgid "Documentation"
185
- msgstr ""
186
-
187
- #: includes/admin/meta-box/inc/core.php:41
188
- msgid "Extensions"
189
- msgstr ""
190
-
191
- #: includes/admin/meta-box/inc/field.php:196
192
- msgid "+ Add more"
193
- msgstr ""
194
-
195
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
196
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
197
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
198
- msgid "Delete"
199
- msgstr ""
200
-
201
- #: includes/admin/meta-box/inc/fields/button.php:29
202
- msgid "Click me"
203
- msgstr ""
204
-
205
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
206
- msgid "Yes"
207
- msgstr ""
208
-
209
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
210
- msgid "No"
211
- msgstr ""
212
-
213
- #: includes/admin/meta-box/inc/fields/file-input.php:18
214
- msgid "Select File"
215
- msgstr ""
216
-
217
- #: includes/admin/meta-box/inc/fields/file-input.php:41
218
- #: includes/admin/meta-box/inc/fields/select.php:91
219
- msgid "Select"
220
- msgstr ""
221
-
222
- #: includes/admin/meta-box/inc/fields/file-input.php:43
223
- msgid "Remove"
224
- msgstr ""
225
-
226
- #: includes/admin/meta-box/inc/fields/file.php:15
227
- msgid "You may only upload maximum %d file"
228
- msgstr ""
229
-
230
- #: includes/admin/meta-box/inc/fields/file.php:16
231
- msgid "You may only upload maximum %d files"
232
- msgstr ""
233
-
234
- #: includes/admin/meta-box/inc/fields/file.php:83
235
- msgid "Error: Cannot delete file"
236
- msgstr ""
237
-
238
- #: includes/admin/meta-box/inc/fields/file.php:96
239
- msgctxt "file upload"
240
- msgid "Upload Files"
241
- msgstr ""
242
-
243
- #: includes/admin/meta-box/inc/fields/file.php:97
244
- msgctxt "file upload"
245
- msgid "+ Add new file"
246
- msgstr ""
247
-
248
- #: includes/admin/meta-box/inc/fields/file.php:153
249
- msgctxt "file upload"
250
- msgid "Delete"
251
- msgstr ""
252
-
253
- #: includes/admin/meta-box/inc/fields/file.php:154
254
- msgctxt "file upload"
255
- msgid "Edit"
256
- msgstr ""
257
-
258
- #: includes/admin/meta-box/inc/fields/image.php:61
259
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
260
- msgctxt "image upload"
261
- msgid "Upload Images"
262
- msgstr ""
263
-
264
- #: includes/admin/meta-box/inc/fields/image.php:62
265
- msgctxt "image upload"
266
- msgid "+ Add new image"
267
- msgstr ""
268
-
269
- #: includes/admin/meta-box/inc/fields/image.php:124
270
- msgctxt "image upload"
271
- msgid "Delete"
272
- msgstr ""
273
-
274
- #: includes/admin/meta-box/inc/fields/image.php:125
275
- msgctxt "image upload"
276
- msgid "Edit"
277
- msgstr ""
278
-
279
- #: includes/admin/meta-box/inc/fields/key-value.php:19
280
- msgid "Key"
281
- msgstr ""
282
-
283
- #: includes/admin/meta-box/inc/fields/key-value.php:25
284
- msgid "Value"
285
- msgstr ""
286
-
287
- #: includes/admin/meta-box/inc/fields/map.php:49
288
- msgid "Find Address"
289
- msgstr ""
290
-
291
- #: includes/admin/meta-box/inc/fields/media.php:18
292
- msgctxt "media"
293
- msgid "Add Image"
294
- msgstr ""
295
-
296
- #: includes/admin/meta-box/inc/fields/media.php:19
297
- msgctxt "media"
298
- msgid " file"
299
- msgstr ""
300
-
301
- #: includes/admin/meta-box/inc/fields/media.php:20
302
- msgctxt "media"
303
- msgid " files"
304
- msgstr ""
305
-
306
- #: includes/admin/meta-box/inc/fields/media.php:21
307
- msgctxt "media"
308
- msgid "Remove"
309
- msgstr ""
310
-
311
- #: includes/admin/meta-box/inc/fields/media.php:22
312
- msgctxt "media"
313
- msgid "Edit"
314
- msgstr ""
315
-
316
- #: includes/admin/meta-box/inc/fields/media.php:23
317
- msgctxt "media"
318
- msgid "View"
319
- msgstr ""
320
-
321
- #: includes/admin/meta-box/inc/fields/media.php:24
322
- msgctxt "media"
323
- msgid "No Title"
324
- msgstr ""
325
-
326
- #: includes/admin/meta-box/inc/fields/media.php:27
327
- msgctxt "media"
328
- msgid "Select Files"
329
- msgstr ""
330
-
331
- #: includes/admin/meta-box/inc/fields/media.php:28
332
- msgctxt "media"
333
- msgid "Drop files here to upload"
334
- msgstr ""
335
-
336
- #: includes/admin/meta-box/inc/fields/oembed.php:65
337
- msgid "Embed HTML not available."
338
- msgstr ""
339
-
340
- #: includes/admin/meta-box/inc/fields/oembed.php:84
341
- msgid "Preview"
342
- msgstr ""
343
-
344
- #: includes/admin/meta-box/inc/fields/post.php:34
345
- msgid "Select a post"
346
- msgstr ""
347
-
348
- #: includes/admin/meta-box/inc/fields/post.php:38
349
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
350
- msgid "Select a %s"
351
- msgstr ""
352
-
353
- #: includes/admin/meta-box/inc/fields/select.php:91
354
- msgid "All"
355
- msgstr ""
356
-
357
- #: includes/admin/meta-box/inc/fields/select.php:91
358
- msgid "None"
359
- msgstr ""
360
-
361
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
362
- msgid "Select a term"
363
- msgstr ""
364
-
365
- #: includes/admin/meta-box/inc/fields/user.php:34
366
- msgid "Select an user"
367
- msgstr ""
368
-
369
- #: includes/admin/meta-box/inc/validation.php:42
370
- msgid "Please correct the errors highlighted below and try again."
371
- msgstr ""
372
-
373
- #: includes/admin/plugins.php:27
374
- msgid "General Settings"
375
- msgstr "Algemene instellingen"
376
-
377
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
378
- msgid "Getting Started"
379
- msgstr "Beginnen met Mashshare"
380
-
381
- #: includes/admin/plugins.php:51
382
- msgid "Add Ons"
383
- msgstr "Add-ons"
384
-
385
- #: includes/admin/settings/contextual-help.php:29
386
- msgid "For more information:"
387
- msgstr "Voor meer informatie:"
388
-
389
- #: includes/admin/settings/contextual-help.php:30
390
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
391
- msgstr "Bekijk de <a href=\"%s\">documentatie</a> op de Mashshare-website."
392
-
393
- #: includes/admin/settings/contextual-help.php:32
394
- msgid ""
395
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
396
- "href=\"%s\">extensions</a>."
397
- msgstr ""
398
- "<a href=\"%s\">Rapporteer een probleem</a> op <a href=\"%s\">Mashshare</a>. "
399
- "<a href=\"%s\">Extensies</a> weergeven."
400
-
401
- #: includes/admin/settings/contextual-help.php:41
402
- msgid "General"
403
- msgstr "Algemeen"
404
-
405
- #: includes/admin/settings/contextual-help.php:42
406
- msgid "This screen provides the most basic settings for configuring Mashshare."
407
- msgstr ""
408
- "Dit scherm bevat de standaard instellingen voor het instellen van Mashshare."
409
-
410
- #: includes/admin/settings/display-settings.php:133
411
- msgid "MashShare "
412
- msgstr ""
413
-
414
- #: includes/admin/settings/metabox-settings.php:102
415
- msgid "Social Media Image"
416
- msgstr ""
417
-
418
- #: includes/admin/settings/metabox-settings.php:103
419
- msgid ""
420
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
421
- "1200px x 630px. Aspect ratio 1.9:1"
422
- msgstr ""
423
-
424
- #: includes/admin/settings/metabox-settings.php:112
425
- msgid "Social Media Title"
426
- msgstr ""
427
-
428
- #: includes/admin/settings/metabox-settings.php:113
429
- msgid ""
430
- "This title is used by the open graph meta tag og:title and will be used when "
431
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
432
- "to use "
433
- msgstr ""
434
-
435
- #: includes/admin/settings/metabox-settings.php:113
436
- msgid "Yoast Facebook / SEO title"
437
- msgstr ""
438
-
439
- #: includes/admin/settings/metabox-settings.php:121
440
- msgid "Social Media Description"
441
- msgstr ""
442
-
443
- #: includes/admin/settings/metabox-settings.php:122
444
- msgid ""
445
- "This description is used by the open graph meta tag og:description and will "
446
- "be used when users share your content on Facebook, LinkedIn, and Google "
447
- "Plus. Leave this blank to use "
448
- msgstr ""
449
-
450
- #: includes/admin/settings/metabox-settings.php:122
451
- msgid "Yoast Facebook open graph description or the post excerpt."
452
- msgstr ""
453
-
454
- #: includes/admin/settings/metabox-settings.php:135
455
- msgid "Pinterest Image"
456
- msgstr ""
457
-
458
- #: includes/admin/settings/metabox-settings.php:135
459
- #: includes/admin/settings/metabox-settings.php:145
460
- msgid ""
461
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
462
- "the Pinterest Features"
463
- msgstr ""
464
-
465
- #: includes/admin/settings/metabox-settings.php:136
466
- msgid ""
467
- "Pinned images need to be more vertical than horizontal in orientation. Use "
468
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
469
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
470
- msgstr ""
471
-
472
- #: includes/admin/settings/metabox-settings.php:145
473
- msgid "Pinterest Description"
474
- msgstr ""
475
-
476
- #: includes/admin/settings/metabox-settings.php:146
477
- msgid ""
478
- "Place a customized message that will be used when this post is shared on "
479
- "Pinterest. Leave this blank to use the "
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:146
483
- msgid "Yoast SEO title"
484
- msgstr ""
485
-
486
- #: includes/admin/settings/metabox-settings.php:146
487
- msgid "the post title"
488
- msgstr ""
489
-
490
- #: includes/admin/settings/metabox-settings.php:154
491
- msgid "Custom Tweet"
492
- msgstr ""
493
-
494
- #: includes/admin/settings/metabox-settings.php:176
495
- msgid ""
496
- "Publish the post and validate if the open graph meta tags on your site are "
497
- "correct! Incorrect data can result in wrong share description, title or "
498
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
499
- "new scrape information\" to purge the facebook cache."
500
- msgstr ""
501
-
502
- #: includes/admin/settings/metabox-settings.php:206
503
- msgid "Based on your username @"
504
- msgstr ""
505
-
506
- #: includes/admin/settings/metabox-settings.php:206
507
- msgid " ,the shortened post url and the current content above"
508
- msgstr ""
509
-
510
- #: includes/admin/settings/metabox-settings.php:208
511
- msgid "Based on the shortened post url and the current content above"
512
- msgstr ""
513
-
514
- #: includes/admin/settings/metabox-settings.php:210
515
- msgid " your tweet has a maximum of 140 characters. "
516
- msgstr ""
517
-
518
- #: includes/admin/settings/metabox-settings.php:212
519
- msgid "If this is left blank the post title will be used. "
520
- msgstr ""
521
-
522
- #: includes/admin/settings/metabox-settings.php:214
523
- msgid ""
524
- "If this is left blank the Yoast Twitter Title or post title will be used. "
525
- msgstr ""
526
-
527
- #: includes/admin/settings/register-settings.php:120
528
- msgid "General settings"
529
- msgstr "Algemene instellingen"
530
-
531
- #: includes/admin/settings/register-settings.php:126
532
- msgid "Share counts"
533
- msgstr ""
534
-
535
- #: includes/admin/settings/register-settings.php:127
536
- msgid ""
537
- "<i>MashEngine</i> collects shares by direct request to social networks. "
538
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
539
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
540
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
541
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
542
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
543
- "this free service to get the twitter share count. Visit the newsharecount "
544
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
545
- "Thats it!"
546
- msgstr ""
547
-
548
- #: includes/admin/settings/register-settings.php:136
549
- msgid "Sharedcount.com API Key"
550
- msgstr ""
551
-
552
- #: includes/admin/settings/register-settings.php:137
553
- msgid ""
554
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
555
- "\">SharedCount.com</a> for 10.000 free daily requests."
556
- msgstr ""
557
-
558
- #: includes/admin/settings/register-settings.php:143
559
- msgid "Sharedcount.com endpint"
560
- msgstr ""
561
-
562
- #: includes/admin/settings/register-settings.php:144
563
- msgid ""
564
- "The SharedCount Domain your API key is configured to query. For example, "
565
- "free.sharedcount.com. This may update automatically if configured "
566
- "incorrectly."
567
- msgstr ""
568
-
569
- #: includes/admin/settings/register-settings.php:151
570
- msgid "Caching Method"
571
- msgstr ""
572
-
573
- #: includes/admin/settings/register-settings.php:152
574
- msgid ""
575
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
576
- "visitor and refreshes the cache asyncronously in the background. New posts "
577
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
578
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
579
- "cache while page is loading and adds a little extra time during inital page "
580
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
581
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
582
- "was using before version 3.0"
583
- msgstr ""
584
-
585
- #: includes/admin/settings/register-settings.php:161
586
- msgid "Cache expiration"
587
- msgstr ""
588
-
589
- #: includes/admin/settings/register-settings.php:162
590
- msgid ""
591
- "Shares are counted for posts after a certain time and counts are not updated "
592
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
593
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
594
- "more"
595
- msgstr ""
596
-
597
- #: includes/admin/settings/register-settings.php:168
598
- msgid "Facebook Count"
599
- msgstr ""
600
-
601
- #: includes/admin/settings/register-settings.php:169
602
- msgid ""
603
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
604
- "the pure share count"
605
- msgstr ""
606
-
607
- #: includes/admin/settings/register-settings.php:179
608
- msgid "Fake Share counts"
609
- msgstr "Nep aantal delingen"
610
-
611
- #: includes/admin/settings/register-settings.php:180
612
- msgid ""
613
- "This number will be aggregated to all your share counts and is multiplied "
614
- "with a post specific factor. (Number of post title words divided with 10)."
615
- msgstr ""
616
-
617
- #: includes/admin/settings/register-settings.php:186
618
- msgid "Disable Sharecount"
619
- msgstr "Tellen van delen uitschakelen"
620
-
621
- #: includes/admin/settings/register-settings.php:187
622
- msgid ""
623
- "Use this when curl() is not supported on your server or share counts should "
624
- "not counted. This mode does not call the database and no SQL queries are "
625
- "generated. (Only less performance benefit. All db requests are cached) "
626
- "Default: false"
627
- msgstr ""
628
-
629
- #: includes/admin/settings/register-settings.php:192
630
- msgid "Hide Sharecount"
631
- msgstr "Tellen van delen verbergen"
632
-
633
- #: includes/admin/settings/register-settings.php:193
634
- msgid ""
635
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
636
- "specific post are not shown until the share count of this number is reached."
637
- msgstr ""
638
-
639
- #: includes/admin/settings/register-settings.php:199
640
- msgid "Execution Order"
641
- msgstr "Uitvoervolgorde"
642
-
643
- #: includes/admin/settings/register-settings.php:200
644
- msgid ""
645
- "If you use other content plugins you can define here the execution order. "
646
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
647
- "executed before any other plugin (When the other plugin is not overwriting "
648
- "our execution order). Default is \"1000\""
649
- msgstr ""
650
-
651
- #: includes/admin/settings/register-settings.php:207
652
- msgid "JavaScript in Footer"
653
- msgstr ""
654
-
655
- #: includes/admin/settings/register-settings.php:208
656
- msgid ""
657
- "Enable this to load all *.js files into footer. Make sure your theme uses "
658
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
659
- msgstr ""
660
-
661
- #: includes/admin/settings/register-settings.php:213
662
- msgid "JS & CSS Everywhere"
663
- msgstr ""
664
-
665
- #: includes/admin/settings/register-settings.php:214
666
- msgid ""
667
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
668
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
669
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
670
- "option to allow conditional loading so MashShare's JS and CSS files are "
671
- "loaded only on pages where MashShare is used."
672
- msgstr ""
673
-
674
- #: includes/admin/settings/register-settings.php:220
675
- msgid "Twitter Popup disabled"
676
- msgstr ""
677
-
678
- #: includes/admin/settings/register-settings.php:221
679
- msgid ""
680
- "Check this box if your twitter popup is openening twice. This happens "
681
- "sometimes when you are using any third party twitter plugin or the twitter "
682
- "SDK on your website."
683
- msgstr ""
684
-
685
- #: includes/admin/settings/register-settings.php:227
686
- msgid "Remove Data on Uninstall?"
687
- msgstr ""
688
-
689
- #: includes/admin/settings/register-settings.php:228
690
- msgid ""
691
- "Check this box if you would like Mashshare to completely remove all of its "
692
- "data when the plugin is deleted."
693
- msgstr ""
694
-
695
- #: includes/admin/settings/register-settings.php:233
696
- msgid "Allow Usage Tracking"
697
- msgstr ""
698
-
699
- #: includes/admin/settings/register-settings.php:234
700
- #: includes/admin/tracking.php:265
701
- msgid ""
702
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
703
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
704
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
705
- "Ons</a>. No sensitive data is tracked."
706
- msgstr ""
707
-
708
- #: includes/admin/settings/register-settings.php:239
709
- msgid "User Roles Options Visibility"
710
- msgstr ""
711
-
712
- #: includes/admin/settings/register-settings.php:240
713
- msgid ""
714
- "Select user roles which can see page and post MashShare Social Sharing Meta "
715
- "Box Options"
716
- msgstr ""
717
-
718
- #: includes/admin/settings/register-settings.php:243
719
- msgid "Select User Roles"
720
- msgstr ""
721
-
722
- #: includes/admin/settings/register-settings.php:244
723
- msgid "All Roles"
724
- msgstr ""
725
-
726
- #: includes/admin/settings/register-settings.php:248
727
- #: includes/admin/settings/register-settings.php:294
728
- #: includes/admin/settings/register-settings.php:751
729
- msgid "Social Networks"
730
- msgstr ""
731
-
732
- #: includes/admin/settings/register-settings.php:254
733
- msgid "Facebook page url"
734
- msgstr ""
735
-
736
- #: includes/admin/settings/register-settings.php:255
737
- msgid "Optional: The url of the main facebook account connected with this site"
738
- msgstr ""
739
-
740
- #: includes/admin/settings/register-settings.php:261
741
- msgid "Facebook App ID"
742
- msgstr ""
743
-
744
- #: includes/admin/settings/register-settings.php:262
745
- msgid ""
746
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
747
- "a>"
748
- msgstr ""
749
-
750
- #: includes/admin/settings/register-settings.php:268
751
- #: includes/admin/settings/user-profiles.php:19
752
- msgid "Twitter Username"
753
- msgstr ""
754
-
755
- #: includes/admin/settings/register-settings.php:269
756
- msgid ""
757
- "<strong>Optional:</strong> Using your twitter username results in via "
758
- "@username"
759
- msgstr ""
760
-
761
- #: includes/admin/settings/register-settings.php:275
762
- msgid "Twitter Card"
763
- msgstr ""
764
-
765
- #: includes/admin/settings/register-settings.php:276
766
- msgid ""
767
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
768
- "plugin their meta tags will be removed and MashShare will use existing meta "
769
- "data from these plugins. Default: On"
770
- msgstr ""
771
-
772
- #: includes/admin/settings/register-settings.php:281
773
- msgid "Open Graph Meta Tags"
774
- msgstr ""
775
-
776
- #: includes/admin/settings/register-settings.php:282
777
- msgid ""
778
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
779
- "Jetpack plugin their meta tags will be removed and MashShare will use "
780
- "existing meta data from these plugins."
781
- msgstr ""
782
-
783
- #: includes/admin/settings/register-settings.php:287
784
- msgid "Large Buttons"
785
- msgstr ""
786
-
787
- #: includes/admin/settings/register-settings.php:288
788
- msgid ""
789
- "Specify how many services and social networks are visible before the \"Plus"
790
- "\" Button is shown. This buttons turn into large prominent buttons."
791
- msgstr ""
792
-
793
- #: includes/admin/settings/register-settings.php:295
794
- msgid ""
795
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
796
- "that should be visible. <br>Activate more networks than number of \"Large "
797
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
798
- msgstr ""
799
-
800
- #: includes/admin/settings/register-settings.php:321
801
- msgid "Short URL Integration"
802
- msgstr ""
803
-
804
- #: includes/admin/settings/register-settings.php:328
805
- msgid "Bitly access token"
806
- msgstr ""
807
-
808
- #: includes/admin/settings/register-settings.php:329
809
- msgid ""
810
- "If you like to use bitly.com shortener get a free bitly access token <a href="
811
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
812
- "ly/cXnjsh. "
813
- msgstr ""
814
-
815
- #: includes/admin/settings/register-settings.php:335
816
- msgid "Google API Key (goo.gl)"
817
- msgstr ""
818
-
819
- #: includes/admin/settings/register-settings.php:342
820
- msgid "Shorturl method"
821
- msgstr ""
822
-
823
- #: includes/admin/settings/register-settings.php:343
824
- msgid ""
825
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
826
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
827
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
828
- "%s ?p=101</i>"
829
- msgstr ""
830
-
831
- #: includes/admin/settings/register-settings.php:354
832
- msgid "Important: Read this!"
833
- msgstr ""
834
-
835
- #: includes/admin/settings/register-settings.php:355
836
- msgid ""
837
- "<strong>The post short url is NOT generated immediatly after first page load!"
838
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
839
- "12 hours for old posts."
840
- msgstr ""
841
-
842
- #: includes/admin/settings/register-settings.php:374
843
- msgid "Customization"
844
- msgstr ""
845
-
846
- #: includes/admin/settings/register-settings.php:380
847
- msgid "Round up Shares"
848
- msgstr ""
849
-
850
- #: includes/admin/settings/register-settings.php:381
851
- msgid ""
852
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
853
- "as 1M"
854
- msgstr ""
855
-
856
- #: includes/admin/settings/register-settings.php:386
857
- msgid "Animate Shares"
858
- msgstr ""
859
-
860
- #: includes/admin/settings/register-settings.php:387
861
- msgid ""
862
- "Count up the shares on page loading with a nice looking animation effect. "
863
- "This only works on singular pages and not with shortcodes generated buttons."
864
- msgstr ""
865
-
866
- #: includes/admin/settings/register-settings.php:392
867
- #: includes/class-mashsb-shared-posts-widget.php:53
868
- msgid "Share Count Label"
869
- msgstr ""
870
-
871
- #: includes/admin/settings/register-settings.php:393
872
- msgid ""
873
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
874
- msgstr ""
875
-
876
- #: includes/admin/settings/register-settings.php:408
877
- msgid "Share Count Color"
878
- msgstr ""
879
-
880
- #: includes/admin/settings/register-settings.php:409
881
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
882
- msgstr ""
883
-
884
- #: includes/admin/settings/register-settings.php:416
885
- msgid "Border Radius"
886
- msgstr ""
887
-
888
- #: includes/admin/settings/register-settings.php:417
889
- msgid ""
890
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
891
- "results in circle buttons. Default value is zero."
892
- msgstr ""
893
-
894
- #: includes/admin/settings/register-settings.php:447
895
- msgid "Button Width"
896
- msgstr ""
897
-
898
- #: includes/admin/settings/register-settings.php:448
899
- msgid "Minimum with of the large share buttons in pixels"
900
- msgstr ""
901
-
902
- #: includes/admin/settings/register-settings.php:455
903
- msgid "Share Button Style"
904
- msgstr ""
905
-
906
- #: includes/admin/settings/register-settings.php:456
907
- msgid "Change visual appearance of the share buttons."
908
- msgstr ""
909
-
910
- #: includes/admin/settings/register-settings.php:467
911
- msgid "Small Share Buttons"
912
- msgstr ""
913
-
914
- #: includes/admin/settings/register-settings.php:468
915
- msgid ""
916
- "All buttons will be shown as pure small icons without any text on desktop "
917
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
918
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
919
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
920
- msgstr ""
921
-
922
- #: includes/admin/settings/register-settings.php:479
923
- msgid "Subscribe Button"
924
- msgstr ""
925
-
926
- #: includes/admin/settings/register-settings.php:480
927
- msgid ""
928
- "Specify if the subscribe button is opening a content box below the button or "
929
- "if the button is linked to the \"subscribe url\" below."
930
- msgstr ""
931
-
932
- #: includes/admin/settings/register-settings.php:490
933
- msgid "Subscribe URL"
934
- msgstr ""
935
-
936
- #: includes/admin/settings/register-settings.php:491
937
- msgid ""
938
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
939
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
940
- msgstr ""
941
-
942
- #: includes/admin/settings/register-settings.php:498
943
- msgid "Additional Content"
944
- msgstr ""
945
-
946
- #: includes/admin/settings/register-settings.php:504
947
- msgid "Content Above"
948
- msgstr ""
949
-
950
- #: includes/admin/settings/register-settings.php:505
951
- msgid ""
952
- "Content appearing above share buttons. Use HTML, formulars, like button, "
953
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
954
- msgstr ""
955
-
956
- #: includes/admin/settings/register-settings.php:512
957
- msgid "Content Below"
958
- msgstr ""
959
-
960
- #: includes/admin/settings/register-settings.php:513
961
- msgid ""
962
- "Content appearing below share buttons. Use HTML, formulars, like button, "
963
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
964
- msgstr ""
965
-
966
- #: includes/admin/settings/register-settings.php:520
967
- msgid "Subscribe content"
968
- msgstr ""
969
-
970
- #: includes/admin/settings/register-settings.php:521
971
- msgid ""
972
- "Define the content of the opening toggle subscribe window here. Use "
973
- "formulars, like button, links or any other text. Shortcodes are supported, e."
974
- "g.: [contact-form-7]"
975
- msgstr ""
976
-
977
- #: includes/admin/settings/register-settings.php:530
978
- msgid "Custom Styles"
979
- msgstr ""
980
-
981
- #: includes/admin/settings/register-settings.php:536
982
- msgid "General CSS"
983
- msgstr ""
984
-
985
- #: includes/admin/settings/register-settings.php:537
986
- msgid ""
987
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
988
- "it's loaded as an additonal inline css on your site"
989
- msgstr ""
990
-
991
- #: includes/admin/settings/register-settings.php:544
992
- msgid "AMP CSS"
993
- msgstr ""
994
-
995
- #: includes/admin/settings/register-settings.php:545
996
- msgid ""
997
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
998
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
999
- "\">AMP Plugin</a> installed."
1000
- msgstr ""
1001
-
1002
- #: includes/admin/settings/register-settings.php:562
1003
- msgid "Location & Position"
1004
- msgstr ""
1005
-
1006
- #: includes/admin/settings/register-settings.php:568
1007
- msgid "Position"
1008
- msgstr ""
1009
-
1010
- #: includes/admin/settings/register-settings.php:569
1011
- msgid ""
1012
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1013
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1014
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1015
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1016
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1017
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1018
- "shortcodes</a>."
1019
- msgstr ""
1020
-
1021
- #: includes/admin/settings/register-settings.php:572
1022
- msgid "Top"
1023
- msgstr ""
1024
-
1025
- #: includes/admin/settings/register-settings.php:573
1026
- msgid "Bottom"
1027
- msgstr ""
1028
-
1029
- #: includes/admin/settings/register-settings.php:574
1030
- msgid "Top and Bottom"
1031
- msgstr ""
1032
-
1033
- #: includes/admin/settings/register-settings.php:575
1034
- msgid "Manual"
1035
- msgstr ""
1036
-
1037
- #: includes/admin/settings/register-settings.php:580
1038
- msgid "Post Types"
1039
- msgstr ""
1040
-
1041
- #: includes/admin/settings/register-settings.php:581
1042
- msgid ""
1043
- "Select on which post_types the share buttons appear. These values will be "
1044
- "ignored when \"manual\" position is selected."
1045
- msgstr ""
1046
-
1047
- #: includes/admin/settings/register-settings.php:586
1048
- msgid "Exclude from post id"
1049
- msgstr ""
1050
-
1051
- #: includes/admin/settings/register-settings.php:587
1052
- msgid ""
1053
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1054
- "by a comma, e.g. 23, 63, 114 "
1055
- msgstr ""
1056
-
1057
- #: includes/admin/settings/register-settings.php:593
1058
- msgid "Categories"
1059
- msgstr ""
1060
-
1061
- #: includes/admin/settings/register-settings.php:594
1062
- msgid ""
1063
- "Enable this checkbox to enable Mashshare on categories with multiple "
1064
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1065
- msgstr ""
1066
-
1067
- #: includes/admin/settings/register-settings.php:600
1068
- msgid "Frontpage"
1069
- msgstr ""
1070
-
1071
- #: includes/admin/settings/register-settings.php:601
1072
- msgid "Enable share buttons on frontpage"
1073
- msgstr ""
1074
-
1075
- #: includes/admin/settings/register-settings.php:606
1076
- msgid "Debug"
1077
- msgstr ""
1078
-
1079
- #: includes/admin/settings/register-settings.php:612
1080
- msgid "Disable Cache"
1081
- msgstr ""
1082
-
1083
- #: includes/admin/settings/register-settings.php:618
1084
- msgid "Attention: Purge DB Cache"
1085
- msgstr ""
1086
-
1087
- #: includes/admin/settings/register-settings.php:624
1088
- msgid "Debug mode"
1089
- msgstr ""
1090
-
1091
- #: includes/admin/settings/register-settings.php:633
1092
- msgid "Activate your Add-Ons"
1093
- msgstr ""
1094
-
1095
- #: includes/admin/settings/register-settings.php:634
1096
- msgid ""
1097
- "Activate your license key to get important security and feature updates for "
1098
- "your Add-On!"
1099
- msgstr ""
1100
-
1101
- #: includes/admin/settings/register-settings.php:634
1102
- msgid ""
1103
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1104
- "Add-Ons</a>"
1105
- msgstr ""
1106
-
1107
- #: includes/admin/settings/register-settings.php:714
1108
- msgid "Settings updated."
1109
- msgstr ""
1110
-
1111
- #: includes/admin/settings/register-settings.php:747
1112
- msgid "Visual"
1113
- msgstr ""
1114
-
1115
- #: includes/admin/settings/register-settings.php:755
1116
- msgid "Add-On Settings"
1117
- msgstr ""
1118
-
1119
- #: includes/admin/settings/register-settings.php:759
1120
- msgid "Licenses"
1121
- msgstr ""
1122
-
1123
- #: includes/admin/settings/register-settings.php:761
1124
- msgid "Get More Add-Ons"
1125
- msgstr ""
1126
-
1127
- #: includes/admin/settings/register-settings.php:1012
1128
- msgid ""
1129
- "The callback function used for the <strong>%s</strong> setting is missing."
1130
- msgstr ""
1131
-
1132
- #: includes/admin/settings/register-settings.php:1152
1133
- msgid "Upload File"
1134
- msgstr ""
1135
-
1136
- #: includes/admin/settings/register-settings.php:1255
1137
- msgid ""
1138
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1139
- "title=\"Renew your license key\">renew your license key</a>."
1140
- msgstr ""
1141
-
1142
- #: includes/admin/settings/register-settings.php:1268
1143
- msgid ""
1144
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1145
- "account page\">visit your account page</a> and verify it."
1146
- msgstr ""
1147
-
1148
- #: includes/admin/settings/register-settings.php:1281
1149
- msgid ""
1150
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1151
- "title=\"Visit account page\">visit your account page</a> to manage your "
1152
- "license key URLs."
1153
- msgstr ""
1154
-
1155
- #: includes/admin/settings/register-settings.php:1293
1156
- msgid "This is not a %s."
1157
- msgstr ""
1158
-
1159
- #: includes/admin/settings/register-settings.php:1302
1160
- msgid ""
1161
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1162
- "possible upgrades</a> now."
1163
- msgstr ""
1164
-
1165
- #: includes/admin/settings/register-settings.php:1324
1166
- msgid "License key never expires."
1167
- msgstr ""
1168
-
1169
- #: includes/admin/settings/register-settings.php:1331
1170
- msgid ""
1171
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1172
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1341
1176
- msgid "Your license key expires on %s."
1177
- msgstr ""
1178
-
1179
- #: includes/admin/settings/register-settings.php:1363
1180
- msgid "Deactivate License"
1181
- msgstr ""
1182
-
1183
- #: includes/admin/settings/register-settings.php:1427
1184
- msgid "Social Network"
1185
- msgstr ""
1186
-
1187
- #: includes/admin/settings/register-settings.php:1428
1188
- msgid "Status"
1189
- msgstr ""
1190
-
1191
- #: includes/admin/settings/register-settings.php:1429
1192
- msgid "Custom Label"
1193
- msgstr ""
1194
-
1195
- #: includes/admin/settings/register-settings.php:1497
1196
- msgid "Select Image"
1197
- msgstr ""
1198
-
1199
- #: includes/admin/settings/register-settings.php:1636
1200
- msgid "All Services"
1201
- msgstr ""
1202
-
1203
- #: includes/admin/settings/register-settings.php:1653
1204
- msgid ""
1205
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1206
- "after doing the job."
1207
- msgstr ""
1208
-
1209
- #: includes/admin/settings/register-settings.php:1666
1210
- msgid "Transient Cache disabled! Enable it for performance increase."
1211
- msgstr ""
1212
-
1213
- #: includes/admin/settings/register-settings.php:1679
1214
- msgid ""
1215
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1216
- "content/plugins/mashsharer/logs/"
1217
- msgstr ""
1218
-
1219
- #: includes/admin/settings/user-profiles.php:16
1220
- msgid "MashShare Social Media Integration"
1221
- msgstr ""
1222
-
1223
- #: includes/admin/settings/user-profiles.php:22
1224
- msgid "Your Twitter username (without the @ symbol)"
1225
- msgstr ""
1226
-
1227
- #: includes/admin/settings/user-profiles.php:24
1228
- msgid "Facebook Author URL"
1229
- msgstr ""
1230
-
1231
- #: includes/admin/settings/user-profiles.php:27
1232
- msgid "URL to your Facebok profile."
1233
- msgstr ""
1234
-
1235
- #: includes/admin/tools.php:68
1236
- msgid "Import/Export"
1237
- msgstr ""
1238
-
1239
- #: includes/admin/tools.php:69
1240
- msgid "System Info"
1241
- msgstr ""
1242
-
1243
- #: includes/admin/tools.php:91
1244
- msgid "Export Settings"
1245
- msgstr ""
1246
-
1247
- #: includes/admin/tools.php:93
1248
- msgid ""
1249
- "Export the Mashshare settings for this site as a .json file. This allows you "
1250
- "to easily import the configuration into another site."
1251
- msgstr ""
1252
-
1253
- #: includes/admin/tools.php:99
1254
- msgid "Export"
1255
- msgstr ""
1256
-
1257
- #: includes/admin/tools.php:106
1258
- msgid "Import Settings"
1259
- msgstr ""
1260
-
1261
- #: includes/admin/tools.php:108
1262
- msgid ""
1263
- "Import the Mashshare settings from a .json file. This file can be obtained "
1264
- "by exporting the settings on another site using the form above."
1265
- msgstr ""
1266
-
1267
- #: includes/admin/tools.php:116
1268
- msgid "Import"
1269
- msgstr ""
1270
-
1271
- #: includes/admin/tools.php:218
1272
- msgid "Please upload a valid .json file"
1273
- msgstr ""
1274
-
1275
- #: includes/admin/tools.php:224
1276
- msgid "Please upload a file to import"
1277
- msgstr ""
1278
-
1279
- #: includes/admin/tracking.php:266
1280
- msgid "Allow"
1281
- msgstr ""
1282
-
1283
- #: includes/admin/tracking.php:267
1284
- msgid "Do not allow"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/welcome.php:51
1288
- msgid "Welcome to MashShare"
1289
- msgstr ""
1290
-
1291
- #: includes/admin/welcome.php:56
1292
- msgid "MashShare Changelog"
1293
- msgstr ""
1294
-
1295
- #: includes/admin/welcome.php:61
1296
- msgid "Quickstart"
1297
- msgstr ""
1298
-
1299
- #: includes/admin/welcome.php:66
1300
- msgid "The people that build MashShare"
1301
- msgstr ""
1302
-
1303
- #: includes/admin/welcome.php:128
1304
- msgid ""
1305
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1306
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1307
- "needs."
1308
- msgstr ""
1309
-
1310
- #: includes/admin/welcome.php:131
1311
- msgid "Create Your First Social Sharing Button"
1312
- msgstr ""
1313
-
1314
- #: includes/admin/welcome.php:137
1315
- msgid "Settings &rarr; Social Networks"
1316
- msgstr ""
1317
-
1318
- #: includes/admin/welcome.php:138
1319
- msgid ""
1320
- "The Social Network menu is your general access point for activating the "
1321
- "desired share buttons and for customizing the share button label"
1322
- msgstr ""
1323
-
1324
- #: includes/admin/welcome.php:139
1325
- msgid "Settings &rarr; Location & Position"
1326
- msgstr ""
1327
-
1328
- #: includes/admin/welcome.php:140
1329
- msgid ""
1330
- "Select the location and exact position of the share buttons within your "
1331
- "content"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/welcome.php:141
1335
- msgid "You are done! Easy, isn't it?"
1336
- msgstr ""
1337
-
1338
- #: includes/admin/welcome.php:149
1339
- msgid "Display a Most Shared Post Widget"
1340
- msgstr ""
1341
-
1342
- #: includes/admin/welcome.php:155
1343
- msgid "Appearance &rarr; Widgets"
1344
- msgstr ""
1345
-
1346
- #: includes/admin/welcome.php:157
1347
- msgid ""
1348
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1349
- "br>into the desired widget location and save it"
1350
- msgstr ""
1351
-
1352
- #: includes/admin/welcome.php:165
1353
- msgid "Content Shortcodes"
1354
- msgstr ""
1355
-
1356
- #: includes/admin/welcome.php:172
1357
- msgid ""
1358
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1359
- "bold;\">[mashshare]</i>."
1360
- msgstr ""
1361
-
1362
- #: includes/admin/welcome.php:174
1363
- msgid ""
1364
- "Paste the shortcode in content of your posts or pages with the post editor "
1365
- "at the place you want the share buttons appear"
1366
- msgstr ""
1367
-
1368
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1369
- msgid ""
1370
- "There are various parameters you can use for the mashshare shortcode. Find a "
1371
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1372
- "\">here</a>"
1373
- msgstr ""
1374
-
1375
- #: includes/admin/welcome.php:182
1376
- msgid "PHP Template Shortcode"
1377
- msgstr ""
1378
-
1379
- #: includes/admin/welcome.php:188
1380
- msgid ""
1381
- "Add MashShare directly into your theme template files with using the PHP "
1382
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1383
- "&gt;</i>"
1384
- msgstr ""
1385
-
1386
- #: includes/admin/welcome.php:199
1387
- msgid "Need Help?"
1388
- msgstr ""
1389
-
1390
- #: includes/admin/welcome.php:202
1391
- msgid "Great Support"
1392
- msgstr ""
1393
-
1394
- #: includes/admin/welcome.php:203
1395
- msgid ""
1396
- "We do our best to provide the best support we can. If you encounter a "
1397
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1398
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1399
- msgstr ""
1400
-
1401
- #: includes/admin/welcome.php:227
1402
- msgid "Welcome to MashShare %s"
1403
- msgstr ""
1404
-
1405
- #: includes/admin/welcome.php:229
1406
- msgid ""
1407
- "Thank you for updating to the latest version! MashShare is installed and "
1408
- "ready to grow your traffic from social networks!"
1409
- msgstr ""
1410
-
1411
- #: includes/admin/welcome.php:252
1412
- msgid "1. Asyncronous Share Count Aggregation"
1413
- msgstr ""
1414
-
1415
- #: includes/admin/welcome.php:256
1416
- msgid ""
1417
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1418
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1419
- "will be aggregated only after page loading and never while page loads. This "
1420
- "is a huge performance update."
1421
- msgstr ""
1422
-
1423
- #: includes/admin/welcome.php:259
1424
- msgid "2. Open Graph and Twitter Card Integration"
1425
- msgstr ""
1426
-
1427
- #: includes/admin/welcome.php:260
1428
- msgid ""
1429
- "Use open graph and twitter card to specify the content you like to share. If "
1430
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1431
- "and extend it with custom data to get the maximum out of your valuable "
1432
- "content."
1433
- msgstr ""
1434
-
1435
- #: includes/admin/welcome.php:267
1436
- msgid "3. Responsive Buttons per default"
1437
- msgstr ""
1438
-
1439
- #: includes/admin/welcome.php:268
1440
- msgid ""
1441
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1442
- "buttons look great on mobile and desktop devices."
1443
- msgstr ""
1444
-
1445
- #: includes/admin/welcome.php:270
1446
- msgid "4. Share Count Dashboard"
1447
- msgstr ""
1448
-
1449
- #: includes/admin/welcome.php:271
1450
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1451
- msgstr ""
1452
-
1453
- #: includes/admin/welcome.php:275
1454
- msgid "5. A much cleaner user interface"
1455
- msgstr ""
1456
-
1457
- #: includes/admin/welcome.php:276
1458
- msgid ""
1459
- "We spent a lot of time to make useful first time settings and improved the "
1460
- "user interface for an easier experience."
1461
- msgstr ""
1462
-
1463
- #: includes/admin/welcome.php:284
1464
- msgid "Additional Updates"
1465
- msgstr ""
1466
-
1467
- #: includes/admin/welcome.php:287
1468
- msgid "Developer Friendly"
1469
- msgstr ""
1470
-
1471
- #: includes/admin/welcome.php:288
1472
- msgid ""
1473
- "Are you a theme developer and want to use MashShare as your build in share "
1474
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1475
- "instructions.</a>"
1476
- msgstr ""
1477
-
1478
- #: includes/admin/welcome.php:291
1479
- msgid "Check Open Graph Settings"
1480
- msgstr ""
1481
-
1482
- #: includes/admin/welcome.php:292
1483
- msgid ""
1484
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1485
- "data on your site is working as expected or conflicts with other open graph "
1486
- "data."
1487
- msgstr ""
1488
-
1489
- #: includes/admin/welcome.php:295
1490
- msgid "Use Yoast SEO Title"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/welcome.php:296
1494
- msgid "MashShare will use the YOAST SEO title if it is defined."
1495
- msgstr ""
1496
-
1497
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1498
- msgid "Go to MashShare Settings"
1499
- msgstr ""
1500
-
1501
- #: includes/admin/welcome.php:303
1502
- msgid "View the Full Changelog"
1503
- msgstr ""
1504
-
1505
- #: includes/admin/welcome.php:326
1506
- msgid "What's New"
1507
- msgstr ""
1508
-
1509
- #: includes/admin/welcome.php:332
1510
- msgid "Credits"
1511
- msgstr ""
1512
-
1513
- #: includes/admin/welcome.php:353
1514
- msgid ""
1515
- "Mashshare is created by a René Hermenau and developers all over the world "
1516
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1517
- "WordPress."
1518
- msgstr ""
1519
-
1520
- #: includes/admin/welcome.php:356
1521
- msgid ""
1522
- " If you want to be credited here participate on the development and make "
1523
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1524
- msgstr ""
1525
-
1526
- #: includes/admin/welcome.php:381
1527
- msgid "View %s"
1528
- msgstr ""
1529
-
1530
- #: includes/admin/welcome.php:436
1531
- msgid "No valid changelog was found."
1532
- msgstr ""
1533
-
1534
- #: includes/admin/welcome.php:469
1535
- msgid "Full Changelog"
1536
- msgstr ""
1537
-
1538
- #: includes/class-mashsb-html-elements.php:43
1539
- msgctxt "all dropdown items"
1540
- msgid "All"
1541
- msgstr ""
1542
-
1543
- #: includes/class-mashsb-html-elements.php:44
1544
- msgctxt "no dropdown items"
1545
- msgid "None"
1546
- msgstr ""
1547
-
1548
- #: includes/class-mashsb-html-elements.php:232
1549
- msgid "Enter username"
1550
- msgstr ""
1551
-
1552
- #: includes/class-mashsb-license-handler.php:177
1553
- msgid "%1$s License Key"
1554
- msgstr ""
1555
-
1556
- #: includes/class-mashsb-license-handler.php:210
1557
- msgid ""
1558
- "Enter your extension license keys here to receive updates for purchased "
1559
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1560
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1561
- msgstr ""
1562
-
1563
- #: includes/class-mashsb-license-handler.php:319
1564
- msgid "Nonce verification failed"
1565
- msgstr ""
1566
-
1567
- #: includes/class-mashsb-license-handler.php:436
1568
- msgid ""
1569
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1570
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1571
- "issue."
1572
- msgstr ""
1573
-
1574
- #: includes/class-mashsb-license-handler.php:475
1575
- msgid "Enter valid license key for automatic updates."
1576
- msgstr ""
1577
-
1578
- #: includes/class-mashsb-shared-posts-widget.php:13
1579
- msgid "Mashshare - Most Shared Posts"
1580
- msgstr ""
1581
-
1582
- #: includes/class-mashsb-shared-posts-widget.php:37
1583
- msgid "Widget Title"
1584
- msgstr ""
1585
-
1586
- #: includes/class-mashsb-shared-posts-widget.php:42
1587
- msgid "How many posts to display?"
1588
- msgstr ""
1589
-
1590
- #: includes/class-mashsb-shared-posts-widget.php:46
1591
- msgid "Show Shares? Say \"No\" when using fake shares!"
1592
- msgstr ""
1593
-
1594
- #: includes/class-mashsb-shared-posts-widget.php:61
1595
- msgid "Show shares below post title"
1596
- msgstr ""
1597
-
1598
- #: includes/class-mashsb-shared-posts-widget.php:68
1599
- msgid "Time period and age of posts"
1600
- msgstr ""
1601
-
1602
- #: includes/template-functions.php:249
1603
- msgid "Subscribe"
1604
- msgstr ""
1605
-
1606
- #: includes/template-functions.php:517
1607
- msgid "SHARES"
1608
- msgstr ""
1609
-
1610
- #: includes/template-functions.php:1114
1611
- msgid "Page not found"
1612
- msgstr ""
1613
-
1614
- #. translators: %s: search phrase
1615
- #: includes/template-functions.php:1119
1616
- msgid "Search Results for &#8220;%s&#8221;"
1617
- msgstr ""
1618
-
1619
- #: includes/template-functions.php:1152
1620
- msgctxt "yearly archives date format"
1621
- msgid "Y"
1622
- msgstr ""
1623
-
1624
- #: includes/template-functions.php:1154
1625
- msgctxt "monthly archives date format"
1626
- msgid "F Y"
1627
- msgstr ""
1628
-
1629
- #: mashshare.php:124 mashshare.php:136
1630
- msgid "Cheatin&#8217; huh?"
1631
- msgstr ""
1632
-
1633
- #: templates/sidebar.php:17
1634
- msgid "Increase your Shares and Social Traffic"
1635
- msgstr ""
1636
-
1637
- #: templates/sidebar.php:20
1638
- msgid "Get 20% Off!"
1639
- msgstr ""
1640
-
1641
- #: templates/sidebar.php:25
1642
- msgid ""
1643
- "Submit your name and email and we'll send you a coupon for 20% off your "
1644
- "upgrade to the pro version."
1645
- msgstr ""
1646
-
1647
- #: templates/sidebar.php:29
1648
- msgid "Your Email"
1649
- msgstr ""
1650
-
1651
- #: templates/sidebar.php:33
1652
- msgid "First Name"
1653
- msgstr ""
1654
-
1655
- #: templates/sidebar.php:37
1656
- msgid "Last Name"
1657
- msgstr ""
1658
-
1659
- #: templates/sidebar.php:44
1660
- msgid "Send me the coupon"
1661
- msgstr ""
1662
-
1663
- #: templates/sidebar.php:48
1664
- msgid ""
1665
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1666
- "click anytime."
1667
- msgstr ""
1668
-
1669
- #. Plugin Name of the plugin/theme
1670
- msgid "Mashshare Share Buttons"
1671
- msgstr ""
1672
-
1673
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1674
- #. Plugin URI of the plugin/theme
1675
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1676
- #. Author URI of the plugin/theme
1677
- msgid "https://www.mashshare.net"
1678
- msgstr ""
1679
-
1680
- #. Description of the plugin/theme
1681
- msgid ""
1682
- "Mashshare is a Share functionality inspired by the the great website "
1683
- "Mashable for Facebook and Twitter. More networks available."
1684
- msgstr ""
1685
-
1686
- #. Author of the plugin/theme
1687
- msgid "René Hermenau"
1688
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-pl_PL.mo DELETED
Binary file
languages/mashsb-pl_PL.po DELETED
@@ -1,1685 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Rene Hermenau <info@mashshare.net>, 2016
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mashshare\n"
8
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
9
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
10
- "PO-Revision-Date: 2016-06-23 19:13+0100\n"
11
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
12
- "Language-Team: Polish (Poland) (http://www.transifex.com/renehermenau/"
13
- "mashshare/language/pl_PL/)\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Language: pl_PL\n"
18
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
19
- "|| n%100>=20) ? 1 : 2);\n"
20
- "X-Generator: Poedit 1.5.6\n"
21
-
22
- msgid ""
23
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
24
- "Highly customizable Social Media ecosystem"
25
- msgstr ""
26
- "Przyciski udostepniania i publikacji dla TWitter, Facebook i innych mediow "
27
- "spolecznosciowych. Wysoce konfigurowalny ekosystem dla mediow "
28
- "spolecznosciowych"
29
-
30
- #: includes/MASHSB_SL_Plugin_Updater.php:177
31
- msgid ""
32
- "There is a new version of %1$s available. <a target=\"_blank\" class="
33
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
34
- msgstr ""
35
-
36
- #: includes/MASHSB_SL_Plugin_Updater.php:184
37
- msgid ""
38
- "There is a new version of %1$s available. <a target=\"_blank\" class="
39
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
40
- "\">update now</a>."
41
- msgstr ""
42
-
43
- #: includes/MASHSB_SL_Plugin_Updater.php:324
44
- msgid "You do not have permission to install plugin updates"
45
- msgstr ""
46
-
47
- #: includes/MASHSB_SL_Plugin_Updater.php:324
48
- #: includes/class-mashsb-license-handler.php:319
49
- msgid "Error"
50
- msgstr ""
51
-
52
- #: includes/admin/add-ons.php:27
53
- msgid "Add Ons for Mashshare"
54
- msgstr ""
55
-
56
- #: includes/admin/add-ons.php:28
57
- msgid "Visit Website"
58
- msgstr ""
59
-
60
- #: includes/admin/add-ons.php:28
61
- msgid "See Details"
62
- msgstr ""
63
-
64
- #: includes/admin/add-ons.php:30
65
- msgid "These add-ons extend the functionality of Mashshare."
66
- msgstr ""
67
-
68
- #: includes/admin/add-ons.php:54
69
- msgid ""
70
- "There was an error retrieving the Mashshare addon list from the server. "
71
- "Please try again later."
72
- msgstr ""
73
-
74
- #: includes/admin/admin-footer.php:24
75
- msgid ""
76
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
77
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
78
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
79
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
80
- "\"blank\">Documentation</a>"
81
- msgstr ""
82
-
83
- #: includes/admin/admin-notices.php:51
84
- msgid ""
85
- "MashShare needs the PHP extension cURL which is not installed on your "
86
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
87
- "to be able to collect share count of your posts."
88
- msgstr ""
89
-
90
- #: includes/admin/admin-notices.php:58
91
- msgid ""
92
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
93
- ">Social Networks</a> and enable at least one Social Network."
94
- msgstr ""
95
-
96
- #: includes/admin/admin-notices.php:64
97
- msgid ""
98
- "Your Sharebar Add-On version is not using new short url mechanism of "
99
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
100
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
101
- "short urls will not stop working in one of the next updates. This requires a "
102
- "valid license of the Sharebar Add-On"
103
- msgstr ""
104
-
105
- #: includes/admin/admin-notices.php:70
106
- msgid ""
107
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
108
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
109
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
110
- "twitter short urls will not stop working in one of the next updates. This "
111
- "requires a valid license of the Floating Sidebar Add-On"
112
- msgstr ""
113
-
114
- #: includes/admin/admin-notices.php:76
115
- msgid ""
116
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
117
- ">Short URL Integration</i></a> and check the Google API key."
118
- msgstr ""
119
-
120
- #: includes/admin/admin-notices.php:82
121
- msgid ""
122
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
123
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
124
- "check the Bitly API key."
125
- msgstr ""
126
-
127
- #: includes/admin/admin-notices.php:88
128
- msgid ""
129
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
130
- "is not longer needed and having it activated leads to duplicate open graph "
131
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
132
- msgstr ""
133
-
134
- #: includes/admin/admin-notices.php:94
135
- msgid ""
136
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
137
- "not longer needed and already built in MashShare. Deactivate it from <a href="
138
- "\"%s\"> Plugin Settings</a> "
139
- msgstr ""
140
-
141
- #: includes/admin/admin-notices.php:100
142
- msgid ""
143
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
144
- "\">Permalinks</a> must be enabled to count shares. Share count is "
145
- "deactivated until you have fixed this."
146
- msgstr ""
147
-
148
- #: includes/admin/admin-notices.php:258
149
- msgid ""
150
- "There seems to be an issue with the server. Please try again in a few "
151
- "minutes."
152
- msgstr ""
153
-
154
- #: includes/admin/admin-pages.php:31
155
- msgid "MashShare"
156
- msgstr ""
157
-
158
- #: includes/admin/admin-pages.php:32
159
- msgid "MashShare Settings"
160
- msgstr ""
161
-
162
- #: includes/admin/admin-pages.php:32
163
- #: includes/admin/settings/register-settings.php:744
164
- msgid "Settings"
165
- msgstr ""
166
-
167
- #: includes/admin/admin-pages.php:33
168
- msgid "MashShare Add Ons"
169
- msgstr ""
170
-
171
- #: includes/admin/admin-pages.php:33
172
- msgid "Get Add Ons"
173
- msgstr ""
174
-
175
- #: includes/admin/admin-pages.php:34
176
- msgid "MashShare Tools"
177
- msgstr ""
178
-
179
- #: includes/admin/admin-pages.php:34
180
- msgid "Im/Export & System"
181
- msgstr ""
182
-
183
- #: includes/admin/meta-box/inc/core.php:40
184
- msgid "Documentation"
185
- msgstr ""
186
-
187
- #: includes/admin/meta-box/inc/core.php:41
188
- msgid "Extensions"
189
- msgstr ""
190
-
191
- #: includes/admin/meta-box/inc/field.php:196
192
- msgid "+ Add more"
193
- msgstr ""
194
-
195
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
196
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
197
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
198
- msgid "Delete"
199
- msgstr ""
200
-
201
- #: includes/admin/meta-box/inc/fields/button.php:29
202
- msgid "Click me"
203
- msgstr ""
204
-
205
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
206
- msgid "Yes"
207
- msgstr ""
208
-
209
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
210
- msgid "No"
211
- msgstr ""
212
-
213
- #: includes/admin/meta-box/inc/fields/file-input.php:18
214
- msgid "Select File"
215
- msgstr ""
216
-
217
- #: includes/admin/meta-box/inc/fields/file-input.php:41
218
- #: includes/admin/meta-box/inc/fields/select.php:91
219
- msgid "Select"
220
- msgstr ""
221
-
222
- #: includes/admin/meta-box/inc/fields/file-input.php:43
223
- msgid "Remove"
224
- msgstr ""
225
-
226
- #: includes/admin/meta-box/inc/fields/file.php:15
227
- msgid "You may only upload maximum %d file"
228
- msgstr ""
229
-
230
- #: includes/admin/meta-box/inc/fields/file.php:16
231
- msgid "You may only upload maximum %d files"
232
- msgstr ""
233
-
234
- #: includes/admin/meta-box/inc/fields/file.php:83
235
- msgid "Error: Cannot delete file"
236
- msgstr ""
237
-
238
- #: includes/admin/meta-box/inc/fields/file.php:96
239
- msgctxt "file upload"
240
- msgid "Upload Files"
241
- msgstr ""
242
-
243
- #: includes/admin/meta-box/inc/fields/file.php:97
244
- msgctxt "file upload"
245
- msgid "+ Add new file"
246
- msgstr ""
247
-
248
- #: includes/admin/meta-box/inc/fields/file.php:153
249
- msgctxt "file upload"
250
- msgid "Delete"
251
- msgstr ""
252
-
253
- #: includes/admin/meta-box/inc/fields/file.php:154
254
- msgctxt "file upload"
255
- msgid "Edit"
256
- msgstr ""
257
-
258
- #: includes/admin/meta-box/inc/fields/image.php:61
259
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
260
- msgctxt "image upload"
261
- msgid "Upload Images"
262
- msgstr ""
263
-
264
- #: includes/admin/meta-box/inc/fields/image.php:62
265
- msgctxt "image upload"
266
- msgid "+ Add new image"
267
- msgstr ""
268
-
269
- #: includes/admin/meta-box/inc/fields/image.php:124
270
- msgctxt "image upload"
271
- msgid "Delete"
272
- msgstr ""
273
-
274
- #: includes/admin/meta-box/inc/fields/image.php:125
275
- msgctxt "image upload"
276
- msgid "Edit"
277
- msgstr ""
278
-
279
- #: includes/admin/meta-box/inc/fields/key-value.php:19
280
- msgid "Key"
281
- msgstr ""
282
-
283
- #: includes/admin/meta-box/inc/fields/key-value.php:25
284
- msgid "Value"
285
- msgstr ""
286
-
287
- #: includes/admin/meta-box/inc/fields/map.php:49
288
- msgid "Find Address"
289
- msgstr ""
290
-
291
- #: includes/admin/meta-box/inc/fields/media.php:18
292
- msgctxt "media"
293
- msgid "Add Image"
294
- msgstr ""
295
-
296
- #: includes/admin/meta-box/inc/fields/media.php:19
297
- msgctxt "media"
298
- msgid " file"
299
- msgstr ""
300
-
301
- #: includes/admin/meta-box/inc/fields/media.php:20
302
- msgctxt "media"
303
- msgid " files"
304
- msgstr ""
305
-
306
- #: includes/admin/meta-box/inc/fields/media.php:21
307
- msgctxt "media"
308
- msgid "Remove"
309
- msgstr ""
310
-
311
- #: includes/admin/meta-box/inc/fields/media.php:22
312
- msgctxt "media"
313
- msgid "Edit"
314
- msgstr ""
315
-
316
- #: includes/admin/meta-box/inc/fields/media.php:23
317
- msgctxt "media"
318
- msgid "View"
319
- msgstr ""
320
-
321
- #: includes/admin/meta-box/inc/fields/media.php:24
322
- msgctxt "media"
323
- msgid "No Title"
324
- msgstr ""
325
-
326
- #: includes/admin/meta-box/inc/fields/media.php:27
327
- msgctxt "media"
328
- msgid "Select Files"
329
- msgstr ""
330
-
331
- #: includes/admin/meta-box/inc/fields/media.php:28
332
- msgctxt "media"
333
- msgid "Drop files here to upload"
334
- msgstr ""
335
-
336
- #: includes/admin/meta-box/inc/fields/oembed.php:65
337
- msgid "Embed HTML not available."
338
- msgstr ""
339
-
340
- #: includes/admin/meta-box/inc/fields/oembed.php:84
341
- msgid "Preview"
342
- msgstr ""
343
-
344
- #: includes/admin/meta-box/inc/fields/post.php:34
345
- msgid "Select a post"
346
- msgstr ""
347
-
348
- #: includes/admin/meta-box/inc/fields/post.php:38
349
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
350
- msgid "Select a %s"
351
- msgstr ""
352
-
353
- #: includes/admin/meta-box/inc/fields/select.php:91
354
- msgid "All"
355
- msgstr ""
356
-
357
- #: includes/admin/meta-box/inc/fields/select.php:91
358
- msgid "None"
359
- msgstr ""
360
-
361
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
362
- msgid "Select a term"
363
- msgstr ""
364
-
365
- #: includes/admin/meta-box/inc/fields/user.php:34
366
- msgid "Select an user"
367
- msgstr ""
368
-
369
- #: includes/admin/meta-box/inc/validation.php:42
370
- msgid "Please correct the errors highlighted below and try again."
371
- msgstr ""
372
-
373
- #: includes/admin/plugins.php:27
374
- msgid "General Settings"
375
- msgstr ""
376
-
377
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
378
- msgid "Getting Started"
379
- msgstr ""
380
-
381
- #: includes/admin/plugins.php:51
382
- msgid "Add Ons"
383
- msgstr ""
384
-
385
- #: includes/admin/settings/contextual-help.php:29
386
- msgid "For more information:"
387
- msgstr ""
388
-
389
- #: includes/admin/settings/contextual-help.php:30
390
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
391
- msgstr ""
392
-
393
- #: includes/admin/settings/contextual-help.php:32
394
- msgid ""
395
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
396
- "href=\"%s\">extensions</a>."
397
- msgstr ""
398
-
399
- #: includes/admin/settings/contextual-help.php:41
400
- msgid "General"
401
- msgstr ""
402
-
403
- #: includes/admin/settings/contextual-help.php:42
404
- msgid "This screen provides the most basic settings for configuring Mashshare."
405
- msgstr ""
406
-
407
- #: includes/admin/settings/display-settings.php:133
408
- msgid "MashShare "
409
- msgstr ""
410
-
411
- #: includes/admin/settings/metabox-settings.php:102
412
- msgid "Social Media Image"
413
- msgstr ""
414
-
415
- #: includes/admin/settings/metabox-settings.php:103
416
- msgid ""
417
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
418
- "1200px x 630px. Aspect ratio 1.9:1"
419
- msgstr ""
420
-
421
- #: includes/admin/settings/metabox-settings.php:112
422
- msgid "Social Media Title"
423
- msgstr ""
424
-
425
- #: includes/admin/settings/metabox-settings.php:113
426
- msgid ""
427
- "This title is used by the open graph meta tag og:title and will be used when "
428
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
429
- "to use "
430
- msgstr ""
431
-
432
- #: includes/admin/settings/metabox-settings.php:113
433
- msgid "Yoast Facebook / SEO title"
434
- msgstr ""
435
-
436
- #: includes/admin/settings/metabox-settings.php:121
437
- msgid "Social Media Description"
438
- msgstr ""
439
-
440
- #: includes/admin/settings/metabox-settings.php:122
441
- msgid ""
442
- "This description is used by the open graph meta tag og:description and will "
443
- "be used when users share your content on Facebook, LinkedIn, and Google "
444
- "Plus. Leave this blank to use "
445
- msgstr ""
446
-
447
- #: includes/admin/settings/metabox-settings.php:122
448
- msgid "Yoast Facebook open graph description or the post excerpt."
449
- msgstr ""
450
-
451
- #: includes/admin/settings/metabox-settings.php:135
452
- msgid "Pinterest Image"
453
- msgstr ""
454
-
455
- #: includes/admin/settings/metabox-settings.php:135
456
- #: includes/admin/settings/metabox-settings.php:145
457
- msgid ""
458
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
459
- "the Pinterest Features"
460
- msgstr ""
461
-
462
- #: includes/admin/settings/metabox-settings.php:136
463
- msgid ""
464
- "Pinned images need to be more vertical than horizontal in orientation. Use "
465
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
466
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
467
- msgstr ""
468
-
469
- #: includes/admin/settings/metabox-settings.php:145
470
- msgid "Pinterest Description"
471
- msgstr ""
472
-
473
- #: includes/admin/settings/metabox-settings.php:146
474
- msgid ""
475
- "Place a customized message that will be used when this post is shared on "
476
- "Pinterest. Leave this blank to use the "
477
- msgstr ""
478
-
479
- #: includes/admin/settings/metabox-settings.php:146
480
- msgid "Yoast SEO title"
481
- msgstr ""
482
-
483
- #: includes/admin/settings/metabox-settings.php:146
484
- msgid "the post title"
485
- msgstr ""
486
-
487
- #: includes/admin/settings/metabox-settings.php:154
488
- msgid "Custom Tweet"
489
- msgstr ""
490
-
491
- #: includes/admin/settings/metabox-settings.php:176
492
- msgid ""
493
- "Publish the post and validate if the open graph meta tags on your site are "
494
- "correct! Incorrect data can result in wrong share description, title or "
495
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
496
- "new scrape information\" to purge the facebook cache."
497
- msgstr ""
498
-
499
- #: includes/admin/settings/metabox-settings.php:206
500
- msgid "Based on your username @"
501
- msgstr ""
502
-
503
- #: includes/admin/settings/metabox-settings.php:206
504
- msgid " ,the shortened post url and the current content above"
505
- msgstr ""
506
-
507
- #: includes/admin/settings/metabox-settings.php:208
508
- msgid "Based on the shortened post url and the current content above"
509
- msgstr ""
510
-
511
- #: includes/admin/settings/metabox-settings.php:210
512
- msgid " your tweet has a maximum of 140 characters. "
513
- msgstr ""
514
-
515
- #: includes/admin/settings/metabox-settings.php:212
516
- msgid "If this is left blank the post title will be used. "
517
- msgstr ""
518
-
519
- #: includes/admin/settings/metabox-settings.php:214
520
- msgid ""
521
- "If this is left blank the Yoast Twitter Title or post title will be used. "
522
- msgstr ""
523
-
524
- #: includes/admin/settings/register-settings.php:120
525
- msgid "General settings"
526
- msgstr ""
527
-
528
- #: includes/admin/settings/register-settings.php:126
529
- msgid "Share counts"
530
- msgstr ""
531
-
532
- #: includes/admin/settings/register-settings.php:127
533
- msgid ""
534
- "<i>MashEngine</i> collects shares by direct request to social networks. "
535
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
536
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
537
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
538
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
539
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
540
- "this free service to get the twitter share count. Visit the newsharecount "
541
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
542
- "Thats it!"
543
- msgstr ""
544
-
545
- #: includes/admin/settings/register-settings.php:136
546
- msgid "Sharedcount.com API Key"
547
- msgstr ""
548
-
549
- #: includes/admin/settings/register-settings.php:137
550
- msgid ""
551
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
552
- "\">SharedCount.com</a> for 10.000 free daily requests."
553
- msgstr ""
554
-
555
- #: includes/admin/settings/register-settings.php:143
556
- msgid "Sharedcount.com endpint"
557
- msgstr ""
558
-
559
- #: includes/admin/settings/register-settings.php:144
560
- msgid ""
561
- "The SharedCount Domain your API key is configured to query. For example, "
562
- "free.sharedcount.com. This may update automatically if configured "
563
- "incorrectly."
564
- msgstr ""
565
-
566
- #: includes/admin/settings/register-settings.php:151
567
- msgid "Caching Method"
568
- msgstr ""
569
-
570
- #: includes/admin/settings/register-settings.php:152
571
- msgid ""
572
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
573
- "visitor and refreshes the cache asyncronously in the background. New posts "
574
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
575
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
576
- "cache while page is loading and adds a little extra time during inital page "
577
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
578
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
579
- "was using before version 3.0"
580
- msgstr ""
581
-
582
- #: includes/admin/settings/register-settings.php:161
583
- msgid "Cache expiration"
584
- msgstr ""
585
-
586
- #: includes/admin/settings/register-settings.php:162
587
- msgid ""
588
- "Shares are counted for posts after a certain time and counts are not updated "
589
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
590
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
591
- "more"
592
- msgstr ""
593
-
594
- #: includes/admin/settings/register-settings.php:168
595
- msgid "Facebook Count"
596
- msgstr ""
597
-
598
- #: includes/admin/settings/register-settings.php:169
599
- msgid ""
600
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
601
- "the pure share count"
602
- msgstr ""
603
-
604
- #: includes/admin/settings/register-settings.php:179
605
- msgid "Fake Share counts"
606
- msgstr ""
607
-
608
- #: includes/admin/settings/register-settings.php:180
609
- msgid ""
610
- "This number will be aggregated to all your share counts and is multiplied "
611
- "with a post specific factor. (Number of post title words divided with 10)."
612
- msgstr ""
613
-
614
- #: includes/admin/settings/register-settings.php:186
615
- msgid "Disable Sharecount"
616
- msgstr ""
617
-
618
- #: includes/admin/settings/register-settings.php:187
619
- msgid ""
620
- "Use this when curl() is not supported on your server or share counts should "
621
- "not counted. This mode does not call the database and no SQL queries are "
622
- "generated. (Only less performance benefit. All db requests are cached) "
623
- "Default: false"
624
- msgstr ""
625
-
626
- #: includes/admin/settings/register-settings.php:192
627
- msgid "Hide Sharecount"
628
- msgstr ""
629
-
630
- #: includes/admin/settings/register-settings.php:193
631
- msgid ""
632
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
633
- "specific post are not shown until the share count of this number is reached."
634
- msgstr ""
635
-
636
- #: includes/admin/settings/register-settings.php:199
637
- msgid "Execution Order"
638
- msgstr ""
639
-
640
- #: includes/admin/settings/register-settings.php:200
641
- msgid ""
642
- "If you use other content plugins you can define here the execution order. "
643
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
644
- "executed before any other plugin (When the other plugin is not overwriting "
645
- "our execution order). Default is \"1000\""
646
- msgstr ""
647
-
648
- #: includes/admin/settings/register-settings.php:207
649
- msgid "JavaScript in Footer"
650
- msgstr ""
651
-
652
- #: includes/admin/settings/register-settings.php:208
653
- msgid ""
654
- "Enable this to load all *.js files into footer. Make sure your theme uses "
655
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
656
- msgstr ""
657
-
658
- #: includes/admin/settings/register-settings.php:213
659
- msgid "JS & CSS Everywhere"
660
- msgstr ""
661
-
662
- #: includes/admin/settings/register-settings.php:214
663
- msgid ""
664
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
665
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
666
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
667
- "option to allow conditional loading so MashShare's JS and CSS files are "
668
- "loaded only on pages where MashShare is used."
669
- msgstr ""
670
-
671
- #: includes/admin/settings/register-settings.php:220
672
- msgid "Twitter Popup disabled"
673
- msgstr ""
674
-
675
- #: includes/admin/settings/register-settings.php:221
676
- msgid ""
677
- "Check this box if your twitter popup is openening twice. This happens "
678
- "sometimes when you are using any third party twitter plugin or the twitter "
679
- "SDK on your website."
680
- msgstr ""
681
-
682
- #: includes/admin/settings/register-settings.php:227
683
- msgid "Remove Data on Uninstall?"
684
- msgstr ""
685
-
686
- #: includes/admin/settings/register-settings.php:228
687
- msgid ""
688
- "Check this box if you would like Mashshare to completely remove all of its "
689
- "data when the plugin is deleted."
690
- msgstr ""
691
-
692
- #: includes/admin/settings/register-settings.php:233
693
- msgid "Allow Usage Tracking"
694
- msgstr ""
695
-
696
- #: includes/admin/settings/register-settings.php:234
697
- #: includes/admin/tracking.php:265
698
- msgid ""
699
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
700
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
701
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
702
- "Ons</a>. No sensitive data is tracked."
703
- msgstr ""
704
-
705
- #: includes/admin/settings/register-settings.php:239
706
- msgid "User Roles Options Visibility"
707
- msgstr ""
708
-
709
- #: includes/admin/settings/register-settings.php:240
710
- msgid ""
711
- "Select user roles which can see page and post MashShare Social Sharing Meta "
712
- "Box Options"
713
- msgstr ""
714
-
715
- #: includes/admin/settings/register-settings.php:243
716
- msgid "Select User Roles"
717
- msgstr ""
718
-
719
- #: includes/admin/settings/register-settings.php:244
720
- msgid "All Roles"
721
- msgstr ""
722
-
723
- #: includes/admin/settings/register-settings.php:248
724
- #: includes/admin/settings/register-settings.php:294
725
- #: includes/admin/settings/register-settings.php:751
726
- msgid "Social Networks"
727
- msgstr ""
728
-
729
- #: includes/admin/settings/register-settings.php:254
730
- msgid "Facebook page url"
731
- msgstr ""
732
-
733
- #: includes/admin/settings/register-settings.php:255
734
- msgid "Optional: The url of the main facebook account connected with this site"
735
- msgstr ""
736
-
737
- #: includes/admin/settings/register-settings.php:261
738
- msgid "Facebook App ID"
739
- msgstr ""
740
-
741
- #: includes/admin/settings/register-settings.php:262
742
- msgid ""
743
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
744
- "a>"
745
- msgstr ""
746
-
747
- #: includes/admin/settings/register-settings.php:268
748
- #: includes/admin/settings/user-profiles.php:19
749
- msgid "Twitter Username"
750
- msgstr ""
751
-
752
- #: includes/admin/settings/register-settings.php:269
753
- msgid ""
754
- "<strong>Optional:</strong> Using your twitter username results in via "
755
- "@username"
756
- msgstr ""
757
-
758
- #: includes/admin/settings/register-settings.php:275
759
- msgid "Twitter Card"
760
- msgstr ""
761
-
762
- #: includes/admin/settings/register-settings.php:276
763
- msgid ""
764
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
765
- "plugin their meta tags will be removed and MashShare will use existing meta "
766
- "data from these plugins. Default: On"
767
- msgstr ""
768
-
769
- #: includes/admin/settings/register-settings.php:281
770
- msgid "Open Graph Meta Tags"
771
- msgstr ""
772
-
773
- #: includes/admin/settings/register-settings.php:282
774
- msgid ""
775
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
776
- "Jetpack plugin their meta tags will be removed and MashShare will use "
777
- "existing meta data from these plugins."
778
- msgstr ""
779
-
780
- #: includes/admin/settings/register-settings.php:287
781
- msgid "Large Buttons"
782
- msgstr ""
783
-
784
- #: includes/admin/settings/register-settings.php:288
785
- msgid ""
786
- "Specify how many services and social networks are visible before the \"Plus"
787
- "\" Button is shown. This buttons turn into large prominent buttons."
788
- msgstr ""
789
-
790
- #: includes/admin/settings/register-settings.php:295
791
- msgid ""
792
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
793
- "that should be visible. <br>Activate more networks than number of \"Large "
794
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
795
- msgstr ""
796
-
797
- #: includes/admin/settings/register-settings.php:321
798
- msgid "Short URL Integration"
799
- msgstr ""
800
-
801
- #: includes/admin/settings/register-settings.php:328
802
- msgid "Bitly access token"
803
- msgstr ""
804
-
805
- #: includes/admin/settings/register-settings.php:329
806
- msgid ""
807
- "If you like to use bitly.com shortener get a free bitly access token <a href="
808
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
809
- "ly/cXnjsh. "
810
- msgstr ""
811
-
812
- #: includes/admin/settings/register-settings.php:335
813
- msgid "Google API Key (goo.gl)"
814
- msgstr ""
815
-
816
- #: includes/admin/settings/register-settings.php:342
817
- msgid "Shorturl method"
818
- msgstr ""
819
-
820
- #: includes/admin/settings/register-settings.php:343
821
- msgid ""
822
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
823
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
824
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
825
- "%s ?p=101</i>"
826
- msgstr ""
827
-
828
- #: includes/admin/settings/register-settings.php:354
829
- msgid "Important: Read this!"
830
- msgstr ""
831
-
832
- #: includes/admin/settings/register-settings.php:355
833
- msgid ""
834
- "<strong>The post short url is NOT generated immediatly after first page load!"
835
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
836
- "12 hours for old posts."
837
- msgstr ""
838
-
839
- #: includes/admin/settings/register-settings.php:374
840
- msgid "Customization"
841
- msgstr ""
842
-
843
- #: includes/admin/settings/register-settings.php:380
844
- msgid "Round up Shares"
845
- msgstr ""
846
-
847
- #: includes/admin/settings/register-settings.php:381
848
- msgid ""
849
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
850
- "as 1M"
851
- msgstr ""
852
-
853
- #: includes/admin/settings/register-settings.php:386
854
- msgid "Animate Shares"
855
- msgstr ""
856
-
857
- #: includes/admin/settings/register-settings.php:387
858
- msgid ""
859
- "Count up the shares on page loading with a nice looking animation effect. "
860
- "This only works on singular pages and not with shortcodes generated buttons."
861
- msgstr ""
862
-
863
- #: includes/admin/settings/register-settings.php:392
864
- #: includes/class-mashsb-shared-posts-widget.php:53
865
- msgid "Share Count Label"
866
- msgstr ""
867
-
868
- #: includes/admin/settings/register-settings.php:393
869
- msgid ""
870
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
871
- msgstr ""
872
-
873
- #: includes/admin/settings/register-settings.php:408
874
- msgid "Share Count Color"
875
- msgstr ""
876
-
877
- #: includes/admin/settings/register-settings.php:409
878
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
879
- msgstr ""
880
-
881
- #: includes/admin/settings/register-settings.php:416
882
- msgid "Border Radius"
883
- msgstr ""
884
-
885
- #: includes/admin/settings/register-settings.php:417
886
- msgid ""
887
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
888
- "results in circle buttons. Default value is zero."
889
- msgstr ""
890
-
891
- #: includes/admin/settings/register-settings.php:447
892
- msgid "Button Width"
893
- msgstr ""
894
-
895
- #: includes/admin/settings/register-settings.php:448
896
- msgid "Minimum with of the large share buttons in pixels"
897
- msgstr ""
898
-
899
- #: includes/admin/settings/register-settings.php:455
900
- msgid "Share Button Style"
901
- msgstr ""
902
-
903
- #: includes/admin/settings/register-settings.php:456
904
- msgid "Change visual appearance of the share buttons."
905
- msgstr ""
906
-
907
- #: includes/admin/settings/register-settings.php:467
908
- msgid "Small Share Buttons"
909
- msgstr ""
910
-
911
- #: includes/admin/settings/register-settings.php:468
912
- msgid ""
913
- "All buttons will be shown as pure small icons without any text on desktop "
914
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
915
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
916
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
917
- msgstr ""
918
-
919
- #: includes/admin/settings/register-settings.php:479
920
- msgid "Subscribe Button"
921
- msgstr ""
922
-
923
- #: includes/admin/settings/register-settings.php:480
924
- msgid ""
925
- "Specify if the subscribe button is opening a content box below the button or "
926
- "if the button is linked to the \"subscribe url\" below."
927
- msgstr ""
928
-
929
- #: includes/admin/settings/register-settings.php:490
930
- msgid "Subscribe URL"
931
- msgstr ""
932
-
933
- #: includes/admin/settings/register-settings.php:491
934
- msgid ""
935
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
936
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
937
- msgstr ""
938
-
939
- #: includes/admin/settings/register-settings.php:498
940
- msgid "Additional Content"
941
- msgstr ""
942
-
943
- #: includes/admin/settings/register-settings.php:504
944
- msgid "Content Above"
945
- msgstr ""
946
-
947
- #: includes/admin/settings/register-settings.php:505
948
- msgid ""
949
- "Content appearing above share buttons. Use HTML, formulars, like button, "
950
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
951
- msgstr ""
952
-
953
- #: includes/admin/settings/register-settings.php:512
954
- msgid "Content Below"
955
- msgstr ""
956
-
957
- #: includes/admin/settings/register-settings.php:513
958
- msgid ""
959
- "Content appearing below share buttons. Use HTML, formulars, like button, "
960
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
961
- msgstr ""
962
-
963
- #: includes/admin/settings/register-settings.php:520
964
- msgid "Subscribe content"
965
- msgstr ""
966
-
967
- #: includes/admin/settings/register-settings.php:521
968
- msgid ""
969
- "Define the content of the opening toggle subscribe window here. Use "
970
- "formulars, like button, links or any other text. Shortcodes are supported, e."
971
- "g.: [contact-form-7]"
972
- msgstr ""
973
-
974
- #: includes/admin/settings/register-settings.php:530
975
- msgid "Custom Styles"
976
- msgstr ""
977
-
978
- #: includes/admin/settings/register-settings.php:536
979
- msgid "General CSS"
980
- msgstr ""
981
-
982
- #: includes/admin/settings/register-settings.php:537
983
- msgid ""
984
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
985
- "it's loaded as an additonal inline css on your site"
986
- msgstr ""
987
-
988
- #: includes/admin/settings/register-settings.php:544
989
- msgid "AMP CSS"
990
- msgstr ""
991
-
992
- #: includes/admin/settings/register-settings.php:545
993
- msgid ""
994
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
995
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
996
- "\">AMP Plugin</a> installed."
997
- msgstr ""
998
-
999
- #: includes/admin/settings/register-settings.php:562
1000
- msgid "Location & Position"
1001
- msgstr ""
1002
-
1003
- #: includes/admin/settings/register-settings.php:568
1004
- msgid "Position"
1005
- msgstr ""
1006
-
1007
- #: includes/admin/settings/register-settings.php:569
1008
- msgid ""
1009
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1010
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1011
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1012
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1013
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1014
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1015
- "shortcodes</a>."
1016
- msgstr ""
1017
-
1018
- #: includes/admin/settings/register-settings.php:572
1019
- msgid "Top"
1020
- msgstr ""
1021
-
1022
- #: includes/admin/settings/register-settings.php:573
1023
- msgid "Bottom"
1024
- msgstr ""
1025
-
1026
- #: includes/admin/settings/register-settings.php:574
1027
- msgid "Top and Bottom"
1028
- msgstr ""
1029
-
1030
- #: includes/admin/settings/register-settings.php:575
1031
- msgid "Manual"
1032
- msgstr ""
1033
-
1034
- #: includes/admin/settings/register-settings.php:580
1035
- msgid "Post Types"
1036
- msgstr ""
1037
-
1038
- #: includes/admin/settings/register-settings.php:581
1039
- msgid ""
1040
- "Select on which post_types the share buttons appear. These values will be "
1041
- "ignored when \"manual\" position is selected."
1042
- msgstr ""
1043
-
1044
- #: includes/admin/settings/register-settings.php:586
1045
- msgid "Exclude from post id"
1046
- msgstr ""
1047
-
1048
- #: includes/admin/settings/register-settings.php:587
1049
- msgid ""
1050
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1051
- "by a comma, e.g. 23, 63, 114 "
1052
- msgstr ""
1053
-
1054
- #: includes/admin/settings/register-settings.php:593
1055
- msgid "Categories"
1056
- msgstr ""
1057
-
1058
- #: includes/admin/settings/register-settings.php:594
1059
- msgid ""
1060
- "Enable this checkbox to enable Mashshare on categories with multiple "
1061
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1062
- msgstr ""
1063
-
1064
- #: includes/admin/settings/register-settings.php:600
1065
- msgid "Frontpage"
1066
- msgstr ""
1067
-
1068
- #: includes/admin/settings/register-settings.php:601
1069
- msgid "Enable share buttons on frontpage"
1070
- msgstr ""
1071
-
1072
- #: includes/admin/settings/register-settings.php:606
1073
- msgid "Debug"
1074
- msgstr ""
1075
-
1076
- #: includes/admin/settings/register-settings.php:612
1077
- msgid "Disable Cache"
1078
- msgstr ""
1079
-
1080
- #: includes/admin/settings/register-settings.php:618
1081
- msgid "Attention: Purge DB Cache"
1082
- msgstr ""
1083
-
1084
- #: includes/admin/settings/register-settings.php:624
1085
- msgid "Debug mode"
1086
- msgstr ""
1087
-
1088
- #: includes/admin/settings/register-settings.php:633
1089
- msgid "Activate your Add-Ons"
1090
- msgstr ""
1091
-
1092
- #: includes/admin/settings/register-settings.php:634
1093
- msgid ""
1094
- "Activate your license key to get important security and feature updates for "
1095
- "your Add-On!"
1096
- msgstr ""
1097
-
1098
- #: includes/admin/settings/register-settings.php:634
1099
- msgid ""
1100
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1101
- "Add-Ons</a>"
1102
- msgstr ""
1103
-
1104
- #: includes/admin/settings/register-settings.php:714
1105
- msgid "Settings updated."
1106
- msgstr ""
1107
-
1108
- #: includes/admin/settings/register-settings.php:747
1109
- msgid "Visual"
1110
- msgstr ""
1111
-
1112
- #: includes/admin/settings/register-settings.php:755
1113
- msgid "Add-On Settings"
1114
- msgstr ""
1115
-
1116
- #: includes/admin/settings/register-settings.php:759
1117
- msgid "Licenses"
1118
- msgstr ""
1119
-
1120
- #: includes/admin/settings/register-settings.php:761
1121
- msgid "Get More Add-Ons"
1122
- msgstr ""
1123
-
1124
- #: includes/admin/settings/register-settings.php:1012
1125
- msgid ""
1126
- "The callback function used for the <strong>%s</strong> setting is missing."
1127
- msgstr ""
1128
-
1129
- #: includes/admin/settings/register-settings.php:1152
1130
- msgid "Upload File"
1131
- msgstr ""
1132
-
1133
- #: includes/admin/settings/register-settings.php:1255
1134
- msgid ""
1135
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1136
- "title=\"Renew your license key\">renew your license key</a>."
1137
- msgstr ""
1138
-
1139
- #: includes/admin/settings/register-settings.php:1268
1140
- msgid ""
1141
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1142
- "account page\">visit your account page</a> and verify it."
1143
- msgstr ""
1144
-
1145
- #: includes/admin/settings/register-settings.php:1281
1146
- msgid ""
1147
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1148
- "title=\"Visit account page\">visit your account page</a> to manage your "
1149
- "license key URLs."
1150
- msgstr ""
1151
-
1152
- #: includes/admin/settings/register-settings.php:1293
1153
- msgid "This is not a %s."
1154
- msgstr ""
1155
-
1156
- #: includes/admin/settings/register-settings.php:1302
1157
- msgid ""
1158
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1159
- "possible upgrades</a> now."
1160
- msgstr ""
1161
-
1162
- #: includes/admin/settings/register-settings.php:1324
1163
- msgid "License key never expires."
1164
- msgstr ""
1165
-
1166
- #: includes/admin/settings/register-settings.php:1331
1167
- msgid ""
1168
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1169
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1170
- msgstr ""
1171
-
1172
- #: includes/admin/settings/register-settings.php:1341
1173
- msgid "Your license key expires on %s."
1174
- msgstr ""
1175
-
1176
- #: includes/admin/settings/register-settings.php:1363
1177
- msgid "Deactivate License"
1178
- msgstr ""
1179
-
1180
- #: includes/admin/settings/register-settings.php:1427
1181
- msgid "Social Network"
1182
- msgstr ""
1183
-
1184
- #: includes/admin/settings/register-settings.php:1428
1185
- msgid "Status"
1186
- msgstr ""
1187
-
1188
- #: includes/admin/settings/register-settings.php:1429
1189
- msgid "Custom Label"
1190
- msgstr ""
1191
-
1192
- #: includes/admin/settings/register-settings.php:1497
1193
- msgid "Select Image"
1194
- msgstr ""
1195
-
1196
- #: includes/admin/settings/register-settings.php:1636
1197
- msgid "All Services"
1198
- msgstr ""
1199
-
1200
- #: includes/admin/settings/register-settings.php:1653
1201
- msgid ""
1202
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1203
- "after doing the job."
1204
- msgstr ""
1205
-
1206
- #: includes/admin/settings/register-settings.php:1666
1207
- msgid "Transient Cache disabled! Enable it for performance increase."
1208
- msgstr ""
1209
-
1210
- #: includes/admin/settings/register-settings.php:1679
1211
- msgid ""
1212
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1213
- "content/plugins/mashsharer/logs/"
1214
- msgstr ""
1215
-
1216
- #: includes/admin/settings/user-profiles.php:16
1217
- msgid "MashShare Social Media Integration"
1218
- msgstr ""
1219
-
1220
- #: includes/admin/settings/user-profiles.php:22
1221
- msgid "Your Twitter username (without the @ symbol)"
1222
- msgstr ""
1223
-
1224
- #: includes/admin/settings/user-profiles.php:24
1225
- msgid "Facebook Author URL"
1226
- msgstr ""
1227
-
1228
- #: includes/admin/settings/user-profiles.php:27
1229
- msgid "URL to your Facebok profile."
1230
- msgstr ""
1231
-
1232
- #: includes/admin/tools.php:68
1233
- msgid "Import/Export"
1234
- msgstr ""
1235
-
1236
- #: includes/admin/tools.php:69
1237
- msgid "System Info"
1238
- msgstr ""
1239
-
1240
- #: includes/admin/tools.php:91
1241
- msgid "Export Settings"
1242
- msgstr ""
1243
-
1244
- #: includes/admin/tools.php:93
1245
- msgid ""
1246
- "Export the Mashshare settings for this site as a .json file. This allows you "
1247
- "to easily import the configuration into another site."
1248
- msgstr ""
1249
-
1250
- #: includes/admin/tools.php:99
1251
- msgid "Export"
1252
- msgstr ""
1253
-
1254
- #: includes/admin/tools.php:106
1255
- msgid "Import Settings"
1256
- msgstr ""
1257
-
1258
- #: includes/admin/tools.php:108
1259
- msgid ""
1260
- "Import the Mashshare settings from a .json file. This file can be obtained "
1261
- "by exporting the settings on another site using the form above."
1262
- msgstr ""
1263
-
1264
- #: includes/admin/tools.php:116
1265
- msgid "Import"
1266
- msgstr ""
1267
-
1268
- #: includes/admin/tools.php:218
1269
- msgid "Please upload a valid .json file"
1270
- msgstr ""
1271
-
1272
- #: includes/admin/tools.php:224
1273
- msgid "Please upload a file to import"
1274
- msgstr ""
1275
-
1276
- #: includes/admin/tracking.php:266
1277
- msgid "Allow"
1278
- msgstr ""
1279
-
1280
- #: includes/admin/tracking.php:267
1281
- msgid "Do not allow"
1282
- msgstr ""
1283
-
1284
- #: includes/admin/welcome.php:51
1285
- msgid "Welcome to MashShare"
1286
- msgstr ""
1287
-
1288
- #: includes/admin/welcome.php:56
1289
- msgid "MashShare Changelog"
1290
- msgstr ""
1291
-
1292
- #: includes/admin/welcome.php:61
1293
- msgid "Quickstart"
1294
- msgstr ""
1295
-
1296
- #: includes/admin/welcome.php:66
1297
- msgid "The people that build MashShare"
1298
- msgstr ""
1299
-
1300
- #: includes/admin/welcome.php:128
1301
- msgid ""
1302
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1303
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1304
- "needs."
1305
- msgstr ""
1306
-
1307
- #: includes/admin/welcome.php:131
1308
- msgid "Create Your First Social Sharing Button"
1309
- msgstr ""
1310
-
1311
- #: includes/admin/welcome.php:137
1312
- msgid "Settings &rarr; Social Networks"
1313
- msgstr ""
1314
-
1315
- #: includes/admin/welcome.php:138
1316
- msgid ""
1317
- "The Social Network menu is your general access point for activating the "
1318
- "desired share buttons and for customizing the share button label"
1319
- msgstr ""
1320
-
1321
- #: includes/admin/welcome.php:139
1322
- msgid "Settings &rarr; Location & Position"
1323
- msgstr ""
1324
-
1325
- #: includes/admin/welcome.php:140
1326
- msgid ""
1327
- "Select the location and exact position of the share buttons within your "
1328
- "content"
1329
- msgstr ""
1330
-
1331
- #: includes/admin/welcome.php:141
1332
- msgid "You are done! Easy, isn't it?"
1333
- msgstr ""
1334
-
1335
- #: includes/admin/welcome.php:149
1336
- msgid "Display a Most Shared Post Widget"
1337
- msgstr ""
1338
-
1339
- #: includes/admin/welcome.php:155
1340
- msgid "Appearance &rarr; Widgets"
1341
- msgstr ""
1342
-
1343
- #: includes/admin/welcome.php:157
1344
- msgid ""
1345
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1346
- "br>into the desired widget location and save it"
1347
- msgstr ""
1348
-
1349
- #: includes/admin/welcome.php:165
1350
- msgid "Content Shortcodes"
1351
- msgstr ""
1352
-
1353
- #: includes/admin/welcome.php:172
1354
- msgid ""
1355
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1356
- "bold;\">[mashshare]</i>."
1357
- msgstr ""
1358
-
1359
- #: includes/admin/welcome.php:174
1360
- msgid ""
1361
- "Paste the shortcode in content of your posts or pages with the post editor "
1362
- "at the place you want the share buttons appear"
1363
- msgstr ""
1364
-
1365
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1366
- msgid ""
1367
- "There are various parameters you can use for the mashshare shortcode. Find a "
1368
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1369
- "\">here</a>"
1370
- msgstr ""
1371
-
1372
- #: includes/admin/welcome.php:182
1373
- msgid "PHP Template Shortcode"
1374
- msgstr ""
1375
-
1376
- #: includes/admin/welcome.php:188
1377
- msgid ""
1378
- "Add MashShare directly into your theme template files with using the PHP "
1379
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1380
- "&gt;</i>"
1381
- msgstr ""
1382
-
1383
- #: includes/admin/welcome.php:199
1384
- msgid "Need Help?"
1385
- msgstr ""
1386
-
1387
- #: includes/admin/welcome.php:202
1388
- msgid "Great Support"
1389
- msgstr ""
1390
-
1391
- #: includes/admin/welcome.php:203
1392
- msgid ""
1393
- "We do our best to provide the best support we can. If you encounter a "
1394
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1395
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1396
- msgstr ""
1397
-
1398
- #: includes/admin/welcome.php:227
1399
- msgid "Welcome to MashShare %s"
1400
- msgstr ""
1401
-
1402
- #: includes/admin/welcome.php:229
1403
- msgid ""
1404
- "Thank you for updating to the latest version! MashShare is installed and "
1405
- "ready to grow your traffic from social networks!"
1406
- msgstr ""
1407
-
1408
- #: includes/admin/welcome.php:252
1409
- msgid "1. Asyncronous Share Count Aggregation"
1410
- msgstr ""
1411
-
1412
- #: includes/admin/welcome.php:256
1413
- msgid ""
1414
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1415
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1416
- "will be aggregated only after page loading and never while page loads. This "
1417
- "is a huge performance update."
1418
- msgstr ""
1419
-
1420
- #: includes/admin/welcome.php:259
1421
- msgid "2. Open Graph and Twitter Card Integration"
1422
- msgstr ""
1423
-
1424
- #: includes/admin/welcome.php:260
1425
- msgid ""
1426
- "Use open graph and twitter card to specify the content you like to share. If "
1427
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1428
- "and extend it with custom data to get the maximum out of your valuable "
1429
- "content."
1430
- msgstr ""
1431
-
1432
- #: includes/admin/welcome.php:267
1433
- msgid "3. Responsive Buttons per default"
1434
- msgstr ""
1435
-
1436
- #: includes/admin/welcome.php:268
1437
- msgid ""
1438
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1439
- "buttons look great on mobile and desktop devices."
1440
- msgstr ""
1441
-
1442
- #: includes/admin/welcome.php:270
1443
- msgid "4. Share Count Dashboard"
1444
- msgstr ""
1445
-
1446
- #: includes/admin/welcome.php:271
1447
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1448
- msgstr ""
1449
-
1450
- #: includes/admin/welcome.php:275
1451
- msgid "5. A much cleaner user interface"
1452
- msgstr ""
1453
-
1454
- #: includes/admin/welcome.php:276
1455
- msgid ""
1456
- "We spent a lot of time to make useful first time settings and improved the "
1457
- "user interface for an easier experience."
1458
- msgstr ""
1459
-
1460
- #: includes/admin/welcome.php:284
1461
- msgid "Additional Updates"
1462
- msgstr ""
1463
-
1464
- #: includes/admin/welcome.php:287
1465
- msgid "Developer Friendly"
1466
- msgstr ""
1467
-
1468
- #: includes/admin/welcome.php:288
1469
- msgid ""
1470
- "Are you a theme developer and want to use MashShare as your build in share "
1471
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1472
- "instructions.</a>"
1473
- msgstr ""
1474
-
1475
- #: includes/admin/welcome.php:291
1476
- msgid "Check Open Graph Settings"
1477
- msgstr ""
1478
-
1479
- #: includes/admin/welcome.php:292
1480
- msgid ""
1481
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1482
- "data on your site is working as expected or conflicts with other open graph "
1483
- "data."
1484
- msgstr ""
1485
-
1486
- #: includes/admin/welcome.php:295
1487
- msgid "Use Yoast SEO Title"
1488
- msgstr ""
1489
-
1490
- #: includes/admin/welcome.php:296
1491
- msgid "MashShare will use the YOAST SEO title if it is defined."
1492
- msgstr ""
1493
-
1494
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1495
- msgid "Go to MashShare Settings"
1496
- msgstr ""
1497
-
1498
- #: includes/admin/welcome.php:303
1499
- msgid "View the Full Changelog"
1500
- msgstr ""
1501
-
1502
- #: includes/admin/welcome.php:326
1503
- msgid "What's New"
1504
- msgstr ""
1505
-
1506
- #: includes/admin/welcome.php:332
1507
- msgid "Credits"
1508
- msgstr ""
1509
-
1510
- #: includes/admin/welcome.php:353
1511
- msgid ""
1512
- "Mashshare is created by a René Hermenau and developers all over the world "
1513
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1514
- "WordPress."
1515
- msgstr ""
1516
-
1517
- #: includes/admin/welcome.php:356
1518
- msgid ""
1519
- " If you want to be credited here participate on the development and make "
1520
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1521
- msgstr ""
1522
-
1523
- #: includes/admin/welcome.php:381
1524
- msgid "View %s"
1525
- msgstr ""
1526
-
1527
- #: includes/admin/welcome.php:436
1528
- msgid "No valid changelog was found."
1529
- msgstr ""
1530
-
1531
- #: includes/admin/welcome.php:469
1532
- msgid "Full Changelog"
1533
- msgstr ""
1534
-
1535
- #: includes/class-mashsb-html-elements.php:43
1536
- msgctxt "all dropdown items"
1537
- msgid "All"
1538
- msgstr ""
1539
-
1540
- #: includes/class-mashsb-html-elements.php:44
1541
- msgctxt "no dropdown items"
1542
- msgid "None"
1543
- msgstr ""
1544
-
1545
- #: includes/class-mashsb-html-elements.php:232
1546
- msgid "Enter username"
1547
- msgstr ""
1548
-
1549
- #: includes/class-mashsb-license-handler.php:177
1550
- msgid "%1$s License Key"
1551
- msgstr ""
1552
-
1553
- #: includes/class-mashsb-license-handler.php:210
1554
- msgid ""
1555
- "Enter your extension license keys here to receive updates for purchased "
1556
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1557
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1558
- msgstr ""
1559
-
1560
- #: includes/class-mashsb-license-handler.php:319
1561
- msgid "Nonce verification failed"
1562
- msgstr ""
1563
-
1564
- #: includes/class-mashsb-license-handler.php:436
1565
- msgid ""
1566
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1567
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1568
- "issue."
1569
- msgstr ""
1570
-
1571
- #: includes/class-mashsb-license-handler.php:475
1572
- msgid "Enter valid license key for automatic updates."
1573
- msgstr ""
1574
-
1575
- #: includes/class-mashsb-shared-posts-widget.php:13
1576
- msgid "Mashshare - Most Shared Posts"
1577
- msgstr ""
1578
-
1579
- #: includes/class-mashsb-shared-posts-widget.php:37
1580
- msgid "Widget Title"
1581
- msgstr ""
1582
-
1583
- #: includes/class-mashsb-shared-posts-widget.php:42
1584
- msgid "How many posts to display?"
1585
- msgstr ""
1586
-
1587
- #: includes/class-mashsb-shared-posts-widget.php:46
1588
- msgid "Show Shares? Say \"No\" when using fake shares!"
1589
- msgstr ""
1590
-
1591
- #: includes/class-mashsb-shared-posts-widget.php:61
1592
- msgid "Show shares below post title"
1593
- msgstr ""
1594
-
1595
- #: includes/class-mashsb-shared-posts-widget.php:68
1596
- msgid "Time period and age of posts"
1597
- msgstr ""
1598
-
1599
- #: includes/template-functions.php:249
1600
- msgid "Subscribe"
1601
- msgstr ""
1602
-
1603
- #: includes/template-functions.php:517
1604
- msgid "SHARES"
1605
- msgstr ""
1606
-
1607
- #: includes/template-functions.php:1114
1608
- msgid "Page not found"
1609
- msgstr ""
1610
-
1611
- #. translators: %s: search phrase
1612
- #: includes/template-functions.php:1119
1613
- msgid "Search Results for &#8220;%s&#8221;"
1614
- msgstr ""
1615
-
1616
- #: includes/template-functions.php:1152
1617
- msgctxt "yearly archives date format"
1618
- msgid "Y"
1619
- msgstr ""
1620
-
1621
- #: includes/template-functions.php:1154
1622
- msgctxt "monthly archives date format"
1623
- msgid "F Y"
1624
- msgstr ""
1625
-
1626
- #: mashshare.php:124 mashshare.php:136
1627
- msgid "Cheatin&#8217; huh?"
1628
- msgstr ""
1629
-
1630
- #: templates/sidebar.php:17
1631
- msgid "Increase your Shares and Social Traffic"
1632
- msgstr ""
1633
-
1634
- #: templates/sidebar.php:20
1635
- msgid "Get 20% Off!"
1636
- msgstr ""
1637
-
1638
- #: templates/sidebar.php:25
1639
- msgid ""
1640
- "Submit your name and email and we'll send you a coupon for 20% off your "
1641
- "upgrade to the pro version."
1642
- msgstr ""
1643
-
1644
- #: templates/sidebar.php:29
1645
- msgid "Your Email"
1646
- msgstr ""
1647
-
1648
- #: templates/sidebar.php:33
1649
- msgid "First Name"
1650
- msgstr ""
1651
-
1652
- #: templates/sidebar.php:37
1653
- msgid "Last Name"
1654
- msgstr ""
1655
-
1656
- #: templates/sidebar.php:44
1657
- msgid "Send me the coupon"
1658
- msgstr ""
1659
-
1660
- #: templates/sidebar.php:48
1661
- msgid ""
1662
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1663
- "click anytime."
1664
- msgstr ""
1665
-
1666
- #. Plugin Name of the plugin/theme
1667
- msgid "Mashshare Share Buttons"
1668
- msgstr ""
1669
-
1670
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1671
- #. Plugin URI of the plugin/theme
1672
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1673
- #. Author URI of the plugin/theme
1674
- msgid "https://www.mashshare.net"
1675
- msgstr ""
1676
-
1677
- #. Description of the plugin/theme
1678
- msgid ""
1679
- "Mashshare is a Share functionality inspired by the the great website "
1680
- "Mashable for Facebook and Twitter. More networks available."
1681
- msgstr ""
1682
-
1683
- #. Author of the plugin/theme
1684
- msgid "René Hermenau"
1685
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-pt_BR.mo DELETED
Binary file
languages/mashsb-pt_BR.po DELETED
@@ -1,1711 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Marcelo Ghelman <marcelo.ghelman@gmail.com>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mashshare\n"
8
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
9
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
10
- "PO-Revision-Date: 2016-06-23 19:11+0100\n"
11
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
12
- "Language-Team: Portuguese (Brazil) (http://www.transifex.com/renehermenau/"
13
- "mashshare/language/pt_BR/)\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Language: pt_BR\n"
18
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Generator: Poedit 1.5.6\n"
20
-
21
- msgid ""
22
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
23
- "Highly customizable Social Media ecosystem"
24
- msgstr ""
25
-
26
- #: includes/MASHSB_SL_Plugin_Updater.php:177
27
- msgid ""
28
- "There is a new version of %1$s available. <a target=\"_blank\" class="
29
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
30
- msgstr ""
31
-
32
- #: includes/MASHSB_SL_Plugin_Updater.php:184
33
- msgid ""
34
- "There is a new version of %1$s available. <a target=\"_blank\" class="
35
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
36
- "\">update now</a>."
37
- msgstr ""
38
-
39
- #: includes/MASHSB_SL_Plugin_Updater.php:324
40
- msgid "You do not have permission to install plugin updates"
41
- msgstr ""
42
-
43
- #: includes/MASHSB_SL_Plugin_Updater.php:324
44
- #: includes/class-mashsb-license-handler.php:319
45
- msgid "Error"
46
- msgstr ""
47
-
48
- #: includes/admin/add-ons.php:27
49
- msgid "Add Ons for Mashshare"
50
- msgstr "Complementos para Mashshare"
51
-
52
- #: includes/admin/add-ons.php:28
53
- msgid "Visit Website"
54
- msgstr "Visitar site"
55
-
56
- #: includes/admin/add-ons.php:28
57
- msgid "See Details"
58
- msgstr "Ver detalhes"
59
-
60
- #: includes/admin/add-ons.php:30
61
- msgid "These add-ons extend the functionality of Mashshare."
62
- msgstr "Estes complementos estendem a funcionalidade do Mashshare."
63
-
64
- #: includes/admin/add-ons.php:54
65
- msgid ""
66
- "There was an error retrieving the Mashshare addon list from the server. "
67
- "Please try again later."
68
- msgstr ""
69
- "Houve um erro ao obter a lista de complementos para Mashshare a partir do "
70
- "servidor. Tente novamente mais tarde."
71
-
72
- #: includes/admin/admin-footer.php:24
73
- msgid ""
74
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
75
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
76
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
77
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
78
- "\"blank\">Documentation</a>"
79
- msgstr ""
80
-
81
- #: includes/admin/admin-notices.php:51
82
- msgid ""
83
- "MashShare needs the PHP extension cURL which is not installed on your "
84
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
85
- "to be able to collect share count of your posts."
86
- msgstr ""
87
-
88
- #: includes/admin/admin-notices.php:58
89
- msgid ""
90
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
91
- ">Social Networks</a> and enable at least one Social Network."
92
- msgstr ""
93
-
94
- #: includes/admin/admin-notices.php:64
95
- msgid ""
96
- "Your Sharebar Add-On version is not using new short url mechanism of "
97
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
98
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
99
- "short urls will not stop working in one of the next updates. This requires a "
100
- "valid license of the Sharebar Add-On"
101
- msgstr ""
102
-
103
- #: includes/admin/admin-notices.php:70
104
- msgid ""
105
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
106
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
107
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
108
- "twitter short urls will not stop working in one of the next updates. This "
109
- "requires a valid license of the Floating Sidebar Add-On"
110
- msgstr ""
111
-
112
- #: includes/admin/admin-notices.php:76
113
- msgid ""
114
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
115
- ">Short URL Integration</i></a> and check the Google API key."
116
- msgstr ""
117
-
118
- #: includes/admin/admin-notices.php:82
119
- msgid ""
120
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
121
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
122
- "check the Bitly API key."
123
- msgstr ""
124
-
125
- #: includes/admin/admin-notices.php:88
126
- msgid ""
127
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
128
- "is not longer needed and having it activated leads to duplicate open graph "
129
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
130
- msgstr ""
131
-
132
- #: includes/admin/admin-notices.php:94
133
- msgid ""
134
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
135
- "not longer needed and already built in MashShare. Deactivate it from <a href="
136
- "\"%s\"> Plugin Settings</a> "
137
- msgstr ""
138
-
139
- #: includes/admin/admin-notices.php:100
140
- msgid ""
141
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
142
- "\">Permalinks</a> must be enabled to count shares. Share count is "
143
- "deactivated until you have fixed this."
144
- msgstr ""
145
-
146
- #: includes/admin/admin-notices.php:258
147
- msgid ""
148
- "There seems to be an issue with the server. Please try again in a few "
149
- "minutes."
150
- msgstr ""
151
- "Parece haver um problema com o servidor. Tente novamente em alguns minutos."
152
-
153
- #: includes/admin/admin-pages.php:31
154
- msgid "MashShare"
155
- msgstr ""
156
-
157
- #: includes/admin/admin-pages.php:32
158
- msgid "MashShare Settings"
159
- msgstr ""
160
-
161
- #: includes/admin/admin-pages.php:32
162
- #: includes/admin/settings/register-settings.php:744
163
- msgid "Settings"
164
- msgstr "Configurações"
165
-
166
- #: includes/admin/admin-pages.php:33
167
- msgid "MashShare Add Ons"
168
- msgstr ""
169
-
170
- #: includes/admin/admin-pages.php:33
171
- msgid "Get Add Ons"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:34
175
- msgid "MashShare Tools"
176
- msgstr ""
177
-
178
- #: includes/admin/admin-pages.php:34
179
- msgid "Im/Export & System"
180
- msgstr ""
181
-
182
- #: includes/admin/meta-box/inc/core.php:40
183
- msgid "Documentation"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/core.php:41
187
- msgid "Extensions"
188
- msgstr "Extensões"
189
-
190
- #: includes/admin/meta-box/inc/field.php:196
191
- msgid "+ Add more"
192
- msgstr ""
193
-
194
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
195
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
196
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
197
- msgid "Delete"
198
- msgstr ""
199
-
200
- #: includes/admin/meta-box/inc/fields/button.php:29
201
- msgid "Click me"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
205
- msgid "Yes"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
209
- msgid "No"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/file-input.php:18
213
- msgid "Select File"
214
- msgstr ""
215
-
216
- #: includes/admin/meta-box/inc/fields/file-input.php:41
217
- #: includes/admin/meta-box/inc/fields/select.php:91
218
- msgid "Select"
219
- msgstr ""
220
-
221
- #: includes/admin/meta-box/inc/fields/file-input.php:43
222
- msgid "Remove"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file.php:15
226
- msgid "You may only upload maximum %d file"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:16
230
- msgid "You may only upload maximum %d files"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:83
234
- msgid "Error: Cannot delete file"
235
- msgstr ""
236
-
237
- #: includes/admin/meta-box/inc/fields/file.php:96
238
- msgctxt "file upload"
239
- msgid "Upload Files"
240
- msgstr ""
241
-
242
- #: includes/admin/meta-box/inc/fields/file.php:97
243
- msgctxt "file upload"
244
- msgid "+ Add new file"
245
- msgstr ""
246
-
247
- #: includes/admin/meta-box/inc/fields/file.php:153
248
- msgctxt "file upload"
249
- msgid "Delete"
250
- msgstr ""
251
-
252
- #: includes/admin/meta-box/inc/fields/file.php:154
253
- msgctxt "file upload"
254
- msgid "Edit"
255
- msgstr ""
256
-
257
- #: includes/admin/meta-box/inc/fields/image.php:61
258
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
259
- msgctxt "image upload"
260
- msgid "Upload Images"
261
- msgstr ""
262
-
263
- #: includes/admin/meta-box/inc/fields/image.php:62
264
- msgctxt "image upload"
265
- msgid "+ Add new image"
266
- msgstr ""
267
-
268
- #: includes/admin/meta-box/inc/fields/image.php:124
269
- msgctxt "image upload"
270
- msgid "Delete"
271
- msgstr ""
272
-
273
- #: includes/admin/meta-box/inc/fields/image.php:125
274
- msgctxt "image upload"
275
- msgid "Edit"
276
- msgstr ""
277
-
278
- #: includes/admin/meta-box/inc/fields/key-value.php:19
279
- msgid "Key"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/key-value.php:25
283
- msgid "Value"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/map.php:49
287
- msgid "Find Address"
288
- msgstr ""
289
-
290
- #: includes/admin/meta-box/inc/fields/media.php:18
291
- msgctxt "media"
292
- msgid "Add Image"
293
- msgstr ""
294
-
295
- #: includes/admin/meta-box/inc/fields/media.php:19
296
- msgctxt "media"
297
- msgid " file"
298
- msgstr ""
299
-
300
- #: includes/admin/meta-box/inc/fields/media.php:20
301
- msgctxt "media"
302
- msgid " files"
303
- msgstr ""
304
-
305
- #: includes/admin/meta-box/inc/fields/media.php:21
306
- msgctxt "media"
307
- msgid "Remove"
308
- msgstr ""
309
-
310
- #: includes/admin/meta-box/inc/fields/media.php:22
311
- msgctxt "media"
312
- msgid "Edit"
313
- msgstr ""
314
-
315
- #: includes/admin/meta-box/inc/fields/media.php:23
316
- msgctxt "media"
317
- msgid "View"
318
- msgstr ""
319
-
320
- #: includes/admin/meta-box/inc/fields/media.php:24
321
- msgctxt "media"
322
- msgid "No Title"
323
- msgstr ""
324
-
325
- #: includes/admin/meta-box/inc/fields/media.php:27
326
- msgctxt "media"
327
- msgid "Select Files"
328
- msgstr ""
329
-
330
- #: includes/admin/meta-box/inc/fields/media.php:28
331
- msgctxt "media"
332
- msgid "Drop files here to upload"
333
- msgstr ""
334
-
335
- #: includes/admin/meta-box/inc/fields/oembed.php:65
336
- msgid "Embed HTML not available."
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/oembed.php:84
340
- msgid "Preview"
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/post.php:34
344
- msgid "Select a post"
345
- msgstr ""
346
-
347
- #: includes/admin/meta-box/inc/fields/post.php:38
348
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
349
- msgid "Select a %s"
350
- msgstr ""
351
-
352
- #: includes/admin/meta-box/inc/fields/select.php:91
353
- msgid "All"
354
- msgstr "Todos"
355
-
356
- #: includes/admin/meta-box/inc/fields/select.php:91
357
- msgid "None"
358
- msgstr "Nenhum"
359
-
360
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
361
- msgid "Select a term"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/fields/user.php:34
365
- msgid "Select an user"
366
- msgstr ""
367
-
368
- #: includes/admin/meta-box/inc/validation.php:42
369
- msgid "Please correct the errors highlighted below and try again."
370
- msgstr ""
371
-
372
- #: includes/admin/plugins.php:27
373
- msgid "General Settings"
374
- msgstr "Configurações gerais"
375
-
376
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
377
- msgid "Getting Started"
378
- msgstr "Primeiros passos"
379
-
380
- #: includes/admin/plugins.php:51
381
- msgid "Add Ons"
382
- msgstr "Complementos"
383
-
384
- #: includes/admin/settings/contextual-help.php:29
385
- msgid "For more information:"
386
- msgstr "Para mais informações:"
387
-
388
- #: includes/admin/settings/contextual-help.php:30
389
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
390
- msgstr "Consulte a <a href=\"%s\">documentação</a> no site do Mashshare."
391
-
392
- #: includes/admin/settings/contextual-help.php:32
393
- msgid ""
394
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
395
- "href=\"%s\">extensions</a>."
396
- msgstr ""
397
- "<a href=\"%s\">Informe um problema</a> no <a href=\"%s\">Mashshare</a>. Veja "
398
- "<a href=\"%s\">extensões</a>."
399
-
400
- #: includes/admin/settings/contextual-help.php:41
401
- msgid "General"
402
- msgstr "Geral"
403
-
404
- #: includes/admin/settings/contextual-help.php:42
405
- msgid "This screen provides the most basic settings for configuring Mashshare."
406
- msgstr ""
407
- "Esta tela fornece as definições mais básicas para configurar o Mashshare."
408
-
409
- #: includes/admin/settings/display-settings.php:133
410
- msgid "MashShare "
411
- msgstr ""
412
-
413
- #: includes/admin/settings/metabox-settings.php:102
414
- msgid "Social Media Image"
415
- msgstr ""
416
-
417
- #: includes/admin/settings/metabox-settings.php:103
418
- msgid ""
419
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
420
- "1200px x 630px. Aspect ratio 1.9:1"
421
- msgstr ""
422
-
423
- #: includes/admin/settings/metabox-settings.php:112
424
- msgid "Social Media Title"
425
- msgstr ""
426
-
427
- #: includes/admin/settings/metabox-settings.php:113
428
- msgid ""
429
- "This title is used by the open graph meta tag og:title and will be used when "
430
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
431
- "to use "
432
- msgstr ""
433
-
434
- #: includes/admin/settings/metabox-settings.php:113
435
- msgid "Yoast Facebook / SEO title"
436
- msgstr ""
437
-
438
- #: includes/admin/settings/metabox-settings.php:121
439
- msgid "Social Media Description"
440
- msgstr ""
441
-
442
- #: includes/admin/settings/metabox-settings.php:122
443
- msgid ""
444
- "This description is used by the open graph meta tag og:description and will "
445
- "be used when users share your content on Facebook, LinkedIn, and Google "
446
- "Plus. Leave this blank to use "
447
- msgstr ""
448
-
449
- #: includes/admin/settings/metabox-settings.php:122
450
- msgid "Yoast Facebook open graph description or the post excerpt."
451
- msgstr ""
452
-
453
- #: includes/admin/settings/metabox-settings.php:135
454
- msgid "Pinterest Image"
455
- msgstr ""
456
-
457
- #: includes/admin/settings/metabox-settings.php:135
458
- #: includes/admin/settings/metabox-settings.php:145
459
- msgid ""
460
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
461
- "the Pinterest Features"
462
- msgstr ""
463
-
464
- #: includes/admin/settings/metabox-settings.php:136
465
- msgid ""
466
- "Pinned images need to be more vertical than horizontal in orientation. Use "
467
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
468
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
469
- msgstr ""
470
-
471
- #: includes/admin/settings/metabox-settings.php:145
472
- msgid "Pinterest Description"
473
- msgstr ""
474
-
475
- #: includes/admin/settings/metabox-settings.php:146
476
- msgid ""
477
- "Place a customized message that will be used when this post is shared on "
478
- "Pinterest. Leave this blank to use the "
479
- msgstr ""
480
-
481
- #: includes/admin/settings/metabox-settings.php:146
482
- msgid "Yoast SEO title"
483
- msgstr ""
484
-
485
- #: includes/admin/settings/metabox-settings.php:146
486
- msgid "the post title"
487
- msgstr ""
488
-
489
- #: includes/admin/settings/metabox-settings.php:154
490
- msgid "Custom Tweet"
491
- msgstr ""
492
-
493
- #: includes/admin/settings/metabox-settings.php:176
494
- msgid ""
495
- "Publish the post and validate if the open graph meta tags on your site are "
496
- "correct! Incorrect data can result in wrong share description, title or "
497
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
498
- "new scrape information\" to purge the facebook cache."
499
- msgstr ""
500
-
501
- #: includes/admin/settings/metabox-settings.php:206
502
- msgid "Based on your username @"
503
- msgstr ""
504
-
505
- #: includes/admin/settings/metabox-settings.php:206
506
- msgid " ,the shortened post url and the current content above"
507
- msgstr ""
508
-
509
- #: includes/admin/settings/metabox-settings.php:208
510
- msgid "Based on the shortened post url and the current content above"
511
- msgstr ""
512
-
513
- #: includes/admin/settings/metabox-settings.php:210
514
- msgid " your tweet has a maximum of 140 characters. "
515
- msgstr ""
516
-
517
- #: includes/admin/settings/metabox-settings.php:212
518
- msgid "If this is left blank the post title will be used. "
519
- msgstr ""
520
-
521
- #: includes/admin/settings/metabox-settings.php:214
522
- msgid ""
523
- "If this is left blank the Yoast Twitter Title or post title will be used. "
524
- msgstr ""
525
-
526
- #: includes/admin/settings/register-settings.php:120
527
- msgid "General settings"
528
- msgstr "Configurações gerais"
529
-
530
- #: includes/admin/settings/register-settings.php:126
531
- msgid "Share counts"
532
- msgstr ""
533
-
534
- #: includes/admin/settings/register-settings.php:127
535
- msgid ""
536
- "<i>MashEngine</i> collects shares by direct request to social networks. "
537
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
538
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
539
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
540
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
541
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
542
- "this free service to get the twitter share count. Visit the newsharecount "
543
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
544
- "Thats it!"
545
- msgstr ""
546
-
547
- #: includes/admin/settings/register-settings.php:136
548
- msgid "Sharedcount.com API Key"
549
- msgstr ""
550
-
551
- #: includes/admin/settings/register-settings.php:137
552
- msgid ""
553
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
554
- "\">SharedCount.com</a> for 10.000 free daily requests."
555
- msgstr ""
556
-
557
- #: includes/admin/settings/register-settings.php:143
558
- msgid "Sharedcount.com endpint"
559
- msgstr ""
560
-
561
- #: includes/admin/settings/register-settings.php:144
562
- msgid ""
563
- "The SharedCount Domain your API key is configured to query. For example, "
564
- "free.sharedcount.com. This may update automatically if configured "
565
- "incorrectly."
566
- msgstr ""
567
-
568
- #: includes/admin/settings/register-settings.php:151
569
- msgid "Caching Method"
570
- msgstr ""
571
-
572
- #: includes/admin/settings/register-settings.php:152
573
- msgid ""
574
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
575
- "visitor and refreshes the cache asyncronously in the background. New posts "
576
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
577
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
578
- "cache while page is loading and adds a little extra time during inital page "
579
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
580
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
581
- "was using before version 3.0"
582
- msgstr ""
583
-
584
- #: includes/admin/settings/register-settings.php:161
585
- msgid "Cache expiration"
586
- msgstr ""
587
-
588
- #: includes/admin/settings/register-settings.php:162
589
- msgid ""
590
- "Shares are counted for posts after a certain time and counts are not updated "
591
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
592
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
593
- "more"
594
- msgstr ""
595
-
596
- #: includes/admin/settings/register-settings.php:168
597
- msgid "Facebook Count"
598
- msgstr ""
599
-
600
- #: includes/admin/settings/register-settings.php:169
601
- msgid ""
602
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
603
- "the pure share count"
604
- msgstr ""
605
-
606
- #: includes/admin/settings/register-settings.php:179
607
- msgid "Fake Share counts"
608
- msgstr "Contagens falsas de compartilhamentos"
609
-
610
- #: includes/admin/settings/register-settings.php:180
611
- msgid ""
612
- "This number will be aggregated to all your share counts and is multiplied "
613
- "with a post specific factor. (Number of post title words divided with 10)."
614
- msgstr ""
615
-
616
- #: includes/admin/settings/register-settings.php:186
617
- msgid "Disable Sharecount"
618
- msgstr "Desabilitar o Sharecount"
619
-
620
- #: includes/admin/settings/register-settings.php:187
621
- msgid ""
622
- "Use this when curl() is not supported on your server or share counts should "
623
- "not counted. This mode does not call the database and no SQL queries are "
624
- "generated. (Only less performance benefit. All db requests are cached) "
625
- "Default: false"
626
- msgstr ""
627
-
628
- #: includes/admin/settings/register-settings.php:192
629
- msgid "Hide Sharecount"
630
- msgstr "Ocultar o Sharecount"
631
-
632
- #: includes/admin/settings/register-settings.php:193
633
- msgid ""
634
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
635
- "specific post are not shown until the share count of this number is reached."
636
- msgstr ""
637
- "<strong>Opcional:</strong> Se você inserir qualquer número aqui, os "
638
- "compartilhamentos de uma postagem específica não são exibidos até que a "
639
- "contagem de compartilhamentos alcance este número."
640
-
641
- #: includes/admin/settings/register-settings.php:199
642
- msgid "Execution Order"
643
- msgstr "Ordem de execução"
644
-
645
- #: includes/admin/settings/register-settings.php:200
646
- msgid ""
647
- "If you use other content plugins you can define here the execution order. "
648
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
649
- "executed before any other plugin (When the other plugin is not overwriting "
650
- "our execution order). Default is \"1000\""
651
- msgstr ""
652
- "Se você usa outros plugins de conteúdo, você pode definir aqui a ordem de "
653
- "execução. Números menores significam execução mais cedo. Por exemplo, "
654
- "colocando \"0\" o Mashshare é executado antes de qualquer outro plugin (se "
655
- "outro plugin não estiver sobrescrevendo nossa ordem de execução). O valor "
656
- "padrão é \"1000\""
657
-
658
- #: includes/admin/settings/register-settings.php:207
659
- msgid "JavaScript in Footer"
660
- msgstr ""
661
-
662
- #: includes/admin/settings/register-settings.php:208
663
- msgid ""
664
- "Enable this to load all *.js files into footer. Make sure your theme uses "
665
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
666
- msgstr ""
667
-
668
- #: includes/admin/settings/register-settings.php:213
669
- msgid "JS & CSS Everywhere"
670
- msgstr ""
671
-
672
- #: includes/admin/settings/register-settings.php:214
673
- msgid ""
674
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
675
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
676
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
677
- "option to allow conditional loading so MashShare's JS and CSS files are "
678
- "loaded only on pages where MashShare is used."
679
- msgstr ""
680
-
681
- #: includes/admin/settings/register-settings.php:220
682
- msgid "Twitter Popup disabled"
683
- msgstr ""
684
-
685
- #: includes/admin/settings/register-settings.php:221
686
- msgid ""
687
- "Check this box if your twitter popup is openening twice. This happens "
688
- "sometimes when you are using any third party twitter plugin or the twitter "
689
- "SDK on your website."
690
- msgstr ""
691
-
692
- #: includes/admin/settings/register-settings.php:227
693
- msgid "Remove Data on Uninstall?"
694
- msgstr "Remover dados ao desinstalar?"
695
-
696
- #: includes/admin/settings/register-settings.php:228
697
- msgid ""
698
- "Check this box if you would like Mashshare to completely remove all of its "
699
- "data when the plugin is deleted."
700
- msgstr ""
701
- "Marque esta opção se quiser que o Mashshare remova completamente todos os "
702
- "seus dados quando o plugin for apagado."
703
-
704
- #: includes/admin/settings/register-settings.php:233
705
- msgid "Allow Usage Tracking"
706
- msgstr ""
707
-
708
- #: includes/admin/settings/register-settings.php:234
709
- #: includes/admin/tracking.php:265
710
- msgid ""
711
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
712
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
713
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
714
- "Ons</a>. No sensitive data is tracked."
715
- msgstr ""
716
-
717
- #: includes/admin/settings/register-settings.php:239
718
- msgid "User Roles Options Visibility"
719
- msgstr ""
720
-
721
- #: includes/admin/settings/register-settings.php:240
722
- msgid ""
723
- "Select user roles which can see page and post MashShare Social Sharing Meta "
724
- "Box Options"
725
- msgstr ""
726
-
727
- #: includes/admin/settings/register-settings.php:243
728
- msgid "Select User Roles"
729
- msgstr ""
730
-
731
- #: includes/admin/settings/register-settings.php:244
732
- msgid "All Roles"
733
- msgstr ""
734
-
735
- #: includes/admin/settings/register-settings.php:248
736
- #: includes/admin/settings/register-settings.php:294
737
- #: includes/admin/settings/register-settings.php:751
738
- msgid "Social Networks"
739
- msgstr "Redes sociais"
740
-
741
- #: includes/admin/settings/register-settings.php:254
742
- msgid "Facebook page url"
743
- msgstr ""
744
-
745
- #: includes/admin/settings/register-settings.php:255
746
- msgid "Optional: The url of the main facebook account connected with this site"
747
- msgstr ""
748
-
749
- #: includes/admin/settings/register-settings.php:261
750
- msgid "Facebook App ID"
751
- msgstr ""
752
-
753
- #: includes/admin/settings/register-settings.php:262
754
- msgid ""
755
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
756
- "a>"
757
- msgstr ""
758
-
759
- #: includes/admin/settings/register-settings.php:268
760
- #: includes/admin/settings/user-profiles.php:19
761
- msgid "Twitter Username"
762
- msgstr ""
763
-
764
- #: includes/admin/settings/register-settings.php:269
765
- msgid ""
766
- "<strong>Optional:</strong> Using your twitter username results in via "
767
- "@username"
768
- msgstr ""
769
-
770
- #: includes/admin/settings/register-settings.php:275
771
- msgid "Twitter Card"
772
- msgstr ""
773
-
774
- #: includes/admin/settings/register-settings.php:276
775
- msgid ""
776
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
777
- "plugin their meta tags will be removed and MashShare will use existing meta "
778
- "data from these plugins. Default: On"
779
- msgstr ""
780
-
781
- #: includes/admin/settings/register-settings.php:281
782
- msgid "Open Graph Meta Tags"
783
- msgstr ""
784
-
785
- #: includes/admin/settings/register-settings.php:282
786
- msgid ""
787
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
788
- "Jetpack plugin their meta tags will be removed and MashShare will use "
789
- "existing meta data from these plugins."
790
- msgstr ""
791
-
792
- #: includes/admin/settings/register-settings.php:287
793
- msgid "Large Buttons"
794
- msgstr "Botões grandes"
795
-
796
- #: includes/admin/settings/register-settings.php:288
797
- msgid ""
798
- "Specify how many services and social networks are visible before the \"Plus"
799
- "\" Button is shown. This buttons turn into large prominent buttons."
800
- msgstr ""
801
- "Especifica quantos serviços e redes sociais ficam visíveis antes que o botão "
802
- "\"Mais\" seja exibido. Estes botões se tornam maiores e proeminentes."
803
-
804
- #: includes/admin/settings/register-settings.php:295
805
- msgid ""
806
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
807
- "that should be visible. <br>Activate more networks than number of \"Large "
808
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
809
- msgstr ""
810
-
811
- #: includes/admin/settings/register-settings.php:321
812
- msgid "Short URL Integration"
813
- msgstr ""
814
-
815
- #: includes/admin/settings/register-settings.php:328
816
- msgid "Bitly access token"
817
- msgstr ""
818
-
819
- #: includes/admin/settings/register-settings.php:329
820
- msgid ""
821
- "If you like to use bitly.com shortener get a free bitly access token <a href="
822
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
823
- "ly/cXnjsh. "
824
- msgstr ""
825
-
826
- #: includes/admin/settings/register-settings.php:335
827
- msgid "Google API Key (goo.gl)"
828
- msgstr ""
829
-
830
- #: includes/admin/settings/register-settings.php:342
831
- msgid "Shorturl method"
832
- msgstr ""
833
-
834
- #: includes/admin/settings/register-settings.php:343
835
- msgid ""
836
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
837
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
838
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
839
- "%s ?p=101</i>"
840
- msgstr ""
841
-
842
- #: includes/admin/settings/register-settings.php:354
843
- msgid "Important: Read this!"
844
- msgstr ""
845
-
846
- #: includes/admin/settings/register-settings.php:355
847
- msgid ""
848
- "<strong>The post short url is NOT generated immediatly after first page load!"
849
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
850
- "12 hours for old posts."
851
- msgstr ""
852
-
853
- #: includes/admin/settings/register-settings.php:374
854
- msgid "Customization"
855
- msgstr ""
856
-
857
- #: includes/admin/settings/register-settings.php:380
858
- msgid "Round up Shares"
859
- msgstr ""
860
-
861
- #: includes/admin/settings/register-settings.php:381
862
- msgid ""
863
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
864
- "as 1M"
865
- msgstr ""
866
-
867
- #: includes/admin/settings/register-settings.php:386
868
- msgid "Animate Shares"
869
- msgstr "Animar compartilhamentos"
870
-
871
- #: includes/admin/settings/register-settings.php:387
872
- msgid ""
873
- "Count up the shares on page loading with a nice looking animation effect. "
874
- "This only works on singular pages and not with shortcodes generated buttons."
875
- msgstr ""
876
-
877
- #: includes/admin/settings/register-settings.php:392
878
- #: includes/class-mashsb-shared-posts-widget.php:53
879
- msgid "Share Count Label"
880
- msgstr ""
881
-
882
- #: includes/admin/settings/register-settings.php:393
883
- msgid ""
884
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
885
- msgstr ""
886
-
887
- #: includes/admin/settings/register-settings.php:408
888
- msgid "Share Count Color"
889
- msgstr ""
890
-
891
- #: includes/admin/settings/register-settings.php:409
892
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
893
- msgstr ""
894
- "Escolha a cor do número de compartilhamentos em formato hexa, por exemplo "
895
- "#7FC04C: "
896
-
897
- #: includes/admin/settings/register-settings.php:416
898
- msgid "Border Radius"
899
- msgstr "Raio da borda"
900
-
901
- #: includes/admin/settings/register-settings.php:417
902
- msgid ""
903
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
904
- "results in circle buttons. Default value is zero."
905
- msgstr ""
906
- "Especifique o raio da borda de todos os botões em pixels. Um raio de borda "
907
- "de 20px resulta em botões circulares. O valor padrão é zero."
908
-
909
- #: includes/admin/settings/register-settings.php:447
910
- msgid "Button Width"
911
- msgstr ""
912
-
913
- #: includes/admin/settings/register-settings.php:448
914
- msgid "Minimum with of the large share buttons in pixels"
915
- msgstr "Largura mínima dos botões de compartilhamento grandes, em pixels"
916
-
917
- #: includes/admin/settings/register-settings.php:455
918
- msgid "Share Button Style"
919
- msgstr ""
920
-
921
- #: includes/admin/settings/register-settings.php:456
922
- msgid "Change visual appearance of the share buttons."
923
- msgstr "Muda a aparência visual dos botões de compartilhamento."
924
-
925
- #: includes/admin/settings/register-settings.php:467
926
- msgid "Small Share Buttons"
927
- msgstr ""
928
-
929
- #: includes/admin/settings/register-settings.php:468
930
- msgid ""
931
- "All buttons will be shown as pure small icons without any text on desktop "
932
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
933
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
934
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
935
- msgstr ""
936
- "Todos os botões serão exibidos como ícones pequenos puros, sem nenhum texto, "
937
- "em dispositivos móveis e de mesa, todo o tempo.<br><strong>Nota:</strong> "
938
- "Desabilite isso quando usar o <a href=\"https://www.mashshare.net/downloads/"
939
- "mashshare-responsive/\" target=\"_blank\">complemento Responsive</a>"
940
-
941
- #: includes/admin/settings/register-settings.php:479
942
- msgid "Subscribe Button"
943
- msgstr ""
944
-
945
- #: includes/admin/settings/register-settings.php:480
946
- msgid ""
947
- "Specify if the subscribe button is opening a content box below the button or "
948
- "if the button is linked to the \"subscribe url\" below."
949
- msgstr ""
950
-
951
- #: includes/admin/settings/register-settings.php:490
952
- msgid "Subscribe URL"
953
- msgstr ""
954
-
955
- #: includes/admin/settings/register-settings.php:491
956
- msgid ""
957
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
958
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
959
- msgstr ""
960
-
961
- #: includes/admin/settings/register-settings.php:498
962
- msgid "Additional Content"
963
- msgstr ""
964
-
965
- #: includes/admin/settings/register-settings.php:504
966
- msgid "Content Above"
967
- msgstr ""
968
-
969
- #: includes/admin/settings/register-settings.php:505
970
- msgid ""
971
- "Content appearing above share buttons. Use HTML, formulars, like button, "
972
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
973
- msgstr ""
974
-
975
- #: includes/admin/settings/register-settings.php:512
976
- msgid "Content Below"
977
- msgstr ""
978
-
979
- #: includes/admin/settings/register-settings.php:513
980
- msgid ""
981
- "Content appearing below share buttons. Use HTML, formulars, like button, "
982
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
983
- msgstr ""
984
-
985
- #: includes/admin/settings/register-settings.php:520
986
- msgid "Subscribe content"
987
- msgstr "Conteúdo da inscrição"
988
-
989
- #: includes/admin/settings/register-settings.php:521
990
- msgid ""
991
- "Define the content of the opening toggle subscribe window here. Use "
992
- "formulars, like button, links or any other text. Shortcodes are supported, e."
993
- "g.: [contact-form-7]"
994
- msgstr ""
995
-
996
- #: includes/admin/settings/register-settings.php:530
997
- msgid "Custom Styles"
998
- msgstr ""
999
-
1000
- #: includes/admin/settings/register-settings.php:536
1001
- msgid "General CSS"
1002
- msgstr ""
1003
-
1004
- #: includes/admin/settings/register-settings.php:537
1005
- msgid ""
1006
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
1007
- "it's loaded as an additonal inline css on your site"
1008
- msgstr ""
1009
-
1010
- #: includes/admin/settings/register-settings.php:544
1011
- msgid "AMP CSS"
1012
- msgstr ""
1013
-
1014
- #: includes/admin/settings/register-settings.php:545
1015
- msgid ""
1016
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
1017
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
1018
- "\">AMP Plugin</a> installed."
1019
- msgstr ""
1020
-
1021
- #: includes/admin/settings/register-settings.php:562
1022
- msgid "Location & Position"
1023
- msgstr "Local & Posição"
1024
-
1025
- #: includes/admin/settings/register-settings.php:568
1026
- msgid "Position"
1027
- msgstr "Posição"
1028
-
1029
- #: includes/admin/settings/register-settings.php:569
1030
- msgid ""
1031
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1032
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1033
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1034
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1035
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1036
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1037
- "shortcodes</a>."
1038
- msgstr ""
1039
-
1040
- #: includes/admin/settings/register-settings.php:572
1041
- msgid "Top"
1042
- msgstr "Topo"
1043
-
1044
- #: includes/admin/settings/register-settings.php:573
1045
- msgid "Bottom"
1046
- msgstr "Base"
1047
-
1048
- #: includes/admin/settings/register-settings.php:574
1049
- msgid "Top and Bottom"
1050
- msgstr "Topo e base"
1051
-
1052
- #: includes/admin/settings/register-settings.php:575
1053
- msgid "Manual"
1054
- msgstr "Manual"
1055
-
1056
- #: includes/admin/settings/register-settings.php:580
1057
- msgid "Post Types"
1058
- msgstr "Tipos de postagem"
1059
-
1060
- #: includes/admin/settings/register-settings.php:581
1061
- msgid ""
1062
- "Select on which post_types the share buttons appear. These values will be "
1063
- "ignored when \"manual\" position is selected."
1064
- msgstr ""
1065
-
1066
- #: includes/admin/settings/register-settings.php:586
1067
- msgid "Exclude from post id"
1068
- msgstr ""
1069
-
1070
- #: includes/admin/settings/register-settings.php:587
1071
- msgid ""
1072
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1073
- "by a comma, e.g. 23, 63, 114 "
1074
- msgstr ""
1075
-
1076
- #: includes/admin/settings/register-settings.php:593
1077
- msgid "Categories"
1078
- msgstr "Categorias"
1079
-
1080
- #: includes/admin/settings/register-settings.php:594
1081
- msgid ""
1082
- "Enable this checkbox to enable Mashshare on categories with multiple "
1083
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1084
- msgstr ""
1085
-
1086
- #: includes/admin/settings/register-settings.php:600
1087
- msgid "Frontpage"
1088
- msgstr "Frontpage"
1089
-
1090
- #: includes/admin/settings/register-settings.php:601
1091
- msgid "Enable share buttons on frontpage"
1092
- msgstr "Habilitar botões de compartilhamento no frontpage"
1093
-
1094
- #: includes/admin/settings/register-settings.php:606
1095
- msgid "Debug"
1096
- msgstr "Debug"
1097
-
1098
- #: includes/admin/settings/register-settings.php:612
1099
- msgid "Disable Cache"
1100
- msgstr ""
1101
-
1102
- #: includes/admin/settings/register-settings.php:618
1103
- msgid "Attention: Purge DB Cache"
1104
- msgstr ""
1105
-
1106
- #: includes/admin/settings/register-settings.php:624
1107
- msgid "Debug mode"
1108
- msgstr "Modo debug"
1109
-
1110
- #: includes/admin/settings/register-settings.php:633
1111
- msgid "Activate your Add-Ons"
1112
- msgstr ""
1113
-
1114
- #: includes/admin/settings/register-settings.php:634
1115
- msgid ""
1116
- "Activate your license key to get important security and feature updates for "
1117
- "your Add-On!"
1118
- msgstr ""
1119
-
1120
- #: includes/admin/settings/register-settings.php:634
1121
- msgid ""
1122
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1123
- "Add-Ons</a>"
1124
- msgstr ""
1125
-
1126
- #: includes/admin/settings/register-settings.php:714
1127
- msgid "Settings updated."
1128
- msgstr "Configurações atualizadas."
1129
-
1130
- #: includes/admin/settings/register-settings.php:747
1131
- msgid "Visual"
1132
- msgstr "Visual"
1133
-
1134
- #: includes/admin/settings/register-settings.php:755
1135
- msgid "Add-On Settings"
1136
- msgstr ""
1137
-
1138
- #: includes/admin/settings/register-settings.php:759
1139
- msgid "Licenses"
1140
- msgstr "Licenças"
1141
-
1142
- #: includes/admin/settings/register-settings.php:761
1143
- msgid "Get More Add-Ons"
1144
- msgstr ""
1145
-
1146
- #: includes/admin/settings/register-settings.php:1012
1147
- msgid ""
1148
- "The callback function used for the <strong>%s</strong> setting is missing."
1149
- msgstr ""
1150
- "A função callback usada para a definição <strong>%s</strong> está faltando."
1151
-
1152
- #: includes/admin/settings/register-settings.php:1152
1153
- msgid "Upload File"
1154
- msgstr "Enviar arquivo"
1155
-
1156
- #: includes/admin/settings/register-settings.php:1255
1157
- msgid ""
1158
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1159
- "title=\"Renew your license key\">renew your license key</a>."
1160
- msgstr ""
1161
-
1162
- #: includes/admin/settings/register-settings.php:1268
1163
- msgid ""
1164
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1165
- "account page\">visit your account page</a> and verify it."
1166
- msgstr ""
1167
-
1168
- #: includes/admin/settings/register-settings.php:1281
1169
- msgid ""
1170
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1171
- "title=\"Visit account page\">visit your account page</a> to manage your "
1172
- "license key URLs."
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1293
1176
- msgid "This is not a %s."
1177
- msgstr ""
1178
-
1179
- #: includes/admin/settings/register-settings.php:1302
1180
- msgid ""
1181
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1182
- "possible upgrades</a> now."
1183
- msgstr ""
1184
-
1185
- #: includes/admin/settings/register-settings.php:1324
1186
- msgid "License key never expires."
1187
- msgstr ""
1188
-
1189
- #: includes/admin/settings/register-settings.php:1331
1190
- msgid ""
1191
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1192
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1193
- msgstr ""
1194
-
1195
- #: includes/admin/settings/register-settings.php:1341
1196
- msgid "Your license key expires on %s."
1197
- msgstr ""
1198
-
1199
- #: includes/admin/settings/register-settings.php:1363
1200
- msgid "Deactivate License"
1201
- msgstr "Desativar licença"
1202
-
1203
- #: includes/admin/settings/register-settings.php:1427
1204
- msgid "Social Network"
1205
- msgstr ""
1206
-
1207
- #: includes/admin/settings/register-settings.php:1428
1208
- msgid "Status"
1209
- msgstr ""
1210
-
1211
- #: includes/admin/settings/register-settings.php:1429
1212
- msgid "Custom Label"
1213
- msgstr ""
1214
-
1215
- #: includes/admin/settings/register-settings.php:1497
1216
- msgid "Select Image"
1217
- msgstr "Selecionar imagem"
1218
-
1219
- #: includes/admin/settings/register-settings.php:1636
1220
- msgid "All Services"
1221
- msgstr "Todos os serviços"
1222
-
1223
- #: includes/admin/settings/register-settings.php:1653
1224
- msgid ""
1225
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1226
- "after doing the job."
1227
- msgstr ""
1228
- "Cache de banco de dados excluído! Não esqueça de desmarcar esta caixa para "
1229
- "melhorar o desempenho depois de completar a tarefa."
1230
-
1231
- #: includes/admin/settings/register-settings.php:1666
1232
- msgid "Transient Cache disabled! Enable it for performance increase."
1233
- msgstr ""
1234
- "Cache transiente está desabilitado! Habilite para melhoria no desempenho."
1235
-
1236
- #: includes/admin/settings/register-settings.php:1679
1237
- msgid ""
1238
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1239
- "content/plugins/mashsharer/logs/"
1240
- msgstr ""
1241
-
1242
- #: includes/admin/settings/user-profiles.php:16
1243
- msgid "MashShare Social Media Integration"
1244
- msgstr ""
1245
-
1246
- #: includes/admin/settings/user-profiles.php:22
1247
- msgid "Your Twitter username (without the @ symbol)"
1248
- msgstr ""
1249
-
1250
- #: includes/admin/settings/user-profiles.php:24
1251
- msgid "Facebook Author URL"
1252
- msgstr ""
1253
-
1254
- #: includes/admin/settings/user-profiles.php:27
1255
- msgid "URL to your Facebok profile."
1256
- msgstr ""
1257
-
1258
- #: includes/admin/tools.php:68
1259
- msgid "Import/Export"
1260
- msgstr ""
1261
-
1262
- #: includes/admin/tools.php:69
1263
- msgid "System Info"
1264
- msgstr ""
1265
-
1266
- #: includes/admin/tools.php:91
1267
- msgid "Export Settings"
1268
- msgstr ""
1269
-
1270
- #: includes/admin/tools.php:93
1271
- msgid ""
1272
- "Export the Mashshare settings for this site as a .json file. This allows you "
1273
- "to easily import the configuration into another site."
1274
- msgstr ""
1275
-
1276
- #: includes/admin/tools.php:99
1277
- msgid "Export"
1278
- msgstr ""
1279
-
1280
- #: includes/admin/tools.php:106
1281
- msgid "Import Settings"
1282
- msgstr ""
1283
-
1284
- #: includes/admin/tools.php:108
1285
- msgid ""
1286
- "Import the Mashshare settings from a .json file. This file can be obtained "
1287
- "by exporting the settings on another site using the form above."
1288
- msgstr ""
1289
-
1290
- #: includes/admin/tools.php:116
1291
- msgid "Import"
1292
- msgstr ""
1293
-
1294
- #: includes/admin/tools.php:218
1295
- msgid "Please upload a valid .json file"
1296
- msgstr ""
1297
-
1298
- #: includes/admin/tools.php:224
1299
- msgid "Please upload a file to import"
1300
- msgstr ""
1301
-
1302
- #: includes/admin/tracking.php:266
1303
- msgid "Allow"
1304
- msgstr ""
1305
-
1306
- #: includes/admin/tracking.php:267
1307
- msgid "Do not allow"
1308
- msgstr ""
1309
-
1310
- #: includes/admin/welcome.php:51
1311
- msgid "Welcome to MashShare"
1312
- msgstr ""
1313
-
1314
- #: includes/admin/welcome.php:56
1315
- msgid "MashShare Changelog"
1316
- msgstr ""
1317
-
1318
- #: includes/admin/welcome.php:61
1319
- msgid "Quickstart"
1320
- msgstr ""
1321
-
1322
- #: includes/admin/welcome.php:66
1323
- msgid "The people that build MashShare"
1324
- msgstr ""
1325
-
1326
- #: includes/admin/welcome.php:128
1327
- msgid ""
1328
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1329
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1330
- "needs."
1331
- msgstr ""
1332
-
1333
- #: includes/admin/welcome.php:131
1334
- msgid "Create Your First Social Sharing Button"
1335
- msgstr ""
1336
-
1337
- #: includes/admin/welcome.php:137
1338
- msgid "Settings &rarr; Social Networks"
1339
- msgstr ""
1340
-
1341
- #: includes/admin/welcome.php:138
1342
- msgid ""
1343
- "The Social Network menu is your general access point for activating the "
1344
- "desired share buttons and for customizing the share button label"
1345
- msgstr ""
1346
-
1347
- #: includes/admin/welcome.php:139
1348
- msgid "Settings &rarr; Location & Position"
1349
- msgstr ""
1350
-
1351
- #: includes/admin/welcome.php:140
1352
- msgid ""
1353
- "Select the location and exact position of the share buttons within your "
1354
- "content"
1355
- msgstr ""
1356
-
1357
- #: includes/admin/welcome.php:141
1358
- msgid "You are done! Easy, isn't it?"
1359
- msgstr ""
1360
-
1361
- #: includes/admin/welcome.php:149
1362
- msgid "Display a Most Shared Post Widget"
1363
- msgstr ""
1364
-
1365
- #: includes/admin/welcome.php:155
1366
- msgid "Appearance &rarr; Widgets"
1367
- msgstr ""
1368
-
1369
- #: includes/admin/welcome.php:157
1370
- msgid ""
1371
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1372
- "br>into the desired widget location and save it"
1373
- msgstr ""
1374
-
1375
- #: includes/admin/welcome.php:165
1376
- msgid "Content Shortcodes"
1377
- msgstr ""
1378
-
1379
- #: includes/admin/welcome.php:172
1380
- msgid ""
1381
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1382
- "bold;\">[mashshare]</i>."
1383
- msgstr ""
1384
-
1385
- #: includes/admin/welcome.php:174
1386
- msgid ""
1387
- "Paste the shortcode in content of your posts or pages with the post editor "
1388
- "at the place you want the share buttons appear"
1389
- msgstr ""
1390
-
1391
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1392
- msgid ""
1393
- "There are various parameters you can use for the mashshare shortcode. Find a "
1394
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1395
- "\">here</a>"
1396
- msgstr ""
1397
-
1398
- #: includes/admin/welcome.php:182
1399
- msgid "PHP Template Shortcode"
1400
- msgstr ""
1401
-
1402
- #: includes/admin/welcome.php:188
1403
- msgid ""
1404
- "Add MashShare directly into your theme template files with using the PHP "
1405
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1406
- "&gt;</i>"
1407
- msgstr ""
1408
-
1409
- #: includes/admin/welcome.php:199
1410
- msgid "Need Help?"
1411
- msgstr ""
1412
-
1413
- #: includes/admin/welcome.php:202
1414
- msgid "Great Support"
1415
- msgstr ""
1416
-
1417
- #: includes/admin/welcome.php:203
1418
- msgid ""
1419
- "We do our best to provide the best support we can. If you encounter a "
1420
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1421
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1422
- msgstr ""
1423
-
1424
- #: includes/admin/welcome.php:227
1425
- msgid "Welcome to MashShare %s"
1426
- msgstr ""
1427
-
1428
- #: includes/admin/welcome.php:229
1429
- msgid ""
1430
- "Thank you for updating to the latest version! MashShare is installed and "
1431
- "ready to grow your traffic from social networks!"
1432
- msgstr ""
1433
-
1434
- #: includes/admin/welcome.php:252
1435
- msgid "1. Asyncronous Share Count Aggregation"
1436
- msgstr ""
1437
-
1438
- #: includes/admin/welcome.php:256
1439
- msgid ""
1440
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1441
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1442
- "will be aggregated only after page loading and never while page loads. This "
1443
- "is a huge performance update."
1444
- msgstr ""
1445
-
1446
- #: includes/admin/welcome.php:259
1447
- msgid "2. Open Graph and Twitter Card Integration"
1448
- msgstr ""
1449
-
1450
- #: includes/admin/welcome.php:260
1451
- msgid ""
1452
- "Use open graph and twitter card to specify the content you like to share. If "
1453
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1454
- "and extend it with custom data to get the maximum out of your valuable "
1455
- "content."
1456
- msgstr ""
1457
-
1458
- #: includes/admin/welcome.php:267
1459
- msgid "3. Responsive Buttons per default"
1460
- msgstr ""
1461
-
1462
- #: includes/admin/welcome.php:268
1463
- msgid ""
1464
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1465
- "buttons look great on mobile and desktop devices."
1466
- msgstr ""
1467
-
1468
- #: includes/admin/welcome.php:270
1469
- msgid "4. Share Count Dashboard"
1470
- msgstr ""
1471
-
1472
- #: includes/admin/welcome.php:271
1473
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1474
- msgstr ""
1475
-
1476
- #: includes/admin/welcome.php:275
1477
- msgid "5. A much cleaner user interface"
1478
- msgstr ""
1479
-
1480
- #: includes/admin/welcome.php:276
1481
- msgid ""
1482
- "We spent a lot of time to make useful first time settings and improved the "
1483
- "user interface for an easier experience."
1484
- msgstr ""
1485
-
1486
- #: includes/admin/welcome.php:284
1487
- msgid "Additional Updates"
1488
- msgstr ""
1489
-
1490
- #: includes/admin/welcome.php:287
1491
- msgid "Developer Friendly"
1492
- msgstr ""
1493
-
1494
- #: includes/admin/welcome.php:288
1495
- msgid ""
1496
- "Are you a theme developer and want to use MashShare as your build in share "
1497
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1498
- "instructions.</a>"
1499
- msgstr ""
1500
-
1501
- #: includes/admin/welcome.php:291
1502
- msgid "Check Open Graph Settings"
1503
- msgstr ""
1504
-
1505
- #: includes/admin/welcome.php:292
1506
- msgid ""
1507
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1508
- "data on your site is working as expected or conflicts with other open graph "
1509
- "data."
1510
- msgstr ""
1511
-
1512
- #: includes/admin/welcome.php:295
1513
- msgid "Use Yoast SEO Title"
1514
- msgstr ""
1515
-
1516
- #: includes/admin/welcome.php:296
1517
- msgid "MashShare will use the YOAST SEO title if it is defined."
1518
- msgstr ""
1519
-
1520
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1521
- msgid "Go to MashShare Settings"
1522
- msgstr ""
1523
-
1524
- #: includes/admin/welcome.php:303
1525
- msgid "View the Full Changelog"
1526
- msgstr ""
1527
-
1528
- #: includes/admin/welcome.php:326
1529
- msgid "What's New"
1530
- msgstr ""
1531
-
1532
- #: includes/admin/welcome.php:332
1533
- msgid "Credits"
1534
- msgstr ""
1535
-
1536
- #: includes/admin/welcome.php:353
1537
- msgid ""
1538
- "Mashshare is created by a René Hermenau and developers all over the world "
1539
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1540
- "WordPress."
1541
- msgstr ""
1542
-
1543
- #: includes/admin/welcome.php:356
1544
- msgid ""
1545
- " If you want to be credited here participate on the development and make "
1546
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1547
- msgstr ""
1548
-
1549
- #: includes/admin/welcome.php:381
1550
- msgid "View %s"
1551
- msgstr ""
1552
-
1553
- #: includes/admin/welcome.php:436
1554
- msgid "No valid changelog was found."
1555
- msgstr ""
1556
-
1557
- #: includes/admin/welcome.php:469
1558
- msgid "Full Changelog"
1559
- msgstr ""
1560
-
1561
- #: includes/class-mashsb-html-elements.php:43
1562
- msgctxt "all dropdown items"
1563
- msgid "All"
1564
- msgstr "Todos"
1565
-
1566
- #: includes/class-mashsb-html-elements.php:44
1567
- msgctxt "no dropdown items"
1568
- msgid "None"
1569
- msgstr "Nenhum"
1570
-
1571
- #: includes/class-mashsb-html-elements.php:232
1572
- msgid "Enter username"
1573
- msgstr "Digite o nome de usuário"
1574
-
1575
- #: includes/class-mashsb-license-handler.php:177
1576
- msgid "%1$s License Key"
1577
- msgstr "Chave de licença %1$s"
1578
-
1579
- #: includes/class-mashsb-license-handler.php:210
1580
- msgid ""
1581
- "Enter your extension license keys here to receive updates for purchased "
1582
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1583
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1584
- msgstr ""
1585
-
1586
- #: includes/class-mashsb-license-handler.php:319
1587
- msgid "Nonce verification failed"
1588
- msgstr ""
1589
-
1590
- #: includes/class-mashsb-license-handler.php:436
1591
- msgid ""
1592
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1593
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1594
- "issue."
1595
- msgstr ""
1596
-
1597
- #: includes/class-mashsb-license-handler.php:475
1598
- msgid "Enter valid license key for automatic updates."
1599
- msgstr ""
1600
-
1601
- #: includes/class-mashsb-shared-posts-widget.php:13
1602
- msgid "Mashshare - Most Shared Posts"
1603
- msgstr ""
1604
-
1605
- #: includes/class-mashsb-shared-posts-widget.php:37
1606
- msgid "Widget Title"
1607
- msgstr ""
1608
-
1609
- #: includes/class-mashsb-shared-posts-widget.php:42
1610
- msgid "How many posts to display?"
1611
- msgstr ""
1612
-
1613
- #: includes/class-mashsb-shared-posts-widget.php:46
1614
- msgid "Show Shares? Say \"No\" when using fake shares!"
1615
- msgstr ""
1616
-
1617
- #: includes/class-mashsb-shared-posts-widget.php:61
1618
- msgid "Show shares below post title"
1619
- msgstr ""
1620
-
1621
- #: includes/class-mashsb-shared-posts-widget.php:68
1622
- msgid "Time period and age of posts"
1623
- msgstr ""
1624
-
1625
- #: includes/template-functions.php:249
1626
- msgid "Subscribe"
1627
- msgstr "Inscrever"
1628
-
1629
- #: includes/template-functions.php:517
1630
- msgid "SHARES"
1631
- msgstr "COMPARTILHAMENTOS"
1632
-
1633
- #: includes/template-functions.php:1114
1634
- msgid "Page not found"
1635
- msgstr ""
1636
-
1637
- #. translators: %s: search phrase
1638
- #: includes/template-functions.php:1119
1639
- msgid "Search Results for &#8220;%s&#8221;"
1640
- msgstr ""
1641
-
1642
- #: includes/template-functions.php:1152
1643
- msgctxt "yearly archives date format"
1644
- msgid "Y"
1645
- msgstr ""
1646
-
1647
- #: includes/template-functions.php:1154
1648
- msgctxt "monthly archives date format"
1649
- msgid "F Y"
1650
- msgstr ""
1651
-
1652
- #: mashshare.php:124 mashshare.php:136
1653
- msgid "Cheatin&#8217; huh?"
1654
- msgstr "Trapaceando, hein?"
1655
-
1656
- #: templates/sidebar.php:17
1657
- msgid "Increase your Shares and Social Traffic"
1658
- msgstr ""
1659
-
1660
- #: templates/sidebar.php:20
1661
- msgid "Get 20% Off!"
1662
- msgstr ""
1663
-
1664
- #: templates/sidebar.php:25
1665
- msgid ""
1666
- "Submit your name and email and we'll send you a coupon for 20% off your "
1667
- "upgrade to the pro version."
1668
- msgstr ""
1669
-
1670
- #: templates/sidebar.php:29
1671
- msgid "Your Email"
1672
- msgstr ""
1673
-
1674
- #: templates/sidebar.php:33
1675
- msgid "First Name"
1676
- msgstr ""
1677
-
1678
- #: templates/sidebar.php:37
1679
- msgid "Last Name"
1680
- msgstr ""
1681
-
1682
- #: templates/sidebar.php:44
1683
- msgid "Send me the coupon"
1684
- msgstr ""
1685
-
1686
- #: templates/sidebar.php:48
1687
- msgid ""
1688
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1689
- "click anytime."
1690
- msgstr ""
1691
-
1692
- #. Plugin Name of the plugin/theme
1693
- msgid "Mashshare Share Buttons"
1694
- msgstr ""
1695
-
1696
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1697
- #. Plugin URI of the plugin/theme
1698
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1699
- #. Author URI of the plugin/theme
1700
- msgid "https://www.mashshare.net"
1701
- msgstr ""
1702
-
1703
- #. Description of the plugin/theme
1704
- msgid ""
1705
- "Mashshare is a Share functionality inspired by the the great website "
1706
- "Mashable for Facebook and Twitter. More networks available."
1707
- msgstr ""
1708
-
1709
- #. Author of the plugin/theme
1710
- msgid "René Hermenau"
1711
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-ru_RU.mo DELETED
Binary file
languages/mashsb-ru_RU.po DELETED
@@ -1,1682 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: Mashshare\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
8
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
9
- "PO-Revision-Date: 2016-06-23 19:12+0100\n"
10
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
11
- "Language-Team: Russian (http://www.transifex.com/renehermenau/mashshare/"
12
- "language/ru/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: ru\n"
17
- "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
- "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
19
- "%100>=11 && n%100<=14)? 2 : 3);\n"
20
- "X-Generator: Poedit 1.5.6\n"
21
-
22
- msgid ""
23
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
24
- "Highly customizable Social Media ecosystem"
25
- msgstr ""
26
-
27
- #: includes/MASHSB_SL_Plugin_Updater.php:177
28
- msgid ""
29
- "There is a new version of %1$s available. <a target=\"_blank\" class="
30
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
31
- msgstr ""
32
-
33
- #: includes/MASHSB_SL_Plugin_Updater.php:184
34
- msgid ""
35
- "There is a new version of %1$s available. <a target=\"_blank\" class="
36
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
37
- "\">update now</a>."
38
- msgstr ""
39
-
40
- #: includes/MASHSB_SL_Plugin_Updater.php:324
41
- msgid "You do not have permission to install plugin updates"
42
- msgstr ""
43
-
44
- #: includes/MASHSB_SL_Plugin_Updater.php:324
45
- #: includes/class-mashsb-license-handler.php:319
46
- msgid "Error"
47
- msgstr ""
48
-
49
- #: includes/admin/add-ons.php:27
50
- msgid "Add Ons for Mashshare"
51
- msgstr ""
52
-
53
- #: includes/admin/add-ons.php:28
54
- msgid "Visit Website"
55
- msgstr ""
56
-
57
- #: includes/admin/add-ons.php:28
58
- msgid "See Details"
59
- msgstr ""
60
-
61
- #: includes/admin/add-ons.php:30
62
- msgid "These add-ons extend the functionality of Mashshare."
63
- msgstr ""
64
-
65
- #: includes/admin/add-ons.php:54
66
- msgid ""
67
- "There was an error retrieving the Mashshare addon list from the server. "
68
- "Please try again later."
69
- msgstr ""
70
-
71
- #: includes/admin/admin-footer.php:24
72
- msgid ""
73
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
74
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
75
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
76
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
77
- "\"blank\">Documentation</a>"
78
- msgstr ""
79
-
80
- #: includes/admin/admin-notices.php:51
81
- msgid ""
82
- "MashShare needs the PHP extension cURL which is not installed on your "
83
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
84
- "to be able to collect share count of your posts."
85
- msgstr ""
86
-
87
- #: includes/admin/admin-notices.php:58
88
- msgid ""
89
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
90
- ">Social Networks</a> and enable at least one Social Network."
91
- msgstr ""
92
-
93
- #: includes/admin/admin-notices.php:64
94
- msgid ""
95
- "Your Sharebar Add-On version is not using new short url mechanism of "
96
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
97
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
98
- "short urls will not stop working in one of the next updates. This requires a "
99
- "valid license of the Sharebar Add-On"
100
- msgstr ""
101
-
102
- #: includes/admin/admin-notices.php:70
103
- msgid ""
104
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
105
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
106
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
107
- "twitter short urls will not stop working in one of the next updates. This "
108
- "requires a valid license of the Floating Sidebar Add-On"
109
- msgstr ""
110
-
111
- #: includes/admin/admin-notices.php:76
112
- msgid ""
113
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
114
- ">Short URL Integration</i></a> and check the Google API key."
115
- msgstr ""
116
-
117
- #: includes/admin/admin-notices.php:82
118
- msgid ""
119
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
120
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
121
- "check the Bitly API key."
122
- msgstr ""
123
-
124
- #: includes/admin/admin-notices.php:88
125
- msgid ""
126
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
127
- "is not longer needed and having it activated leads to duplicate open graph "
128
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
129
- msgstr ""
130
-
131
- #: includes/admin/admin-notices.php:94
132
- msgid ""
133
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
134
- "not longer needed and already built in MashShare. Deactivate it from <a href="
135
- "\"%s\"> Plugin Settings</a> "
136
- msgstr ""
137
-
138
- #: includes/admin/admin-notices.php:100
139
- msgid ""
140
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
141
- "\">Permalinks</a> must be enabled to count shares. Share count is "
142
- "deactivated until you have fixed this."
143
- msgstr ""
144
-
145
- #: includes/admin/admin-notices.php:258
146
- msgid ""
147
- "There seems to be an issue with the server. Please try again in a few "
148
- "minutes."
149
- msgstr ""
150
-
151
- #: includes/admin/admin-pages.php:31
152
- msgid "MashShare"
153
- msgstr ""
154
-
155
- #: includes/admin/admin-pages.php:32
156
- msgid "MashShare Settings"
157
- msgstr ""
158
-
159
- #: includes/admin/admin-pages.php:32
160
- #: includes/admin/settings/register-settings.php:744
161
- msgid "Settings"
162
- msgstr ""
163
-
164
- #: includes/admin/admin-pages.php:33
165
- msgid "MashShare Add Ons"
166
- msgstr ""
167
-
168
- #: includes/admin/admin-pages.php:33
169
- msgid "Get Add Ons"
170
- msgstr ""
171
-
172
- #: includes/admin/admin-pages.php:34
173
- msgid "MashShare Tools"
174
- msgstr ""
175
-
176
- #: includes/admin/admin-pages.php:34
177
- msgid "Im/Export & System"
178
- msgstr ""
179
-
180
- #: includes/admin/meta-box/inc/core.php:40
181
- msgid "Documentation"
182
- msgstr ""
183
-
184
- #: includes/admin/meta-box/inc/core.php:41
185
- msgid "Extensions"
186
- msgstr ""
187
-
188
- #: includes/admin/meta-box/inc/field.php:196
189
- msgid "+ Add more"
190
- msgstr ""
191
-
192
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
193
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
194
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
195
- msgid "Delete"
196
- msgstr ""
197
-
198
- #: includes/admin/meta-box/inc/fields/button.php:29
199
- msgid "Click me"
200
- msgstr ""
201
-
202
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
203
- msgid "Yes"
204
- msgstr ""
205
-
206
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
207
- msgid "No"
208
- msgstr ""
209
-
210
- #: includes/admin/meta-box/inc/fields/file-input.php:18
211
- msgid "Select File"
212
- msgstr ""
213
-
214
- #: includes/admin/meta-box/inc/fields/file-input.php:41
215
- #: includes/admin/meta-box/inc/fields/select.php:91
216
- msgid "Select"
217
- msgstr ""
218
-
219
- #: includes/admin/meta-box/inc/fields/file-input.php:43
220
- msgid "Remove"
221
- msgstr ""
222
-
223
- #: includes/admin/meta-box/inc/fields/file.php:15
224
- msgid "You may only upload maximum %d file"
225
- msgstr ""
226
-
227
- #: includes/admin/meta-box/inc/fields/file.php:16
228
- msgid "You may only upload maximum %d files"
229
- msgstr ""
230
-
231
- #: includes/admin/meta-box/inc/fields/file.php:83
232
- msgid "Error: Cannot delete file"
233
- msgstr ""
234
-
235
- #: includes/admin/meta-box/inc/fields/file.php:96
236
- msgctxt "file upload"
237
- msgid "Upload Files"
238
- msgstr ""
239
-
240
- #: includes/admin/meta-box/inc/fields/file.php:97
241
- msgctxt "file upload"
242
- msgid "+ Add new file"
243
- msgstr ""
244
-
245
- #: includes/admin/meta-box/inc/fields/file.php:153
246
- msgctxt "file upload"
247
- msgid "Delete"
248
- msgstr ""
249
-
250
- #: includes/admin/meta-box/inc/fields/file.php:154
251
- msgctxt "file upload"
252
- msgid "Edit"
253
- msgstr ""
254
-
255
- #: includes/admin/meta-box/inc/fields/image.php:61
256
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
257
- msgctxt "image upload"
258
- msgid "Upload Images"
259
- msgstr ""
260
-
261
- #: includes/admin/meta-box/inc/fields/image.php:62
262
- msgctxt "image upload"
263
- msgid "+ Add new image"
264
- msgstr ""
265
-
266
- #: includes/admin/meta-box/inc/fields/image.php:124
267
- msgctxt "image upload"
268
- msgid "Delete"
269
- msgstr ""
270
-
271
- #: includes/admin/meta-box/inc/fields/image.php:125
272
- msgctxt "image upload"
273
- msgid "Edit"
274
- msgstr ""
275
-
276
- #: includes/admin/meta-box/inc/fields/key-value.php:19
277
- msgid "Key"
278
- msgstr ""
279
-
280
- #: includes/admin/meta-box/inc/fields/key-value.php:25
281
- msgid "Value"
282
- msgstr ""
283
-
284
- #: includes/admin/meta-box/inc/fields/map.php:49
285
- msgid "Find Address"
286
- msgstr ""
287
-
288
- #: includes/admin/meta-box/inc/fields/media.php:18
289
- msgctxt "media"
290
- msgid "Add Image"
291
- msgstr ""
292
-
293
- #: includes/admin/meta-box/inc/fields/media.php:19
294
- msgctxt "media"
295
- msgid " file"
296
- msgstr ""
297
-
298
- #: includes/admin/meta-box/inc/fields/media.php:20
299
- msgctxt "media"
300
- msgid " files"
301
- msgstr ""
302
-
303
- #: includes/admin/meta-box/inc/fields/media.php:21
304
- msgctxt "media"
305
- msgid "Remove"
306
- msgstr ""
307
-
308
- #: includes/admin/meta-box/inc/fields/media.php:22
309
- msgctxt "media"
310
- msgid "Edit"
311
- msgstr ""
312
-
313
- #: includes/admin/meta-box/inc/fields/media.php:23
314
- msgctxt "media"
315
- msgid "View"
316
- msgstr ""
317
-
318
- #: includes/admin/meta-box/inc/fields/media.php:24
319
- msgctxt "media"
320
- msgid "No Title"
321
- msgstr ""
322
-
323
- #: includes/admin/meta-box/inc/fields/media.php:27
324
- msgctxt "media"
325
- msgid "Select Files"
326
- msgstr ""
327
-
328
- #: includes/admin/meta-box/inc/fields/media.php:28
329
- msgctxt "media"
330
- msgid "Drop files here to upload"
331
- msgstr ""
332
-
333
- #: includes/admin/meta-box/inc/fields/oembed.php:65
334
- msgid "Embed HTML not available."
335
- msgstr ""
336
-
337
- #: includes/admin/meta-box/inc/fields/oembed.php:84
338
- msgid "Preview"
339
- msgstr ""
340
-
341
- #: includes/admin/meta-box/inc/fields/post.php:34
342
- msgid "Select a post"
343
- msgstr ""
344
-
345
- #: includes/admin/meta-box/inc/fields/post.php:38
346
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
347
- msgid "Select a %s"
348
- msgstr ""
349
-
350
- #: includes/admin/meta-box/inc/fields/select.php:91
351
- msgid "All"
352
- msgstr ""
353
-
354
- #: includes/admin/meta-box/inc/fields/select.php:91
355
- msgid "None"
356
- msgstr ""
357
-
358
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
359
- msgid "Select a term"
360
- msgstr ""
361
-
362
- #: includes/admin/meta-box/inc/fields/user.php:34
363
- msgid "Select an user"
364
- msgstr ""
365
-
366
- #: includes/admin/meta-box/inc/validation.php:42
367
- msgid "Please correct the errors highlighted below and try again."
368
- msgstr ""
369
-
370
- #: includes/admin/plugins.php:27
371
- msgid "General Settings"
372
- msgstr ""
373
-
374
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
375
- msgid "Getting Started"
376
- msgstr ""
377
-
378
- #: includes/admin/plugins.php:51
379
- msgid "Add Ons"
380
- msgstr ""
381
-
382
- #: includes/admin/settings/contextual-help.php:29
383
- msgid "For more information:"
384
- msgstr ""
385
-
386
- #: includes/admin/settings/contextual-help.php:30
387
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
388
- msgstr ""
389
-
390
- #: includes/admin/settings/contextual-help.php:32
391
- msgid ""
392
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
393
- "href=\"%s\">extensions</a>."
394
- msgstr ""
395
-
396
- #: includes/admin/settings/contextual-help.php:41
397
- msgid "General"
398
- msgstr ""
399
-
400
- #: includes/admin/settings/contextual-help.php:42
401
- msgid "This screen provides the most basic settings for configuring Mashshare."
402
- msgstr ""
403
-
404
- #: includes/admin/settings/display-settings.php:133
405
- msgid "MashShare "
406
- msgstr ""
407
-
408
- #: includes/admin/settings/metabox-settings.php:102
409
- msgid "Social Media Image"
410
- msgstr ""
411
-
412
- #: includes/admin/settings/metabox-settings.php:103
413
- msgid ""
414
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
415
- "1200px x 630px. Aspect ratio 1.9:1"
416
- msgstr ""
417
-
418
- #: includes/admin/settings/metabox-settings.php:112
419
- msgid "Social Media Title"
420
- msgstr ""
421
-
422
- #: includes/admin/settings/metabox-settings.php:113
423
- msgid ""
424
- "This title is used by the open graph meta tag og:title and will be used when "
425
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
426
- "to use "
427
- msgstr ""
428
-
429
- #: includes/admin/settings/metabox-settings.php:113
430
- msgid "Yoast Facebook / SEO title"
431
- msgstr ""
432
-
433
- #: includes/admin/settings/metabox-settings.php:121
434
- msgid "Social Media Description"
435
- msgstr ""
436
-
437
- #: includes/admin/settings/metabox-settings.php:122
438
- msgid ""
439
- "This description is used by the open graph meta tag og:description and will "
440
- "be used when users share your content on Facebook, LinkedIn, and Google "
441
- "Plus. Leave this blank to use "
442
- msgstr ""
443
-
444
- #: includes/admin/settings/metabox-settings.php:122
445
- msgid "Yoast Facebook open graph description or the post excerpt."
446
- msgstr ""
447
-
448
- #: includes/admin/settings/metabox-settings.php:135
449
- msgid "Pinterest Image"
450
- msgstr ""
451
-
452
- #: includes/admin/settings/metabox-settings.php:135
453
- #: includes/admin/settings/metabox-settings.php:145
454
- msgid ""
455
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
456
- "the Pinterest Features"
457
- msgstr ""
458
-
459
- #: includes/admin/settings/metabox-settings.php:136
460
- msgid ""
461
- "Pinned images need to be more vertical than horizontal in orientation. Use "
462
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
463
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
464
- msgstr ""
465
-
466
- #: includes/admin/settings/metabox-settings.php:145
467
- msgid "Pinterest Description"
468
- msgstr ""
469
-
470
- #: includes/admin/settings/metabox-settings.php:146
471
- msgid ""
472
- "Place a customized message that will be used when this post is shared on "
473
- "Pinterest. Leave this blank to use the "
474
- msgstr ""
475
-
476
- #: includes/admin/settings/metabox-settings.php:146
477
- msgid "Yoast SEO title"
478
- msgstr ""
479
-
480
- #: includes/admin/settings/metabox-settings.php:146
481
- msgid "the post title"
482
- msgstr ""
483
-
484
- #: includes/admin/settings/metabox-settings.php:154
485
- msgid "Custom Tweet"
486
- msgstr ""
487
-
488
- #: includes/admin/settings/metabox-settings.php:176
489
- msgid ""
490
- "Publish the post and validate if the open graph meta tags on your site are "
491
- "correct! Incorrect data can result in wrong share description, title or "
492
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
493
- "new scrape information\" to purge the facebook cache."
494
- msgstr ""
495
-
496
- #: includes/admin/settings/metabox-settings.php:206
497
- msgid "Based on your username @"
498
- msgstr ""
499
-
500
- #: includes/admin/settings/metabox-settings.php:206
501
- msgid " ,the shortened post url and the current content above"
502
- msgstr ""
503
-
504
- #: includes/admin/settings/metabox-settings.php:208
505
- msgid "Based on the shortened post url and the current content above"
506
- msgstr ""
507
-
508
- #: includes/admin/settings/metabox-settings.php:210
509
- msgid " your tweet has a maximum of 140 characters. "
510
- msgstr ""
511
-
512
- #: includes/admin/settings/metabox-settings.php:212
513
- msgid "If this is left blank the post title will be used. "
514
- msgstr ""
515
-
516
- #: includes/admin/settings/metabox-settings.php:214
517
- msgid ""
518
- "If this is left blank the Yoast Twitter Title or post title will be used. "
519
- msgstr ""
520
-
521
- #: includes/admin/settings/register-settings.php:120
522
- msgid "General settings"
523
- msgstr ""
524
-
525
- #: includes/admin/settings/register-settings.php:126
526
- msgid "Share counts"
527
- msgstr ""
528
-
529
- #: includes/admin/settings/register-settings.php:127
530
- msgid ""
531
- "<i>MashEngine</i> collects shares by direct request to social networks. "
532
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
533
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
534
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
535
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
536
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
537
- "this free service to get the twitter share count. Visit the newsharecount "
538
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
539
- "Thats it!"
540
- msgstr ""
541
-
542
- #: includes/admin/settings/register-settings.php:136
543
- msgid "Sharedcount.com API Key"
544
- msgstr ""
545
-
546
- #: includes/admin/settings/register-settings.php:137
547
- msgid ""
548
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
549
- "\">SharedCount.com</a> for 10.000 free daily requests."
550
- msgstr ""
551
-
552
- #: includes/admin/settings/register-settings.php:143
553
- msgid "Sharedcount.com endpint"
554
- msgstr ""
555
-
556
- #: includes/admin/settings/register-settings.php:144
557
- msgid ""
558
- "The SharedCount Domain your API key is configured to query. For example, "
559
- "free.sharedcount.com. This may update automatically if configured "
560
- "incorrectly."
561
- msgstr ""
562
-
563
- #: includes/admin/settings/register-settings.php:151
564
- msgid "Caching Method"
565
- msgstr ""
566
-
567
- #: includes/admin/settings/register-settings.php:152
568
- msgid ""
569
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
570
- "visitor and refreshes the cache asyncronously in the background. New posts "
571
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
572
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
573
- "cache while page is loading and adds a little extra time during inital page "
574
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
575
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
576
- "was using before version 3.0"
577
- msgstr ""
578
-
579
- #: includes/admin/settings/register-settings.php:161
580
- msgid "Cache expiration"
581
- msgstr ""
582
-
583
- #: includes/admin/settings/register-settings.php:162
584
- msgid ""
585
- "Shares are counted for posts after a certain time and counts are not updated "
586
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
587
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
588
- "more"
589
- msgstr ""
590
-
591
- #: includes/admin/settings/register-settings.php:168
592
- msgid "Facebook Count"
593
- msgstr ""
594
-
595
- #: includes/admin/settings/register-settings.php:169
596
- msgid ""
597
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
598
- "the pure share count"
599
- msgstr ""
600
-
601
- #: includes/admin/settings/register-settings.php:179
602
- msgid "Fake Share counts"
603
- msgstr ""
604
-
605
- #: includes/admin/settings/register-settings.php:180
606
- msgid ""
607
- "This number will be aggregated to all your share counts and is multiplied "
608
- "with a post specific factor. (Number of post title words divided with 10)."
609
- msgstr ""
610
-
611
- #: includes/admin/settings/register-settings.php:186
612
- msgid "Disable Sharecount"
613
- msgstr ""
614
-
615
- #: includes/admin/settings/register-settings.php:187
616
- msgid ""
617
- "Use this when curl() is not supported on your server or share counts should "
618
- "not counted. This mode does not call the database and no SQL queries are "
619
- "generated. (Only less performance benefit. All db requests are cached) "
620
- "Default: false"
621
- msgstr ""
622
-
623
- #: includes/admin/settings/register-settings.php:192
624
- msgid "Hide Sharecount"
625
- msgstr ""
626
-
627
- #: includes/admin/settings/register-settings.php:193
628
- msgid ""
629
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
630
- "specific post are not shown until the share count of this number is reached."
631
- msgstr ""
632
-
633
- #: includes/admin/settings/register-settings.php:199
634
- msgid "Execution Order"
635
- msgstr ""
636
-
637
- #: includes/admin/settings/register-settings.php:200
638
- msgid ""
639
- "If you use other content plugins you can define here the execution order. "
640
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
641
- "executed before any other plugin (When the other plugin is not overwriting "
642
- "our execution order). Default is \"1000\""
643
- msgstr ""
644
-
645
- #: includes/admin/settings/register-settings.php:207
646
- msgid "JavaScript in Footer"
647
- msgstr ""
648
-
649
- #: includes/admin/settings/register-settings.php:208
650
- msgid ""
651
- "Enable this to load all *.js files into footer. Make sure your theme uses "
652
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
653
- msgstr ""
654
-
655
- #: includes/admin/settings/register-settings.php:213
656
- msgid "JS & CSS Everywhere"
657
- msgstr ""
658
-
659
- #: includes/admin/settings/register-settings.php:214
660
- msgid ""
661
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
662
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
663
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
664
- "option to allow conditional loading so MashShare's JS and CSS files are "
665
- "loaded only on pages where MashShare is used."
666
- msgstr ""
667
-
668
- #: includes/admin/settings/register-settings.php:220
669
- msgid "Twitter Popup disabled"
670
- msgstr ""
671
-
672
- #: includes/admin/settings/register-settings.php:221
673
- msgid ""
674
- "Check this box if your twitter popup is openening twice. This happens "
675
- "sometimes when you are using any third party twitter plugin or the twitter "
676
- "SDK on your website."
677
- msgstr ""
678
-
679
- #: includes/admin/settings/register-settings.php:227
680
- msgid "Remove Data on Uninstall?"
681
- msgstr ""
682
-
683
- #: includes/admin/settings/register-settings.php:228
684
- msgid ""
685
- "Check this box if you would like Mashshare to completely remove all of its "
686
- "data when the plugin is deleted."
687
- msgstr ""
688
-
689
- #: includes/admin/settings/register-settings.php:233
690
- msgid "Allow Usage Tracking"
691
- msgstr ""
692
-
693
- #: includes/admin/settings/register-settings.php:234
694
- #: includes/admin/tracking.php:265
695
- msgid ""
696
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
697
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
698
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
699
- "Ons</a>. No sensitive data is tracked."
700
- msgstr ""
701
-
702
- #: includes/admin/settings/register-settings.php:239
703
- msgid "User Roles Options Visibility"
704
- msgstr ""
705
-
706
- #: includes/admin/settings/register-settings.php:240
707
- msgid ""
708
- "Select user roles which can see page and post MashShare Social Sharing Meta "
709
- "Box Options"
710
- msgstr ""
711
-
712
- #: includes/admin/settings/register-settings.php:243
713
- msgid "Select User Roles"
714
- msgstr ""
715
-
716
- #: includes/admin/settings/register-settings.php:244
717
- msgid "All Roles"
718
- msgstr ""
719
-
720
- #: includes/admin/settings/register-settings.php:248
721
- #: includes/admin/settings/register-settings.php:294
722
- #: includes/admin/settings/register-settings.php:751
723
- msgid "Social Networks"
724
- msgstr ""
725
-
726
- #: includes/admin/settings/register-settings.php:254
727
- msgid "Facebook page url"
728
- msgstr ""
729
-
730
- #: includes/admin/settings/register-settings.php:255
731
- msgid "Optional: The url of the main facebook account connected with this site"
732
- msgstr ""
733
-
734
- #: includes/admin/settings/register-settings.php:261
735
- msgid "Facebook App ID"
736
- msgstr ""
737
-
738
- #: includes/admin/settings/register-settings.php:262
739
- msgid ""
740
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
741
- "a>"
742
- msgstr ""
743
-
744
- #: includes/admin/settings/register-settings.php:268
745
- #: includes/admin/settings/user-profiles.php:19
746
- msgid "Twitter Username"
747
- msgstr ""
748
-
749
- #: includes/admin/settings/register-settings.php:269
750
- msgid ""
751
- "<strong>Optional:</strong> Using your twitter username results in via "
752
- "@username"
753
- msgstr ""
754
-
755
- #: includes/admin/settings/register-settings.php:275
756
- msgid "Twitter Card"
757
- msgstr ""
758
-
759
- #: includes/admin/settings/register-settings.php:276
760
- msgid ""
761
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
762
- "plugin their meta tags will be removed and MashShare will use existing meta "
763
- "data from these plugins. Default: On"
764
- msgstr ""
765
-
766
- #: includes/admin/settings/register-settings.php:281
767
- msgid "Open Graph Meta Tags"
768
- msgstr ""
769
-
770
- #: includes/admin/settings/register-settings.php:282
771
- msgid ""
772
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
773
- "Jetpack plugin their meta tags will be removed and MashShare will use "
774
- "existing meta data from these plugins."
775
- msgstr ""
776
-
777
- #: includes/admin/settings/register-settings.php:287
778
- msgid "Large Buttons"
779
- msgstr ""
780
-
781
- #: includes/admin/settings/register-settings.php:288
782
- msgid ""
783
- "Specify how many services and social networks are visible before the \"Plus"
784
- "\" Button is shown. This buttons turn into large prominent buttons."
785
- msgstr ""
786
-
787
- #: includes/admin/settings/register-settings.php:295
788
- msgid ""
789
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
790
- "that should be visible. <br>Activate more networks than number of \"Large "
791
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
792
- msgstr ""
793
-
794
- #: includes/admin/settings/register-settings.php:321
795
- msgid "Short URL Integration"
796
- msgstr ""
797
-
798
- #: includes/admin/settings/register-settings.php:328
799
- msgid "Bitly access token"
800
- msgstr ""
801
-
802
- #: includes/admin/settings/register-settings.php:329
803
- msgid ""
804
- "If you like to use bitly.com shortener get a free bitly access token <a href="
805
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
806
- "ly/cXnjsh. "
807
- msgstr ""
808
-
809
- #: includes/admin/settings/register-settings.php:335
810
- msgid "Google API Key (goo.gl)"
811
- msgstr ""
812
-
813
- #: includes/admin/settings/register-settings.php:342
814
- msgid "Shorturl method"
815
- msgstr ""
816
-
817
- #: includes/admin/settings/register-settings.php:343
818
- msgid ""
819
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
820
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
821
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
822
- "%s ?p=101</i>"
823
- msgstr ""
824
-
825
- #: includes/admin/settings/register-settings.php:354
826
- msgid "Important: Read this!"
827
- msgstr ""
828
-
829
- #: includes/admin/settings/register-settings.php:355
830
- msgid ""
831
- "<strong>The post short url is NOT generated immediatly after first page load!"
832
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
833
- "12 hours for old posts."
834
- msgstr ""
835
-
836
- #: includes/admin/settings/register-settings.php:374
837
- msgid "Customization"
838
- msgstr ""
839
-
840
- #: includes/admin/settings/register-settings.php:380
841
- msgid "Round up Shares"
842
- msgstr ""
843
-
844
- #: includes/admin/settings/register-settings.php:381
845
- msgid ""
846
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
847
- "as 1M"
848
- msgstr ""
849
-
850
- #: includes/admin/settings/register-settings.php:386
851
- msgid "Animate Shares"
852
- msgstr ""
853
-
854
- #: includes/admin/settings/register-settings.php:387
855
- msgid ""
856
- "Count up the shares on page loading with a nice looking animation effect. "
857
- "This only works on singular pages and not with shortcodes generated buttons."
858
- msgstr ""
859
-
860
- #: includes/admin/settings/register-settings.php:392
861
- #: includes/class-mashsb-shared-posts-widget.php:53
862
- msgid "Share Count Label"
863
- msgstr ""
864
-
865
- #: includes/admin/settings/register-settings.php:393
866
- msgid ""
867
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
868
- msgstr ""
869
-
870
- #: includes/admin/settings/register-settings.php:408
871
- msgid "Share Count Color"
872
- msgstr ""
873
-
874
- #: includes/admin/settings/register-settings.php:409
875
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
876
- msgstr ""
877
-
878
- #: includes/admin/settings/register-settings.php:416
879
- msgid "Border Radius"
880
- msgstr ""
881
-
882
- #: includes/admin/settings/register-settings.php:417
883
- msgid ""
884
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
885
- "results in circle buttons. Default value is zero."
886
- msgstr ""
887
-
888
- #: includes/admin/settings/register-settings.php:447
889
- msgid "Button Width"
890
- msgstr ""
891
-
892
- #: includes/admin/settings/register-settings.php:448
893
- msgid "Minimum with of the large share buttons in pixels"
894
- msgstr ""
895
-
896
- #: includes/admin/settings/register-settings.php:455
897
- msgid "Share Button Style"
898
- msgstr ""
899
-
900
- #: includes/admin/settings/register-settings.php:456
901
- msgid "Change visual appearance of the share buttons."
902
- msgstr ""
903
-
904
- #: includes/admin/settings/register-settings.php:467
905
- msgid "Small Share Buttons"
906
- msgstr ""
907
-
908
- #: includes/admin/settings/register-settings.php:468
909
- msgid ""
910
- "All buttons will be shown as pure small icons without any text on desktop "
911
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
912
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
913
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
914
- msgstr ""
915
-
916
- #: includes/admin/settings/register-settings.php:479
917
- msgid "Subscribe Button"
918
- msgstr ""
919
-
920
- #: includes/admin/settings/register-settings.php:480
921
- msgid ""
922
- "Specify if the subscribe button is opening a content box below the button or "
923
- "if the button is linked to the \"subscribe url\" below."
924
- msgstr ""
925
-
926
- #: includes/admin/settings/register-settings.php:490
927
- msgid "Subscribe URL"
928
- msgstr ""
929
-
930
- #: includes/admin/settings/register-settings.php:491
931
- msgid ""
932
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
933
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
934
- msgstr ""
935
-
936
- #: includes/admin/settings/register-settings.php:498
937
- msgid "Additional Content"
938
- msgstr ""
939
-
940
- #: includes/admin/settings/register-settings.php:504
941
- msgid "Content Above"
942
- msgstr ""
943
-
944
- #: includes/admin/settings/register-settings.php:505
945
- msgid ""
946
- "Content appearing above share buttons. Use HTML, formulars, like button, "
947
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
948
- msgstr ""
949
-
950
- #: includes/admin/settings/register-settings.php:512
951
- msgid "Content Below"
952
- msgstr ""
953
-
954
- #: includes/admin/settings/register-settings.php:513
955
- msgid ""
956
- "Content appearing below share buttons. Use HTML, formulars, like button, "
957
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
958
- msgstr ""
959
-
960
- #: includes/admin/settings/register-settings.php:520
961
- msgid "Subscribe content"
962
- msgstr ""
963
-
964
- #: includes/admin/settings/register-settings.php:521
965
- msgid ""
966
- "Define the content of the opening toggle subscribe window here. Use "
967
- "formulars, like button, links or any other text. Shortcodes are supported, e."
968
- "g.: [contact-form-7]"
969
- msgstr ""
970
-
971
- #: includes/admin/settings/register-settings.php:530
972
- msgid "Custom Styles"
973
- msgstr ""
974
-
975
- #: includes/admin/settings/register-settings.php:536
976
- msgid "General CSS"
977
- msgstr ""
978
-
979
- #: includes/admin/settings/register-settings.php:537
980
- msgid ""
981
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
982
- "it's loaded as an additonal inline css on your site"
983
- msgstr ""
984
-
985
- #: includes/admin/settings/register-settings.php:544
986
- msgid "AMP CSS"
987
- msgstr ""
988
-
989
- #: includes/admin/settings/register-settings.php:545
990
- msgid ""
991
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
992
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
993
- "\">AMP Plugin</a> installed."
994
- msgstr ""
995
-
996
- #: includes/admin/settings/register-settings.php:562
997
- msgid "Location & Position"
998
- msgstr ""
999
-
1000
- #: includes/admin/settings/register-settings.php:568
1001
- msgid "Position"
1002
- msgstr ""
1003
-
1004
- #: includes/admin/settings/register-settings.php:569
1005
- msgid ""
1006
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1007
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1008
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1009
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1010
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1011
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1012
- "shortcodes</a>."
1013
- msgstr ""
1014
-
1015
- #: includes/admin/settings/register-settings.php:572
1016
- msgid "Top"
1017
- msgstr ""
1018
-
1019
- #: includes/admin/settings/register-settings.php:573
1020
- msgid "Bottom"
1021
- msgstr ""
1022
-
1023
- #: includes/admin/settings/register-settings.php:574
1024
- msgid "Top and Bottom"
1025
- msgstr ""
1026
-
1027
- #: includes/admin/settings/register-settings.php:575
1028
- msgid "Manual"
1029
- msgstr ""
1030
-
1031
- #: includes/admin/settings/register-settings.php:580
1032
- msgid "Post Types"
1033
- msgstr ""
1034
-
1035
- #: includes/admin/settings/register-settings.php:581
1036
- msgid ""
1037
- "Select on which post_types the share buttons appear. These values will be "
1038
- "ignored when \"manual\" position is selected."
1039
- msgstr ""
1040
-
1041
- #: includes/admin/settings/register-settings.php:586
1042
- msgid "Exclude from post id"
1043
- msgstr ""
1044
-
1045
- #: includes/admin/settings/register-settings.php:587
1046
- msgid ""
1047
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1048
- "by a comma, e.g. 23, 63, 114 "
1049
- msgstr ""
1050
-
1051
- #: includes/admin/settings/register-settings.php:593
1052
- msgid "Categories"
1053
- msgstr ""
1054
-
1055
- #: includes/admin/settings/register-settings.php:594
1056
- msgid ""
1057
- "Enable this checkbox to enable Mashshare on categories with multiple "
1058
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1059
- msgstr ""
1060
-
1061
- #: includes/admin/settings/register-settings.php:600
1062
- msgid "Frontpage"
1063
- msgstr ""
1064
-
1065
- #: includes/admin/settings/register-settings.php:601
1066
- msgid "Enable share buttons on frontpage"
1067
- msgstr ""
1068
-
1069
- #: includes/admin/settings/register-settings.php:606
1070
- msgid "Debug"
1071
- msgstr ""
1072
-
1073
- #: includes/admin/settings/register-settings.php:612
1074
- msgid "Disable Cache"
1075
- msgstr ""
1076
-
1077
- #: includes/admin/settings/register-settings.php:618
1078
- msgid "Attention: Purge DB Cache"
1079
- msgstr ""
1080
-
1081
- #: includes/admin/settings/register-settings.php:624
1082
- msgid "Debug mode"
1083
- msgstr ""
1084
-
1085
- #: includes/admin/settings/register-settings.php:633
1086
- msgid "Activate your Add-Ons"
1087
- msgstr ""
1088
-
1089
- #: includes/admin/settings/register-settings.php:634
1090
- msgid ""
1091
- "Activate your license key to get important security and feature updates for "
1092
- "your Add-On!"
1093
- msgstr ""
1094
-
1095
- #: includes/admin/settings/register-settings.php:634
1096
- msgid ""
1097
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1098
- "Add-Ons</a>"
1099
- msgstr ""
1100
-
1101
- #: includes/admin/settings/register-settings.php:714
1102
- msgid "Settings updated."
1103
- msgstr ""
1104
-
1105
- #: includes/admin/settings/register-settings.php:747
1106
- msgid "Visual"
1107
- msgstr ""
1108
-
1109
- #: includes/admin/settings/register-settings.php:755
1110
- msgid "Add-On Settings"
1111
- msgstr ""
1112
-
1113
- #: includes/admin/settings/register-settings.php:759
1114
- msgid "Licenses"
1115
- msgstr ""
1116
-
1117
- #: includes/admin/settings/register-settings.php:761
1118
- msgid "Get More Add-Ons"
1119
- msgstr ""
1120
-
1121
- #: includes/admin/settings/register-settings.php:1012
1122
- msgid ""
1123
- "The callback function used for the <strong>%s</strong> setting is missing."
1124
- msgstr ""
1125
-
1126
- #: includes/admin/settings/register-settings.php:1152
1127
- msgid "Upload File"
1128
- msgstr ""
1129
-
1130
- #: includes/admin/settings/register-settings.php:1255
1131
- msgid ""
1132
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1133
- "title=\"Renew your license key\">renew your license key</a>."
1134
- msgstr ""
1135
-
1136
- #: includes/admin/settings/register-settings.php:1268
1137
- msgid ""
1138
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1139
- "account page\">visit your account page</a> and verify it."
1140
- msgstr ""
1141
-
1142
- #: includes/admin/settings/register-settings.php:1281
1143
- msgid ""
1144
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1145
- "title=\"Visit account page\">visit your account page</a> to manage your "
1146
- "license key URLs."
1147
- msgstr ""
1148
-
1149
- #: includes/admin/settings/register-settings.php:1293
1150
- msgid "This is not a %s."
1151
- msgstr ""
1152
-
1153
- #: includes/admin/settings/register-settings.php:1302
1154
- msgid ""
1155
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1156
- "possible upgrades</a> now."
1157
- msgstr ""
1158
-
1159
- #: includes/admin/settings/register-settings.php:1324
1160
- msgid "License key never expires."
1161
- msgstr ""
1162
-
1163
- #: includes/admin/settings/register-settings.php:1331
1164
- msgid ""
1165
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1166
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1167
- msgstr ""
1168
-
1169
- #: includes/admin/settings/register-settings.php:1341
1170
- msgid "Your license key expires on %s."
1171
- msgstr ""
1172
-
1173
- #: includes/admin/settings/register-settings.php:1363
1174
- msgid "Deactivate License"
1175
- msgstr ""
1176
-
1177
- #: includes/admin/settings/register-settings.php:1427
1178
- msgid "Social Network"
1179
- msgstr ""
1180
-
1181
- #: includes/admin/settings/register-settings.php:1428
1182
- msgid "Status"
1183
- msgstr ""
1184
-
1185
- #: includes/admin/settings/register-settings.php:1429
1186
- msgid "Custom Label"
1187
- msgstr ""
1188
-
1189
- #: includes/admin/settings/register-settings.php:1497
1190
- msgid "Select Image"
1191
- msgstr ""
1192
-
1193
- #: includes/admin/settings/register-settings.php:1636
1194
- msgid "All Services"
1195
- msgstr ""
1196
-
1197
- #: includes/admin/settings/register-settings.php:1653
1198
- msgid ""
1199
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1200
- "after doing the job."
1201
- msgstr ""
1202
-
1203
- #: includes/admin/settings/register-settings.php:1666
1204
- msgid "Transient Cache disabled! Enable it for performance increase."
1205
- msgstr ""
1206
-
1207
- #: includes/admin/settings/register-settings.php:1679
1208
- msgid ""
1209
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1210
- "content/plugins/mashsharer/logs/"
1211
- msgstr ""
1212
-
1213
- #: includes/admin/settings/user-profiles.php:16
1214
- msgid "MashShare Social Media Integration"
1215
- msgstr ""
1216
-
1217
- #: includes/admin/settings/user-profiles.php:22
1218
- msgid "Your Twitter username (without the @ symbol)"
1219
- msgstr ""
1220
-
1221
- #: includes/admin/settings/user-profiles.php:24
1222
- msgid "Facebook Author URL"
1223
- msgstr ""
1224
-
1225
- #: includes/admin/settings/user-profiles.php:27
1226
- msgid "URL to your Facebok profile."
1227
- msgstr ""
1228
-
1229
- #: includes/admin/tools.php:68
1230
- msgid "Import/Export"
1231
- msgstr ""
1232
-
1233
- #: includes/admin/tools.php:69
1234
- msgid "System Info"
1235
- msgstr ""
1236
-
1237
- #: includes/admin/tools.php:91
1238
- msgid "Export Settings"
1239
- msgstr ""
1240
-
1241
- #: includes/admin/tools.php:93
1242
- msgid ""
1243
- "Export the Mashshare settings for this site as a .json file. This allows you "
1244
- "to easily import the configuration into another site."
1245
- msgstr ""
1246
-
1247
- #: includes/admin/tools.php:99
1248
- msgid "Export"
1249
- msgstr ""
1250
-
1251
- #: includes/admin/tools.php:106
1252
- msgid "Import Settings"
1253
- msgstr ""
1254
-
1255
- #: includes/admin/tools.php:108
1256
- msgid ""
1257
- "Import the Mashshare settings from a .json file. This file can be obtained "
1258
- "by exporting the settings on another site using the form above."
1259
- msgstr ""
1260
-
1261
- #: includes/admin/tools.php:116
1262
- msgid "Import"
1263
- msgstr ""
1264
-
1265
- #: includes/admin/tools.php:218
1266
- msgid "Please upload a valid .json file"
1267
- msgstr ""
1268
-
1269
- #: includes/admin/tools.php:224
1270
- msgid "Please upload a file to import"
1271
- msgstr ""
1272
-
1273
- #: includes/admin/tracking.php:266
1274
- msgid "Allow"
1275
- msgstr ""
1276
-
1277
- #: includes/admin/tracking.php:267
1278
- msgid "Do not allow"
1279
- msgstr ""
1280
-
1281
- #: includes/admin/welcome.php:51
1282
- msgid "Welcome to MashShare"
1283
- msgstr ""
1284
-
1285
- #: includes/admin/welcome.php:56
1286
- msgid "MashShare Changelog"
1287
- msgstr ""
1288
-
1289
- #: includes/admin/welcome.php:61
1290
- msgid "Quickstart"
1291
- msgstr ""
1292
-
1293
- #: includes/admin/welcome.php:66
1294
- msgid "The people that build MashShare"
1295
- msgstr ""
1296
-
1297
- #: includes/admin/welcome.php:128
1298
- msgid ""
1299
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1300
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1301
- "needs."
1302
- msgstr ""
1303
-
1304
- #: includes/admin/welcome.php:131
1305
- msgid "Create Your First Social Sharing Button"
1306
- msgstr ""
1307
-
1308
- #: includes/admin/welcome.php:137
1309
- msgid "Settings &rarr; Social Networks"
1310
- msgstr ""
1311
-
1312
- #: includes/admin/welcome.php:138
1313
- msgid ""
1314
- "The Social Network menu is your general access point for activating the "
1315
- "desired share buttons and for customizing the share button label"
1316
- msgstr ""
1317
-
1318
- #: includes/admin/welcome.php:139
1319
- msgid "Settings &rarr; Location & Position"
1320
- msgstr ""
1321
-
1322
- #: includes/admin/welcome.php:140
1323
- msgid ""
1324
- "Select the location and exact position of the share buttons within your "
1325
- "content"
1326
- msgstr ""
1327
-
1328
- #: includes/admin/welcome.php:141
1329
- msgid "You are done! Easy, isn't it?"
1330
- msgstr ""
1331
-
1332
- #: includes/admin/welcome.php:149
1333
- msgid "Display a Most Shared Post Widget"
1334
- msgstr ""
1335
-
1336
- #: includes/admin/welcome.php:155
1337
- msgid "Appearance &rarr; Widgets"
1338
- msgstr ""
1339
-
1340
- #: includes/admin/welcome.php:157
1341
- msgid ""
1342
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1343
- "br>into the desired widget location and save it"
1344
- msgstr ""
1345
-
1346
- #: includes/admin/welcome.php:165
1347
- msgid "Content Shortcodes"
1348
- msgstr ""
1349
-
1350
- #: includes/admin/welcome.php:172
1351
- msgid ""
1352
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1353
- "bold;\">[mashshare]</i>."
1354
- msgstr ""
1355
-
1356
- #: includes/admin/welcome.php:174
1357
- msgid ""
1358
- "Paste the shortcode in content of your posts or pages with the post editor "
1359
- "at the place you want the share buttons appear"
1360
- msgstr ""
1361
-
1362
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1363
- msgid ""
1364
- "There are various parameters you can use for the mashshare shortcode. Find a "
1365
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1366
- "\">here</a>"
1367
- msgstr ""
1368
-
1369
- #: includes/admin/welcome.php:182
1370
- msgid "PHP Template Shortcode"
1371
- msgstr ""
1372
-
1373
- #: includes/admin/welcome.php:188
1374
- msgid ""
1375
- "Add MashShare directly into your theme template files with using the PHP "
1376
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1377
- "&gt;</i>"
1378
- msgstr ""
1379
-
1380
- #: includes/admin/welcome.php:199
1381
- msgid "Need Help?"
1382
- msgstr ""
1383
-
1384
- #: includes/admin/welcome.php:202
1385
- msgid "Great Support"
1386
- msgstr ""
1387
-
1388
- #: includes/admin/welcome.php:203
1389
- msgid ""
1390
- "We do our best to provide the best support we can. If you encounter a "
1391
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1392
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1393
- msgstr ""
1394
-
1395
- #: includes/admin/welcome.php:227
1396
- msgid "Welcome to MashShare %s"
1397
- msgstr ""
1398
-
1399
- #: includes/admin/welcome.php:229
1400
- msgid ""
1401
- "Thank you for updating to the latest version! MashShare is installed and "
1402
- "ready to grow your traffic from social networks!"
1403
- msgstr ""
1404
-
1405
- #: includes/admin/welcome.php:252
1406
- msgid "1. Asyncronous Share Count Aggregation"
1407
- msgstr ""
1408
-
1409
- #: includes/admin/welcome.php:256
1410
- msgid ""
1411
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1412
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1413
- "will be aggregated only after page loading and never while page loads. This "
1414
- "is a huge performance update."
1415
- msgstr ""
1416
-
1417
- #: includes/admin/welcome.php:259
1418
- msgid "2. Open Graph and Twitter Card Integration"
1419
- msgstr ""
1420
-
1421
- #: includes/admin/welcome.php:260
1422
- msgid ""
1423
- "Use open graph and twitter card to specify the content you like to share. If "
1424
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1425
- "and extend it with custom data to get the maximum out of your valuable "
1426
- "content."
1427
- msgstr ""
1428
-
1429
- #: includes/admin/welcome.php:267
1430
- msgid "3. Responsive Buttons per default"
1431
- msgstr ""
1432
-
1433
- #: includes/admin/welcome.php:268
1434
- msgid ""
1435
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1436
- "buttons look great on mobile and desktop devices."
1437
- msgstr ""
1438
-
1439
- #: includes/admin/welcome.php:270
1440
- msgid "4. Share Count Dashboard"
1441
- msgstr ""
1442
-
1443
- #: includes/admin/welcome.php:271
1444
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1445
- msgstr ""
1446
-
1447
- #: includes/admin/welcome.php:275
1448
- msgid "5. A much cleaner user interface"
1449
- msgstr ""
1450
-
1451
- #: includes/admin/welcome.php:276
1452
- msgid ""
1453
- "We spent a lot of time to make useful first time settings and improved the "
1454
- "user interface for an easier experience."
1455
- msgstr ""
1456
-
1457
- #: includes/admin/welcome.php:284
1458
- msgid "Additional Updates"
1459
- msgstr ""
1460
-
1461
- #: includes/admin/welcome.php:287
1462
- msgid "Developer Friendly"
1463
- msgstr ""
1464
-
1465
- #: includes/admin/welcome.php:288
1466
- msgid ""
1467
- "Are you a theme developer and want to use MashShare as your build in share "
1468
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1469
- "instructions.</a>"
1470
- msgstr ""
1471
-
1472
- #: includes/admin/welcome.php:291
1473
- msgid "Check Open Graph Settings"
1474
- msgstr ""
1475
-
1476
- #: includes/admin/welcome.php:292
1477
- msgid ""
1478
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1479
- "data on your site is working as expected or conflicts with other open graph "
1480
- "data."
1481
- msgstr ""
1482
-
1483
- #: includes/admin/welcome.php:295
1484
- msgid "Use Yoast SEO Title"
1485
- msgstr ""
1486
-
1487
- #: includes/admin/welcome.php:296
1488
- msgid "MashShare will use the YOAST SEO title if it is defined."
1489
- msgstr ""
1490
-
1491
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1492
- msgid "Go to MashShare Settings"
1493
- msgstr ""
1494
-
1495
- #: includes/admin/welcome.php:303
1496
- msgid "View the Full Changelog"
1497
- msgstr ""
1498
-
1499
- #: includes/admin/welcome.php:326
1500
- msgid "What's New"
1501
- msgstr ""
1502
-
1503
- #: includes/admin/welcome.php:332
1504
- msgid "Credits"
1505
- msgstr ""
1506
-
1507
- #: includes/admin/welcome.php:353
1508
- msgid ""
1509
- "Mashshare is created by a René Hermenau and developers all over the world "
1510
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1511
- "WordPress."
1512
- msgstr ""
1513
-
1514
- #: includes/admin/welcome.php:356
1515
- msgid ""
1516
- " If you want to be credited here participate on the development and make "
1517
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1518
- msgstr ""
1519
-
1520
- #: includes/admin/welcome.php:381
1521
- msgid "View %s"
1522
- msgstr ""
1523
-
1524
- #: includes/admin/welcome.php:436
1525
- msgid "No valid changelog was found."
1526
- msgstr ""
1527
-
1528
- #: includes/admin/welcome.php:469
1529
- msgid "Full Changelog"
1530
- msgstr ""
1531
-
1532
- #: includes/class-mashsb-html-elements.php:43
1533
- msgctxt "all dropdown items"
1534
- msgid "All"
1535
- msgstr ""
1536
-
1537
- #: includes/class-mashsb-html-elements.php:44
1538
- msgctxt "no dropdown items"
1539
- msgid "None"
1540
- msgstr ""
1541
-
1542
- #: includes/class-mashsb-html-elements.php:232
1543
- msgid "Enter username"
1544
- msgstr ""
1545
-
1546
- #: includes/class-mashsb-license-handler.php:177
1547
- msgid "%1$s License Key"
1548
- msgstr ""
1549
-
1550
- #: includes/class-mashsb-license-handler.php:210
1551
- msgid ""
1552
- "Enter your extension license keys here to receive updates for purchased "
1553
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1554
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1555
- msgstr ""
1556
-
1557
- #: includes/class-mashsb-license-handler.php:319
1558
- msgid "Nonce verification failed"
1559
- msgstr ""
1560
-
1561
- #: includes/class-mashsb-license-handler.php:436
1562
- msgid ""
1563
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1564
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1565
- "issue."
1566
- msgstr ""
1567
-
1568
- #: includes/class-mashsb-license-handler.php:475
1569
- msgid "Enter valid license key for automatic updates."
1570
- msgstr ""
1571
-
1572
- #: includes/class-mashsb-shared-posts-widget.php:13
1573
- msgid "Mashshare - Most Shared Posts"
1574
- msgstr ""
1575
-
1576
- #: includes/class-mashsb-shared-posts-widget.php:37
1577
- msgid "Widget Title"
1578
- msgstr ""
1579
-
1580
- #: includes/class-mashsb-shared-posts-widget.php:42
1581
- msgid "How many posts to display?"
1582
- msgstr ""
1583
-
1584
- #: includes/class-mashsb-shared-posts-widget.php:46
1585
- msgid "Show Shares? Say \"No\" when using fake shares!"
1586
- msgstr ""
1587
-
1588
- #: includes/class-mashsb-shared-posts-widget.php:61
1589
- msgid "Show shares below post title"
1590
- msgstr ""
1591
-
1592
- #: includes/class-mashsb-shared-posts-widget.php:68
1593
- msgid "Time period and age of posts"
1594
- msgstr ""
1595
-
1596
- #: includes/template-functions.php:249
1597
- msgid "Subscribe"
1598
- msgstr ""
1599
-
1600
- #: includes/template-functions.php:517
1601
- msgid "SHARES"
1602
- msgstr ""
1603
-
1604
- #: includes/template-functions.php:1114
1605
- msgid "Page not found"
1606
- msgstr ""
1607
-
1608
- #. translators: %s: search phrase
1609
- #: includes/template-functions.php:1119
1610
- msgid "Search Results for &#8220;%s&#8221;"
1611
- msgstr ""
1612
-
1613
- #: includes/template-functions.php:1152
1614
- msgctxt "yearly archives date format"
1615
- msgid "Y"
1616
- msgstr ""
1617
-
1618
- #: includes/template-functions.php:1154
1619
- msgctxt "monthly archives date format"
1620
- msgid "F Y"
1621
- msgstr ""
1622
-
1623
- #: mashshare.php:124 mashshare.php:136
1624
- msgid "Cheatin&#8217; huh?"
1625
- msgstr ""
1626
-
1627
- #: templates/sidebar.php:17
1628
- msgid "Increase your Shares and Social Traffic"
1629
- msgstr ""
1630
-
1631
- #: templates/sidebar.php:20
1632
- msgid "Get 20% Off!"
1633
- msgstr ""
1634
-
1635
- #: templates/sidebar.php:25
1636
- msgid ""
1637
- "Submit your name and email and we'll send you a coupon for 20% off your "
1638
- "upgrade to the pro version."
1639
- msgstr ""
1640
-
1641
- #: templates/sidebar.php:29
1642
- msgid "Your Email"
1643
- msgstr ""
1644
-
1645
- #: templates/sidebar.php:33
1646
- msgid "First Name"
1647
- msgstr ""
1648
-
1649
- #: templates/sidebar.php:37
1650
- msgid "Last Name"
1651
- msgstr ""
1652
-
1653
- #: templates/sidebar.php:44
1654
- msgid "Send me the coupon"
1655
- msgstr ""
1656
-
1657
- #: templates/sidebar.php:48
1658
- msgid ""
1659
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1660
- "click anytime."
1661
- msgstr ""
1662
-
1663
- #. Plugin Name of the plugin/theme
1664
- msgid "Mashshare Share Buttons"
1665
- msgstr ""
1666
-
1667
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1668
- #. Plugin URI of the plugin/theme
1669
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1670
- #. Author URI of the plugin/theme
1671
- msgid "https://www.mashshare.net"
1672
- msgstr ""
1673
-
1674
- #. Description of the plugin/theme
1675
- msgid ""
1676
- "Mashshare is a Share functionality inspired by the the great website "
1677
- "Mashable for Facebook and Twitter. More networks available."
1678
- msgstr ""
1679
-
1680
- #. Author of the plugin/theme
1681
- msgid "René Hermenau"
1682
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mashsb-tr_TR.mo DELETED
Binary file
languages/mashsb-tr_TR.po DELETED
@@ -1,1688 +0,0 @@
1
- # Copyright (C) 2016 Mashshare Share Buttons
2
- # This file is distributed under the same license as the Mashshare Share Buttons package.
3
- # Translators:
4
- # Rene Hermenau <info@mashshare.net>, 2014,2016
5
- # Talha Polat <talha-polat@hotmail.com>, 2014
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Mashshare\n"
9
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mashsharer\n"
10
- "POT-Creation-Date: 2016-06-23 15:40:58+00:00\n"
11
- "PO-Revision-Date: 2016-06-23 18:09+0100\n"
12
- "Last-Translator: Rene Hermenau <info@mashshare.net>\n"
13
- "Language-Team: Turkish (Turkey) (http://www.transifex.com/renehermenau/"
14
- "mashshare/language/tr_TR/)\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Language: tr_TR\n"
19
- "Plural-Forms: nplurals=1; plural=0;\n"
20
- "X-Generator: Poedit 1.5.6\n"
21
-
22
- msgid ""
23
- "Social Media Share Buttons for Twitter, Facebook and other social networks. "
24
- "Highly customizable Social Media ecosystem"
25
- msgstr ""
26
- "Twitter, Facebook ve diğer sosyal medya ağları için sosyal medya paylaşım "
27
- "tuşları. Gelişmiş, özelleştirilebilinir sosyal medya ekosistemi."
28
-
29
- #: includes/MASHSB_SL_Plugin_Updater.php:177
30
- msgid ""
31
- "There is a new version of %1$s available. <a target=\"_blank\" class="
32
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
33
- msgstr ""
34
-
35
- #: includes/MASHSB_SL_Plugin_Updater.php:184
36
- msgid ""
37
- "There is a new version of %1$s available. <a target=\"_blank\" class="
38
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
39
- "\">update now</a>."
40
- msgstr ""
41
-
42
- #: includes/MASHSB_SL_Plugin_Updater.php:324
43
- msgid "You do not have permission to install plugin updates"
44
- msgstr ""
45
-
46
- #: includes/MASHSB_SL_Plugin_Updater.php:324
47
- #: includes/class-mashsb-license-handler.php:319
48
- msgid "Error"
49
- msgstr ""
50
-
51
- #: includes/admin/add-ons.php:27
52
- msgid "Add Ons for Mashshare"
53
- msgstr "Mashshare Uyumlu Eklentiler"
54
-
55
- #: includes/admin/add-ons.php:28
56
- msgid "Visit Website"
57
- msgstr "Websitesini Ziyaret Et"
58
-
59
- #: includes/admin/add-ons.php:28
60
- msgid "See Details"
61
- msgstr "Detaylar"
62
-
63
- #: includes/admin/add-ons.php:30
64
- msgid "These add-ons extend the functionality of Mashshare."
65
- msgstr "Bu eklentiler Mashshare'nin işlevselliğini genişletir."
66
-
67
- #: includes/admin/add-ons.php:54
68
- msgid ""
69
- "There was an error retrieving the Mashshare addon list from the server. "
70
- "Please try again later."
71
- msgstr ""
72
- "Sunucudan Mashshare eklenti listesi alınırken bir hata oluştu. Lütfen daha "
73
- "sonra tekrar deneyin."
74
-
75
- #: includes/admin/admin-footer.php:24
76
- msgid ""
77
- "Thank you for using <a href=\"%1$s\" target=\"_blank\">Mashshare</a>! Please "
78
- "<a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" target="
79
- "\"_blank\">WordPress.org</a> and help to support this project.<br>Something "
80
- "not working as expected or need help? Read our <a href=\"%3$s\" target="
81
- "\"blank\">Documentation</a>"
82
- msgstr ""
83
-
84
- #: includes/admin/admin-notices.php:51
85
- msgid ""
86
- "MashShare needs the PHP extension cURL which is not installed on your "
87
- "server. Please <a href=\"%s\" target=\"_blank\">install and activate</a> it "
88
- "to be able to collect share count of your posts."
89
- msgstr ""
90
-
91
- #: includes/admin/admin-notices.php:58
92
- msgid ""
93
- "No Social Networks enabled. Go to <a href=\"%s\"> Mashshare->Settings-"
94
- ">Social Networks</a> and enable at least one Social Network."
95
- msgstr ""
96
-
97
- #: includes/admin/admin-notices.php:64
98
- msgid ""
99
- "Your Sharebar Add-On version is not using new short url mechanism of "
100
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Sharebar "
101
- "Add-On</a> to at least version 1.2.5. if you want to make sure that twitter "
102
- "short urls will not stop working in one of the next updates. This requires a "
103
- "valid license of the Sharebar Add-On"
104
- msgstr ""
105
-
106
- #: includes/admin/admin-notices.php:70
107
- msgid ""
108
- "Your Floating Sidebar Add-On version is not using new short url mechanism of "
109
- "MashShare 3.X. Please <a href=\"%s\" target=\"blank\"> update the Floating "
110
- "Sidebar Add-On</a> to at least version 1.2.6. if you want to make sure that "
111
- "twitter short urls will not stop working in one of the next updates. This "
112
- "requires a valid license of the Floating Sidebar Add-On"
113
- msgstr ""
114
-
115
- #: includes/admin/admin-notices.php:76
116
- msgid ""
117
- "Google API key is invalid. Go to <a href=\"%s\"><i>Mashshare->Settings-"
118
- ">Short URL Integration</i></a> and check the Google API key."
119
- msgstr ""
120
-
121
- #: includes/admin/admin-notices.php:82
122
- msgid ""
123
- "Bitly Access Token is invalid or bitly.com endpoint can not be reached. Go "
124
- "to <a href=\"%s\"><i>Mashshare->Settings->Short URL Integration</i></a> and "
125
- "check the Bitly API key."
126
- msgstr ""
127
-
128
- #: includes/admin/admin-notices.php:88
129
- msgid ""
130
- "<strong>Important:</strong> Deactivate the MashShare Open Graph Add-On. It "
131
- "is not longer needed and having it activated leads to duplicate open graph "
132
- "tags on your site. Go to <a href=\"%s\"> Plugin Settings</a> "
133
- msgstr ""
134
-
135
- #: includes/admin/admin-notices.php:94
136
- msgid ""
137
- "<strong>Important:</strong> Deactivate the MashShare Shorturls Add-On. It is "
138
- "not longer needed and already built in MashShare. Deactivate it from <a href="
139
- "\"%s\"> Plugin Settings</a> "
140
- msgstr ""
141
-
142
- #: includes/admin/admin-notices.php:100
143
- msgid ""
144
- "<strong>No Share Count aggregation possible!</strong> <a href=\"%s"
145
- "\">Permalinks</a> must be enabled to count shares. Share count is "
146
- "deactivated until you have fixed this."
147
- msgstr ""
148
-
149
- #: includes/admin/admin-notices.php:258
150
- msgid ""
151
- "There seems to be an issue with the server. Please try again in a few "
152
- "minutes."
153
- msgstr ""
154
- "Görünen o ki sunucu ile alakalı bir sorun var. Lütfen birkaç dakika "
155
- "içerisinde tekrar deneyiniz."
156
-
157
- #: includes/admin/admin-pages.php:31
158
- msgid "MashShare"
159
- msgstr ""
160
-
161
- #: includes/admin/admin-pages.php:32
162
- msgid "MashShare Settings"
163
- msgstr ""
164
-
165
- #: includes/admin/admin-pages.php:32
166
- #: includes/admin/settings/register-settings.php:744
167
- msgid "Settings"
168
- msgstr "Ayarlar"
169
-
170
- #: includes/admin/admin-pages.php:33
171
- msgid "MashShare Add Ons"
172
- msgstr ""
173
-
174
- #: includes/admin/admin-pages.php:33
175
- msgid "Get Add Ons"
176
- msgstr ""
177
-
178
- #: includes/admin/admin-pages.php:34
179
- msgid "MashShare Tools"
180
- msgstr ""
181
-
182
- #: includes/admin/admin-pages.php:34
183
- msgid "Im/Export & System"
184
- msgstr ""
185
-
186
- #: includes/admin/meta-box/inc/core.php:40
187
- msgid "Documentation"
188
- msgstr ""
189
-
190
- #: includes/admin/meta-box/inc/core.php:41
191
- msgid "Extensions"
192
- msgstr ""
193
-
194
- #: includes/admin/meta-box/inc/field.php:196
195
- msgid "+ Add more"
196
- msgstr ""
197
-
198
- #: includes/admin/meta-box/inc/fields/autocomplete.php:14
199
- #: includes/admin/meta-box/inc/fields/autocomplete.php:77
200
- #: includes/admin/meta-box/inc/fields/autocomplete.php:94
201
- msgid "Delete"
202
- msgstr ""
203
-
204
- #: includes/admin/meta-box/inc/fields/button.php:29
205
- msgid "Click me"
206
- msgstr ""
207
-
208
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
209
- msgid "Yes"
210
- msgstr ""
211
-
212
- #: includes/admin/meta-box/inc/fields/checkbox.php:85
213
- msgid "No"
214
- msgstr ""
215
-
216
- #: includes/admin/meta-box/inc/fields/file-input.php:18
217
- msgid "Select File"
218
- msgstr ""
219
-
220
- #: includes/admin/meta-box/inc/fields/file-input.php:41
221
- #: includes/admin/meta-box/inc/fields/select.php:91
222
- msgid "Select"
223
- msgstr ""
224
-
225
- #: includes/admin/meta-box/inc/fields/file-input.php:43
226
- msgid "Remove"
227
- msgstr ""
228
-
229
- #: includes/admin/meta-box/inc/fields/file.php:15
230
- msgid "You may only upload maximum %d file"
231
- msgstr ""
232
-
233
- #: includes/admin/meta-box/inc/fields/file.php:16
234
- msgid "You may only upload maximum %d files"
235
- msgstr ""
236
-
237
- #: includes/admin/meta-box/inc/fields/file.php:83
238
- msgid "Error: Cannot delete file"
239
- msgstr ""
240
-
241
- #: includes/admin/meta-box/inc/fields/file.php:96
242
- msgctxt "file upload"
243
- msgid "Upload Files"
244
- msgstr ""
245
-
246
- #: includes/admin/meta-box/inc/fields/file.php:97
247
- msgctxt "file upload"
248
- msgid "+ Add new file"
249
- msgstr ""
250
-
251
- #: includes/admin/meta-box/inc/fields/file.php:153
252
- msgctxt "file upload"
253
- msgid "Delete"
254
- msgstr ""
255
-
256
- #: includes/admin/meta-box/inc/fields/file.php:154
257
- msgctxt "file upload"
258
- msgid "Edit"
259
- msgstr ""
260
-
261
- #: includes/admin/meta-box/inc/fields/image.php:61
262
- #: includes/admin/meta-box/inc/fields/thickbox-image.php:53
263
- msgctxt "image upload"
264
- msgid "Upload Images"
265
- msgstr ""
266
-
267
- #: includes/admin/meta-box/inc/fields/image.php:62
268
- msgctxt "image upload"
269
- msgid "+ Add new image"
270
- msgstr ""
271
-
272
- #: includes/admin/meta-box/inc/fields/image.php:124
273
- msgctxt "image upload"
274
- msgid "Delete"
275
- msgstr ""
276
-
277
- #: includes/admin/meta-box/inc/fields/image.php:125
278
- msgctxt "image upload"
279
- msgid "Edit"
280
- msgstr ""
281
-
282
- #: includes/admin/meta-box/inc/fields/key-value.php:19
283
- msgid "Key"
284
- msgstr ""
285
-
286
- #: includes/admin/meta-box/inc/fields/key-value.php:25
287
- msgid "Value"
288
- msgstr ""
289
-
290
- #: includes/admin/meta-box/inc/fields/map.php:49
291
- msgid "Find Address"
292
- msgstr ""
293
-
294
- #: includes/admin/meta-box/inc/fields/media.php:18
295
- msgctxt "media"
296
- msgid "Add Image"
297
- msgstr ""
298
-
299
- #: includes/admin/meta-box/inc/fields/media.php:19
300
- msgctxt "media"
301
- msgid " file"
302
- msgstr ""
303
-
304
- #: includes/admin/meta-box/inc/fields/media.php:20
305
- msgctxt "media"
306
- msgid " files"
307
- msgstr ""
308
-
309
- #: includes/admin/meta-box/inc/fields/media.php:21
310
- msgctxt "media"
311
- msgid "Remove"
312
- msgstr ""
313
-
314
- #: includes/admin/meta-box/inc/fields/media.php:22
315
- msgctxt "media"
316
- msgid "Edit"
317
- msgstr ""
318
-
319
- #: includes/admin/meta-box/inc/fields/media.php:23
320
- msgctxt "media"
321
- msgid "View"
322
- msgstr ""
323
-
324
- #: includes/admin/meta-box/inc/fields/media.php:24
325
- msgctxt "media"
326
- msgid "No Title"
327
- msgstr ""
328
-
329
- #: includes/admin/meta-box/inc/fields/media.php:27
330
- msgctxt "media"
331
- msgid "Select Files"
332
- msgstr ""
333
-
334
- #: includes/admin/meta-box/inc/fields/media.php:28
335
- msgctxt "media"
336
- msgid "Drop files here to upload"
337
- msgstr ""
338
-
339
- #: includes/admin/meta-box/inc/fields/oembed.php:65
340
- msgid "Embed HTML not available."
341
- msgstr ""
342
-
343
- #: includes/admin/meta-box/inc/fields/oembed.php:84
344
- msgid "Preview"
345
- msgstr ""
346
-
347
- #: includes/admin/meta-box/inc/fields/post.php:34
348
- msgid "Select a post"
349
- msgstr ""
350
-
351
- #: includes/admin/meta-box/inc/fields/post.php:38
352
- #: includes/admin/meta-box/inc/fields/taxonomy.php:51
353
- msgid "Select a %s"
354
- msgstr ""
355
-
356
- #: includes/admin/meta-box/inc/fields/select.php:91
357
- msgid "All"
358
- msgstr ""
359
-
360
- #: includes/admin/meta-box/inc/fields/select.php:91
361
- msgid "None"
362
- msgstr ""
363
-
364
- #: includes/admin/meta-box/inc/fields/taxonomy.php:47
365
- msgid "Select a term"
366
- msgstr ""
367
-
368
- #: includes/admin/meta-box/inc/fields/user.php:34
369
- msgid "Select an user"
370
- msgstr ""
371
-
372
- #: includes/admin/meta-box/inc/validation.php:42
373
- msgid "Please correct the errors highlighted below and try again."
374
- msgstr ""
375
-
376
- #: includes/admin/plugins.php:27
377
- msgid "General Settings"
378
- msgstr "Genel Ayarlar"
379
-
380
- #: includes/admin/plugins.php:50 includes/admin/welcome.php:329
381
- msgid "Getting Started"
382
- msgstr "Başlangıç"
383
-
384
- #: includes/admin/plugins.php:51
385
- msgid "Add Ons"
386
- msgstr "Eklentiler"
387
-
388
- #: includes/admin/settings/contextual-help.php:29
389
- msgid "For more information:"
390
- msgstr "Daha fazla bilgi için:"
391
-
392
- #: includes/admin/settings/contextual-help.php:30
393
- msgid "Visit the <a href=\"%s\">documentation</a> on the Mashshare website."
394
- msgstr ""
395
-
396
- #: includes/admin/settings/contextual-help.php:32
397
- msgid ""
398
- "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">Mashshare</a>. View <a "
399
- "href=\"%s\">extensions</a>."
400
- msgstr ""
401
-
402
- #: includes/admin/settings/contextual-help.php:41
403
- msgid "General"
404
- msgstr "Genel"
405
-
406
- #: includes/admin/settings/contextual-help.php:42
407
- msgid "This screen provides the most basic settings for configuring Mashshare."
408
- msgstr "Bu ekran Mashshare'yi konfigüre etmek için en temel ayarları içerir."
409
-
410
- #: includes/admin/settings/display-settings.php:133
411
- msgid "MashShare "
412
- msgstr ""
413
-
414
- #: includes/admin/settings/metabox-settings.php:102
415
- msgid "Social Media Image"
416
- msgstr ""
417
-
418
- #: includes/admin/settings/metabox-settings.php:103
419
- msgid ""
420
- "Optimal size for post shared images on Facebook, Google+ and LinkedIn is "
421
- "1200px x 630px. Aspect ratio 1.9:1"
422
- msgstr ""
423
-
424
- #: includes/admin/settings/metabox-settings.php:112
425
- msgid "Social Media Title"
426
- msgstr ""
427
-
428
- #: includes/admin/settings/metabox-settings.php:113
429
- msgid ""
430
- "This title is used by the open graph meta tag og:title and will be used when "
431
- "users share your content on Facebook, LinkedIn, or Google+. Leave this blank "
432
- "to use "
433
- msgstr ""
434
-
435
- #: includes/admin/settings/metabox-settings.php:113
436
- msgid "Yoast Facebook / SEO title"
437
- msgstr ""
438
-
439
- #: includes/admin/settings/metabox-settings.php:121
440
- msgid "Social Media Description"
441
- msgstr ""
442
-
443
- #: includes/admin/settings/metabox-settings.php:122
444
- msgid ""
445
- "This description is used by the open graph meta tag og:description and will "
446
- "be used when users share your content on Facebook, LinkedIn, and Google "
447
- "Plus. Leave this blank to use "
448
- msgstr ""
449
-
450
- #: includes/admin/settings/metabox-settings.php:122
451
- msgid "Yoast Facebook open graph description or the post excerpt."
452
- msgstr ""
453
-
454
- #: includes/admin/settings/metabox-settings.php:135
455
- msgid "Pinterest Image"
456
- msgstr ""
457
-
458
- #: includes/admin/settings/metabox-settings.php:135
459
- #: includes/admin/settings/metabox-settings.php:145
460
- msgid ""
461
- "Get the <a href=\"%s\" target=\"_blank\">Network Add-On</a> to make use of "
462
- "the Pinterest Features"
463
- msgstr ""
464
-
465
- #: includes/admin/settings/metabox-settings.php:136
466
- msgid ""
467
- "Pinned images need to be more vertical than horizontal in orientation. Use "
468
- "an aspect ratio of 2:3 to 1:3.5 and a minimum width of 600 pixels. So an "
469
- "image that is 600 pixels wide should be between 900 and 2100 pixels tall."
470
- msgstr ""
471
-
472
- #: includes/admin/settings/metabox-settings.php:145
473
- msgid "Pinterest Description"
474
- msgstr ""
475
-
476
- #: includes/admin/settings/metabox-settings.php:146
477
- msgid ""
478
- "Place a customized message that will be used when this post is shared on "
479
- "Pinterest. Leave this blank to use the "
480
- msgstr ""
481
-
482
- #: includes/admin/settings/metabox-settings.php:146
483
- msgid "Yoast SEO title"
484
- msgstr ""
485
-
486
- #: includes/admin/settings/metabox-settings.php:146
487
- msgid "the post title"
488
- msgstr ""
489
-
490
- #: includes/admin/settings/metabox-settings.php:154
491
- msgid "Custom Tweet"
492
- msgstr ""
493
-
494
- #: includes/admin/settings/metabox-settings.php:176
495
- msgid ""
496
- "Publish the post and validate if the open graph meta tags on your site are "
497
- "correct! Incorrect data can result in wrong share description, title or "
498
- "images and should be fixed! In the facebook debugger click the link \"Fetch "
499
- "new scrape information\" to purge the facebook cache."
500
- msgstr ""
501
-
502
- #: includes/admin/settings/metabox-settings.php:206
503
- msgid "Based on your username @"
504
- msgstr ""
505
-
506
- #: includes/admin/settings/metabox-settings.php:206
507
- msgid " ,the shortened post url and the current content above"
508
- msgstr ""
509
-
510
- #: includes/admin/settings/metabox-settings.php:208
511
- msgid "Based on the shortened post url and the current content above"
512
- msgstr ""
513
-
514
- #: includes/admin/settings/metabox-settings.php:210
515
- msgid " your tweet has a maximum of 140 characters. "
516
- msgstr ""
517
-
518
- #: includes/admin/settings/metabox-settings.php:212
519
- msgid "If this is left blank the post title will be used. "
520
- msgstr ""
521
-
522
- #: includes/admin/settings/metabox-settings.php:214
523
- msgid ""
524
- "If this is left blank the Yoast Twitter Title or post title will be used. "
525
- msgstr ""
526
-
527
- #: includes/admin/settings/register-settings.php:120
528
- msgid "General settings"
529
- msgstr "Genel ayarlar"
530
-
531
- #: includes/admin/settings/register-settings.php:126
532
- msgid "Share counts"
533
- msgstr ""
534
-
535
- #: includes/admin/settings/register-settings.php:127
536
- msgid ""
537
- "<i>MashEngine</i> collects shares by direct request to social networks. "
538
- "<br><br><i>Sharedcount.com</i> needs an API key and is limited (No twitter "
539
- "shares) <p></p>Shares are collected for Facebook, Twitter, LinkedIn, Google"
540
- "+, Pinterest, Stumbleupon, Buffer, VK. <p></p>Twitter count is aggreagated "
541
- "via <a href=\"http://newsharecounts.com\" target=\"_blank\" rel=\"external "
542
- "nofollow\">newsharecounts.com</a>. Sign up with your Twitter account for "
543
- "this free service to get the twitter share count. Visit the newsharecount "
544
- "site, fill in your website domain and click on <i>Sign in with Twitter</i>. "
545
- "Thats it!"
546
- msgstr ""
547
-
548
- #: includes/admin/settings/register-settings.php:136
549
- msgid "Sharedcount.com API Key"
550
- msgstr ""
551
-
552
- #: includes/admin/settings/register-settings.php:137
553
- msgid ""
554
- "Get it at <a href=\"https://www.sharedcount.com\" target=\"_blank"
555
- "\">SharedCount.com</a> for 10.000 free daily requests."
556
- msgstr ""
557
-
558
- #: includes/admin/settings/register-settings.php:143
559
- msgid "Sharedcount.com endpint"
560
- msgstr ""
561
-
562
- #: includes/admin/settings/register-settings.php:144
563
- msgid ""
564
- "The SharedCount Domain your API key is configured to query. For example, "
565
- "free.sharedcount.com. This may update automatically if configured "
566
- "incorrectly."
567
- msgstr ""
568
-
569
- #: includes/admin/settings/register-settings.php:151
570
- msgid "Caching Method"
571
- msgstr ""
572
-
573
- #: includes/admin/settings/register-settings.php:152
574
- msgid ""
575
- "The <i>Async Cache Refresh</i> method never adds additonal load time for a "
576
- "visitor and refreshes the cache asyncronously in the background. New posts "
577
- "are updated at each hour. Older posts are updated from 4 hours to 12 hours "
578
- "for very old ones. <br><br> <i>Refresh while loading</i> rebuilds expired "
579
- "cache while page is loading and adds a little extra time during inital page "
580
- "load. <br><br><strong>If shares are not updating</strong> or site is heavy "
581
- "cached try <i>Refresh while loading!</i> That's the default method MashShare "
582
- "was using before version 3.0"
583
- msgstr ""
584
-
585
- #: includes/admin/settings/register-settings.php:161
586
- msgid "Cache expiration"
587
- msgstr ""
588
-
589
- #: includes/admin/settings/register-settings.php:162
590
- msgid ""
591
- "Shares are counted for posts after a certain time and counts are not updated "
592
- "immediately. Sharedcount.com uses his own cache (30 - 60min). "
593
- "<p><strong>Default: </strong>5 min. <strong>Recommended: </strong>30min and "
594
- "more"
595
- msgstr ""
596
-
597
- #: includes/admin/settings/register-settings.php:168
598
- msgid "Facebook Count"
599
- msgstr ""
600
-
601
- #: includes/admin/settings/register-settings.php:169
602
- msgid ""
603
- "Get the Facebook total count including \"likes\" and \"shares\" or get only "
604
- "the pure share count"
605
- msgstr ""
606
-
607
- #: includes/admin/settings/register-settings.php:179
608
- msgid "Fake Share counts"
609
- msgstr ""
610
-
611
- #: includes/admin/settings/register-settings.php:180
612
- msgid ""
613
- "This number will be aggregated to all your share counts and is multiplied "
614
- "with a post specific factor. (Number of post title words divided with 10)."
615
- msgstr ""
616
-
617
- #: includes/admin/settings/register-settings.php:186
618
- msgid "Disable Sharecount"
619
- msgstr "Sharecount'u Pasifleştir"
620
-
621
- #: includes/admin/settings/register-settings.php:187
622
- msgid ""
623
- "Use this when curl() is not supported on your server or share counts should "
624
- "not counted. This mode does not call the database and no SQL queries are "
625
- "generated. (Only less performance benefit. All db requests are cached) "
626
- "Default: false"
627
- msgstr ""
628
-
629
- #: includes/admin/settings/register-settings.php:192
630
- msgid "Hide Sharecount"
631
- msgstr ""
632
-
633
- #: includes/admin/settings/register-settings.php:193
634
- msgid ""
635
- "<strong>Optional:</strong> If you fill in any number here, the shares for a "
636
- "specific post are not shown until the share count of this number is reached."
637
- msgstr ""
638
-
639
- #: includes/admin/settings/register-settings.php:199
640
- msgid "Execution Order"
641
- msgstr ""
642
-
643
- #: includes/admin/settings/register-settings.php:200
644
- msgid ""
645
- "If you use other content plugins you can define here the execution order. "
646
- "Lower numbers mean earlier execution. E.g. Say \"0\" and Mashshare is "
647
- "executed before any other plugin (When the other plugin is not overwriting "
648
- "our execution order). Default is \"1000\""
649
- msgstr ""
650
-
651
- #: includes/admin/settings/register-settings.php:207
652
- msgid "JavaScript in Footer"
653
- msgstr ""
654
-
655
- #: includes/admin/settings/register-settings.php:208
656
- msgid ""
657
- "Enable this to load all *.js files into footer. Make sure your theme uses "
658
- "the wp_footer() template tag in the appropriate place. Default: Disabled"
659
- msgstr ""
660
-
661
- #: includes/admin/settings/register-settings.php:213
662
- msgid "JS & CSS Everywhere"
663
- msgstr ""
664
-
665
- #: includes/admin/settings/register-settings.php:214
666
- msgid ""
667
- "Enable this option if you are using </br> <strong>&lt;?php echo do_shortcode"
668
- "(\"[mashshare]\"); ?&gt;</strong> to make sure that all css and js files are "
669
- "loaded. If Top or Bottom automatic position is used you can deactivate this "
670
- "option to allow conditional loading so MashShare's JS and CSS files are "
671
- "loaded only on pages where MashShare is used."
672
- msgstr ""
673
-
674
- #: includes/admin/settings/register-settings.php:220
675
- msgid "Twitter Popup disabled"
676
- msgstr ""
677
-
678
- #: includes/admin/settings/register-settings.php:221
679
- msgid ""
680
- "Check this box if your twitter popup is openening twice. This happens "
681
- "sometimes when you are using any third party twitter plugin or the twitter "
682
- "SDK on your website."
683
- msgstr ""
684
-
685
- #: includes/admin/settings/register-settings.php:227
686
- msgid "Remove Data on Uninstall?"
687
- msgstr "Eklenti silindiğinde kayıtlı bilgileri de kaldır?"
688
-
689
- #: includes/admin/settings/register-settings.php:228
690
- msgid ""
691
- "Check this box if you would like Mashshare to completely remove all of its "
692
- "data when the plugin is deleted."
693
- msgstr ""
694
-
695
- #: includes/admin/settings/register-settings.php:233
696
- msgid "Allow Usage Tracking"
697
- msgstr ""
698
-
699
- #: includes/admin/settings/register-settings.php:234
700
- #: includes/admin/tracking.php:265
701
- msgid ""
702
- "Allow Mashshare to track plugin usage? Opt-in to tracking and our newsletter "
703
- "and immediately be emailed a <strong>20%% discount to the Mashshare shop</"
704
- "strong>, valid towards the <a href=\"%s\" target=\"_blank\">purchase of Add-"
705
- "Ons</a>. No sensitive data is tracked."
706
- msgstr ""
707
-
708
- #: includes/admin/settings/register-settings.php:239
709
- msgid "User Roles Options Visibility"
710
- msgstr ""
711
-
712
- #: includes/admin/settings/register-settings.php:240
713
- msgid ""
714
- "Select user roles which can see page and post MashShare Social Sharing Meta "
715
- "Box Options"
716
- msgstr ""
717
-
718
- #: includes/admin/settings/register-settings.php:243
719
- msgid "Select User Roles"
720
- msgstr ""
721
-
722
- #: includes/admin/settings/register-settings.php:244
723
- msgid "All Roles"
724
- msgstr ""
725
-
726
- #: includes/admin/settings/register-settings.php:248
727
- #: includes/admin/settings/register-settings.php:294
728
- #: includes/admin/settings/register-settings.php:751
729
- msgid "Social Networks"
730
- msgstr ""
731
-
732
- #: includes/admin/settings/register-settings.php:254
733
- msgid "Facebook page url"
734
- msgstr ""
735
-
736
- #: includes/admin/settings/register-settings.php:255
737
- msgid "Optional: The url of the main facebook account connected with this site"
738
- msgstr ""
739
-
740
- #: includes/admin/settings/register-settings.php:261
741
- msgid "Facebook App ID"
742
- msgstr ""
743
-
744
- #: includes/admin/settings/register-settings.php:262
745
- msgid ""
746
- "Optional but recommended. <a href=\"%s\" target=\"_blank\">Create an App ID</"
747
- "a>"
748
- msgstr ""
749
-
750
- #: includes/admin/settings/register-settings.php:268
751
- #: includes/admin/settings/user-profiles.php:19
752
- msgid "Twitter Username"
753
- msgstr ""
754
-
755
- #: includes/admin/settings/register-settings.php:269
756
- msgid ""
757
- "<strong>Optional:</strong> Using your twitter username results in via "
758
- "@username"
759
- msgstr ""
760
-
761
- #: includes/admin/settings/register-settings.php:275
762
- msgid "Twitter Card"
763
- msgstr ""
764
-
765
- #: includes/admin/settings/register-settings.php:276
766
- msgid ""
767
- "Enable Twitter card meta tags. If you are using the Yoast SEO or Jetpack "
768
- "plugin their meta tags will be removed and MashShare will use existing meta "
769
- "data from these plugins. Default: On"
770
- msgstr ""
771
-
772
- #: includes/admin/settings/register-settings.php:281
773
- msgid "Open Graph Meta Tags"
774
- msgstr ""
775
-
776
- #: includes/admin/settings/register-settings.php:282
777
- msgid ""
778
- "Enable MashShare Open Graph meta tags. If you are using the Yoast SEO or "
779
- "Jetpack plugin their meta tags will be removed and MashShare will use "
780
- "existing meta data from these plugins."
781
- msgstr ""
782
-
783
- #: includes/admin/settings/register-settings.php:287
784
- msgid "Large Buttons"
785
- msgstr ""
786
-
787
- #: includes/admin/settings/register-settings.php:288
788
- msgid ""
789
- "Specify how many services and social networks are visible before the \"Plus"
790
- "\" Button is shown. This buttons turn into large prominent buttons."
791
- msgstr ""
792
-
793
- #: includes/admin/settings/register-settings.php:295
794
- msgid ""
795
- "Drag and drop the Social Networks Buttons to sort them and enable the ones "
796
- "that should be visible. <br>Activate more networks than number of \"Large "
797
- "Share Buttons\" and the [+] PLUS button<br> will be added automatically."
798
- msgstr ""
799
-
800
- #: includes/admin/settings/register-settings.php:321
801
- msgid "Short URL Integration"
802
- msgstr ""
803
-
804
- #: includes/admin/settings/register-settings.php:328
805
- msgid "Bitly access token"
806
- msgstr ""
807
-
808
- #: includes/admin/settings/register-settings.php:329
809
- msgid ""
810
- "If you like to use bitly.com shortener get a free bitly access token <a href="
811
- "\"%s\" target=\"_blank\">here</a>. This turn urls into a format: http://bit."
812
- "ly/cXnjsh. "
813
- msgstr ""
814
-
815
- #: includes/admin/settings/register-settings.php:335
816
- msgid "Google API Key (goo.gl)"
817
- msgstr ""
818
-
819
- #: includes/admin/settings/register-settings.php:342
820
- msgid "Shorturl method"
821
- msgstr ""
822
-
823
- #: includes/admin/settings/register-settings.php:343
824
- msgid ""
825
- "Bitly generated shortlinks will be converted to the url format: <i>http://"
826
- "bit.ly/1PPg9D9</i><br><br>Goo.gl generated urls look like: <br><i>http://goo."
827
- "gl/vSJwUV</i><br><br>Using WP Shortlinks converts twitter links into:<br> <i>"
828
- "%s ?p=101</i>"
829
- msgstr ""
830
-
831
- #: includes/admin/settings/register-settings.php:354
832
- msgid "Important: Read this!"
833
- msgstr ""
834
-
835
- #: includes/admin/settings/register-settings.php:355
836
- msgid ""
837
- "<strong>The post short url is NOT generated immediatly after first page load!"
838
- "</strong> Background processing can take up to 1 hour for new posts and 4 - "
839
- "12 hours for old posts."
840
- msgstr ""
841
-
842
- #: includes/admin/settings/register-settings.php:374
843
- msgid "Customization"
844
- msgstr ""
845
-
846
- #: includes/admin/settings/register-settings.php:380
847
- msgid "Round up Shares"
848
- msgstr ""
849
-
850
- #: includes/admin/settings/register-settings.php:381
851
- msgid ""
852
- "Share counts greater than 1.000 will be shown as 1k. Greater than 1 Million "
853
- "as 1M"
854
- msgstr ""
855
-
856
- #: includes/admin/settings/register-settings.php:386
857
- msgid "Animate Shares"
858
- msgstr ""
859
-
860
- #: includes/admin/settings/register-settings.php:387
861
- msgid ""
862
- "Count up the shares on page loading with a nice looking animation effect. "
863
- "This only works on singular pages and not with shortcodes generated buttons."
864
- msgstr ""
865
-
866
- #: includes/admin/settings/register-settings.php:392
867
- #: includes/class-mashsb-shared-posts-widget.php:53
868
- msgid "Share Count Label"
869
- msgstr ""
870
-
871
- #: includes/admin/settings/register-settings.php:393
872
- msgid ""
873
- "Change the text of the Share count title. <strong>Default:</strong> SHARES"
874
- msgstr ""
875
-
876
- #: includes/admin/settings/register-settings.php:408
877
- msgid "Share Count Color"
878
- msgstr ""
879
-
880
- #: includes/admin/settings/register-settings.php:409
881
- msgid "Choose color of the share number in hex format, e.g. #7FC04C: "
882
- msgstr ""
883
-
884
- #: includes/admin/settings/register-settings.php:416
885
- msgid "Border Radius"
886
- msgstr ""
887
-
888
- #: includes/admin/settings/register-settings.php:417
889
- msgid ""
890
- "Specify the border radius of all buttons in pixel. A border radius of 20px "
891
- "results in circle buttons. Default value is zero."
892
- msgstr ""
893
-
894
- #: includes/admin/settings/register-settings.php:447
895
- msgid "Button Width"
896
- msgstr ""
897
-
898
- #: includes/admin/settings/register-settings.php:448
899
- msgid "Minimum with of the large share buttons in pixels"
900
- msgstr ""
901
-
902
- #: includes/admin/settings/register-settings.php:455
903
- msgid "Share Button Style"
904
- msgstr ""
905
-
906
- #: includes/admin/settings/register-settings.php:456
907
- msgid "Change visual appearance of the share buttons."
908
- msgstr ""
909
-
910
- #: includes/admin/settings/register-settings.php:467
911
- msgid "Small Share Buttons"
912
- msgstr ""
913
-
914
- #: includes/admin/settings/register-settings.php:468
915
- msgid ""
916
- "All buttons will be shown as pure small icons without any text on desktop "
917
- "and mobile devices all the time.<br><strong>Note:</strong> Disable this when "
918
- "you use the <a href=\"https://www.mashshare.net/downloads/mashshare-"
919
- "responsive/\" target=\"_blank\">responsive Add-On</a>"
920
- msgstr ""
921
-
922
- #: includes/admin/settings/register-settings.php:479
923
- msgid "Subscribe Button"
924
- msgstr ""
925
-
926
- #: includes/admin/settings/register-settings.php:480
927
- msgid ""
928
- "Specify if the subscribe button is opening a content box below the button or "
929
- "if the button is linked to the \"subscribe url\" below."
930
- msgstr ""
931
-
932
- #: includes/admin/settings/register-settings.php:490
933
- msgid "Subscribe URL"
934
- msgstr ""
935
-
936
- #: includes/admin/settings/register-settings.php:491
937
- msgid ""
938
- "Link the Subscribe button to this URL. This can be the url to your subscribe "
939
- "page, facebook fanpage, RSS feed etc. e.g. http://yoursite.com/subscribe"
940
- msgstr ""
941
-
942
- #: includes/admin/settings/register-settings.php:498
943
- msgid "Additional Content"
944
- msgstr ""
945
-
946
- #: includes/admin/settings/register-settings.php:504
947
- msgid "Content Above"
948
- msgstr ""
949
-
950
- #: includes/admin/settings/register-settings.php:505
951
- msgid ""
952
- "Content appearing above share buttons. Use HTML, formulars, like button, "
953
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
954
- msgstr ""
955
-
956
- #: includes/admin/settings/register-settings.php:512
957
- msgid "Content Below"
958
- msgstr ""
959
-
960
- #: includes/admin/settings/register-settings.php:513
961
- msgid ""
962
- "Content appearing below share buttons. Use HTML, formulars, like button, "
963
- "links or any other text. Shortcodes are supported, e.g.: [contact-form-7]"
964
- msgstr ""
965
-
966
- #: includes/admin/settings/register-settings.php:520
967
- msgid "Subscribe content"
968
- msgstr ""
969
-
970
- #: includes/admin/settings/register-settings.php:521
971
- msgid ""
972
- "Define the content of the opening toggle subscribe window here. Use "
973
- "formulars, like button, links or any other text. Shortcodes are supported, e."
974
- "g.: [contact-form-7]"
975
- msgstr ""
976
-
977
- #: includes/admin/settings/register-settings.php:530
978
- msgid "Custom Styles"
979
- msgstr ""
980
-
981
- #: includes/admin/settings/register-settings.php:536
982
- msgid "General CSS"
983
- msgstr ""
984
-
985
- #: includes/admin/settings/register-settings.php:537
986
- msgid ""
987
- "This css is loaded on all pages where the Mashshare buttons are enabled and "
988
- "it's loaded as an additonal inline css on your site"
989
- msgstr ""
990
-
991
- #: includes/admin/settings/register-settings.php:544
992
- msgid "AMP CSS"
993
- msgstr ""
994
-
995
- #: includes/admin/settings/register-settings.php:545
996
- msgid ""
997
- "This CSS is loaded only on AMP Project pages like yourwebsite.com/amp. "
998
- "<strong>Note: </strong> You need the WordPress <a href=\"%s\" target=\"_blank"
999
- "\">AMP Plugin</a> installed."
1000
- msgstr ""
1001
-
1002
- #: includes/admin/settings/register-settings.php:562
1003
- msgid "Location & Position"
1004
- msgstr ""
1005
-
1006
- #: includes/admin/settings/register-settings.php:568
1007
- msgid "Position"
1008
- msgstr ""
1009
-
1010
- #: includes/admin/settings/register-settings.php:569
1011
- msgid ""
1012
- "Position of Share Buttons. If this is set to <i>manual</i> use the shortcode "
1013
- "function [mashshare] or use php code <br>&lt;?php echo do_shortcode"
1014
- "(\"[mashshare]\"); ?&gt; in template files. </p>You must activate the option "
1015
- "\"<strong>Load JS and CSS all over</strong>\" if you experience issues with "
1016
- "do_shortcode() and the buttons are not shown as expected. See all <a href="
1017
- "\"https://www.mashshare.net/faq/#Shortcodes\" target=\"_blank\">available "
1018
- "shortcodes</a>."
1019
- msgstr ""
1020
-
1021
- #: includes/admin/settings/register-settings.php:572
1022
- msgid "Top"
1023
- msgstr ""
1024
-
1025
- #: includes/admin/settings/register-settings.php:573
1026
- msgid "Bottom"
1027
- msgstr ""
1028
-
1029
- #: includes/admin/settings/register-settings.php:574
1030
- msgid "Top and Bottom"
1031
- msgstr ""
1032
-
1033
- #: includes/admin/settings/register-settings.php:575
1034
- msgid "Manual"
1035
- msgstr ""
1036
-
1037
- #: includes/admin/settings/register-settings.php:580
1038
- msgid "Post Types"
1039
- msgstr ""
1040
-
1041
- #: includes/admin/settings/register-settings.php:581
1042
- msgid ""
1043
- "Select on which post_types the share buttons appear. These values will be "
1044
- "ignored when \"manual\" position is selected."
1045
- msgstr ""
1046
-
1047
- #: includes/admin/settings/register-settings.php:586
1048
- msgid "Exclude from post id"
1049
- msgstr ""
1050
-
1051
- #: includes/admin/settings/register-settings.php:587
1052
- msgid ""
1053
- "Exclude share buttons from a list of post ids. Put in the post id separated "
1054
- "by a comma, e.g. 23, 63, 114 "
1055
- msgstr ""
1056
-
1057
- #: includes/admin/settings/register-settings.php:593
1058
- msgid "Categories"
1059
- msgstr ""
1060
-
1061
- #: includes/admin/settings/register-settings.php:594
1062
- msgid ""
1063
- "Enable this checkbox to enable Mashshare on categories with multiple "
1064
- "blogposts. <br><strong>Note: </strong> Post_types: \"Post\" must be enabled."
1065
- msgstr ""
1066
-
1067
- #: includes/admin/settings/register-settings.php:600
1068
- msgid "Frontpage"
1069
- msgstr ""
1070
-
1071
- #: includes/admin/settings/register-settings.php:601
1072
- msgid "Enable share buttons on frontpage"
1073
- msgstr ""
1074
-
1075
- #: includes/admin/settings/register-settings.php:606
1076
- msgid "Debug"
1077
- msgstr ""
1078
-
1079
- #: includes/admin/settings/register-settings.php:612
1080
- msgid "Disable Cache"
1081
- msgstr ""
1082
-
1083
- #: includes/admin/settings/register-settings.php:618
1084
- msgid "Attention: Purge DB Cache"
1085
- msgstr ""
1086
-
1087
- #: includes/admin/settings/register-settings.php:624
1088
- msgid "Debug mode"
1089
- msgstr ""
1090
-
1091
- #: includes/admin/settings/register-settings.php:633
1092
- msgid "Activate your Add-Ons"
1093
- msgstr ""
1094
-
1095
- #: includes/admin/settings/register-settings.php:634
1096
- msgid ""
1097
- "Activate your license key to get important security and feature updates for "
1098
- "your Add-On!"
1099
- msgstr ""
1100
-
1101
- #: includes/admin/settings/register-settings.php:634
1102
- msgid ""
1103
- "No Add-Ons are active or installed! <a href=\"%s\" target=\"blank\">See all "
1104
- "Add-Ons</a>"
1105
- msgstr ""
1106
-
1107
- #: includes/admin/settings/register-settings.php:714
1108
- msgid "Settings updated."
1109
- msgstr ""
1110
-
1111
- #: includes/admin/settings/register-settings.php:747
1112
- msgid "Visual"
1113
- msgstr ""
1114
-
1115
- #: includes/admin/settings/register-settings.php:755
1116
- msgid "Add-On Settings"
1117
- msgstr ""
1118
-
1119
- #: includes/admin/settings/register-settings.php:759
1120
- msgid "Licenses"
1121
- msgstr ""
1122
-
1123
- #: includes/admin/settings/register-settings.php:761
1124
- msgid "Get More Add-Ons"
1125
- msgstr ""
1126
-
1127
- #: includes/admin/settings/register-settings.php:1012
1128
- msgid ""
1129
- "The callback function used for the <strong>%s</strong> setting is missing."
1130
- msgstr ""
1131
-
1132
- #: includes/admin/settings/register-settings.php:1152
1133
- msgid "Upload File"
1134
- msgstr ""
1135
-
1136
- #: includes/admin/settings/register-settings.php:1255
1137
- msgid ""
1138
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\" "
1139
- "title=\"Renew your license key\">renew your license key</a>."
1140
- msgstr ""
1141
-
1142
- #: includes/admin/settings/register-settings.php:1268
1143
- msgid ""
1144
- "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit "
1145
- "account page\">visit your account page</a> and verify it."
1146
- msgstr ""
1147
-
1148
- #: includes/admin/settings/register-settings.php:1281
1149
- msgid ""
1150
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\" "
1151
- "title=\"Visit account page\">visit your account page</a> to manage your "
1152
- "license key URLs."
1153
- msgstr ""
1154
-
1155
- #: includes/admin/settings/register-settings.php:1293
1156
- msgid "This is not a %s."
1157
- msgstr ""
1158
-
1159
- #: includes/admin/settings/register-settings.php:1302
1160
- msgid ""
1161
- "Your license key has reached its activation limit. <a href=\"%s\">View "
1162
- "possible upgrades</a> now."
1163
- msgstr ""
1164
-
1165
- #: includes/admin/settings/register-settings.php:1324
1166
- msgid "License key never expires."
1167
- msgstr ""
1168
-
1169
- #: includes/admin/settings/register-settings.php:1331
1170
- msgid ""
1171
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
1172
- "\"_blank\" title=\"Renew license\">Renew your license key</a>."
1173
- msgstr ""
1174
-
1175
- #: includes/admin/settings/register-settings.php:1341
1176
- msgid "Your license key expires on %s."
1177
- msgstr ""
1178
-
1179
- #: includes/admin/settings/register-settings.php:1363
1180
- msgid "Deactivate License"
1181
- msgstr ""
1182
-
1183
- #: includes/admin/settings/register-settings.php:1427
1184
- msgid "Social Network"
1185
- msgstr ""
1186
-
1187
- #: includes/admin/settings/register-settings.php:1428
1188
- msgid "Status"
1189
- msgstr ""
1190
-
1191
- #: includes/admin/settings/register-settings.php:1429
1192
- msgid "Custom Label"
1193
- msgstr ""
1194
-
1195
- #: includes/admin/settings/register-settings.php:1497
1196
- msgid "Select Image"
1197
- msgstr ""
1198
-
1199
- #: includes/admin/settings/register-settings.php:1636
1200
- msgid "All Services"
1201
- msgstr ""
1202
-
1203
- #: includes/admin/settings/register-settings.php:1653
1204
- msgid ""
1205
- "DB cache deleted! Do not forget to uncheck this box for performance increase "
1206
- "after doing the job."
1207
- msgstr ""
1208
-
1209
- #: includes/admin/settings/register-settings.php:1666
1210
- msgid "Transient Cache disabled! Enable it for performance increase."
1211
- msgstr ""
1212
-
1213
- #: includes/admin/settings/register-settings.php:1679
1214
- msgid ""
1215
- "Log file directory not writable! Set FTP permission to 755 or 777 for /wp-"
1216
- "content/plugins/mashsharer/logs/"
1217
- msgstr ""
1218
-
1219
- #: includes/admin/settings/user-profiles.php:16
1220
- msgid "MashShare Social Media Integration"
1221
- msgstr ""
1222
-
1223
- #: includes/admin/settings/user-profiles.php:22
1224
- msgid "Your Twitter username (without the @ symbol)"
1225
- msgstr ""
1226
-
1227
- #: includes/admin/settings/user-profiles.php:24
1228
- msgid "Facebook Author URL"
1229
- msgstr ""
1230
-
1231
- #: includes/admin/settings/user-profiles.php:27
1232
- msgid "URL to your Facebok profile."
1233
- msgstr ""
1234
-
1235
- #: includes/admin/tools.php:68
1236
- msgid "Import/Export"
1237
- msgstr ""
1238
-
1239
- #: includes/admin/tools.php:69
1240
- msgid "System Info"
1241
- msgstr ""
1242
-
1243
- #: includes/admin/tools.php:91
1244
- msgid "Export Settings"
1245
- msgstr ""
1246
-
1247
- #: includes/admin/tools.php:93
1248
- msgid ""
1249
- "Export the Mashshare settings for this site as a .json file. This allows you "
1250
- "to easily import the configuration into another site."
1251
- msgstr ""
1252
-
1253
- #: includes/admin/tools.php:99
1254
- msgid "Export"
1255
- msgstr ""
1256
-
1257
- #: includes/admin/tools.php:106
1258
- msgid "Import Settings"
1259
- msgstr ""
1260
-
1261
- #: includes/admin/tools.php:108
1262
- msgid ""
1263
- "Import the Mashshare settings from a .json file. This file can be obtained "
1264
- "by exporting the settings on another site using the form above."
1265
- msgstr ""
1266
-
1267
- #: includes/admin/tools.php:116
1268
- msgid "Import"
1269
- msgstr ""
1270
-
1271
- #: includes/admin/tools.php:218
1272
- msgid "Please upload a valid .json file"
1273
- msgstr ""
1274
-
1275
- #: includes/admin/tools.php:224
1276
- msgid "Please upload a file to import"
1277
- msgstr ""
1278
-
1279
- #: includes/admin/tracking.php:266
1280
- msgid "Allow"
1281
- msgstr ""
1282
-
1283
- #: includes/admin/tracking.php:267
1284
- msgid "Do not allow"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/welcome.php:51
1288
- msgid "Welcome to MashShare"
1289
- msgstr ""
1290
-
1291
- #: includes/admin/welcome.php:56
1292
- msgid "MashShare Changelog"
1293
- msgstr ""
1294
-
1295
- #: includes/admin/welcome.php:61
1296
- msgid "Quickstart"
1297
- msgstr ""
1298
-
1299
- #: includes/admin/welcome.php:66
1300
- msgid "The people that build MashShare"
1301
- msgstr ""
1302
-
1303
- #: includes/admin/welcome.php:128
1304
- msgid ""
1305
- "Facebook and Twitter Share Buttons are successfully enabled on all your "
1306
- "posts! <br> Now you can use the steps below to customize MashShare to your "
1307
- "needs."
1308
- msgstr ""
1309
-
1310
- #: includes/admin/welcome.php:131
1311
- msgid "Create Your First Social Sharing Button"
1312
- msgstr ""
1313
-
1314
- #: includes/admin/welcome.php:137
1315
- msgid "Settings &rarr; Social Networks"
1316
- msgstr ""
1317
-
1318
- #: includes/admin/welcome.php:138
1319
- msgid ""
1320
- "The Social Network menu is your general access point for activating the "
1321
- "desired share buttons and for customizing the share button label"
1322
- msgstr ""
1323
-
1324
- #: includes/admin/welcome.php:139
1325
- msgid "Settings &rarr; Location & Position"
1326
- msgstr ""
1327
-
1328
- #: includes/admin/welcome.php:140
1329
- msgid ""
1330
- "Select the location and exact position of the share buttons within your "
1331
- "content"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/welcome.php:141
1335
- msgid "You are done! Easy, isn't it?"
1336
- msgstr ""
1337
-
1338
- #: includes/admin/welcome.php:149
1339
- msgid "Display a Most Shared Post Widget"
1340
- msgstr ""
1341
-
1342
- #: includes/admin/welcome.php:155
1343
- msgid "Appearance &rarr; Widgets"
1344
- msgstr ""
1345
-
1346
- #: includes/admin/welcome.php:157
1347
- msgid ""
1348
- "Drag and drop the widget </br> \"<i>MashShare - Most Shared Posts</i>\" </"
1349
- "br>into the desired widget location and save it"
1350
- msgstr ""
1351
-
1352
- #: includes/admin/welcome.php:165
1353
- msgid "Content Shortcodes"
1354
- msgstr ""
1355
-
1356
- #: includes/admin/welcome.php:172
1357
- msgid ""
1358
- "Add Share buttons manually with using the shortcode <i style=\"font-weight:"
1359
- "bold;\">[mashshare]</i>."
1360
- msgstr ""
1361
-
1362
- #: includes/admin/welcome.php:174
1363
- msgid ""
1364
- "Paste the shortcode in content of your posts or pages with the post editor "
1365
- "at the place you want the share buttons appear"
1366
- msgstr ""
1367
-
1368
- #: includes/admin/welcome.php:176 includes/admin/welcome.php:192
1369
- msgid ""
1370
- "There are various parameters you can use for the mashshare shortcode. Find a "
1371
- "list of all available shortcode parameters <a href=\"%s\" target=\"blank"
1372
- "\">here</a>"
1373
- msgstr ""
1374
-
1375
- #: includes/admin/welcome.php:182
1376
- msgid "PHP Template Shortcode"
1377
- msgstr ""
1378
-
1379
- #: includes/admin/welcome.php:188
1380
- msgid ""
1381
- "Add MashShare directly into your theme template files with using the PHP "
1382
- "code <i style=\"font-weight:bold;\">&lt;?php do_shortcode('[mashshare]'); ?"
1383
- "&gt;</i>"
1384
- msgstr ""
1385
-
1386
- #: includes/admin/welcome.php:199
1387
- msgid "Need Help?"
1388
- msgstr ""
1389
-
1390
- #: includes/admin/welcome.php:202
1391
- msgid "Great Support"
1392
- msgstr ""
1393
-
1394
- #: includes/admin/welcome.php:203
1395
- msgid ""
1396
- "We do our best to provide the best support we can. If you encounter a "
1397
- "problem or have a question, simply open a ticket using our <a href=\"https://"
1398
- "www.mashshare.net/contact-developer/\" target=\"blank\">support form</a>."
1399
- msgstr ""
1400
-
1401
- #: includes/admin/welcome.php:227
1402
- msgid "Welcome to MashShare %s"
1403
- msgstr ""
1404
-
1405
- #: includes/admin/welcome.php:229
1406
- msgid ""
1407
- "Thank you for updating to the latest version! MashShare is installed and "
1408
- "ready to grow your traffic from social networks!"
1409
- msgstr ""
1410
-
1411
- #: includes/admin/welcome.php:252
1412
- msgid "1. Asyncronous Share Count Aggregation"
1413
- msgstr ""
1414
-
1415
- #: includes/admin/welcome.php:256
1416
- msgid ""
1417
- "With MashShare version 3.0 you get the advantage of our biggest performance "
1418
- "update. Use the new <i>Async Cache Refresh</i> method and your share counts "
1419
- "will be aggregated only after page loading and never while page loads. This "
1420
- "is a huge performance update."
1421
- msgstr ""
1422
-
1423
- #: includes/admin/welcome.php:259
1424
- msgid "2. Open Graph and Twitter Card Integration"
1425
- msgstr ""
1426
-
1427
- #: includes/admin/welcome.php:260
1428
- msgid ""
1429
- "Use open graph and twitter card to specify the content you like to share. If "
1430
- "you are using Yoast, MashShare will use the Yoast open graph data instead "
1431
- "and extend it with custom data to get the maximum out of your valuable "
1432
- "content."
1433
- msgstr ""
1434
-
1435
- #: includes/admin/welcome.php:267
1436
- msgid "3. Responsive Buttons per default"
1437
- msgstr ""
1438
-
1439
- #: includes/admin/welcome.php:268
1440
- msgid ""
1441
- "MashShare 3.0 arrives you with basic responsive button support. So the "
1442
- "buttons look great on mobile and desktop devices."
1443
- msgstr ""
1444
-
1445
- #: includes/admin/welcome.php:270
1446
- msgid "4. Share Count Dashboard"
1447
- msgstr ""
1448
-
1449
- #: includes/admin/welcome.php:271
1450
- msgid "See the shares of your posts at a glance on the admin posts listing:"
1451
- msgstr ""
1452
-
1453
- #: includes/admin/welcome.php:275
1454
- msgid "5. A much cleaner user interface"
1455
- msgstr ""
1456
-
1457
- #: includes/admin/welcome.php:276
1458
- msgid ""
1459
- "We spent a lot of time to make useful first time settings and improved the "
1460
- "user interface for an easier experience."
1461
- msgstr ""
1462
-
1463
- #: includes/admin/welcome.php:284
1464
- msgid "Additional Updates"
1465
- msgstr ""
1466
-
1467
- #: includes/admin/welcome.php:287
1468
- msgid "Developer Friendly"
1469
- msgstr ""
1470
-
1471
- #: includes/admin/welcome.php:288
1472
- msgid ""
1473
- "Are you a theme developer and want to use MashShare as your build in share "
1474
- "count aggregator? Read the <a href=\"%s\" target=\"blank\">developer "
1475
- "instructions.</a>"
1476
- msgstr ""
1477
-
1478
- #: includes/admin/welcome.php:291
1479
- msgid "Check Open Graph Settings"
1480
- msgstr ""
1481
-
1482
- #: includes/admin/welcome.php:292
1483
- msgid ""
1484
- "Use the <i>Validate Open Graph Data</i> button and check if the open graph "
1485
- "data on your site is working as expected or conflicts with other open graph "
1486
- "data."
1487
- msgstr ""
1488
-
1489
- #: includes/admin/welcome.php:295
1490
- msgid "Use Yoast SEO Title"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/welcome.php:296
1494
- msgid "MashShare will use the YOAST SEO title if it is defined."
1495
- msgstr ""
1496
-
1497
- #: includes/admin/welcome.php:302 includes/admin/welcome.php:477
1498
- msgid "Go to MashShare Settings"
1499
- msgstr ""
1500
-
1501
- #: includes/admin/welcome.php:303
1502
- msgid "View the Full Changelog"
1503
- msgstr ""
1504
-
1505
- #: includes/admin/welcome.php:326
1506
- msgid "What's New"
1507
- msgstr ""
1508
-
1509
- #: includes/admin/welcome.php:332
1510
- msgid "Credits"
1511
- msgstr ""
1512
-
1513
- #: includes/admin/welcome.php:353
1514
- msgid ""
1515
- "Mashshare is created by a René Hermenau and developers all over the world "
1516
- "who aim to provide the #1 ecosystem for growing social media traffic through "
1517
- "WordPress."
1518
- msgstr ""
1519
-
1520
- #: includes/admin/welcome.php:356
1521
- msgid ""
1522
- " If you want to be credited here participate on the development and make "
1523
- "your pull request on <a href=\"%s\" target=\"_blank\">github</a>"
1524
- msgstr ""
1525
-
1526
- #: includes/admin/welcome.php:381
1527
- msgid "View %s"
1528
- msgstr ""
1529
-
1530
- #: includes/admin/welcome.php:436
1531
- msgid "No valid changelog was found."
1532
- msgstr ""
1533
-
1534
- #: includes/admin/welcome.php:469
1535
- msgid "Full Changelog"
1536
- msgstr ""
1537
-
1538
- #: includes/class-mashsb-html-elements.php:43
1539
- msgctxt "all dropdown items"
1540
- msgid "All"
1541
- msgstr ""
1542
-
1543
- #: includes/class-mashsb-html-elements.php:44
1544
- msgctxt "no dropdown items"
1545
- msgid "None"
1546
- msgstr ""
1547
-
1548
- #: includes/class-mashsb-html-elements.php:232
1549
- msgid "Enter username"
1550
- msgstr ""
1551
-
1552
- #: includes/class-mashsb-license-handler.php:177
1553
- msgid "%1$s License Key"
1554
- msgstr ""
1555
-
1556
- #: includes/class-mashsb-license-handler.php:210
1557
- msgid ""
1558
- "Enter your extension license keys here to receive updates for purchased "
1559
- "extensions. If your license key has expired, please <a href=\"%s\" target="
1560
- "\"_blank\" title=\"License renewal FAQ\">renew your license</a>."
1561
- msgstr ""
1562
-
1563
- #: includes/class-mashsb-license-handler.php:319
1564
- msgid "Nonce verification failed"
1565
- msgstr ""
1566
-
1567
- #: includes/class-mashsb-license-handler.php:436
1568
- msgid ""
1569
- "You have invalid or expired license keys for MashShare. Please go to the <a "
1570
- "href=\"%s\" title=\"Go to Licenses page\">Licenses page</a> to correct this "
1571
- "issue."
1572
- msgstr ""
1573
-
1574
- #: includes/class-mashsb-license-handler.php:475
1575
- msgid "Enter valid license key for automatic updates."
1576
- msgstr ""
1577
-
1578
- #: includes/class-mashsb-shared-posts-widget.php:13
1579
- msgid "Mashshare - Most Shared Posts"
1580
- msgstr ""
1581
-
1582
- #: includes/class-mashsb-shared-posts-widget.php:37
1583
- msgid "Widget Title"
1584
- msgstr ""
1585
-
1586
- #: includes/class-mashsb-shared-posts-widget.php:42
1587
- msgid "How many posts to display?"
1588
- msgstr ""
1589
-
1590
- #: includes/class-mashsb-shared-posts-widget.php:46
1591
- msgid "Show Shares? Say \"No\" when using fake shares!"
1592
- msgstr ""
1593
-
1594
- #: includes/class-mashsb-shared-posts-widget.php:61
1595
- msgid "Show shares below post title"
1596
- msgstr ""
1597
-
1598
- #: includes/class-mashsb-shared-posts-widget.php:68
1599
- msgid "Time period and age of posts"
1600
- msgstr ""
1601
-
1602
- #: includes/template-functions.php:249
1603
- msgid "Subscribe"
1604
- msgstr ""
1605
-
1606
- #: includes/template-functions.php:517
1607
- msgid "SHARES"
1608
- msgstr ""
1609
-
1610
- #: includes/template-functions.php:1114
1611
- msgid "Page not found"
1612
- msgstr ""
1613
-
1614
- #. translators: %s: search phrase
1615
- #: includes/template-functions.php:1119
1616
- msgid "Search Results for &#8220;%s&#8221;"
1617
- msgstr ""
1618
-
1619
- #: includes/template-functions.php:1152
1620
- msgctxt "yearly archives date format"
1621
- msgid "Y"
1622
- msgstr ""
1623
-
1624
- #: includes/template-functions.php:1154
1625
- msgctxt "monthly archives date format"
1626
- msgid "F Y"
1627
- msgstr ""
1628
-
1629
- #: mashshare.php:124 mashshare.php:136
1630
- msgid "Cheatin&#8217; huh?"
1631
- msgstr ""
1632
-
1633
- #: templates/sidebar.php:17
1634
- msgid "Increase your Shares and Social Traffic"
1635
- msgstr ""
1636
-
1637
- #: templates/sidebar.php:20
1638
- msgid "Get 20% Off!"
1639
- msgstr ""
1640
-
1641
- #: templates/sidebar.php:25
1642
- msgid ""
1643
- "Submit your name and email and we'll send you a coupon for 20% off your "
1644
- "upgrade to the pro version."
1645
- msgstr ""
1646
-
1647
- #: templates/sidebar.php:29
1648
- msgid "Your Email"
1649
- msgstr ""
1650
-
1651
- #: templates/sidebar.php:33
1652
- msgid "First Name"
1653
- msgstr ""
1654
-
1655
- #: templates/sidebar.php:37
1656
- msgid "Last Name"
1657
- msgstr ""
1658
-
1659
- #: templates/sidebar.php:44
1660
- msgid "Send me the coupon"
1661
- msgstr ""
1662
-
1663
- #: templates/sidebar.php:48
1664
- msgid ""
1665
- "Your email will not be used for anything else and you can unsubscribe with 1-"
1666
- "click anytime."
1667
- msgstr ""
1668
-
1669
- #. Plugin Name of the plugin/theme
1670
- msgid "Mashshare Share Buttons"
1671
- msgstr ""
1672
-
1673
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1674
- #. Plugin URI of the plugin/theme
1675
- #. #-#-#-#-# plugin.pot (Mashshare Share Buttons 3.1.3) #-#-#-#-#
1676
- #. Author URI of the plugin/theme
1677
- msgid "https://www.mashshare.net"
1678
- msgstr ""
1679
-
1680
- #. Description of the plugin/theme
1681
- msgid ""
1682
- "Mashshare is a Share functionality inspired by the the great website "
1683
- "Mashable for Facebook and Twitter. More networks available."
1684
- msgstr ""
1685
-
1686
- #. Author of the plugin/theme
1687
- msgid "René Hermenau"
1688
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
mashshare.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Mashshare is a Share functionality inspired by the the great website Mashable for Facebook and Twitter. More networks available.
7
  * Author: René Hermenau
8
  * Author URI: https://www.mashshare.net
9
- * Version: 3.1.4
10
  * Text Domain: mashsb
11
  * Domain Path: /languages
12
  * Credits: Thanks go to Pippin Williamson and the edd team. When we started with Mashshare we decided to use the EDD code base and
@@ -37,7 +37,7 @@ if( !defined( 'ABSPATH' ) )
37
 
38
  // Plugin version
39
  if( !defined( 'MASHSB_VERSION' ) ) {
40
- define( 'MASHSB_VERSION', '3.1.4' );
41
  }
42
 
43
  // Debug mode
@@ -242,7 +242,7 @@ if( !class_exists( 'mashshare' ) ) :
242
  load_textdomain( 'mashsb', $mofile_global );
243
  } elseif( file_exists( $mofile_local ) ) {
244
  // Look in local /wp-content/plugins/mashshare/languages/ folder
245
- load_textdomain( 'mashshare', $mofile_local );
246
  } else {
247
  // Load the default language files
248
  load_plugin_textdomain( 'mashsb', false, $mashsb_lang_dir );
@@ -269,9 +269,4 @@ function MASHSB() {
269
  return Mashshare::instance();
270
  }
271
  // Get MASHSB Running
272
- MASHSB();
273
- //add_action( 'plugins_loaded', 'MASHSB' );
274
-
275
-
276
-
277
-
6
  * Description: Mashshare is a Share functionality inspired by the the great website Mashable for Facebook and Twitter. More networks available.
7
  * Author: René Hermenau
8
  * Author URI: https://www.mashshare.net
9
+ * Version: 3.1.5
10
  * Text Domain: mashsb
11
  * Domain Path: /languages
12
  * Credits: Thanks go to Pippin Williamson and the edd team. When we started with Mashshare we decided to use the EDD code base and
37
 
38
  // Plugin version
39
  if( !defined( 'MASHSB_VERSION' ) ) {
40
+ define( 'MASHSB_VERSION', '3.1.5' );
41
  }
42
 
43
  // Debug mode
242
  load_textdomain( 'mashsb', $mofile_global );
243
  } elseif( file_exists( $mofile_local ) ) {
244
  // Look in local /wp-content/plugins/mashshare/languages/ folder
245
+ load_textdomain( 'mashsb', $mofile_local );
246
  } else {
247
  // Load the default language files
248
  load_plugin_textdomain( 'mashsb', false, $mashsb_lang_dir );
269
  return Mashshare::instance();
270
  }
271
  // Get MASHSB Running
272
+ MASHSB();
 
 
 
 
 
readme.txt CHANGED
@@ -9,7 +9,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
  Tags: Share buttons, Social Sharing, social media, Facebook, Twitter, Subscribe, Traffic posts, pages, widget, social share buttons, analytics, email
10
  Requires at least: 3.6+
11
  Tested up to: 4.5.2
12
- Stable tag: 3.1.4
13
 
14
  Social Media Share Buttons for Twitter, Facebook and other social networks. Highly customizable Social Media ecosystem
15
 
@@ -317,6 +317,15 @@ Read here more FAQ: [https://www.mashshare.net/faq/](https://www.mashshare.net/f
317
 
318
  == Changelog ==
319
 
 
 
 
 
 
 
 
 
 
320
  = 3.1.4 =
321
  * Fix: Remove deprecated REST API functions which are throwing errors on php 5.2
322
  * Fix: Change domain path to /languages
9
  Tags: Share buttons, Social Sharing, social media, Facebook, Twitter, Subscribe, Traffic posts, pages, widget, social share buttons, analytics, email
10
  Requires at least: 3.6+
11
  Tested up to: 4.5.2
12
+ Stable tag: 3.1.5
13
 
14
  Social Media Share Buttons for Twitter, Facebook and other social networks. Highly customizable Social Media ecosystem
15
 
317
 
318
  == Changelog ==
319
 
320
+ = 3.1.5 =
321
+ * Fix: Twitter title for floating sidebar and sharebar add-on is wrong when on frontpages with multiple blogposts
322
+ * Fix: Telegram button missing style in mashsb.css
323
+ * Fix: Wrong textdomain
324
+ * Fix: Size of inline css when using AMP Plugin is too big.
325
+ * Tweak: Missing update notice after succesfull settings import
326
+ * Tweak: Improve Open Graph and Twitter Card settings description
327
+ * New: Hide User Profile MashShare meta box with setting Meta Box Visibility in general settings
328
+
329
  = 3.1.4 =
330
  * Fix: Remove deprecated REST API functions which are throwing errors on php 5.2
331
  * Fix: Change domain path to /languages
templates/fonts/mashsb-font.eot CHANGED
Binary file
templates/fonts/mashsb-font.svg CHANGED
@@ -1,41 +1,74 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>Copyright (C) 2015 by original authors @ fontello.com</metadata>
5
- <defs>
6
- <font id="mashsb-font" horiz-adv-x="1000" >
7
- <font-face font-family="mashsb-font" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
- <missing-glyph horiz-adv-x="1000" />
9
- <glyph glyph-name="facebook" unicode="&#xe800;" d="m0-150l0 1000 1000 0 0-1000-1000 0z m471 469l92 0 0-352 132 0 0 352 129 0 6 127-135 0 0 94q0 31 12 43t41 13l80 0 2 117q-59 6-88 6l-23 0q-31 0-57-10-99-39-99-154l0-109-92 0 0-127z" horiz-adv-x="1000" />
10
- <glyph glyph-name="google" unicode="&#xe801;" d="m0 32q0 87 89 155t215 68l54 0q-42 40-42 86 0 29 16 58-10-1-29-1-104 0-170 65t-66 160q0 91 82 159t187 68l310 0-69-50-98 0q47-18 74-68t26-111q0-93-88-162-37-29-48-46t-11-42q0-19 27-48t54-49q61-43 85-88t23-113q0-90-82-157t-222-66q-133 0-225 50t-92 132z m112 33q0-69 59-118t145-48q119 0 173 44t53 117q0 19-4 32-3 11-7 21t-12 19-14 16-19 16-21 15-25 18-26 17q-39 12-77 12l-4 0q-87 0-153-47-68-48-68-114z m66 559q11-79 61-136t109-58l4 0q56 0 90 52 27 42 27 99 0 16-2 34-10 79-59 134t-110 57l-4 0q-57 0-91-51-27-41-27-98 0-16 2-33z" horiz-adv-x="646" />
11
- <glyph glyph-name="pinterest" unicode="&#xe802;" d="m0 350q4 213 150 356t350 144q219-4 358-149t142-351q-4-211-150-354t-350-146q-70 0-141 21 14 22 28 49 15 34 39 125 6 26 17 69 14-24 47-43 88-41 186 8 101 58 140 181 36 129-8 239t-158 160q-142 41-277-9t-187-171q-14-45-17-89t3-86 29-75 63-51q9-4 15 0 8 4 16 31t6 38q-2 3-8 13-41 67-27 140t60 124q72 64 169 70t165-53q37-42 48-103t0-116-38-105q-49-76-115-78-39 2-64 30t-14 66q3 21 23 84t22 94q-6 74-69 76-49-6-72-44t-26-87q6-57 18-78-21-88-33-141-4-14-22-84t-19-107l0-55q-139 65-219 187t-80 270z" horiz-adv-x="1000" />
12
- <glyph glyph-name="linkedin" unicode="&#xe803;" d="m0-150l0 1000 1000 0 0-1000-1000 0z m164 729q2-34 25-54t53-23l2 0q35 2 59 24t23 53q-2 33-25 53t-55 21q-35 0-58-22t-24-52z m8-569l144 0 0 434-144 0 0-434z m225 0l144 0 0 242q0 24 4 36 27 52 74 52 72-2 72-97l0-233 145 0 0 248q-2 98-47 149-47 47-119 49-53-2-86-26-21-15-43-47l0 61-144 0q1-18 1-70 0-90-1-364z" horiz-adv-x="1000" />
13
- <glyph glyph-name="digg" unicode="&#xe804;" d="m0 152l0 372q0 13 13 13l176 0 0 129q0 14 13 14l98 0 0-514q0-14-12-14l-288 0z m109 83l67 0q13 0 13 14l0 206-67 0q-13 0-13-14l0-206z m225-83l0 372q0 13 13 13l98 0 0-371q0-14-12-14l-99 0z m0 445l0 69q0 14 12 14l99 0 0-69q0-14-12-14l-99 0z m149-445l0 372q0 13 13 13l288 0 0-504q0-13-13-13l-288 0 1 69q0 14 12 14l176 0 0 49-189 0z m110 83l67 0q12 0 12 14l0 206-67 0q-12 0-12-14l0-206z m229-146q0 14 13 14l176 0 0 49-189 0 0 372q0 13 13 13l287 0 0-504q0-13-12-13l-288 0 0 69z m109 146l67 0q13 0 13 14l0 206-67 0q-13 0-13-14l0-206z" horiz-adv-x="1122" />
14
- <glyph glyph-name="reddit" unicode="&#xe805;" d="m0 353q0 62 50 106t112 44q62 0 105-36l5 0q134 82 335 82l5 4 70 267 242-36q0-1 2-1 1 0 0 1 2 1 12 16t14 18q34 32 82 32 49 0 83-32t33-82-33-84-83-35q-57 0-87 39t-30 96q-2-1-97 13t-110 17l-3 0q-2-2-16-53t-30-109-18-64l0-3 5-4q72 0 148-20t130-58l3-2q1 1 2 1t2 1q25 18 36 25t29 13 43 6q68 0 116-48t48-117q0-47-26-86t-70-60q0-195-260-303-41-18-56-23-32-10-91-19t-93-9q-120 0-231 35-2 2-72 38-95 51-152 116t-58 156l-5 0q-33 17-59 50l-9 12q-15 27-19 46t-4 50z m34-12q0-66 57-112 5 59 48 116t101 101q-37 26-82 26-49 0-86-40t-38-91z m102-146q0-54 31-104t80-85 102-60 105-34q75-14 146-14 123 0 233 39t185 123l-3 0q30 38 43 69t13 72q0 54-26 103t-70 84-92 61-100 38q-85 23-181 23-74 0-151-18t-150-54-119-99-46-144z m186 73q0 37 23 60t59 22 62-22 25-60q0-36-25-60t-62-24-59 24-23 60z m36-164l44 0q25-45 80-68t111-24q58 0 110 24t84 68l41 0q-25-62-93-96t-142-34q-72 0-141 35t-94 95z m336 164q0 38 23 60t61 22q34 0 58-24t24-58-24-59-58-25q-37 0-60 24t-24 60z m255 468q0-35 25-60t60-25q36 0 59 25t23 60q0 34-24 58t-58 24-59-24-26-58z m14-281q55-36 95-92t56-120q59 43 59 96 0 58-35 100t-93 42q-45 0-82-26z" horiz-adv-x="1205" />
15
- <glyph glyph-name="stumbleupon" unicode="&#xe806;" d="m0 143l0 181 224 0 0-179q0-28 20-48t49-21 50 20 20 49l0 423q0 117 87 200t205 82 206-83 86-201l0-92-134-40-89 42 0 80q0 29-20 49t-49 20-49-20-21-49l0-417q0-120-86-205t-206-84q-121 0-207 85t-86 208z m724-3l0 183 89-42 134 40 0-184q0-29 20-49t49-21 49 21 20 49l0 187 224 0 0-181q0-121-85-207t-207-86-207 85-86 205z" horiz-adv-x="1309" />
16
- <glyph glyph-name="twitter" unicode="&#xe807;" d="m0-37q30-3 60-3 176 0 314 108-82 1-147 50t-89 125q20-4 47-4 35 0 67 9-88 17-145 87t-58 160l0 3q53-30 115-31-52 34-82 90t-31 120q0 68 35 127 94-117 230-186t290-78q-7 33-7 58 0 104 74 178t179 74q109 0 184-80 87 18 160 62-28-91-110-140 73 9 144 40-48-75-125-131l0-33q0-101-29-202t-90-194-145-165-201-115-253-42q-209 0-387 113z" horiz-adv-x="1230" />
17
- <glyph glyph-name="mail" unicode="&#xe808;" d="m0 28v644q0 8 2 18l460-460q39-39 95-39 55 0 94 39l460 460q2-9 2-18v-644q0-37-26-62t-62-26h-937q-36 0-62 26t-26 62z m63 728q13 4 25 4h937q12 0 25-4l-463-463q-13-12-31-12t-30 12z" horiz-adv-x="1113.3" />
18
- <glyph glyph-name="vk" unicode="&#xe809;" d="m0 654q10 8 25 12 14 4 25 4l9 0q10 0 24-1 22-1 32-1 6 0 38 2 16 1 29 1t23-1q20-2 32-8 6-3 13-13t12-19 11-25 10-22q38-82 94-163 2-3 7-11t9-12 9-12 10-11 11-8 11-6 12 0q28 5 31 117 1 19 1 35 0 74-15 102-6 11-15 18t-25 12-23 10q14 28 50 37t96 9l53 0t26 0 27-3l22-6t20-9 12-14q9-18 11-42 0-7 1-14 0-20-3-52-4-42-4-52-3-23-3-46 0-18 2-38 4-44 30-61 9 1 17 4t15 11 11 12 13 16 10 14q47 62 94 163l9 23t12 26 12 20 15 13q16 7 38 7l9 0q20 0 46-2 32-2 47-2 9 0 28 1t32 2 30-1 25-6 14-13q3-6 3-13 0-29-35-87-17-29-34-52t-46-58-37-47q-2-2-14-18t-17-24-12-22-5-27q0-8 3-15t10-15 10-12 13-13 12-11q71-65 112-117 40-52 40-75 0-33-51-41-26-4-53-4-21 0-43 3-20 2-37 2-26 0-45-5l-6 0q-66 11-139 94-4 4-17 21t-22 25-23 17-27 6q-23-4-30-29t-9-59-10-49q-13-24-79-24-28 0-66 4-78 8-141 40t-101 68-81 92q-104 133-197 322-3 6-11 23t-12 25-9 24-8 28-3 26z" horiz-adv-x="1220" />
19
- <glyph glyph-name="print" unicode="&#xe80a;" d="m866 564c40 0 75-35 75-78l0-366c0-42-35-77-75-77l-76 0 34-153-691 0 27 153-82 0c-45 0-78 35-78 77l0 366c0 43 33 78 78 78l96 0 0 117 34 0 0 129 527 0 0-129 34 0 0-117 97 0z m-623 199l0-292 457 0 0 292-457 0z m-113-389c30 0 55 24 55 54 0 28-25 53-55 53-29 0-54-25-54-53 0-30 25-54 54-54z m63-438l567 0-47 242-484 0z m252 113l-139 0 0 35 139 0 0-35z m198 0l-139 0 0 35 139 0 0-35z" horiz-adv-x="941" />
20
- <glyph glyph-name="delicious" unicode="&#xe80b;" d="m0-150l0 501 501 0 0-501-501 0z m509 499l0 501 500 0 0-501-500 0z" horiz-adv-x="1009" />
21
- <glyph glyph-name="buffer" unicode="&#xe80c;" d="m0 88q11 15 32 26t49 20 40 15q19 0 34-4t33-15 25-13q47-21 260-119 19-4 36 0t39 18 24 14q20 9 77 35t87 39q4 2 42 21t60 24q13 2 28-1t23-7 23-13 18-11 16-6 18-8 11-11q3-4 4-14-10-13-31-24t-51-22-40-16q-43-20-128-62t-129-61q-7-3-21-12t-23-13-26-11-27-7-30 2l-264 123q-6 3-32 14t-51 22-54 24-46 24-22 16q-4 4-4 13z m0 268q11 15 32 25t50 20 41 15q19 0 34-4t35-15 25-14q42-19 127-58t127-59q19-5 37 0t39 17 25 14q68 32 160 72 11 5 32 17t38 19 36 11q16 3 32-1t37-17 23-13q5-3 16-6t18-8 11-11q3-5 4-14-10-14-31-25t-53-23-41-16q-48-23-135-65t-123-59q-7-3-26-14t-29-15-32-10-36 0q-214 101-260 122-6 3-44 19t-69 30-62 30-34 22q-4 4-4 14z m0 267q10 15 32 27t52 22 41 16l348 162q30 0 54-7t56-26 40-22q39-18 117-54t117-55q4-2 37-15t54-24 27-20q3-4 4-13-9-13-26-22t-43-19-35-14q-47-22-140-66t-139-67q-6-3-20-11t-23-12-25-11-27-6-28 1q-245 114-256 119-4 2-63 28t-102 46-48 30q-4 4-4 13z" horiz-adv-x="979" />
22
- <glyph glyph-name="heart" unicode="&#xe80d;" d="m500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 36-38 55-30 67-13 77q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
23
- <glyph glyph-name="weibo" unicode="&#xe80e;" d="m0 178q0 161 184 347 117 116 236 162 56 23 97 23 45 0 72-27 26-26 26-72 0-31-12-72-4-14 3-17t16-1l10 4q96 40 170 40t106-42q15-22 15-52 0-31-16-71-7-10-2-17t8-9 14-5q62-19 106-62t44-107q0-59-41-120t-111-113-178-84-229-33q-131 0-247 38t-194 116-77 174z m125-48q10-101 125-161 92-49 209-49 29 0 60 3 153 15 255 97 92 75 92 165 0 9-1 18-10 100-125 160-93 49-210 49-29 0-59-3-101-10-183-51t-126-101q-38-53-38-109 0-9 1-18z m160-62q-13 29-13 59 0 35 18 70 31 64 104 96 45 20 91 20 27 0 54-7 76-20 109-82 17-32 17-66 0-32-15-65-31-71-109-104-44-19-88-19-34 0-67 11-73 23-101 87z m56 19q6-25 30-35 13-6 27-6 12 0 24 4 28 9 43 33 10 16 10 32 0 7-3 15-6 24-30 34-13 5-26 5-12 0-25-4-27-9-41-32-11-16-11-33 0-7 2-13z m141 79q3-9 13-13 5-2 10-2t9 2q11 4 16 13t2 18-12 13q-9 3-19 0t-16-13q-3-6-3-12l0-6z m321 621q-1 5-1 10 0 13 8 25 10 16 29 21 34 7 68 7 51 0 100-15 83-27 143-93t78-153q7-35 7-68 0-51-16-98l0-1q-6-18-23-27-11-5-22-5-7 0-15 2-19 6-27 23-5 11-5 21 0 8 2 15l0 1q11 34 11 70 0 23-4 48-13 62-56 109t-102 66q-35 10-70 10-24 0-49-5-5-1-10-1-14 0-26 8-16 11-20 30z m40-157q-1 5-1 10 0 10 6 21 9 14 26 18 19 4 37 4 67 0 115-53 29-33 38-75 3-17 3-33 0-24-8-48-5-16-20-23-9-5-18-5-7 0-13 2-16 5-24 20-4 9-4 18 0 7 2 13 4 14 4 26 0 28-21 50-22 26-54 26-10 0-20-2-5-1-9-1-11 0-21 7-14 9-18 25z" horiz-adv-x="1235" />
24
- <glyph glyph-name="pocket" unicode="&#xe80f;" d="m2 520q-7 215 12 270 4 9 9 16t14 12 14 10 17 10 17 8q136 0 386 2t329 2l94 0t55 0 56-3 45-6 33-10q16-9 27-24t16-29 8-40 2-42-1-50 0-50q0-207-23-327t-96-213q-70-88-165-140t-193-62-200 11-186 73-151 134-96 181q-15 52-23 267z m232 2q-26-28 15-89t104-124q2-2 39-40t54-52 47-35 57-29q11-3 22-3t20 1 19 7 16 7 16 12 12 10 12 11l3 3q9 9 60 56t86 81 68 79 35 75q-15 40-38 56t-51 9-56-26-59-48-56-56-49-51-37-33q-27 16-73 60t-82 82-73 64-55 14q-25-15-56-41z" horiz-adv-x="1136" />
25
- <glyph glyph-name="xing" unicode="&#xe810;" d="m0 152l219 0 173 286-130 229-219 0 130-229z m362 90l346 608 232 0-345-608 222-392-232 0z" horiz-adv-x="940" />
26
- <glyph glyph-name="flattr" unicode="&#xe811;" d="m0-37l0 514q0 179 85 278t259 99l548 0q-5-5-52-53t-100-101-109-109-95-93-42-37q-15 0-15 16l0 156-48 0q-59 0-94-6t-63-26-39-57-12-96l0-262z m67-117q5 5 53 53t100 101 109 110 95 93 41 36q15 0 15-16l0-156 48 0q116 0 162 36t45 149l0 262 224 223 0-514q0-179-84-278t-260-99l-548 0z" horiz-adv-x="959" />
27
- <glyph glyph-name="odnoklassniki-rect" unicode="&#xe812;" d="m1000 761v-824q0-36-26-62t-62-26h-824q-36 0-62 26t-26 62v824q0 36 26 62t62 26h824q36 0 62-26t26-62z m-295-216q0 87-59 150t-146 63-146-63-59-150 59-150 146-63 146 63 59 150z m22-279q0 26-17 45t-43 18q-15 0-28-8-70-36-140-36-69 0-138 36-16 7-28 7-25 0-42-18t-18-45q0-68 147-97l-117-121q-18-18-18-44t18-45 42-18 43 18l112 116 112-116q18-18 43-18t43 18 17 45-18 44l-117 121q147 30 147 98z m-142 279q0-36-24-62t-61-26-60 26-25 62 25 62 60 26 61-26 24-62z" horiz-adv-x="1000" />
28
- <glyph glyph-name="tumblr" unicode="&#xe813;" d="m0 440l0 142q60 20 101 55 41 33 67 86 26 51 35 127l143 0 0-253 237 0 0-157-237 0 0-256q0-86 9-112 9-24 34-39 34-20 76-20 77 0 151 49l0-157q-63-31-116-43-52-12-112-12-68 0-122 17-55 19-89 50-36 31-52 68-14 34-14 105l0 350-111 0z" horiz-adv-x="616" />
29
- <glyph glyph-name="whatsapp" unicode="&#xe814;" d="m952 362c0-244-198-441-444-441-78 0-151 20-214 55l-246-78 80 236c-41 67-64 144-64 228 0 243 199 440 444 440 246 0 444-197 444-440z m-444 370c-206 0-373-166-373-370 0-81 26-156 71-217l-47-138 144 45c59-38 129-61 205-61 206 0 374 166 374 371 0 204-168 370-374 370z m225-472c-3 5-10 7-21 13-11 5-65 31-75 35-10 4-17 5-24-5-7-11-28-36-35-43-6-7-12-8-23-3-11 6-46 17-88 54-32 29-54 64-60 75-7 11-1 17 4 22 5 5 11 13 17 19 5 6 7 11 11 18 3 7 1 13-1 19-3 5-25 58-34 80-9 22-18 18-24 18-7 0-14 1-21 1-7 0-19-3-29-14-10-10-38-37-38-90 0-53 39-104 44-111 6-8 75-120 186-163 111-44 111-29 131-27 20 1 64 26 73 51 9 25 9 47 7 51z" horiz-adv-x="1000" />
30
- <glyph glyph-name="meneame" unicode="&#xe815;" d="m508 378c-21-13-41-20-63-24-32-7-64-7-96-1-28 5-50 20-68 41-37 41-63 87-70 142-11 76 15 137 73 185 42 34 91 51 144 60 82 15 159-1 235-34 38-16 76-36 115-50 9-3 18-6 27-7 17-2 31 3 42 16 14 16 19 36 19 57 4 0 5-3 6-5 13-23 9-60-7-79-18-20-41-23-66-20-28 3-54 11-80 23-48 23-96 44-148 56-66 15-130 12-194-9-92-31-140-122-115-216 14-54 45-97 93-127 20-13 43-18 67-17 24 0 48 5 71 9 5 1 9 2 15 0z m97-462c-5 1-13-4-14 3-1 6 7 8 12 10 31 12 62 25 92 37 19 8 38 17 55 29 6 4 11 8 16 14 7 8 9 17 5 28-23 58-49 115-70 175-16 48-29 96-33 147-4 60 17 107 69 139 24 15 51 27 77 38 32 14 64 28 93 50 43 33 57 76 53 128-2 23-6 46-11 68 0 3-4 7 1 9 4 1 6-2 8-5 14-25 25-52 28-81 6-55-18-98-57-135-24-23-54-38-84-53-27-13-55-26-80-42-28-18-51-40-58-74-7-28-2-55 4-81 12-59 36-114 59-169 13-29 26-57 35-86 16-47 3-84-39-111-30-19-64-27-99-33-20-3-41-4-62-5z m-408 567c0-5-3-8-6-12-45-64-83-132-112-205-21-51-25-103-12-156 16-66 60-106 122-130 45-18 91-26 139-32 65-7 131-13 197-19 7-1 13-2 19-4 3-1 7-2 7-6-1-5-5-3-8-4-43-3-86-5-128-6-61-1-121-1-180 9-97 16-172 64-208 159-19 51-17 104-1 156 23 77 59 148 117 207 15 15 32 28 48 41 2 1 3 3 6 2z m165-353c68 12 137 18 205 10 33-4 39-11 40-44 1-52-6-104-21-154-3-8-6-16-11-23-2-3-4-7-8-5-4 1-3 5-4 8-1 23 3 45 5 67 3 31 8 63 5 95-1 10-5 16-14 21-27 12-55 16-84 19-35 4-71 3-106 6-2 0-5 0-7 0z" horiz-adv-x="1000" />
31
- <glyph glyph-name="managewp" unicode="&#xe816;" d="m779 604c0 0-12-237-175-199-111 32-92 160-92 160s-127-55-143-173c-3 95-127 159-127 159 29-35 51-121 23-186-41-96-121-118-121-118 55-149 187-256 356-256 215 0 356 164 356 380 0 87-29 168-77 233m-279 198c-250 0-452-202-452-452 0-250 202-452 452-452 250 0 452 202 452 452 0 250-202 452-452 452m0-863c-227 0-411 184-411 411 0 227 184 411 411 411 227 0 411-184 411-411 0-227-184-411-411-411" horiz-adv-x="1000" />
32
- <glyph glyph-name="thumbs-up" unicode="&#xe817;" d="m143 100q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m643 321q0 29-22 50t-50 22h-196q0 32 27 89t26 89q0 55-17 81t-72 27q-14-15-21-48t-17-70-33-61q-13-13-43-51-2-3-13-17t-18-22-19-24-22-25-22-19-22-16-20-5h-18v-357h18q7 0 18-1t18-4 21-6 20-7 20-7 16-5q118-41 191-41h67q107 0 107 93 0 15-2 31 16 9 26 30t10 41-10 38q29 28 29 67 0 13-5 31t-14 26q18 1 30 26t12 45z m71 1q0-50-27-91 5-18 5-38 0-43-21-81 1-12 1-24 0-56-33-99 0-78-48-123t-126-45h-72q-54 0-106 13t-121 36q-65 23-77 23h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h153q20 13 77 86 32 42 60 72 13 14 19 47t17 71 35 60q22 21 50 21 47 0 84-18t57-57 20-104q0-51-27-107h98q58 0 101-42t42-100z" horiz-adv-x="857.1" />
33
- <glyph glyph-name="facebook-squared" unicode="&#xe818;" d="m696 779q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-104v332h111l16 130h-127v83q0 31 13 46t51 16l68 1v115q-35 5-100 5-75 0-121-45t-45-126v-95h-112v-130h112v-332h-297q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535z" horiz-adv-x="857.1" />
34
- <glyph glyph-name="mailru" unicode="&#xe819;" d="m542 418q0 60-29 94t-83 34q-35 0-69-17t-61-47-45-77-17-100q0-63 30-97t84-34q54 0 98 37t69 93 23 113z m315-68q0-62-21-110t-54-75-74-42-81-15q-3 0-8 0t-10-1q-53 0-79 30-15 18-18 46-29-37-74-61t-96-25q-90 0-140 54t-49 150q0 88 37 162t100 117 137 43q48 0 86-19t60-56l1 11 6 31q0 3 3 7t5 3h66q3 0 7-6 3-3 2-9l-67-343q-3-13-3-27 0-21 7-29t25-7q16 1 32 3t41 14 43 28 31 49 14 77q0 163-97 260t-260 97q-73 0-139-28t-114-77-76-113-29-139 29-139 76-114 114-76 139-28q127 0 226 80 6 5 13 5t12-7l23-27q4-7 3-14-1-7-6-12-57-46-127-72t-144-25q-87 0-167 34t-136 92-92 137-34 166 34 166 92 137 136 92 167 34q192 0 310-119t118-310z" horiz-adv-x="857.1" />
35
- <glyph glyph-name="line" unicode="&#xe81a;" d="m0 850h1000v-1000h-1000z m875-447c0 168-168 304-375 304s-375-136-375-304c0-150 133-276 314-300 12-3 28-8 33-19 4-9 2-24 1-34l-5-32c-2-9-8-37 32-20s216 127 295 218c54 59 80 120 80 187z m-522-100h-74c-11 0-20 9-20 20v149c0 11 9 20 20 20 11 0 19-9 19-20v-130h55c11 0 20-8 20-19 0-11-9-20-20-20z m77 20c0-11-9-20-19-20-11 0-20 9-20 20v149c0 11 9 20 20 20 10 0 19-9 19-20v-149z m180 0c0-9-6-16-14-19-2 0-4-1-6-1-6 0-12 3-16 8l-76 104v-92c0-11-9-20-20-20-11 0-19 9-19 20v149c0 8 5 16 13 19 2 0 4 1 6 1 6 0 12-3 16-8l76-104v92c0 11 9 20 20 20 11 0 20-9 20-20v-149z m120 94c11 0 20-9 20-20 0-10-9-19-20-19h-55v-35h55c11 0 20-9 20-20 0-11-9-20-20-20h-74c-11 0-20 9-20 20v149c0 11 9 20 20 20h74c11 0 20-9 20-20 0-11-9-20-20-20h-55v-35h55z" horiz-adv-x="1000" />
36
- <glyph glyph-name="yummly" unicode="&#xe81b;" d="m791 265c12-1 23 2 33 6 6 3 9 7 7 14-2 6-4 13-2 20 8 49 16 98 25 147 0 3 1 6 3 8 11 7 23 14 37 13 9-1 14-6 15-15 1-6 1-12 0-18-6-31-11-61-16-91-3-15-5-31-7-46-3-21 5-34 24-37 15-3 30-2 44 4 7 3 10 8 8 15-3 10-3 19-1 29 7 44 15 88 23 133 3 19 7 38 4 58-4 20-16 33-36 38-14 3-27 3-40-1-19-4-36-12-52-21-5-3-7-2-10 2-6 11-16 17-27 20-14 3-28 3-42-1-15-3-29-9-43-16-5-3-8-2-10 2-4 7-11 10-18 12-16 4-32 1-47-5-7-3-9-7-7-14 3-9 3-19 1-28-8-47-17-94-25-140-3-20-8-38-8-58 0-17 8-27 25-30 15-2 29-1 43 5 8 4 10 7 8 16-1 8-3 15-1 23 8 48 16 95 24 143 1 3 2 6 5 8 9 6 18 11 29 12 15 2 22-4 22-19 0-4 0-8-1-12-5-30-10-60-15-90-3-18-8-36-8-55-1-19 10-30 30-31 2 0 5 0 6 0z m-418 69c0-2 0-4 0-6 1-42 30-65 71-58 19 3 36 9 53 16 5 2 7 2 9-3 4-11 13-16 24-18 15-2 30 0 44 6 7 2 9 7 7 13-3 11-3 22-1 33 8 45 16 90 24 135 3 20 9 40 8 61 0 14-8 23-22 27-16 3-31 1-46-5-7-3-9-7-8-14 2-8 4-15 2-23-8-46-16-93-24-139-1-3-2-6-5-8-11-5-21-10-33-10-16-1-24 7-24 22 0 4 0 8 1 13 4 26 9 52 13 78 4 20 9 39 9 59-1 15-9 24-23 27-15 4-30 2-44-3-10-4-11-7-9-17 2-8 3-15 1-23-5-29-10-58-15-87-4-25-10-50-12-76z m601-100c-4 4-8 5-14 2-10-7-21-12-33-17-52-21-106-29-165-28-32-1-67 3-102 7-65 8-130 21-195 32-47 8-93 16-141 19-12 1-12 1-10 13 17 96 34 192 50 288 5 25 10 50 13 74 2 21-7 33-27 36-15 3-29 1-42-5-8-3-10-6-8-15 2-9 3-17 1-26-13-73-26-146-39-220-1-4-3-8-7-10-22-12-46-21-70-26-11-2-22-4-33-1-11 2-15 6-17 17-1 8 0 16 2 23 11 43 22 87 33 130 6 23 13 47 12 72-2 35-21 59-56 63-44 5-83-10-116-39-8-6-8-16-6-25 5-14 13-26 25-36 4-4 9-4 13 1 2 2 4 4 6 5 11 9 23 17 38 18 11 1 17-4 18-15 1-7-1-13-3-20-9-35-18-69-27-104-8-30-18-60-23-92-5-38 12-81 69-83 42-1 82 8 119 30 2 1 4 3 6 2 1-1 0-4 0-5-2-13-5-25-6-37-1-9-6-12-13-13-31-4-60-12-87-27-44-22-71-59-78-108-6-36 10-68 41-85 19-10 40-12 61-10 46 4 79 29 102 67 18 29 29 61 35 95 2 11 3 12 14 11 47-4 93-12 138-22 86-17 170-38 257-50 55-7 110-10 165-2 39 6 75 18 107 40 10 7 16 16 16 29-1 19-9 34-23 47z m-756-56c-6-23-13-46-27-66-7-10-16-16-27-19-17-4-28 6-29 23 1 16 8 30 20 40 16 16 36 23 58 28 4 1 6-1 5-6z" horiz-adv-x="1000" />
37
- <glyph glyph-name="frype" unicode="&#xe81c;" d="m420 188c3-18 7-29 14-35 8-8 18-10 31-12 16 2 27 5 34 16 4 7 7 17 9 31 1 13 2 35 5 60v1l-1 9-2 9-1 9-1 8-1 9-2 9-1 9-1 8-2 8-1 8-1 8v1l-1 7-1 7-2 7-1 6-1 6-2 6-2 8-2 9-2 9-3 10-2 10-3 11-2 10-3 11-2 11-1 11-2 11-1 12-1 11-1 11v11l1 11 1 11 1 11 3 11 3 10 5 10 5 10 3 4c-10 2-22 4-36 4-5 0-11 0-16-1-120-10-71-147-50-222 14-52 30-173 36-210z m14 448c5-1 10-1 15-1 25 0 41 13 50 33 6 14 8 31 8 50-1 15-3 30-8 42-10 24-28 41-55 41-3 0-7 0-10-1-34-5-49-40-48-82 1-40 17-74 48-82z m65-198c4-18 9-35 12-50 15-60 29-199 35-241 5-43 20-51 50-54 30 3 45 11 50 54 5 42 19 181 34 241 3 15 8 32 12 50 13 55 24 119 0 161-15 26-45 44-96 44-52 0-82-18-97-44-24-42-13-106 0-161z m96 221h1c46 0 68 43 68 95 0 53-22 96-68 96h-1c-47 0-69-43-69-96 0-52 22-95 69-95z m146-38c-14 0-26-2-36-4l3-4 5-10 5-10 3-10 3-11 2-11 1-11 0-11v-11l-1-11 0-11-2-12-1-11-2-11-3-11-2-11-2-10-2-11-3-10-2-10-3-9-2-9-2-8-1-6-2-6-1-6-1-7-2-7-1-6v-2l-1-8-2-8-1-8-1-8-1-9-2-9-1-9-1-8-1-9-1-9-1-9v0c2-26 4-48 5-61 1-14 4-24 8-31 7-11 18-14 34-16 13 2 23 4 31 12 7 6 11 17 14 35 6 37 22 158 37 210 20 75 69 212-51 222-5 1-10 1-16 1z m1 14c5 0 10 0 15 1 31 8 47 42 48 82 2 42-13 77-48 82-3 1-6 1-10 1-27 0-45-17-55-41-4-12-7-27-8-42 0-19 2-36 8-50 9-20 25-33 50-33z m144-62c223-3 353-139 205-326-67-86-182-171-334-226-7-3-15-5-22-8-14-4-29-9-43-13-33-9-65-17-96-24-34-6-66-11-97-15-22-2-44-4-65-4-141-4-248 35-283 118-42 100 43 238 213 343-126-50-354-169-364-340v-22c1-17 4-34 10-53 36-115 207-169 424-149 22 2 43 4 65 7 32 5 64 11 97 19 31 8 64 16 96 27 7 2 15 4 22 7 14 4 29 9 43 15 188 68 328 159 410 264 46 60 70 116 75 165v38c-13 124-158 197-356 177" horiz-adv-x="1242" />
38
- <glyph glyph-name="skype" unicode="&#xe81d;" d="m655 257q0 28-11 51t-27 38-41 27-46 19-49 13l-58 14q-17 4-25 6t-19 6-17 9-9 12-4 16q0 43 80 43 24 0 43-6t30-16 21-19 23-16 27-7q26 0 42 18t16 43q0 31-32 55t-79 38-101 13q-38 0-74-9t-67-26-49-48-19-72q0-34 10-60t32-42 44-27 58-18l81-20q51-12 63-20 18-11 18-34 0-21-23-36t-58-14q-29 0-51 9t-37 22-25 25-26 21-30 9q-28 0-42-17t-14-41q0-52 68-88t162-37q41 0 78 10t69 30 49 52 19 74z m202-121q0-89-63-152t-151-63q-73 0-131 45-43-9-83-9-80 0-153 31t-126 84-83 125-31 153q0 41 9 84-45 58-45 130 0 89 63 152t151 63q73 0 131-45 43 9 84 9 79 0 152-31t126-84 83-125 31-153q0-41-9-84 45-58 45-130z" horiz-adv-x="857.1" />
39
- </font>
40
- </defs>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  </svg>
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Copyright (C) 2016 by original authors @ fontello.com</metadata>
5
+ <defs>
6
+ <font id="mashsb-font" horiz-adv-x="1000" >
7
+ <font-face font-family="mashsb-font" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
+ <missing-glyph horiz-adv-x="1000" />
9
+ <glyph glyph-name="facebook" unicode="&#xe800;" d="M535 843v-147h-87q-48 0-65-20t-17-60v-106h164l-22-165h-142v-424h-171v424h-142v165h142v122q0 104 58 161t155 57q82 0 127-7z" horiz-adv-x="571.4" />
10
+
11
+ <glyph glyph-name="google" unicode="&#xe801;" d="M0 32q0 87 89 155t215 68l54 0q-42 40-42 86 0 29 16 58-10-1-29-1-104 0-170 65t-66 160q0 91 82 159t187 68l310 0-69-50-98 0q47-18 74-68t26-111q0-93-88-162-37-29-48-46t-11-42q0-19 27-48t54-49q61-43 85-88t23-113q0-90-82-157t-222-66q-133 0-225 50t-92 132z m112 33q0-69 59-118t145-48q119 0 173 44t53 117q0 19-4 32-3 11-7 21t-12 19-14 16-19 16-21 15-25 18-26 17q-39 12-77 12l-4 0q-87 0-153-47-68-48-68-114z m66 559q11-79 61-136t109-58l4 0q56 0 90 52 27 42 27 99 0 16-2 34-10 79-59 134t-110 57l-4 0q-57 0-91-51-27-41-27-98 0-16 2-33z" horiz-adv-x="646" />
12
+
13
+ <glyph glyph-name="pinterest" unicode="&#xe802;" d="M0 350q4 213 150 356t350 144q219-4 358-149t142-351q-4-211-150-354t-350-146q-70 0-141 21 14 22 28 49 15 34 39 125 6 26 17 69 14-24 47-43 88-41 186 8 101 58 140 181 36 129-8 239t-158 160q-142 41-277-9t-187-171q-14-45-17-89t3-86 29-75 63-51q9-4 15 0 8 4 16 31t6 38q-2 3-8 13-41 67-27 140t60 124q72 64 169 70t165-53q37-42 48-103t0-116-38-105q-49-76-115-78-39 2-64 30t-14 66q3 21 23 84t22 94q-6 74-69 76-49-6-72-44t-26-87q6-57 18-78-21-88-33-141-4-14-22-84t-19-107l0-55q-139 64-219 187t-80 270z" horiz-adv-x="1000" />
14
+
15
+ <glyph glyph-name="linkedin" unicode="&#xe803;" d="M0-150l0 1000 1000 0 0-1000-1000 0z m164 729q2-34 25-54t53-23l2 0q35 2 59 24t23 53q-2 33-25 53t-55 21q-35 0-58-22t-24-52z m8-569l144 0 0 434-144 0 0-434z m225 0l144 0 0 242q0 24 4 36 27 52 74 52 72-2 72-97l0-233 145 0 0 248q-2 98-47 149-47 47-119 49-53-2-86-26-21-15-43-47l0 61-144 0q1-18 1-70 0-90-1-364z" horiz-adv-x="1000" />
16
+
17
+ <glyph glyph-name="digg" unicode="&#xe804;" d="M0 152l0 372q0 13 13 13l176 0 0 129q0 14 13 14l98 0 0-514q0-14-12-14l-288 0z m109 83l67 0q13 0 13 14l0 206-67 0q-13 0-13-14l0-206z m225-83l0 372q0 13 13 13l98 0 0-371q0-14-12-14l-99 0z m0 445l0 69q0 14 12 14l99 0 0-69q0-14-12-14l-99 0z m149-445l0 372q0 13 13 13l288 0 0-504q0-13-13-13l-288 0 1 69q0 14 12 14l176 0 0 49-189 0z m110 83l67 0q12 0 12 14l0 206-67 0q-12 0-12-14l0-206z m229-146q0 14 13 14l176 0 0 49-189 0 0 372q0 13 13 13l287 0 0-504q0-13-12-13l-288 0 0 69z m109 146l67 0q13 0 13 14l0 206-67 0q-13 0-13-14l0-206z" horiz-adv-x="1122" />
18
+
19
+ <glyph glyph-name="reddit" unicode="&#xe805;" d="M0 353q0 62 50 106t112 44q62 0 105-36l5 0q134 82 335 82l5 4 70 267 242-36q0-1 2-1 1 0 0 1 2 1 12 16t14 18q34 32 82 32 49 0 83-32t33-82-33-84-83-35q-57 0-87 39t-30 96q-2-1-97 13t-110 17l-3 0q-2-2-16-53t-30-109-18-64l0-3 5-4q72 0 148-20t130-58l3-2q1 1 2 1t2 1q25 18 36 25t29 13 43 6q68 0 116-48t48-117q0-47-26-86t-70-60q0-195-260-303-41-18-56-23-32-10-91-19t-93-9q-120 0-231 35-2 2-72 38-95 51-152 116t-58 156l-5 0q-33 17-59 50l-9 12q-15 27-19 46t-4 50z m34-12q0-66 57-112 5 59 48 116t101 101q-37 26-82 26-49 0-86-40t-38-91z m102-146q0-54 31-104t80-85 102-60 105-34q75-14 146-14 123 0 233 39t185 123l-3 0q30 38 43 69t13 72q0 54-26 103t-70 84-92 61-100 38q-85 23-181 23-74 0-151-18t-150-54-119-99-46-144z m186 73q0 37 23 60t59 22 62-22 25-60q0-36-25-60t-62-24-59 24-23 60z m36-164l44 0q25-45 80-68t111-24q58 0 110 24t84 68l41 0q-25-62-93-96t-142-34q-72 0-141 35t-94 95z m336 164q0 38 23 60t61 22q34 0 58-24t24-58-24-59-58-25q-37 0-60 24t-24 60z m255 468q0-35 25-60t60-25q36 0 59 25t23 60q0 34-24 58t-58 24-59-24-26-58z m14-281q55-36 95-92t56-120q59 43 59 96 0 58-35 100t-93 42q-45 0-82-26z" horiz-adv-x="1205" />
20
+
21
+ <glyph glyph-name="stumbleupon" unicode="&#xe806;" d="M0 143l0 181 224 0 0-179q0-28 20-48t49-21 50 20 20 49l0 423q0 117 87 200t205 82 206-83 86-201l0-92-134-40-89 42 0 80q0 29-20 49t-49 20-49-20-21-49l0-417q0-120-86-205t-206-84q-121 0-207 85t-86 208z m724-3l0 183 89-42 134 40 0-184q0-29 20-49t49-21 49 21 20 49l0 187 224 0 0-181q0-121-85-207t-207-86-207 85-86 205z" horiz-adv-x="1309" />
22
+
23
+ <glyph glyph-name="twitter" unicode="&#xe807;" d="M0-37q30-3 60-3 176 0 314 108-82 1-147 50t-89 125q20-4 47-4 35 0 67 9-88 17-145 87t-58 160l0 3q53-30 115-31-52 34-82 90t-31 120q0 68 35 127 94-117 230-186t290-78q-7 33-7 58 0 104 74 178t179 74q109 0 184-80 87 18 160 62-28-91-110-140 73 9 144 40-48-75-125-131l0-33q0-101-29-202t-90-194-145-165-201-115-253-42q-209 0-387 113z" horiz-adv-x="1230" />
24
+
25
+ <glyph glyph-name="mail" unicode="&#xe808;" d="M0 28v644q0 8 2 18l460-460q39-39 95-39 55 0 94 39l460 460q2-9 2-18v-644q0-37-26-62t-62-26h-937q-36 0-62 26t-26 62z m63 728q13 4 25 4h937q12 0 25-4l-463-463q-13-12-31-12t-30 12z" horiz-adv-x="1113.3" />
26
+
27
+ <glyph glyph-name="vk" unicode="&#xe809;" d="M0 654q10 8 25 12 14 4 25 4l9 0q10 0 24-1 22-1 32-1 6 0 38 2 16 1 29 1t23-1q20-2 32-8 6-3 13-13t12-19 11-25 10-22q38-82 94-163 2-3 7-11t9-12 9-12 10-11 11-8 11-6 12 0q28 5 31 117 1 19 1 35 0 74-15 102-6 11-15 18t-25 12-23 10q14 28 50 37t96 9l53 0t26 0 27-3l22-6t20-9 12-14q9-18 11-42 0-7 1-14 0-20-3-52-4-42-4-52-3-23-3-46 0-18 2-38 4-44 30-61 9 1 17 4t15 11 11 12 13 16 10 14q47 62 94 163l9 23t12 26 12 20 15 13q16 7 38 7l9 0q20 0 46-2 32-2 47-2 9 0 28 1t32 2 30-1 25-6 14-13q3-6 3-13 0-29-35-87-17-29-34-52t-46-58-37-47q-2-2-14-18t-17-24-12-22-5-27q0-8 3-15t10-15 10-12 13-13 12-11q71-65 112-117 40-52 40-75 0-33-51-41-26-4-53-4-21 0-43 3-20 2-37 2-26 0-45-5l-6 0q-66 11-139 94-4 4-17 21t-22 25-23 17-27 6q-23-4-30-29t-9-59-10-49q-13-24-79-24-28 0-66 4-78 8-141 40t-101 68-81 92q-104 133-197 322-3 6-11 23t-12 25-9 24-8 28-3 26z" horiz-adv-x="1220" />
28
+
29
+ <glyph glyph-name="print" unicode="&#xe80a;" d="M866 564c40 0 75-35 75-78l0-366c0-42-35-77-75-77l-76 0 34-153-691 0 27 153-82 0c-45 0-78 35-78 77l0 366c0 43 33 78 78 78l96 0 0 117 34 0 0 129 527 0 0-129 34 0 0-117 97 0z m-623 199l0-292 457 0 0 292-457 0z m-113-389c30 0 55 24 55 54 0 28-25 53-55 53-29 0-54-25-54-53 0-30 25-54 54-54z m63-438l567 0-47 242-484 0z m252 113l-139 0 0 35 139 0 0-35z m198 0l-139 0 0 35 139 0 0-35z" horiz-adv-x="941" />
30
+
31
+ <glyph glyph-name="delicious" unicode="&#xe80b;" d="M0-150l0 501 501 0 0-501-501 0z m509 499l0 501 500 0 0-501-500 0z" horiz-adv-x="1009" />
32
+
33
+ <glyph glyph-name="buffer" unicode="&#xe80c;" d="M0 88q11 15 32 26t49 20 40 15q19 0 34-4t33-15 25-13q47-21 260-119 19-4 36 0t39 18 24 14q20 9 77 35t87 39q4 2 42 21t60 24q13 2 28-1t23-7 23-13 18-11 16-6 18-8 11-11q3-4 4-14-10-13-31-24t-51-22-40-16q-43-20-128-62t-129-61q-7-3-21-12t-23-13-26-11-27-7-30 2l-264 123q-6 3-32 14t-51 22-54 24-46 24-22 16q-4 4-4 13z m0 268q11 15 32 25t50 20 41 15q19 0 34-4t35-15 25-14q42-19 127-58t127-59q19-5 37 0t39 17 25 14q68 32 160 72 11 5 32 17t38 19 36 11q16 3 32-1t37-17 23-13q5-3 16-6t18-8 11-11q3-5 4-14-10-14-31-25t-53-23-41-16q-48-23-135-65t-123-59q-7-3-26-14t-29-15-32-10-36 0q-214 101-260 122-6 3-44 19t-69 30-62 30-34 22q-4 4-4 14z m0 267q10 15 32 27t52 22 41 16l348 162q30 0 54-7t56-26 40-22q39-18 117-54t117-55q4-2 37-15t54-24 27-20q3-4 4-13-9-13-26-22t-43-19-35-14q-47-22-140-66t-139-67q-6-3-20-11t-23-12-25-11-27-6-28 1q-245 114-256 119-4 2-63 28t-102 46-48 30q-4 4-4 13z" horiz-adv-x="979" />
34
+
35
+ <glyph glyph-name="heart" unicode="&#xe80d;" d="M500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 36-38 55-30 67-13 77q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
36
+
37
+ <glyph glyph-name="weibo" unicode="&#xe80e;" d="M0 178q0 161 184 347 117 116 236 162 56 23 97 23 45 0 72-27 26-26 26-72 0-31-12-72-4-14 3-17t16-1l10 4q96 40 170 40t106-42q15-22 15-52 0-31-16-71-7-10-2-17t8-9 14-5q62-19 106-62t44-107q0-59-41-120t-111-113-178-84-229-33q-131 0-247 38t-194 116-77 174z m125-48q10-101 125-161 92-49 209-49 29 0 60 3 153 15 255 97 92 75 92 165 0 9-1 18-10 100-125 160-93 49-210 49-29 0-59-3-101-10-183-51t-126-101q-38-53-38-109 0-9 1-18z m160-62q-13 29-13 59 0 35 18 70 31 64 104 96 45 20 91 20 27 0 54-7 76-20 109-82 17-32 17-66 0-32-15-65-31-71-109-104-44-19-88-19-34 0-67 11-73 23-101 87z m56 19q6-25 30-35 13-6 27-6 12 0 24 4 28 9 43 33 10 16 10 32 0 7-3 15-6 24-30 34-13 5-26 5-12 0-25-4-27-9-41-32-11-16-11-33 0-7 2-13z m141 79q3-9 13-13 5-2 10-2t9 2q11 4 16 13t2 18-12 13q-9 3-19 0t-16-13q-3-6-3-12l0-6z m321 621q-1 5-1 10 0 13 8 25 10 16 29 21 34 7 68 7 51 0 100-15 83-27 143-93t78-153q7-35 7-68 0-51-16-98l0-1q-6-18-23-27-11-5-22-5-7 0-15 2-19 6-27 23-5 11-5 21 0 8 2 15l0 1q11 34 11 70 0 23-4 48-13 62-56 109t-102 66q-35 10-70 10-24 0-49-5-5-1-10-1-14 0-26 8-16 11-20 30z m40-157q-1 5-1 10 0 10 6 21 9 14 26 18 19 4 37 4 67 0 115-53 29-33 38-75 3-17 3-33 0-24-8-48-5-16-20-23-9-5-18-5-7 0-13 2-16 5-24 20-4 9-4 18 0 7 2 13 4 14 4 26 0 28-21 50-22 26-54 26-10 0-20-2-5-1-9-1-11 0-21 7-14 9-18 25z" horiz-adv-x="1235" />
38
+
39
+ <glyph glyph-name="pocket" unicode="&#xe80f;" d="M2 520q-7 215 12 270 4 9 9 16t14 12 14 10 17 10 17 8q136 0 386 2t329 2l94 0t55 0 56-3 45-6 33-10q16-9 27-24t16-29 8-40 2-42-1-50 0-50q0-207-23-327t-96-213q-70-88-165-140t-193-62-200 11-186 73-151 134-96 181q-15 52-23 267z m232 2q-26-28 15-89t104-124q2-2 39-40t54-52 47-35 57-29q11-3 22-3t20 1 19 7 16 7 16 12 12 10 12 11l3 3q9 9 60 56t86 81 68 79 35 75q-15 40-38 56t-51 9-56-26-59-48-56-56-49-51-37-33q-27 16-73 60t-82 82-73 64-55 14q-25-15-56-41z" horiz-adv-x="1136" />
40
+
41
+ <glyph glyph-name="xing" unicode="&#xe810;" d="M0 152l219 0 173 286-130 229-219 0 130-229z m362 90l346 608 232 0-345-608 222-392-232 0z" horiz-adv-x="940" />
42
+
43
+ <glyph glyph-name="flattr" unicode="&#xe811;" d="M0-37l0 514q0 179 85 278t259 99l548 0q-5-5-52-53t-100-101-109-109-95-93-42-37q-15 0-15 16l0 156-48 0q-59 0-94-6t-63-26-39-57-12-96l0-262z m67-117q5 5 53 53t100 101 109 110 95 93 41 36q15 0 15-16l0-156 48 0q116 0 162 36t45 149l0 262 224 223 0-514q0-179-84-278t-260-99l-548 0z" horiz-adv-x="959" />
44
+
45
+ <glyph glyph-name="odnoklassniki" unicode="&#xe812;" d="M1000 761v-824q0-36-26-62t-62-26h-824q-36 0-62 26t-26 62v824q0 36 26 62t62 26h824q36 0 62-26t26-62z m-295-216q0 87-59 150t-146 63-146-63-59-150 59-150 146-63 146 63 59 150z m22-279q0 26-17 45t-43 18q-15 0-28-8-70-36-140-36-69 0-138 36-16 7-28 7-25 0-42-18t-18-45q0-68 147-97l-117-121q-18-18-18-44t18-45 42-18 43 18l112 116 112-116q18-18 43-18t43 18 17 45-18 44l-117 121q147 30 147 98z m-142 279q0-36-24-62t-61-26-60 26-25 62 25 62 60 26 61-26 24-62z" horiz-adv-x="1000" />
46
+
47
+ <glyph glyph-name="tumblr" unicode="&#xe813;" d="M0 440l0 142q60 20 101 55 41 33 67 86 26 51 35 127l143 0 0-253 237 0 0-157-237 0 0-256q0-86 9-112 9-24 34-39 34-20 76-20 77 0 151 49l0-157q-63-31-116-43-52-12-112-12-68 0-122 17-55 19-89 50-36 31-52 68-14 34-14 105l0 350-111 0z" horiz-adv-x="616" />
48
+
49
+ <glyph glyph-name="whatsapp" unicode="&#xe814;" d="M952 362c0-244-198-441-444-441-78 0-151 20-214 55l-246-78 80 236c-41 67-64 144-64 228 0 243 199 440 444 440 246 0 444-197 444-440z m-444 370c-206 0-373-166-373-370 0-81 26-156 71-217l-47-138 144 45c59-38 129-61 205-61 206 0 374 166 374 371 0 204-168 370-374 370z m225-472c-3 5-10 7-21 13-11 5-65 31-75 35-10 4-17 5-24-5-7-11-28-36-35-43-6-7-12-8-23-3-11 6-46 17-88 54-32 29-54 64-60 75-7 11-1 17 4 22 5 5 11 13 17 19 5 6 7 11 11 18 3 7 1 13-1 19-3 5-25 58-34 80-9 22-18 18-24 18-7 0-14 1-21 1-7 0-19-3-29-14-10-10-38-37-38-90 0-53 39-104 44-111 6-8 75-120 186-163 111-44 111-29 131-27 20 1 64 26 73 51 9 25 9 47 7 51z" horiz-adv-x="1000" />
50
+
51
+ <glyph glyph-name="meneame" unicode="&#xe815;" d="M508 378c-21-13-41-20-63-24-32-7-64-7-96-1-28 5-50 20-68 41-37 41-63 87-70 142-11 76 15 137 73 185 42 34 91 51 144 60 82 15 159-1 235-34 38-16 76-36 115-50 9-3 18-6 27-7 17-2 31 3 42 16 14 16 19 36 19 57 4 0 5-3 6-5 13-23 9-60-7-79-18-20-41-23-66-20-28 3-54 11-80 23-48 23-96 44-148 56-66 15-130 12-194-9-92-31-140-122-115-216 14-54 45-97 93-127 20-13 43-18 67-17 24 0 48 5 71 9 5 1 9 2 15 0z m97-462c-5 1-13-4-14 3-1 6 7 8 12 10 31 12 62 25 92 37 19 8 38 17 55 29 6 4 11 8 16 14 7 8 9 17 5 28-23 58-49 115-70 175-16 48-29 96-33 147-4 60 17 107 69 139 24 15 51 27 77 38 32 14 64 28 93 50 43 33 57 76 53 128-2 23-6 46-11 68 0 3-4 7 1 9 4 1 6-2 8-5 14-25 25-52 28-81 6-55-18-98-57-135-24-23-54-38-84-53-27-13-55-26-80-42-28-18-51-40-58-74-7-28-2-55 4-81 12-59 36-114 59-169 13-29 26-57 35-86 16-47 3-84-39-111-30-19-64-27-99-33-20-3-41-4-62-5z m-408 567c0-5-3-8-6-12-45-64-83-132-112-205-21-51-25-103-12-156 16-66 60-106 122-130 45-18 91-26 139-32 65-7 131-13 197-19 7-1 13-2 19-4 3-1 7-2 7-6-1-5-5-3-8-4-43-3-86-5-128-6-61-1-121-1-180 9-97 16-172 64-208 159-19 51-17 104-1 156 23 77 59 148 117 207 15 15 32 28 48 41 2 1 3 3 6 2z m165-353c68 12 137 18 205 10 33-4 39-11 40-44 1-52-6-104-21-154-3-8-6-16-11-23-2-3-4-7-8-5-4 1-3 5-4 8-1 23 3 45 5 67 3 31 8 63 5 95-1 10-5 16-14 21-27 12-55 16-84 19-35 4-71 3-106 6-2 0-5 0-7 0z" horiz-adv-x="1000" />
52
+
53
+ <glyph glyph-name="managewp" unicode="&#xe816;" d="M779 604c0 0-12-237-175-199-111 32-92 160-92 160s-127-55-143-173c-3 95-127 159-127 159 29-35 51-121 23-186-41-96-121-118-121-118 55-149 187-256 356-256 215 0 356 164 356 380 0 87-29 168-77 233m-279 198c-250 0-452-202-452-452 0-250 202-452 452-452 250 0 452 202 452 452 0 250-202 452-452 452m0-863c-227 0-411 184-411 411 0 227 184 411 411 411 227 0 411-184 411-411 0-227-184-411-411-411" horiz-adv-x="1000" />
54
+
55
+ <glyph glyph-name="thumbs-up" unicode="&#xe817;" d="M143 100q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m643 321q0 29-22 50t-50 22h-196q0 32 27 89t26 89q0 55-17 81t-72 27q-14-15-21-48t-17-70-33-61q-13-13-43-51-2-3-13-17t-18-22-19-24-22-25-22-19-22-16-20-5h-18v-357h18q7 0 18-1t18-4 21-6 20-7 20-7 16-5q118-41 191-41h67q107 0 107 93 0 15-2 31 16 9 26 30t10 41-10 38q29 28 29 67 0 13-5 31t-14 26q18 1 30 26t12 45z m71 1q0-50-27-91 5-18 5-38 0-43-21-81 1-12 1-24 0-56-33-99 0-78-48-123t-126-45h-72q-54 0-106 13t-121 36q-65 23-77 23h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h153q20 13 77 86 32 42 60 72 13 14 19 47t17 71 35 60q22 21 50 21 47 0 84-18t57-57 20-104q0-51-27-107h98q58 0 101-42t42-100z" horiz-adv-x="857.1" />
56
+
57
+ <glyph glyph-name="facebook-squared" unicode="&#xe818;" d="M696 779q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-104v332h111l16 130h-127v83q0 31 13 46t51 16l68 1v115q-35 5-100 5-75 0-121-45t-45-126v-95h-112v-130h112v-332h-297q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535z" horiz-adv-x="857.1" />
58
+
59
+ <glyph glyph-name="mailru" unicode="&#xe819;" d="M542 418q0 60-29 94t-83 34q-35 0-69-17t-61-47-45-77-17-100q0-63 30-97t84-34q54 0 98 37t69 93 23 114z m315-68q0-62-21-110t-54-75-74-42-81-15q-3 0-8 0t-10-1q-53 0-79 30-15 18-18 46-29-37-74-61t-96-25q-90 0-140 54t-49 150q0 88 37 162t100 117 137 43q48 0 86-19t60-56l1 11 6 31q0 3 3 7t5 3h66q3 0 7-6 3-3 2-9l-67-343q-3-13-3-26 0-22 7-29t25-8q16 1 32 3t41 14 43 28 31 50 14 76q0 163-97 260t-260 97q-73 0-139-28t-114-76-76-114-29-139 29-139 76-113 114-77 139-28q127 0 226 80 6 5 13 5t12-7l23-27q4-7 3-14-1-7-6-12-57-46-127-72t-144-25q-87 0-167 34t-136 92-92 137-34 166 34 166 92 137 136 92 167 34q192 0 310-119t118-310z" horiz-adv-x="857.1" />
60
+
61
+ <glyph glyph-name="line" unicode="&#xe81a;" d="M0 850h1000v-1000h-1000z m875-447c0 168-168 304-375 304s-375-136-375-304c0-150 133-276 314-300 12-3 28-8 33-19 4-9 2-24 1-34l-5-32c-2-9-8-37 32-20s216 127 295 218c54 59 80 120 80 187z m-522-100h-74c-11 0-20 9-20 20v149c0 11 9 20 20 20 11 0 19-9 19-20v-130h55c11 0 20-8 20-19 0-11-9-20-20-20z m77 20c0-11-9-20-19-20-11 0-20 9-20 20v149c0 11 9 20 20 20 10 0 19-9 19-20v-149z m180 0c0-9-6-16-14-19-2 0-4-1-6-1-6 0-12 3-16 8l-76 104v-92c0-11-9-20-20-20-11 0-19 9-19 20v149c0 8 5 16 13 19 2 0 4 1 6 1 6 0 12-3 16-8l76-104v92c0 11 9 20 20 20 11 0 20-9 20-20v-149z m120 94c11 0 20-9 20-20 0-10-9-19-20-19h-55v-35h55c11 0 20-9 20-20 0-11-9-20-20-20h-74c-11 0-20 9-20 20v149c0 11 9 20 20 20h74c11 0 20-9 20-20 0-11-9-20-20-20h-55v-35h55z" horiz-adv-x="1000" />
62
+
63
+ <glyph glyph-name="yummly" unicode="&#xe81b;" d="M791 265c12-1 23 2 33 6 6 3 9 7 7 14-2 6-4 13-2 20 8 49 16 98 25 147 0 3 1 6 3 8 11 7 23 14 37 13 9-1 14-6 15-15 1-6 1-12 0-18-6-31-11-61-16-91-3-15-5-31-7-46-3-21 5-34 24-37 15-3 30-2 44 4 7 3 10 8 8 15-3 10-3 19-1 29 7 44 15 88 23 133 3 19 7 38 4 58-4 20-16 33-36 38-14 3-27 3-40-1-19-4-36-12-52-21-5-3-7-2-10 2-6 11-16 17-27 20-14 3-28 3-42-1-15-3-29-9-43-16-5-3-8-2-10 2-4 7-11 10-18 12-16 4-32 1-47-5-7-3-9-7-7-14 3-9 3-19 1-28-8-47-17-94-25-140-3-20-8-38-8-58 0-17 8-27 25-30 15-2 29-1 43 5 8 4 10 7 8 16-1 8-3 15-1 23 8 48 16 95 24 143 1 3 2 6 5 8 9 6 18 11 29 12 15 2 22-4 22-19 0-4 0-8-1-12-5-30-10-60-15-90-3-18-8-36-8-55-1-19 10-30 30-31 2 0 5 0 6 0z m-418 69c0-2 0-4 0-6 1-42 30-65 71-58 19 3 36 9 53 16 5 2 7 2 9-3 4-11 13-16 24-18 15-2 30 0 44 6 7 2 9 7 7 13-3 11-3 22-1 33 8 45 16 90 24 135 3 20 9 40 8 61 0 14-8 23-22 27-16 3-31 1-46-5-7-3-9-7-8-14 2-8 4-15 2-23-8-46-16-93-24-139-1-3-2-6-5-8-11-5-21-10-33-10-16-1-24 7-24 22 0 4 0 8 1 13 4 26 9 52 13 78 4 20 9 39 9 59-1 15-9 24-23 27-15 4-30 2-44-3-10-4-11-7-9-17 2-8 3-15 1-23-5-29-10-58-15-87-4-25-10-50-12-76z m601-100c-4 4-8 5-14 2-10-7-21-12-33-17-52-21-106-29-165-28-32-1-67 3-102 7-65 8-130 21-195 32-47 8-93 16-141 19-12 1-12 1-10 13 17 96 34 192 50 288 5 25 10 50 13 74 2 21-7 33-27 36-15 3-29 1-42-5-8-3-10-6-8-15 2-9 3-17 1-26-13-73-26-146-39-220-1-4-3-8-7-10-22-12-46-21-70-26-11-2-22-4-33-1-11 2-15 6-17 17-1 8 0 16 2 23 11 43 22 87 33 130 6 23 13 47 12 72-2 35-21 59-56 63-44 5-83-10-116-39-8-6-8-16-6-25 5-14 13-26 25-36 4-4 9-4 13 1 2 2 4 4 6 5 11 9 23 17 38 18 11 1 17-4 18-15 1-7-1-13-3-20-9-35-18-69-27-104-8-30-18-60-23-92-5-38 12-81 69-83 42-1 82 8 119 30 2 1 4 3 6 2 1-1 0-4 0-5-2-13-5-25-6-37-1-9-6-12-13-13-31-4-60-12-87-27-44-22-71-59-78-108-6-36 10-68 41-85 19-10 40-12 61-10 46 4 79 29 102 67 18 29 29 61 35 95 2 11 3 12 14 11 47-4 93-12 138-22 86-17 170-38 257-50 55-7 110-10 165-2 39 6 75 18 107 40 10 7 16 16 16 29-1 19-9 34-23 47z m-756-56c-6-23-13-46-27-66-7-10-16-16-27-19-17-4-28 6-29 23 1 16 8 30 20 40 16 16 36 23 58 28 4 1 6-1 5-6z" horiz-adv-x="1000" />
64
+
65
+ <glyph glyph-name="frype" unicode="&#xe81c;" d="M420 188c3-18 7-29 14-35 8-8 18-10 31-12 16 2 27 5 34 16 4 7 7 17 9 31 1 13 2 35 5 60v1l-1 9-2 9-1 9-1 8-1 9-2 9-1 9-1 8-2 8-1 8-1 8v1l-1 7-1 7-2 7-1 6-1 6-2 6-2 8-2 9-2 9-3 10-2 10-3 11-2 10-3 11-2 11-1 11-2 11-1 12-1 11-1 11v11l1 11 1 11 1 11 3 11 3 10 5 10 5 10 3 4c-10 2-22 4-36 4-5 0-11 0-16-1-120-10-71-147-50-222 14-52 30-173 36-210z m14 448c5-1 10-1 15-1 25 0 41 13 50 33 6 14 8 31 8 50-1 15-3 30-8 42-10 24-28 41-55 41-3 0-7 0-10-1-34-5-49-40-48-82 1-40 17-74 48-82z m65-198c4-18 9-35 12-50 15-60 29-199 35-241 5-43 20-51 50-54 30 3 45 11 50 54 5 42 19 181 34 241 3 15 8 32 12 50 13 55 24 119 0 161-15 26-45 44-96 44-52 0-82-18-97-44-24-42-13-106 0-161z m96 221h1c46 0 68 43 68 95 0 53-22 96-68 96h-1c-47 0-69-43-69-96 0-52 22-95 69-95z m146-38c-14 0-26-2-36-4l3-4 5-10 5-10 3-10 3-11 2-11 1-11 0-11v-11l-1-11 0-11-2-12-1-11-2-11-3-11-2-11-2-10-2-11-3-10-2-10-3-9-2-9-2-8-1-6-2-6-1-6-1-7-2-7-1-6v-2l-1-8-2-8-1-8-1-8-1-9-2-9-1-9-1-8-1-9-1-9-1-9v0c2-26 4-48 5-61 1-14 4-24 8-31 7-11 18-14 34-16 13 2 23 4 31 12 7 6 11 17 14 35 6 37 22 158 37 210 20 75 69 212-51 222-5 1-10 1-16 1z m1 14c5 0 10 0 15 1 31 8 47 42 48 82 2 42-13 77-48 82-3 1-6 1-10 1-27 0-45-17-55-41-4-12-7-27-8-42 0-19 2-36 8-50 9-20 25-33 50-33z m144-62c223-3 353-139 205-326-67-86-182-171-334-226-7-3-15-5-22-8-14-4-29-9-43-13-33-9-65-17-96-24-34-6-66-11-97-15-22-2-44-4-65-4-141-4-248 35-283 118-42 100 43 238 213 343-126-50-354-169-364-340v-22c1-17 4-34 10-53 36-115 207-169 424-149 22 2 43 4 65 7 32 5 64 11 97 19 31 8 64 16 96 27 7 2 15 4 22 7 14 4 29 9 43 15 188 68 328 159 410 264 46 60 70 116 75 165v38c-13 124-158 197-356 177" horiz-adv-x="1242" />
66
+
67
+ <glyph glyph-name="skype" unicode="&#xe81d;" d="M655 257q0 28-11 51t-27 38-41 27-46 19-49 13l-58 14q-17 4-25 6t-19 6-17 9-9 12-4 16q0 43 80 43 24 0 43-6t30-16 21-19 23-16 27-7q26 0 42 18t16 43q0 31-32 55t-79 38-101 13q-38 0-74-9t-67-26-49-48-19-72q0-34 10-60t32-42 44-27 58-18l81-20q51-12 63-20 18-11 18-34 0-21-23-36t-58-14q-29 0-51 9t-37 22-25 25-26 21-30 9q-28 0-42-17t-14-41q0-52 68-88t162-37q41 0 78 10t69 30 49 52 19 74z m202-121q0-89-63-152t-151-63q-73 0-131 45-43-9-83-9-80 0-153 31t-126 84-83 125-31 153q0 41 9 84-45 58-45 130 0 89 63 152t151 63q73 0 131-45 43 9 84 9 79 0 152-31t126-84 83-125 31-153q0-41-9-84 45-58 45-130z" horiz-adv-x="857.1" />
68
+
69
+ <glyph glyph-name="share" unicode="&#xe81e;" d="M679 279q74 0 126-53t52-126-52-126-126-53-127 53-52 126q0 7 1 19l-201 100q-51-48-121-48-75 0-127 53t-52 126 52 126 127 53q70 0 121-48l201 100q-1 12-1 19 0 74 52 126t127 53 126-53 52-126-52-126-126-53q-71 0-122 48l-201-100q1-12 1-19t-1-19l201-100q51 48 122 48z" horiz-adv-x="857.1" />
70
+
71
+ <glyph glyph-name="telegram" unicode="&#xe81f;" d="M364-1c-24 0-20 9-29 31l-72 225 557 313m-456-569c19 0 28 8 38 18l102 93-127 72m0 0l307-214c35-18 60-9 68 31l125 555c13 49-19 71-53 56l-732-267c-50-18-50-45-9-57l188-55 435 259c20 12 39 6 24-7" horiz-adv-x="1000" />
72
+ </font>
73
+ </defs>
74
  </svg>
templates/fonts/mashsb-font.ttf CHANGED
Binary file
templates/fonts/mashsb-font.woff CHANGED
Binary file
templates/fonts/mashsb-font.woff2 ADDED
Binary file
templates/mashsb-amp.css ADDED
@@ -0,0 +1,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /* START Delete text for buttons behind Plus sign */
3
+ .mashsb-buttons .secondary-shares a .text{
4
+ text-indent: -9999px;
5
+ line-height: 0px;
6
+ display: block;
7
+ }
8
+ .mashsb-buttons .secondary-shares a .text:after {
9
+ content: " ";
10
+ text-indent: 0;
11
+ font-size:13px;
12
+ display: block;
13
+ }
14
+ .mashsb-buttons .secondary-shares a {
15
+ min-width:0;
16
+ font-size: 0px;
17
+ }
18
+ .mashsb-buttons .secondary-shares a .icon:before {
19
+ margin-right:0px;
20
+ }
21
+ /* END */
22
+
23
+ /* hide class */
24
+ .mashsb-buttons .mashsb-hide {
25
+ display:none;
26
+ }
27
+
28
+ /* Adjustable specifications */
29
+
30
+ /* Hover effect */
31
+ [class^="mashicon-"]:hover, [class*=" mashicon-"]:hover {
32
+ opacity: 0.8;
33
+ }
34
+ /* Icon Color */
35
+ [class^="mashicon-"] .icon, [class*=" mashicon-"] {
36
+ color:#ffffff;
37
+ }
38
+ /* Font color */
39
+ [class^="mashicon-"] .text, [class*=" mashicon-"] .text {
40
+ color:#ffffff;
41
+ }
42
+ /* General visual settings,like border, shadow, shine etc. */
43
+ [class^="mashicon-"], [class*=" mashicon-"] .onoffswitch-label{
44
+ font-size:15px;
45
+ border-radius: 0px;
46
+ cursor: pointer;
47
+ }
48
+ /* Icon visual appearance */
49
+ [class^="mashicon-"] .icon:before, [class*=" mashicon-"] .icon:before, .mashicon-share:before {
50
+ font-family: "mashsb-font";
51
+ font-style: normal;
52
+ font-weight: normal;
53
+ speak: none;
54
+ font-size:16px;
55
+ display: inline-block;
56
+ text-decoration: inherit;
57
+ width: 1em;
58
+ margin-right: 0.7em;
59
+ text-align: center;
60
+ /* opacity: .8; */
61
+ /* For safety - reset parent styles, that can break glyph codes*/
62
+ font-variant: normal;
63
+ text-transform: none;
64
+ /* fix buttons height, for twitter bootstrap */
65
+ /*line-height: 1em;*/
66
+
67
+ /* Animation center compensation - margins should be symmetric */
68
+ /* remove if not needed */
69
+ /*margin-left: 0.7em;*/
70
+
71
+ /* you can be more comfortable with increased icons size */
72
+ /* font-size: 120%; */
73
+
74
+ /* Uncomment for 3D effect */
75
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
76
+
77
+ /* Reset margin-top for twitter bootstrap */
78
+ margin-top:0px;
79
+ /* For IE 8 Important */
80
+ float:left;
81
+ }
82
+ /* Icon definitions */
83
+ .mashicon-facebook .icon:before { content: '\e800'; } /* '' */
84
+ .mashicon-google .icon:before { content: '\e801'; } /* '' */
85
+ .mashicon-pinterest .icon:before { content: '\e802'; } /* '' */
86
+ .mashicon-linkedin .icon:before { content: '\e803'; } /* '' */
87
+ .mashicon-digg .icon:before { content: '\e804'; } /* '' */
88
+ .mashicon-reddit .icon:before { content: '\e805'; } /* '' */
89
+ .mashicon-stumbleupon .icon:before { content: '\e806'; } /* '' */
90
+ .mashicon-twitter .icon:before { content: '\e807'; } /* '' */
91
+ .mashicon-mail .icon:before { content: '\e808'; } /* '' */
92
+ .mashicon-vk .icon:before { content: '\e809'; } /* '' */
93
+ .mashicon-print .icon:before { content: '\e80a'; } /* '' */
94
+ .mashicon-delicious .icon:before { content: '\e80b'; } /* '' */
95
+ .mashicon-buffer .icon:before { content: '\e80c'; } /* '' */
96
+ .mashicon-heart .icon:before { content: '\e80d'; } /* '' */
97
+ .mashicon-weibo .icon:before { content: '\e80e'; } /* '' */
98
+ .mashicon-pocket .icon:before { content: '\e80f'; } /* '' */
99
+ .mashicon-xing .icon:before { content: '\e810'; } /* '' */
100
+ .mashicon-flattr .icon:before { content: '\e811'; } /* '' */
101
+ .mashicon-odnoklassniki .icon:before { content: '\e812'; } /* '' */
102
+ .mashicon-tumblr .icon:before { content: '\e813'; } /* '' */
103
+ .mashicon-subscribe .icon:before { content: '\e808'; } /* '' */
104
+ .mashicon-whatsapp .icon:before { content: '\e814'; }
105
+ .mashicon-meneame .icon:before { content: '\e815'; } /* '' */
106
+ .mashicon-managewp .icon:before { content: '\e816'; } /* '' */
107
+ .mashicon-mailru .icon:before { content: '\E819'; } /* '' */
108
+ .mashicon-line .icon:before { content: '\E81A'; } /* '' */
109
+ .mashicon-yummly .icon:before { content: '\E81B'; } /* '' */
110
+ .mashicon-frype .icon:before { content: '\e81c'; } /* '' */
111
+ .mashicon-skype .icon:before { content: '\e81d'; } /* '' */
112
+ .mashicon-telegram .icon:before { content: '\e81f'; } /* '' */
113
+
114
+ .mashicon-share:before { content: '\e81E'; } /* '' */
115
+
116
+ /* Upper and lower distance share button to next elements */
117
+ .mashsb-container{
118
+ padding-top: 10px;
119
+ padding-bottom:10px;
120
+ }
121
+ /*
122
+ * General size of all buttons
123
+ * low cardinality so we can override this with custom css easily
124
+ */
125
+ .mashsb-buttons a{
126
+ min-width: 177px;
127
+ }
128
+
129
+ /* General design of all buttons */
130
+ .mashsb-box .mashsb-buttons a{
131
+ padding:13px;
132
+ margin-right: 3px;
133
+ margin-bottom:3px;
134
+ float:left;
135
+ text-decoration: none;
136
+ border:0px;
137
+ box-shadow: none;
138
+ }
139
+
140
+ /* Click on plus sign adds this class to switch the float */
141
+ .mashsb-buttons .float-right {
142
+ float:right;
143
+ }
144
+ .mashsb-buttons .float-left {
145
+ float:left;
146
+ }
147
+
148
+ /* Social networks main background color*/
149
+ .mashicon-facebook{
150
+ background: #2d5f9a;
151
+ }
152
+ .mashicon-twitter{
153
+ background: #00c3f3;
154
+ }
155
+ .mashicon-google{
156
+ background: #d73d32;
157
+ }
158
+ .mashicon-subscribe{
159
+ background: #fff120;
160
+ }
161
+ .mashicon-pinterest{
162
+ background: #cd252b;
163
+ }
164
+ .mashicon-linkedin{
165
+ background: #2ba3e1;
166
+ }
167
+ .mashicon-digg{
168
+ background: #1b5791;
169
+ }
170
+ .mashicon-stumbleupon{
171
+ background: #eb4723;
172
+ }
173
+ .mashicon-vk{
174
+ background: #5d83aa;
175
+ }
176
+ .mashicon-mail{
177
+ background: #888888;
178
+ }
179
+ .mashicon-print{
180
+ background: #666666;
181
+ }
182
+ .mashicon-reddit{
183
+ background: #333333;
184
+ }
185
+ .mashicon-delicious{
186
+ background: #3399ff;
187
+ }
188
+ .mashicon-weibo{
189
+ background: #ed1c24;
190
+ }
191
+ .mashicon-pocket{
192
+ background: #ee4055;
193
+ }
194
+ .mashicon-xing{
195
+ background: #135a5b;
196
+ }
197
+ .mashicon-flattr{
198
+ background: #8cb55b;
199
+ }
200
+ .mashicon-odnoklassniki{
201
+ background: #f4731c;
202
+ }
203
+ .mashicon-managewp{
204
+ background: #056cad;
205
+ }
206
+ .mashicon-tumblr{
207
+ background: #2c4762;
208
+ }
209
+ .mashicon-meneame{
210
+ background: #ff7d12;
211
+ }
212
+ .mashicon-whatsapp{
213
+ background: #1d9e11;
214
+ }
215
+ .mashicon-buffer{
216
+ background: #000000;
217
+ }
218
+
219
+ .mashicon-mailru{
220
+ background: #044b89;
221
+ }
222
+ .mashicon-line{
223
+ background: #1dcd00;
224
+ }
225
+
226
+ .mashicon-yummly{
227
+ background: #e16120;
228
+ }
229
+ .mashicon-frype{
230
+ background: #ff6600;
231
+ }
232
+
233
+ .mashicon-skype{
234
+ background: #00afef;
235
+ }
236
+
237
+ .mashicon-telegram{
238
+ background: #1d94d3;
239
+ }
240
+
241
+ .mashicon-buffer .text, mashicon-buffer .icon{
242
+ color: #ffffff;
243
+ }
244
+ /* Overwrite text color for subscribe button */
245
+ .mashicon-subscribe .text,
246
+ .mashicon-subscribe .icon {
247
+ color: #000000;
248
+ }
249
+ /* Define Share count number */
250
+ .mashsb-count {
251
+ display: block;
252
+ padding-bottom: 0px;
253
+ font-size: 43px;
254
+ font-weight: bold;
255
+ font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
256
+ color: #7FC04C;
257
+ border: #FFF solid 0px;
258
+ text-align: center;
259
+ margin-right: 10px;
260
+ margin-top: 10px;
261
+ float: left;
262
+ line-height: 13px;
263
+ }
264
+ /* Define Share text below share count number */
265
+ .mashsb-sharetext {
266
+ font-size:11px;
267
+ font-family:Arial,sans-serif;
268
+ color:#8A8C8E;
269
+ }
270
+ /* Define Subscribe toggle container */
271
+ .mashsb-toggle-container {
272
+ display:none;
273
+ padding: 11px 2% 8px;
274
+ border: 10px solid #FFF120;
275
+ position: relative;
276
+ margin-bottom:10px;
277
+ margin-top:0px;
278
+ }
279
+
280
+
281
+ /* IMPORTANT: DO NOT EDIT BELOW THIS LINE */
282
+
283
+ /* Position */
284
+ [class^="mashicon-"], [class*=" mashicon-"]{
285
+ position: relative;
286
+ display: inline-block;
287
+ }
288
+
289
+ [class^="mashicon-"] .text, [class*=" mashicon-"] .text {
290
+ padding:0px;
291
+ margin:0px;
292
+ }
293
+
294
+ [class^="mashicon-"] .text:after, [class*=" mashicon-"] .text:after{
295
+ line-height: 10px;
296
+ }
297
+
298
+ /* IMPORTANT: DO NOT EDIT BELOW THIS LINE */
299
+
300
+ /* Important to reset global body line-height */
301
+ .mashsb-box {
302
+ /*height:49px;*/
303
+ line-height: 1;
304
+ }
305
+ .mashsb-count > counts {
306
+ clear:both;
307
+ }
308
+
309
+ .onoffswitch {
310
+ position: relative;
311
+ -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
312
+ display: inline-block;
313
+ float: left;
314
+ margin-right: 3px;
315
+ margin-bottom:3px;
316
+ margin-left: 0px;
317
+ cursor: pointer;
318
+ background-color: #C5C5C5; color: #FFFFFF;
319
+ width: 42px;
320
+ height: 42px;
321
+ line-height: 42px;
322
+ text-align: center;
323
+ }
324
+
325
+ .onoffswitch:before {
326
+ content: "+";
327
+ /*padding-left: 12px;
328
+ padding-top: 1px;*/
329
+ display: inline-block;
330
+ font-weight: bold;
331
+ font-size: 30px;
332
+ font-family: arial;
333
+ vertical-align: middle;
334
+ }
335
+
336
+ .onoffswitch2 {
337
+ position: relative;
338
+ -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
339
+ display: inline-block;
340
+ float: left;
341
+ margin-right: 3px;
342
+ margin-bottom:3px;
343
+ margin-left: 0px;
344
+ cursor: pointer;
345
+ background-color: #C5C5C5; color: #FFFFFF;
346
+ width: 42px;
347
+ height: 42px;
348
+ line-height: 42px;
349
+ text-align: center;
350
+ }
351
+
352
+ .onoffswitch2:before {
353
+ content: "-";
354
+ /*padding-left: 15px;
355
+ padding-top: 5px;*/
356
+ display: inline-block;
357
+ font-weight: bold;
358
+ font-size: 30px;
359
+ font-family: arial;
360
+ vertical-align: super;
361
+ }
362
+
363
+ .widget_mashsb_mostshared_posts_widget li{
364
+ padding: 0.4688em 0;
365
+ list-style: none;
366
+ }
367
+
368
+ .widget_mashsb_mostshared_posts_widget li:first-child {
369
+ border-top: 0;
370
+ padding-top: 0;
371
+ }
372
+
373
+
374
+ /* Smartphones (portrait) (iPhone 4 / 5) No text buttons ----------- */
375
+ @media only screen and (max-width: 568px) {
376
+ [class^="mashicon-"] .text, [class*=" mashicon-"] .text{
377
+ text-indent: -9999px;
378
+ line-height: 0px;
379
+ display: block;
380
+ }
381
+ [class^="mashicon-"] .text:after, [class*=" mashicon-"] .text:after {
382
+ content: "";
383
+ text-indent: 0;
384
+ font-size:13px;
385
+ display: block;
386
+ }
387
+ [class^="mashicon-"], [class*=" mashicon-"] {
388
+ text-align: center;
389
+ }
390
+ [class^="mashicon-"] .icon:before, [class*=" mashicon-"] .icon:before{
391
+ float:none;
392
+ margin-right: 0;
393
+ }
394
+ .mashsb-buttons a{
395
+ margin-right: 3px;
396
+ margin-bottom:3px;
397
+ min-width: 0;
398
+ width: 41px;
399
+ }
400
+
401
+ .onoffswitch,
402
+ .onoffswitch-inner:before,
403
+ .onoffswitch-inner:after
404
+ .onoffswitch2,
405
+ .onoffswitch2-inner:before,
406
+ .onoffswitch2-inner:after {
407
+ margin-right: 0px;
408
+ width: 41px;
409
+ }
410
+
411
+ }
templates/mashsb.css CHANGED
@@ -35,6 +35,7 @@
35
  url('data:application/octet-stream;base64,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KwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=') format('truetype');
36
  }
37
 
 
38
  /* Adjustable specifications */
39
 
40
  /* Hover effect */
@@ -119,9 +120,9 @@ color:#ffffff;
119
  .mashicon-yummly .icon:before { content: '\E81B'; } /* '' */
120
  .mashicon-frype .icon:before { content: '\e81c'; } /* '' */
121
  .mashicon-skype .icon:before { content: '\e81d'; } /* '' */
122
- .mashicon-telegram .icon:before { content: '\e81f'; } /* '' */
123
-
124
  .mashicon-share:before { content: '\e81E'; } /* '' */
 
 
125
 
126
  /* Upper and lower distance share button to next elements */
127
  .mashsb-container{
@@ -464,4 +465,4 @@ color:#8A8C8E;
464
 
465
  .mashsb-micro-wrapper:hover{
466
  .mashsb-micro .mashsb-buttons {display: block;}
467
- }
35
  url('data:application/octet-stream;base64,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KwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=') format('truetype');
36
  }
37
 
38
+
39
  /* Adjustable specifications */
40
 
41
  /* Hover effect */
120
  .mashicon-yummly .icon:before { content: '\E81B'; } /* '' */
121
  .mashicon-frype .icon:before { content: '\e81c'; } /* '' */
122
  .mashicon-skype .icon:before { content: '\e81d'; } /* '' */
 
 
123
  .mashicon-share:before { content: '\e81E'; } /* '' */
124
+ .mashicon-telegram .icon:before { content: '\e81F'; } /* '' */
125
+
126
 
127
  /* Upper and lower distance share button to next elements */
128
  .mashsb-container{
465
 
466
  .mashsb-micro-wrapper:hover{
467
  .mashsb-micro .mashsb-buttons {display: block;}
468
+ }
templates/mashsb.min.css CHANGED
@@ -1 +1 @@
1
- .mashicon-buffer .text,[class*=" mashicon-"],[class*=" mashicon-"] .text,[class^=mashicon-] .icon,[class^=mashicon-] .text,mashicon-buffer .icon{color:#fff}.onoffswitch,.onoffswitch2{-moz-user-select:none;-ms-user-select:none;width:42px;-webkit-user-select:none}.mashsb-buttons .secondary-shares a .text{text-indent:-9999px;line-height:0;display:block}.mashsb-buttons .secondary-shares a .text:after{content:" ";text-indent:0;font-size:13px;display:block}.mashsb-buttons .secondary-shares a{min-width:0;font-size:0}.mashsb-buttons .secondary-shares a .icon:before{margin-right:0}.mashsb-buttons .mashsb-hide{display:none}@font-face{font-family:mashsb-font;src:url(data:application/octet-stream;base64,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)format('woff'),url(data:application/octet-stream;base64,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KwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=)format('truetype')}[class*=" mashicon-"]:hover,[class^=mashicon-]:hover{opacity:.8}[class*=" mashicon-"] .onoffswitch-label,[class^=mashicon-]{font-size:15px;border-radius:0;cursor:pointer}.mashicon-share:before,[class*=" mashicon-"] .icon:before,[class^=mashicon-] .icon:before{font-family:mashsb-font;font-style:normal;font-weight:400;speak:none;font-size:16px;display:inline-block;text-decoration:inherit;width:1em;margin-right:.7em;text-align:center;font-variant:normal;text-transform:none;margin-top:0;float:left}.onoffswitch2:before,.onoffswitch:before{font-size:30px;font-family:arial;font-weight:700}.mashicon-facebook .icon:before{content:'\e800'}.mashicon-google .icon:before{content:'\e801'}.mashicon-pinterest .icon:before{content:'\e802'}.mashicon-linkedin .icon:before{content:'\e803'}.mashicon-digg .icon:before{content:'\e804'}.mashicon-reddit .icon:before{content:'\e805'}.mashicon-stumbleupon .icon:before{content:'\e806'}.mashicon-twitter .icon:before{content:'\e807'}.mashicon-mail .icon:before{content:'\e808'}.mashicon-vk .icon:before{content:'\e809'}.mashicon-print .icon:before{content:'\e80a'}.mashicon-delicious .icon:before{content:'\e80b'}.mashicon-buffer .icon:before{content:'\e80c'}.mashicon-heart .icon:before{content:'\e80d'}.mashicon-weibo .icon:before{content:'\e80e'}.mashicon-pocket .icon:before{content:'\e80f'}.mashicon-xing .icon:before{content:'\e810'}.mashicon-flattr .icon:before{content:'\e811'}.mashicon-odnoklassniki .icon:before{content:'\e812'}.mashicon-tumblr .icon:before{content:'\e813'}.mashicon-subscribe .icon:before{content:'\e808'}.mashicon-whatsapp .icon:before{content:'\e814'}.mashicon-meneame .icon:before{content:'\e815'}.mashicon-managewp .icon:before{content:'\e816'}.mashicon-mailru .icon:before{content:'\E819'}.mashicon-line .icon:before{content:'\E81A'}.mashicon-yummly .icon:before{content:'\E81B'}.mashicon-frype .icon:before{content:'\e81c'}.mashicon-skype .icon:before{content:'\e81d'}.mashicon-telegram .icon:before{content:'\e81f'}.mashicon-share:before{content:'\e81E'}.mashsb-container{padding-top:10px;padding-bottom:10px}.mashsb-buttons a{min-width:177px}.mashsb-box .mashsb-buttons a{padding:13px;margin-right:3px;margin-bottom:3px;float:left;text-decoration:none;border:0;box-shadow:none}.mashsb-buttons .float-right{float:right}.mashsb-buttons .float-left{float:left}.mashicon-facebook{background:#2d5f9a}.mashicon-twitter{background:#00c3f3}.mashicon-google{background:#d73d32}.mashicon-subscribe{background:#fff120}.mashicon-pinterest{background:#cd252b}.mashicon-linkedin{background:#2ba3e1}.mashicon-digg{background:#1b5791}.mashicon-stumbleupon{background:#eb4723}.mashicon-vk{background:#5d83aa}.mashicon-mail{background:#888}.mashicon-print{background:#666}.mashicon-reddit{background:#333}.mashicon-delicious{background:#39f}.mashicon-weibo{background:#ed1c24}.mashicon-pocket{background:#ee4055}.mashicon-xing{background:#135a5b}.mashicon-flattr{background:#8cb55b}.mashicon-odnoklassniki{background:#f4731c}.mashicon-managewp{background:#056cad}.mashicon-tumblr{background:#2c4762}.mashicon-meneame{background:#ff7d12}.mashicon-whatsapp{background:#1d9e11}.mashicon-buffer{background:#000}.mashicon-mailru{background:#044b89}.mashicon-line{background:#1dcd00}.mashicon-yummly{background:#e16120}.mashicon-frype{background:#f60}.mashicon-skype{background:#00afef}.mashicon-telegram{background:#1d94d3}.mashicon-subscribe .icon,.mashicon-subscribe .text{color:#000}.mashsb-count{display:block;padding-bottom:0;font-size:43px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#7FC04C;border:0 solid #FFF;text-align:center;margin-right:10px;margin-top:10px;float:left;line-height:13px}.mashsb-sharetext{font-size:11px;font-family:Arial,sans-serif;color:#8A8C8E}.onoffswitch,.onoffswitch2{margin-bottom:3px;color:#FFF}.mashsb-toggle-container{display:none;padding:11px 2% 8px;border:10px solid #FFF120;position:relative;margin-bottom:10px;margin-top:0}[class*=" mashicon-"],[class^=mashicon-]{position:relative;display:inline-block}[class*=" mashicon-"] .text,[class^=mashicon-] .text{padding:0;margin:0}.onoffswitch,.onoffswitch2{line-height:42px;margin-right:3px}[class*=" mashicon-"] .text:after,[class^=mashicon-] .text:after{line-height:10px}.mashsb-box{line-height:1}.mashsb-count>counts{clear:both}.onoffswitch{position:relative;display:inline-block;float:left;margin-left:0;cursor:pointer;background-color:#C5C5C5;height:42px;text-align:center}.onoffswitch:before{content:"+";display:inline-block;vertical-align:middle}.onoffswitch2{position:relative;display:inline-block;float:left;margin-left:0;cursor:pointer;background-color:#C5C5C5;height:42px;text-align:center}.onoffswitch2:before{content:"-";display:inline-block;vertical-align:super}.widget_mashsb_mostshared_posts_widget li{padding:.4688em 0;list-style:none}.widget_mashsb_mostshared_posts_widget li:first-child{border-top:0;padding-top:0}@media only screen and (max-width:568px){[class*=" mashicon-"] .text,[class^=mashicon-] .text{text-indent:-9999px;line-height:0;display:block}[class*=" mashicon-"] .text:after,[class^=mashicon-] .text:after{content:"";text-indent:0;font-size:13px;display:block}[class*=" mashicon-"],[class^=mashicon-]{text-align:center}[class*=" mashicon-"] .icon:before,[class^=mashicon-] .icon:before{float:none;margin-right:0}.mashsb-buttons a{margin-right:3px;margin-bottom:3px;min-width:0;width:41px}.onoffswitch,.onoffswitch-inner:after .onoffswitch2,.onoffswitch-inner:before,.onoffswitch2-inner:after,.onoffswitch2-inner:before{margin-right:0;width:41px}}// Image Sidebar Sharer .mashsb-micro>.mashsb-buttons a{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;min-width:0;margin-right:6px;text-align:center;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.mashsb-micro{position:absolute;left:6px;right:auto;top:6px}@media only screen and (min-width:1024px){.mashsb-micro{right:100%;left:auto;top:0;padding-right:6px}}.mashsb-micro .mashsb-buttons{display:none;overflow:hidden;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:48px}.mashsb-micro .mashsb-buttons a{margin:0;padding:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;min-width:0;width:48px}.mashsb-micro .mashsb-buttons a .icon{display:block;width:48px;height:48px;margin:0;text-align:center}.mashsb-micro .mashsb-buttons a .icon:before{float:none;margin:0;line-height:48px}.mashsb-micro .mashsb-buttons .text{display:none}.mashsb-micro-toggle{display:block;width:32px;height:32px;cursor:pointer;text-align:center;font-size:18px;line-height:32px;font-weight:400;font-family:bimber;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background:#c5c5c5;color:#fff}.mashsb-micro-toggle:before{font-family:mashsb-font;content:"\e81E"}.mashsb-micro-wrapper{display:block;position:relative}.mashsb-micro-wrapper .onoffswitch,.mashsb-micro-wrapper .onoffswitch2{position:absolute;clip:rect(1px,1px,1px,1px);width:1px;height:1px;overflow:hidden}.mashsb-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-micro-toggle,.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-micro-toggle{display:none}.mashsb-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-buttons,.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-buttons{display:block}.mashsb-link-toggle{display:none;position:absolute;left:50%;right:auto;bottom:0;width:0;height:0;margin-left:-6px;border-width:6px;border-style:solid;border-color:transparent transparent currentColor;content:""}.mashsb-img-wrap{display:block;position:relative}
1
+ .onoffswitch,.onoffswitch2{background-color:#C5C5C5;margin-left:0;-moz-user-select:none;-ms-user-select:none;width:42px;-webkit-user-select:none}.mashicon-buffer .text,[class*=" mashicon-"],[class*=" mashicon-"] .text,[class^=mashicon-] .icon,[class^=mashicon-] .text,mashicon-buffer .icon{color:#fff}.mashsb-buttons .secondary-shares a .text{text-indent:-9999px;line-height:0;display:block}.mashsb-buttons .secondary-shares a .text:after{content:" ";text-indent:0;font-size:13px;display:block}.mashsb-buttons .secondary-shares a{min-width:0;font-size:0}.mashsb-buttons .secondary-shares a .icon:before{margin-right:0}.mashsb-buttons .mashsb-hide{display:none}@font-face{font-family:mashsb-font;src:url(data:application/octet-stream;base64,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)format('woff'),url(data:application/octet-stream;base64,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KwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=)format('truetype')}[class*=" mashicon-"]:hover,[class^=mashicon-]:hover{opacity:.8}[class*=" mashicon-"] .onoffswitch-label,[class^=mashicon-]{font-size:15px;border-radius:0;cursor:pointer}.mashicon-share:before,[class*=" mashicon-"] .icon:before,[class^=mashicon-] .icon:before{font-family:mashsb-font;font-style:normal;font-weight:400;speak:none;font-size:16px;display:inline-block;text-decoration:inherit;width:1em;margin-right:.7em;text-align:center;font-variant:normal;text-transform:none;margin-top:0;float:left}.onoffswitch2:before,.onoffswitch:before{font-size:30px;font-family:arial;font-weight:700}.mashicon-facebook .icon:before{content:'\e800'}.mashicon-google .icon:before{content:'\e801'}.mashicon-pinterest .icon:before{content:'\e802'}.mashicon-linkedin .icon:before{content:'\e803'}.mashicon-digg .icon:before{content:'\e804'}.mashicon-reddit .icon:before{content:'\e805'}.mashicon-stumbleupon .icon:before{content:'\e806'}.mashicon-twitter .icon:before{content:'\e807'}.mashicon-mail .icon:before{content:'\e808'}.mashicon-vk .icon:before{content:'\e809'}.mashicon-print .icon:before{content:'\e80a'}.mashicon-delicious .icon:before{content:'\e80b'}.mashicon-buffer .icon:before{content:'\e80c'}.mashicon-heart .icon:before{content:'\e80d'}.mashicon-weibo .icon:before{content:'\e80e'}.mashicon-pocket .icon:before{content:'\e80f'}.mashicon-xing .icon:before{content:'\e810'}.mashicon-flattr .icon:before{content:'\e811'}.mashicon-odnoklassniki .icon:before{content:'\e812'}.mashicon-tumblr .icon:before{content:'\e813'}.mashicon-subscribe .icon:before{content:'\e808'}.mashicon-whatsapp .icon:before{content:'\e814'}.mashicon-meneame .icon:before{content:'\e815'}.mashicon-managewp .icon:before{content:'\e816'}.mashicon-mailru .icon:before{content:'\E819'}.mashicon-line .icon:before{content:'\E81A'}.mashicon-yummly .icon:before{content:'\E81B'}.mashicon-frype .icon:before{content:'\e81c'}.mashicon-skype .icon:before{content:'\e81d'}.mashicon-telegram .icon:before{content:'\e81f'}.mashicon-share:before{content:'\e81E'}.mashsb-container{padding-top:10px;padding-bottom:10px}.mashsb-buttons a{min-width:177px}.mashsb-box .mashsb-buttons a{padding:13px;margin-right:3px;margin-bottom:3px;float:left;text-decoration:none;border:0;box-shadow:none}.mashsb-buttons .float-right{float:right}.mashsb-buttons .float-left{float:left}.mashicon-facebook{background:#2d5f9a}.mashicon-twitter{background:#00c3f3}.mashicon-google{background:#d73d32}.mashicon-subscribe{background:#fff120}.mashicon-pinterest{background:#cd252b}.mashicon-linkedin{background:#2ba3e1}.mashicon-digg{background:#1b5791}.mashicon-stumbleupon{background:#eb4723}.mashicon-vk{background:#5d83aa}.mashicon-mail{background:#888}.mashicon-print{background:#666}.mashicon-reddit{background:#333}.mashicon-delicious{background:#39f}.mashicon-weibo{background:#ed1c24}.mashicon-pocket{background:#ee4055}.mashicon-xing{background:#135a5b}.mashicon-flattr{background:#8cb55b}.mashicon-odnoklassniki{background:#f4731c}.mashicon-managewp{background:#056cad}.mashicon-tumblr{background:#2c4762}.mashicon-meneame{background:#ff7d12}.mashicon-whatsapp{background:#1d9e11}.mashicon-buffer{background:#000}.mashicon-mailru{background:#044b89}.mashicon-line{background:#1dcd00}.mashicon-yummly{background:#e16120}.mashicon-frype{background:#f60}.mashicon-skype{background:#00afef}.mashicon-telegram{background:#1d94d3}.mashicon-subscribe .icon,.mashicon-subscribe .text{color:#000}.mashsb-count{display:block;padding-bottom:0;font-size:43px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#7FC04C;border:0 solid #FFF;text-align:center;margin-right:10px;margin-top:10px;float:left;line-height:13px}.mashsb-sharetext{font-size:11px;font-family:Arial,sans-serif;color:#8A8C8E}.onoffswitch,.onoffswitch2{margin-bottom:3px;color:#FFF}.mashsb-toggle-container{display:none;padding:11px 2% 8px;border:10px solid #FFF120;position:relative;margin-bottom:10px;margin-top:0}[class*=" mashicon-"],[class^=mashicon-]{position:relative;display:inline-block}[class*=" mashicon-"] .text,[class^=mashicon-] .text{padding:0;margin:0}.onoffswitch,.onoffswitch2{line-height:42px;margin-right:3px}[class*=" mashicon-"] .text:after,[class^=mashicon-] .text:after{line-height:10px}.mashsb-box{line-height:1}.mashsb-count>counts{clear:both}.onoffswitch{position:relative;display:inline-block;float:left;cursor:pointer;height:42px;text-align:center}.onoffswitch:before{content:"+";display:inline-block;vertical-align:middle}.onoffswitch2{position:relative;display:inline-block;float:left;cursor:pointer;height:42px;text-align:center}.onoffswitch2:before{content:"-";display:inline-block;vertical-align:super}.widget_mashsb_mostshared_posts_widget li{padding:.4688em 0;list-style:none}.widget_mashsb_mostshared_posts_widget li:first-child{border-top:0;padding-top:0}@media only screen and (max-width:568px){[class*=" mashicon-"] .text,[class^=mashicon-] .text{text-indent:-9999px;line-height:0;display:block}[class*=" mashicon-"] .text:after,[class^=mashicon-] .text:after{content:"";text-indent:0;font-size:13px;display:block}[class*=" mashicon-"],[class^=mashicon-]{text-align:center}[class*=" mashicon-"] .icon:before,[class^=mashicon-] .icon:before{float:none;margin-right:0}.mashsb-buttons a{margin-right:3px;margin-bottom:3px;min-width:0;width:41px}.onoffswitch,.onoffswitch-inner:after .onoffswitch2,.onoffswitch-inner:before,.onoffswitch2-inner:after,.onoffswitch2-inner:before{margin-right:0;width:41px}}// Image Sidebar Sharer .mashsb-micro>.mashsb-buttons a{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;min-width:0;margin-right:6px;text-align:center;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.mashsb-micro{position:absolute;left:6px;right:auto;top:6px}@media only screen and (min-width:1024px){.mashsb-micro{right:100%;left:auto;top:0;padding-right:6px}}.mashsb-micro .mashsb-buttons{display:none;overflow:hidden;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:48px}.mashsb-micro .mashsb-buttons a{margin:0;padding:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;min-width:0;width:48px}.mashsb-micro .mashsb-buttons a .icon{display:block;width:48px;height:48px;margin:0;text-align:center}.mashsb-micro .mashsb-buttons a .icon:before{float:none;margin:0;line-height:48px}.mashsb-micro .mashsb-buttons .text{display:none}.mashsb-micro-toggle{display:block;width:32px;height:32px;cursor:pointer;text-align:center;font-size:18px;line-height:32px;font-weight:400;font-family:bimber;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background:#c5c5c5;color:#fff}.mashsb-micro-toggle:before{font-family:mashsb-font;content:"\e81E"}.mashsb-micro-wrapper{display:block;position:relative}.mashsb-micro-wrapper .onoffswitch,.mashsb-micro-wrapper .onoffswitch2{position:absolute;clip:rect(1px,1px,1px,1px);width:1px;height:1px;overflow:hidden}.mashsb-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-micro-toggle,.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-micro-toggle{display:none}.mashsb-hoverable .mashsb-micro-wrapper:hover .mashsb-micro .mashsb-buttons,.mashsb-micro-wrapper-expanded .mashsb-micro .mashsb-buttons{display:block}.mashsb-link-toggle{display:none;position:absolute;left:50%;right:auto;bottom:0;width:0;height:0;margin-left:-6px;border-width:6px;border-style:solid;border-color:transparent transparent currentColor;content:""}.mashsb-img-wrap{display:block;position:relative}