Blog2Social: Social Media Auto Post & Scheduler - Version 6.7.1

Version Description

Usability Optimization

Download this release

Release Info

Developer PR-Gateway
Plugin Icon 128x128 Blog2Social: Social Media Auto Post & Scheduler
Version 6.7.1
Comparing to
See all releases

Code changes from version 6.7.0 to 6.7.1

assets/css/b2s/ship.css CHANGED
@@ -871,4 +871,8 @@ input[type="number"]{
871
 
872
  .b2s-auth-network-6-extension-download-area {
873
  text-align: center;
 
 
 
 
874
  }
871
 
872
  .b2s-auth-network-6-extension-download-area {
873
  text-align: center;
874
+ }
875
+
876
+ .b2s-bold {
877
+ font-weight: 600;
878
  }
assets/js/b2s/calendar.js CHANGED
@@ -8,7 +8,7 @@ jQuery(document).ready(function () {
8
  jQuery('#b2s_calendar').fullCalendar({
9
  header: {
10
  left: 'title',
11
- right: 'month,basicWeek, prev,next'
12
  },
13
  views: {
14
  month: {
8
  jQuery('#b2s_calendar').fullCalendar({
9
  header: {
10
  left: 'title',
11
+ right: 'today month,basicWeek, prev,next'
12
  },
13
  views: {
14
  month: {
assets/js/b2s/curation.js CHANGED
@@ -848,7 +848,11 @@ jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
848
  });
849
 
850
  jQuery(document).on('click', '.b2s-network-info-modal-btn', function () {
851
- jQuery('#b2sInfoNetworkModal').modal('show');
 
 
 
 
852
  return false;
853
  });
854
 
848
  });
849
 
850
  jQuery(document).on('click', '.b2s-network-info-modal-btn', function () {
851
+ if(jQuery('#b2s-curation-post-format').val() == "2") {
852
+ jQuery('#b2sTextPostInfoModal').modal('show');
853
+ } else {
854
+ jQuery('#b2sInfoNetworkModal').modal('show');
855
+ }
856
  return false;
857
  });
858
 
assets/js/b2s/network.js CHANGED
@@ -1162,7 +1162,7 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
1162
 
1163
  template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
1164
  template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
1165
- if (jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1 || jQuery('#b2s-edit-template-network-id').val() == 2) {
1166
  if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
1167
  template_data[networkType]['addLink'] = true;
1168
  } else {
1162
 
1163
  template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
1164
  template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
1165
+ if (jQuery('#b2s-edit-template-network-id').val() == 24 || jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1 || jQuery('#b2s-edit-template-network-id').val() == 2) {
1166
  if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
1167
  template_data[networkType]['addLink'] = true;
1168
  } else {
assets/js/b2s/ship.js CHANGED
@@ -2594,6 +2594,7 @@ function initSceditor(networkAuthId) {
2594
  tmp.innerHTML = jQuery(this).val();
2595
  jQuery(this).parents('.b2s-post-item-details').find('.b2s-post-item-countChar').html(tmp.innerText.length);
2596
  });
 
2597
  }
2598
 
2599
 
@@ -3108,7 +3109,7 @@ function networkLimitAll(networkAuthId, networkId, limit) {
3108
  var newText = text;
3109
  if (networkId == "2") { //twitter
3110
  if (url.length != "0") {
3111
- limit = limit - 24;
3112
  }
3113
  }
3114
  if (networkId == "3") { //linkedin
2594
  tmp.innerHTML = jQuery(this).val();
2595
  jQuery(this).parents('.b2s-post-item-details').find('.b2s-post-item-countChar').html(tmp.innerText.length);
2596
  });
2597
+ jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').parents('.b2s-post-item-details').find('.b2s-post-item-countChar').html(jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').sceditor('instance').getBody().text().length);
2598
  }
2599
 
2600
 
3109
  var newText = text;
3110
  if (networkId == "2") { //twitter
3111
  if (url.length != "0") {
3112
+ limit = limit - 26;
3113
  }
3114
  }
3115
  if (networkId == "3") { //linkedin
blog2social.php CHANGED
@@ -6,12 +6,12 @@
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
- * Version: 6.7.0
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
- define('B2S_PLUGIN_VERSION', '670');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
+ * Version: 6.7.1
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
+ define('B2S_PLUGIN_VERSION', '671');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
includes/Ajax/Post.php CHANGED
@@ -179,7 +179,7 @@ class Ajax_Post {
179
  if (isset($_POST['profile_data_' . $profilId]) && !empty($_POST['profile_data_' . $profilId])) {
180
  $networkData = json_decode(base64_decode($_POST['profile_data_' . $profilId]));
181
  if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
182
- $notAllowNetwork = array(4, 11, 14, 16, 18);
183
  $tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
184
  $allowNetworkOnlyImage = array(6, 7, 12, 21);
185
  $allowNetworkOnlyLink = array(9, 15);
@@ -2003,7 +2003,7 @@ class Ajax_Post {
2003
  )
2004
  );
2005
  }
2006
- if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1 || (int) $_POST['networkId'] == 2) {
2007
  $new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
2008
  }
2009
  if ((int) $_POST['networkId'] == 12) {
179
  if (isset($_POST['profile_data_' . $profilId]) && !empty($_POST['profile_data_' . $profilId])) {
180
  $networkData = json_decode(base64_decode($_POST['profile_data_' . $profilId]));
181
  if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
182
+ $notAllowNetwork = array(4, 11, 14, 16);
183
  $tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
184
  $allowNetworkOnlyImage = array(6, 7, 12, 21);
185
  $allowNetworkOnlyLink = array(9, 15);
2003
  )
2004
  );
2005
  }
2006
+ if ((int) $_POST['networkId'] == 24 || (int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1 || (int) $_POST['networkId'] == 2) {
2007
  $new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
2008
  }
2009
  if ((int) $_POST['networkId'] == 12) {
includes/B2S/AutoPost.php CHANGED
@@ -138,7 +138,7 @@ class B2S_AutoPost {
138
 
139
  if (isset($limit) && (int) $limit > 0) {
140
  if(!empty($this->url) && $networkId == 2) {
141
- $limit = 256;
142
  }
143
  $postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $limit);
144
  }
138
 
139
  if (isset($limit) && (int) $limit > 0) {
140
  if(!empty($this->url) && $networkId == 2) {
141
+ $limit = 254;
142
  }
143
  $postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $limit);
144
  }
includes/B2S/Heartbeat.php CHANGED
@@ -46,7 +46,7 @@ class B2S_Heartbeat {
46
  private function postSchedToServer() {
47
  global $wpdb;
48
  $sendData = array();
49
- $sql = "SELECT post.id,post.post_id,post.blog_user_id,post.user_timezone,post.sched_date,post.sched_date_utc,post.relay_primary_post_id,post.post_for_relay,schedDetails.sched_data, schedDetails.image_url,network.network_id, network.network_type,network.network_auth_id,user.token "
50
  . "FROM {$wpdb->prefix}b2s_posts AS post "
51
  . "LEFT JOIN {$wpdb->prefix}b2s_posts_network_details AS network on post.network_details_id = network.id "
52
  . "LEFT JOIN {$wpdb->prefix}b2s_posts_sched_details AS schedDetails on post.sched_details_id = schedDetails.id "
46
  private function postSchedToServer() {
47
  global $wpdb;
48
  $sendData = array();
49
+ $sql = "SELECT post.id,post.post_id,post.blog_user_id,post.user_timezone,post.sched_type,post.sched_date,post.sched_date_utc,post.relay_primary_post_id,post.post_for_relay,schedDetails.sched_data, schedDetails.image_url,network.network_id, network.network_type,network.network_auth_id,user.token "
50
  . "FROM {$wpdb->prefix}b2s_posts AS post "
51
  . "LEFT JOIN {$wpdb->prefix}b2s_posts_network_details AS network on post.network_details_id = network.id "
52
  . "LEFT JOIN {$wpdb->prefix}b2s_posts_sched_details AS schedDetails on post.sched_details_id = schedDetails.id "
includes/B2S/Network/Item.php CHANGED
@@ -322,10 +322,6 @@ class B2S_Network_Item {
322
  $displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
323
  $html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
324
  }
325
- if($networkId == 19) {
326
- $this->networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
327
- $this->networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
328
- }
329
  $name = ($networkId == 12) ? __('Business', 'blog2social') : __('Page', 'blog2social');
330
  $html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] : $name) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
331
 
@@ -600,6 +596,9 @@ class B2S_Network_Item {
600
  if(!isset($post_template[$networkId][$type])) {
601
  $post_template[$networkId][$type] = $value;
602
  }
 
 
 
603
  }
604
  $schema = $post_template[$networkId];
605
  if(count($schema) < count($defaultSchema)){
@@ -789,7 +788,7 @@ class B2S_Network_Item {
789
  $content .= '</div>';
790
  $content .= '<div class="row">';
791
  $content .= '<div class="col-md-12 b2s-edit-template-link-info">';
792
- if($networkId != 12 && $networkId != 2 && $networkId != 1) {
793
  if($networkId == 11) {
794
  $content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be transmitted as a canonical link, i.e. in the source code of your page, in order to refer to the original source of the content and to increase the reach from search engines like Google.', 'blog2social');
795
  } else {
@@ -830,6 +829,13 @@ class B2S_Network_Item {
830
  $content .= '</div>';
831
  $content .= '</div>';
832
  }
 
 
 
 
 
 
 
833
  $content .= '<br>';
834
  $content .= '<div class="row">';
835
  $content .= '<div class="col-md-12 media-heading">';
@@ -865,10 +871,6 @@ class B2S_Network_Item {
865
  $content .= '<br>';
866
  } else {
867
  $networkKindName = unserialize(B2S_PLUGIN_NETWORK_KIND);
868
- if($networkId == 19) {
869
- $networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
870
- $networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
871
- }
872
  foreach ($schema[$networkType]['short_text'] as $kind_id => $short_text) {
873
  $deprecated = ((isset($defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date']) && $defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date'] < date('Y-m-d')) ? true : false);
874
  if($deprecated) {
322
  $displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
323
  $html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
324
  }
 
 
 
 
325
  $name = ($networkId == 12) ? __('Business', 'blog2social') : __('Page', 'blog2social');
326
  $html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] : $name) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
327
 
596
  if(!isset($post_template[$networkId][$type])) {
597
  $post_template[$networkId][$type] = $value;
598
  }
599
+ if($networkId == 24) { //special Telegram disable PostFormat
600
+ $post_template[$networkId][$type]['format'] = false;
601
+ }
602
  }
603
  $schema = $post_template[$networkId];
604
  if(count($schema) < count($defaultSchema)){
788
  $content .= '</div>';
789
  $content .= '<div class="row">';
790
  $content .= '<div class="col-md-12 b2s-edit-template-link-info">';
791
+ if($networkId != 24 && $networkId != 12 && $networkId != 2 && $networkId != 1) {
792
  if($networkId == 11) {
793
  $content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be transmitted as a canonical link, i.e. in the source code of your page, in order to refer to the original source of the content and to increase the reach from search engines like Google.', 'blog2social');
794
  } else {
829
  $content .= '</div>';
830
  $content .= '</div>';
831
  }
832
+ if($networkId == 24) {
833
+ $content .= '<div class="row b2s-edit-template-enable-link-area" data-network-type="' . esc_attr($networkType) . '">';
834
+ $content .= '<div class="col-md-12">';
835
+ $content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"').' id="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"><label for="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"> ' . esc_html__('Add a link-URL to the end of my post.', 'blog2social') . '</label>';
836
+ $content .= '</div>';
837
+ $content .= '</div>';
838
+ }
839
  $content .= '<br>';
840
  $content .= '<div class="row">';
841
  $content .= '<div class="col-md-12 media-heading">';
871
  $content .= '<br>';
872
  } else {
873
  $networkKindName = unserialize(B2S_PLUGIN_NETWORK_KIND);
 
 
 
 
874
  foreach ($schema[$networkType]['short_text'] as $kind_id => $short_text) {
875
  $deprecated = ((isset($defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date']) && $defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date'] < date('Y-m-d')) ? true : false);
876
  if($deprecated) {
includes/B2S/QuickPost.php CHANGED
@@ -3,7 +3,7 @@
3
  class B2S_QuickPost {
4
 
5
  private $setPreFillText = array(0 => array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 9 => 200, 10 => 442, 12 => 240, 17 => 442, 19=> 239), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(1 => 239, 8 => 239, 10 => 442, 17 => 442, 19 => 239));
6
- private $setPreFillTextLimit = array(0 => array(1 => 500, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 9 => 200, 10 => 500, 12 => 400, 19 => 400), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500, 19 => 400), 2 => array(1 => 400, 8 => 400, 10 => 500, 19 => 9000));
7
  private $content;
8
  private $title;
9
  private $template;
3
  class B2S_QuickPost {
4
 
5
  private $setPreFillText = array(0 => array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 9 => 200, 10 => 442, 12 => 240, 17 => 442, 19=> 239), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(1 => 239, 8 => 239, 10 => 442, 17 => 442, 19 => 239));
6
+ private $setPreFillTextLimit = array(0 => array(1 => 500, 2 => 254, 3 => 400, 6 => 400, 8 => 400, 9 => 200, 10 => 500, 12 => 400, 19 => 400), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500, 19 => 400), 2 => array(1 => 400, 8 => 400, 10 => 500, 19 => 9000));
7
  private $content;
8
  private $title;
9
  private $template;
includes/B2S/RePost/Save.php CHANGED
@@ -99,7 +99,7 @@ class B2S_RePost_Save {
99
  if ($schedData !== false && is_array($schedData)) {
100
  $schedData = array_merge($schedData, $defaultPostData);
101
  }
102
- if ((int) $value->networkId == 12 && isset($this->optionPostFormat[12][0]['addLink']) && $this->optionPostFormat[12][0]['addLink'] === false) {
103
  $schedData['url'] = '';
104
  }
105
  if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($this->optionPostFormat[1][$value->networkType]['format']) && $this->optionPostFormat[1][$value->networkType]['format'] == 1 && isset($this->optionPostFormat[1][$value->networkType]['addLink']) && $this->optionPostFormat[1][$value->networkType]['addLink'] === false) {
99
  if ($schedData !== false && is_array($schedData)) {
100
  $schedData = array_merge($schedData, $defaultPostData);
101
  }
102
+ if (((int) $value->networkId == 12 && isset($this->optionPostFormat[12][0]['addLink']) && $this->optionPostFormat[12][0]['addLink'] === false) || ((int) $value->networkId == 24 && isset($this->optionPostFormat[24][0]['addLink']) && $this->optionPostFormat[24][0]['addLink'] === false)) {
103
  $schedData['url'] = '';
104
  }
105
  if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($this->optionPostFormat[1][$value->networkType]['format']) && $this->optionPostFormat[1][$value->networkType]['format'] == 1 && isset($this->optionPostFormat[1][$value->networkType]['addLink']) && $this->optionPostFormat[1][$value->networkType]['addLink'] === false) {
includes/B2S/Ship/Item.php CHANGED
@@ -28,7 +28,7 @@ class B2S_Ship_Item {
28
  private $showGroups = array(8, 15, 19);
29
  private $changeDisplayName = array(8);
30
  private $setShortTextProfile = array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200, 16 => 250, 17 => 442, 18 => 800, 19 => 239, 20 => 300, 21 => 500);
31
- private $setShortTextProfileLimit = array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200, 18 => 1000, 19 => 1000, 20 => 400, 21 => 600);
32
  private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 400, 10 => 442, 17 => 442, 19 => 239);
33
  private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 400, 10 => 500, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
34
  private $limitCharacterTitlePage = array(15 => array(0 => 300), 19 => array(1 => 150)); //XING Business Page selected over networkKind
@@ -383,7 +383,7 @@ class B2S_Ship_Item {
383
 
384
  //Calendar
385
  if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
386
- $content .= '<br>';
387
  $content .= '<div class="b2s-calendar-filter-area col-xs-2 pull-right del-padding-right hide" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
388
  $content .= '<select class="b2s-calendar-filter-network-sel form-control" name="b2s-calendar-filter-network-sel" data-last-sel="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><option value="all">show all</option><option selected value="' . esc_attr($data->networkId) . '">' . esc_html($networkName[$data->networkId]) . '</option></select>';
389
  $content .= '</div>';
@@ -947,7 +947,7 @@ class B2S_Ship_Item {
947
 
948
  $url .= (!$hideInfo) ? '<div class="b2s-post-item-details-url-title hidden-xs">Link ' . $isRequiredText . '</div>' : '';
949
 
950
- if ($networkId == 12 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
951
  $urlValue = '';
952
  } else if (($networkId == 1 || $networkId == 2) && isset($this->post_template[$networkId][$networkType]['format']) && (int) $this->post_template[$networkId][$networkType]['format'] == 1 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
953
  $urlValue = '';
@@ -1429,7 +1429,7 @@ class B2S_Ship_Item {
1429
 
1430
  if (isset($limit) && (int) $limit > 0) {
1431
  if(!empty($this->postUrl) && $data->networkId == 2) {
1432
- $limit = 256;
1433
  }
1434
  $message = B2S_Util::getExcerpt($message, 0, $limit);
1435
  }
28
  private $showGroups = array(8, 15, 19);
29
  private $changeDisplayName = array(8);
30
  private $setShortTextProfile = array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200, 16 => 250, 17 => 442, 18 => 800, 19 => 239, 20 => 300, 21 => 500);
31
+ private $setShortTextProfileLimit = array(1 => 400, 2 => 254, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200, 18 => 1000, 19 => 1000, 20 => 400, 21 => 600);
32
  private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 400, 10 => 442, 17 => 442, 19 => 239);
33
  private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 400, 10 => 500, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
34
  private $limitCharacterTitlePage = array(15 => array(0 => 300), 19 => array(1 => 150)); //XING Business Page selected over networkKind
383
 
384
  //Calendar
385
  if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
386
+ $content .= '<div class="clearfix"></div>';
387
  $content .= '<div class="b2s-calendar-filter-area col-xs-2 pull-right del-padding-right hide" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
388
  $content .= '<select class="b2s-calendar-filter-network-sel form-control" name="b2s-calendar-filter-network-sel" data-last-sel="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><option value="all">show all</option><option selected value="' . esc_attr($data->networkId) . '">' . esc_html($networkName[$data->networkId]) . '</option></select>';
389
  $content .= '</div>';
947
 
948
  $url .= (!$hideInfo) ? '<div class="b2s-post-item-details-url-title hidden-xs">Link ' . $isRequiredText . '</div>' : '';
949
 
950
+ if (($networkId == 12 || $networkId == 24) && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
951
  $urlValue = '';
952
  } else if (($networkId == 1 || $networkId == 2) && isset($this->post_template[$networkId][$networkType]['format']) && (int) $this->post_template[$networkId][$networkType]['format'] == 1 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
953
  $urlValue = '';
1429
 
1430
  if (isset($limit) && (int) $limit > 0) {
1431
  if(!empty($this->postUrl) && $data->networkId == 2) {
1432
+ $limit = 254;
1433
  }
1434
  $message = B2S_Util::getExcerpt($message, 0, $limit);
1435
  }
includes/Loader.php CHANGED
@@ -51,7 +51,7 @@ class B2S_Loader {
51
  1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false),
52
  2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false)
53
  ),
54
- 2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 256, 'excerpt_range_min' => 200, 'excerpt_range_max' => 256, 'limit' => 280), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1, 'addLink' => false)),
55
  3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
56
  1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
57
  ),
@@ -71,9 +71,9 @@ class B2S_Loader {
71
  2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0)),
72
  18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => false)),
73
  19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
74
- 1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 400), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
75
  2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
76
- 24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
77
  )));
78
  define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
79
  define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
@@ -640,7 +640,7 @@ class B2S_Loader {
640
  if ($res !== false && is_array($res)) {
641
  $ship = true;
642
  $res = array_merge($res, $defaultPostData);
643
- if ((int) $value->networkId == 12 && isset($optionPostFormat[12][0]['addLink']) && $optionPostFormat[12][0]['addLink'] === false) {
644
  $res['url'] = '';
645
  }
646
  if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($optionPostFormat[1][$value->networkType]['format']) && $optionPostFormat[1][$value->networkType]['format'] == 1 && isset($optionPostFormat[1][$value->networkType]['addLink']) && $optionPostFormat[1][$value->networkType]['addLink'] === false) {
@@ -886,7 +886,7 @@ class B2S_Loader {
886
  'INVALID_CONTENT' => sprintf(__('The network can not publish special characters such as Emoji. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
887
  'EXISTS_CONTENT' => esc_html__('Your post is a duplicate.', 'blog2social'),
888
  'URL_CONTENT' => esc_html__('The network requires a public url.', 'blog2social'),
889
- 'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publication.', 'blog2social'),
890
  'EXISTS_RELAY' => esc_html__('You have already retweeted this post.', 'blog2social'),
891
  'DEPRECATED_NETWORK_8' => esc_html__('This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts.', 'blog2social'),
892
  'IMAGE_FOR_CURATION' => esc_html__('An image is required to post on this social network.', 'blog2social'), // special for content curation V.5.0.0
51
  1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false),
52
  2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false)
53
  ),
54
+ 2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 254, 'excerpt_range_min' => 200, 'excerpt_range_max' => 254, 'limit' => 280), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1, 'addLink' => true)),
55
  3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
56
  1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
57
  ),
71
  2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0)),
72
  18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => false)),
73
  19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
74
+ 1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
75
  2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
76
+ 24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => false, 'addLink' => true))
77
  )));
78
  define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
79
  define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
640
  if ($res !== false && is_array($res)) {
641
  $ship = true;
642
  $res = array_merge($res, $defaultPostData);
643
+ if (((int) $value->networkId == 12 && isset($optionPostFormat[12][0]['addLink']) && $optionPostFormat[12][0]['addLink'] === false) || ((int) $value->networkId == 24 && isset($optionPostFormat[24][0]['addLink']) && $optionPostFormat[24][0]['addLink'] === false)) {
644
  $res['url'] = '';
645
  }
646
  if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($optionPostFormat[1][$value->networkType]['format']) && $optionPostFormat[1][$value->networkType]['format'] == 1 && isset($optionPostFormat[1][$value->networkType]['addLink']) && $optionPostFormat[1][$value->networkType]['addLink'] === false) {
886
  'INVALID_CONTENT' => sprintf(__('The network can not publish special characters such as Emoji. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
887
  'EXISTS_CONTENT' => esc_html__('Your post is a duplicate.', 'blog2social'),
888
  'URL_CONTENT' => esc_html__('The network requires a public url.', 'blog2social'),
889
+ 'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publishing.', 'blog2social'),
890
  'EXISTS_RELAY' => esc_html__('You have already retweeted this post.', 'blog2social'),
891
  'DEPRECATED_NETWORK_8' => esc_html__('This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts.', 'blog2social'),
892
  'IMAGE_FOR_CURATION' => esc_html__('An image is required to post on this social network.', 'blog2social'), // special for content curation V.5.0.0
includes/Tools.php CHANGED
@@ -229,6 +229,9 @@ class B2S_Tools {
229
  if($type == 'network_mandant'){
230
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=65&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=73&artlang=de';
231
  }
 
 
 
232
  if($type == 're_post'){
233
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=165&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=162&artlang=de';
234
  }
@@ -260,7 +263,7 @@ class B2S_Tools {
260
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=182&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=176&artlang=de';
261
  }
262
  if($type == 'troubleshoot_auth'){
263
- return ($lang == 'en') ? '' : '';
264
  }
265
  if($type == 'debugger_support'){
266
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=148&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=147&artlang=de';
229
  if($type == 'network_mandant'){
230
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=65&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=73&artlang=de';
231
  }
232
+ if($type == 'network_mandant_collection'){
233
+ return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=65&artlang=en&highlight=collection' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=73&artlang=de&highlight=Netzwerkgruppierungen';
234
+ }
235
  if($type == 're_post'){
236
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=165&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=162&artlang=de';
237
  }
263
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=182&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=176&artlang=de';
264
  }
265
  if($type == 'troubleshoot_auth'){
266
+ return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=119&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=119&artlang=de';
267
  }
268
  if($type == 'debugger_support'){
269
  return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=148&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=147&artlang=de';
includes/Util.php CHANGED
@@ -442,7 +442,7 @@ class B2S_Util {
442
  return trim($text);
443
  }
444
 
445
- $stops = array('.', ':', '?', '!', '#');
446
  $min = $count;
447
  $cleanTruncateWord = true;
448
  $max = ($max !== false) ? ($max - $min) : ($min - 1);
442
  return trim($text);
443
  }
444
 
445
+ $stops = array('.', '?', '!', '#');
446
  $min = $count;
447
  $cleanTruncateWord = true;
448
  $max = ($max !== false) ? ($max - $min) : ($min - 1);
languages/blog2social-de_DE.mo CHANGED
Binary file
languages/blog2social-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2021-03-19 14:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post &amp; "
13
  "Scheduler - Stable (latest release)\n"
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2021-03-19 14:28+0000\n"
16
  "Last-Translator: marius Lol <wolf.12345@gmx.de>\n"
17
  "Language-Team: German\n"
18
  "X-Loco-Version: 2.3.0; wp-5.7-RC3-50503"
@@ -157,7 +157,7 @@ msgstr "Neu"
157
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
158
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
159
  #: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
160
- #: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:670
161
  #: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
162
  #: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
163
  msgid "Profile"
@@ -165,14 +165,14 @@ msgstr "Profil"
165
 
166
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
167
  #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
168
- #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:329
169
- #: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Portale.php:39
170
  #: includes/B2S/Ship/Portale.php:39
171
  msgid "Page"
172
  msgstr "Seite"
173
 
174
  #: includes/Loader.php:874 includes/B2S/Network/Item.php:192
175
- #: includes/B2S/Network/Item.php:400 includes/B2S/Network/Item.php:675
176
  #: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
177
  msgid "Group"
178
  msgstr "Gruppe"
@@ -182,8 +182,8 @@ msgid "Company-Page (Employer Branding Profile)"
182
  msgstr "Unternehmensseite (Arbeitgeberprofil)"
183
 
184
  #: includes/Loader.php:875 includes/B2S/Network/Item.php:186
185
- #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:329
186
- #: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Item.php:331
187
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
188
  #: includes/B2S/Ship/Portale.php:37
189
  msgid "Business"
@@ -292,7 +292,7 @@ msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
292
 
293
  #: includes/Loader.php:889
294
  msgid ""
295
- "Your blog post was not available for the network at the time of publication."
296
  msgstr ""
297
  "Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
298
  "nicht verfügbar."
@@ -359,7 +359,8 @@ msgstr "Seiten & Blog Content"
359
  msgid "Create Social Media Posts"
360
  msgstr "Erstelle Social Media Posts"
361
 
362
- #: includes/Loader.php:955 includes/Loader.php:1012
 
363
  msgid "Social Media Posts"
364
  msgstr "Social Media Posts"
365
 
@@ -463,200 +464,200 @@ msgstr ""
463
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
464
  "zu tun."
465
 
466
- #: includes/Tools.php:349 views/b2s/html/sidebar.php:30
467
  #: views/b2s/html/sidebar.ship.php:29
468
  msgid "License"
469
  msgstr "Lizenz"
470
 
471
- #: includes/Tools.php:364
472
  msgid "Greece"
473
  msgstr "Griechenland"
474
 
475
- #: includes/Tools.php:365
476
  msgid "India"
477
  msgstr "Indien"
478
 
479
- #: includes/Tools.php:366
480
  msgid "United States of America"
481
  msgstr "Vereinigte Staaten von Amerika"
482
 
483
- #: includes/Tools.php:367
484
  msgid "Ireland"
485
  msgstr "Irland"
486
 
487
- #: includes/Tools.php:368
488
  msgid "Italy"
489
  msgstr "Italien"
490
 
491
- #: includes/Tools.php:369
492
  msgid "Switzerland"
493
  msgstr "Schweiz"
494
 
495
- #: includes/Tools.php:370
496
  msgid "Czechoslovakia"
497
  msgstr "Tschechoslowakei"
498
 
499
- #: includes/Tools.php:371
500
  msgid "Indonesia"
501
  msgstr "Indonesien"
502
 
503
- #: includes/Tools.php:372
504
  msgid "Spain"
505
  msgstr "Spanien"
506
 
507
- #: includes/Tools.php:373
508
  msgid "Canada"
509
  msgstr "Kanada"
510
 
511
- #: includes/Tools.php:374
512
  msgid "Great Britain"
513
  msgstr "Großbritannien"
514
 
515
- #: includes/Tools.php:375
516
  msgid "Russia"
517
  msgstr "Russland"
518
 
519
- #: includes/Tools.php:376
520
  msgid "Netherlands"
521
  msgstr "Niederlande"
522
 
523
- #: includes/Tools.php:377 includes/Tools.php:391
524
  msgid "Portugal"
525
  msgstr "Portugal"
526
 
527
- #: includes/Tools.php:378
528
  msgid "Norway"
529
  msgstr "Norwegen"
530
 
531
- #: includes/Tools.php:379
532
  msgid "Turkey"
533
  msgstr "Türkei"
534
 
535
- #: includes/Tools.php:380
536
  msgid "Australia"
537
  msgstr "Australien"
538
 
539
- #: includes/Tools.php:381
540
  msgid "Austria"
541
  msgstr "Österreich"
542
 
543
- #: includes/Tools.php:382
544
  msgid "Poland"
545
  msgstr "Polen"
546
 
547
- #: includes/Tools.php:383
548
  msgid "France"
549
  msgstr "Frankreich"
550
 
551
- #: includes/Tools.php:384
552
  msgid "Romania"
553
  msgstr "Rumänien"
554
 
555
- #: includes/Tools.php:385
556
  msgid "Germany"
557
  msgstr "Deutschland"
558
 
559
- #: includes/Tools.php:386
560
  msgid "Denmark"
561
  msgstr "Dänemark"
562
 
563
- #: includes/Tools.php:387
564
  msgid "New Zealand"
565
  msgstr "Neuseeland"
566
 
567
- #: includes/Tools.php:388
568
  msgid "Finland"
569
  msgstr "Finnland"
570
 
571
- #: includes/Tools.php:389
572
  msgid "Hungary"
573
  msgstr "Ungarn"
574
 
575
- #: includes/Tools.php:390
576
  msgid "Japan"
577
  msgstr "Japan"
578
 
579
- #: includes/Tools.php:392
580
  msgid "Argentina"
581
  msgstr "Argentinien"
582
 
583
- #: includes/Tools.php:393
584
  msgid "Korea"
585
  msgstr "Korea"
586
 
587
- #: includes/Tools.php:394
588
  msgid "Sweden"
589
  msgstr "Schweden"
590
 
591
- #: includes/Tools.php:395
592
  msgid "Mexico"
593
  msgstr "Mexiko"
594
 
595
- #: includes/Tools.php:396
596
  msgid "Slovakia"
597
  msgstr "Slowakei"
598
 
599
- #: includes/Tools.php:397
600
  msgid "Chile"
601
  msgstr "Chile"
602
 
603
- #: includes/Tools.php:398
604
  msgid "Colombia"
605
  msgstr "Kolumbien"
606
 
607
- #: includes/Tools.php:399
608
  msgid "South Africa"
609
  msgstr "Südafrika"
610
 
611
- #: includes/Tools.php:400
612
  msgid "Philippines"
613
  msgstr "Philippinen"
614
 
615
- #: includes/Tools.php:403
616
  msgid "is determined automatically"
617
  msgstr "wird automatisch ermittelt"
618
 
619
- #: includes/Tools.php:410
620
  msgid "Search"
621
  msgstr "Suche"
622
 
623
- #: includes/Tools.php:411
624
  msgid "Recently Used"
625
  msgstr "Zuletzt verwendet"
626
 
627
- #: includes/Tools.php:412
628
  msgid "Smileys & People"
629
  msgstr "Smileys & Personen"
630
 
631
- #: includes/Tools.php:413
632
  msgid "Animals & Nature"
633
  msgstr "Tiere & Natur"
634
 
635
- #: includes/Tools.php:414
636
  msgid "Food & Drink"
637
  msgstr "Essen & Trinken"
638
 
639
- #: includes/Tools.php:415
640
  msgid "Activities"
641
  msgstr "Aktivitäten"
642
 
643
- #: includes/Tools.php:416
644
  msgid "Travel & Places"
645
  msgstr "Reisen & Orte"
646
 
647
- #: includes/Tools.php:417
648
  msgid "Objects"
649
  msgstr "Objekte"
650
 
651
- #: includes/Tools.php:418
652
  msgid "Symbols"
653
  msgstr "Symbole"
654
 
655
- #: includes/Tools.php:419
656
  msgid "Flags"
657
  msgstr "Flaggen"
658
 
659
- #: includes/Tools.php:420
660
  msgid "No emojis found"
661
  msgstr "Keine Ergebnisse"
662
 
@@ -710,11 +711,11 @@ msgstr "Bitte kontaktiere unseren Support!"
710
 
711
  #: includes/Ajax/Post.php:1929 views/b2s/network.php:7
712
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
713
- #: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:528
714
  msgid "Unknown username"
715
  msgstr "unbekannter Blog-Nutzer"
716
 
717
- #: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:529
718
  #: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
719
  #: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
720
  #: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
@@ -726,7 +727,7 @@ msgstr "löschen"
726
  msgid "Please see FAQ"
727
  msgstr "Siehe FAQ"
728
 
729
- #: includes/B2S/PostBox.php:143 views/b2s/ship.php:773
730
  #: views/b2s/html/header.php:60
731
  msgid "The connection to the server failed. Try again!"
732
  msgstr ""
@@ -868,9 +869,9 @@ msgstr ""
868
  msgid "You want to auto-post your blog post?"
869
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
870
 
871
- #: includes/B2S/PostBox.php:217 views/b2s/curation.php:191
872
  #: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
873
- #: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
874
  #: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
875
  #: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
876
  #: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
@@ -878,9 +879,9 @@ msgstr "Du möchtest Deinen Beitrag automatisch posten?"
878
  msgid "With Blog2Social Premium you can:"
879
  msgstr "Mit Blog2Social kannst Du:"
880
 
881
- #: includes/B2S/PostBox.php:220 views/b2s/curation.php:194
882
  #: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
883
- #: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
884
  #: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
885
  #: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
886
  #: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
@@ -888,9 +889,9 @@ msgstr "Mit Blog2Social kannst Du:"
888
  msgid "Post on pages and groups"
889
  msgstr "Poste auf Seiten und in Gruppen"
890
 
891
- #: includes/B2S/PostBox.php:221 views/b2s/curation.php:195
892
  #: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
893
- #: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
894
  #: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
895
  #: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
896
  #: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
@@ -898,9 +899,9 @@ msgstr "Poste auf Seiten und in Gruppen"
898
  msgid "Share on multiple profiles, pages and groups"
899
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
900
 
901
- #: includes/B2S/PostBox.php:222 views/b2s/curation.php:196
902
  #: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
903
- #: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
904
  #: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
905
  #: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
906
  #: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
@@ -910,9 +911,9 @@ msgstr ""
910
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
911
  "Aktualisierung posten und zeitversetzt planen"
912
 
913
- #: includes/B2S/PostBox.php:223 views/b2s/curation.php:197
914
  #: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
915
- #: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
916
  #: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
917
  #: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
918
  #: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
@@ -920,9 +921,9 @@ msgstr ""
920
  msgid "Schedule your posts at the best times on each network"
921
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
922
 
923
- #: includes/B2S/PostBox.php:224 views/b2s/curation.php:198
924
  #: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
925
- #: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
926
  #: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
927
  #: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
928
  #: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
@@ -932,9 +933,9 @@ msgid ""
932
  "social media posts"
933
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
934
 
935
- #: includes/B2S/PostBox.php:225 views/b2s/curation.php:199
936
  #: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
937
- #: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
938
  #: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
939
  #: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
940
  #: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
@@ -944,9 +945,9 @@ msgstr ""
944
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
945
  "oder nach einem regelmäßigen Muster"
946
 
947
- #: includes/B2S/PostBox.php:226 views/b2s/curation.php:200
948
  #: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
949
- #: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
950
  #: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
951
  #: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
952
  #: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
@@ -954,9 +955,9 @@ msgstr ""
954
  msgid "Schedule and re-share old posts"
955
  msgstr "Plane und teile alte Beiträge"
956
 
957
- #: includes/B2S/PostBox.php:227 views/b2s/curation.php:201
958
  #: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
959
- #: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
960
  #: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
961
  #: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
962
  #: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
@@ -965,9 +966,9 @@ msgid "Select link format or image format for your posts"
965
  msgstr ""
966
  "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
967
 
968
- #: includes/B2S/PostBox.php:228 views/b2s/curation.php:202
969
  #: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
970
- #: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
971
  #: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
972
  #: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
973
  #: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
@@ -976,9 +977,9 @@ msgid "Select individual images per post"
976
  msgstr ""
977
  "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
978
 
979
- #: includes/B2S/PostBox.php:229 views/b2s/curation.php:203
980
  #: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
981
- #: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
982
  #: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
983
  #: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
984
  #: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
@@ -990,9 +991,9 @@ msgstr ""
990
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
991
  "Media Beiträge"
992
 
993
- #: includes/B2S/PostBox.php:231 views/b2s/curation.php:205
994
  #: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
995
- #: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
996
  #: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
997
  #: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
998
  #: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
@@ -1000,9 +1001,9 @@ msgstr ""
1000
  msgid "Upgrade to SMART and above"
1001
  msgstr "Upgrade auf SMART und höher"
1002
 
1003
- #: includes/B2S/PostBox.php:233 views/b2s/curation.php:207
1004
- #: views/b2s/curation.php:246 views/b2s/post.calendar.php:298
1005
- #: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
1006
  #: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
1007
  #: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
1008
  #: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
@@ -1048,8 +1049,7 @@ msgstr ""
1048
  "Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
1049
  "Erstelle eine Netzwerkgruppierung</a>"
1050
 
1051
- #: includes/B2S/PostBox.php:281 views/b2s/curation.php:336
1052
- #: views/b2s/repost.php:204
1053
  msgid "Available networks"
1054
  msgstr "Verfügbare Netzwerke"
1055
 
@@ -1141,16 +1141,15 @@ msgid ""
1141
  " Get more information about the \"best times\" in the guide \"<a href=\"%s\" "
1142
  "target=\"_blank\">The Best Times to Post on Social Media</a>\"."
1143
  msgstr ""
1144
- "Jedes Social-Media-Netzwerk hat seine Besten Zeiten“. Der "
1145
- "Veröffentlichungszeitpunkt spielt eine entscheidende Rolle, \n"
1146
- "wenn es darum geht, möglichst viele Likes, Shares und Kommentare sowie eine "
1147
- "große Reichweite zu erzielen. \n"
1148
- "Blog2Social stellt Dir vordefinierte “beste Zeiten”-Einstellungen zur "
1149
- "Verfügung. Wenn Du die \"besten Zeiten\" für Deinen \n"
1150
- "Auto-Poster aktivierst, werden Deine WordPress-Beiträge und -Seiten "
1151
- "automatisch zu den \"besten Zeiten\" freigegeben.\n"
1152
- "Erhalte mehr Informationen über die “besten Zeiten” in dem <a href=\"%s\" "
1153
- "target=\"_blank\">\"Die besten Zeiten für Social-Media-Posts”-Guide</a>."
1154
 
1155
  #: views/b2s/autopost.php:93
1156
  #, php-format
@@ -1182,7 +1181,7 @@ msgstr "Blog2Social Browser Erweiterung"
1182
  #: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
1183
  #: views/b2s/post.php:41 views/b2s/post.publish.php:45
1184
  #: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
1185
- #: views/b2s/ship.php:603 views/b2s/ship.php:771 views/b2s/support.php:144
1186
  #: views/b2s/support.php:182 views/prg/html/header.php:86
1187
  msgid "Loading..."
1188
  msgstr "Wird geladen..."
@@ -1195,12 +1194,12 @@ msgstr "Entwurf löschen"
1195
  msgid "Are you sure you want to delete this draft?"
1196
  msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
1197
 
1198
- #: views/b2s/curation.draft.php:90 views/b2s/curation.php:161
1199
  #: views/b2s/network.php:109 views/b2s/post.approve.php:98
1200
  #: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
1201
  #: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
1202
- #: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
1203
- #: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
1204
  msgid "NO"
1205
  msgstr "NEIN"
1206
 
@@ -1253,7 +1252,6 @@ msgid "Image Post"
1253
  msgstr "Bild-Beitrag"
1254
 
1255
  #: views/b2s/curation.php:49 views/b2s/curation.php:52
1256
- #: views/b2s/curation.php:258
1257
  msgid "Text Post"
1258
  msgstr "Text-Beitrag"
1259
 
@@ -1267,11 +1265,11 @@ msgstr "Text-Beitrag"
1267
  msgid "PRO"
1268
  msgstr "PRO"
1269
 
1270
- #: views/b2s/curation.php:63
1271
  msgid "Load data..."
1272
  msgstr "Daten werden geladen..."
1273
 
1274
- #: views/b2s/curation.php:69
1275
  msgid ""
1276
  "Enter a link you want to share on your social media networks. You can also "
1277
  "share a video link, for example from YouTube or from Vimeo (also see Video "
@@ -1281,7 +1279,7 @@ msgstr ""
1281
  "möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
1282
  "oder Vimeo (siehe auch Video-Beitrag)."
1283
 
1284
- #: views/b2s/curation.php:70
1285
  msgid ""
1286
  "Enter a video link you want to share on your social media networks, for "
1287
  "example from YouTube or from Vimeo."
@@ -1289,19 +1287,19 @@ msgstr ""
1289
  "Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
1290
  "Deinen Social-Media-Netzwerken teilen möchtest."
1291
 
1292
- #: views/b2s/curation.php:71
1293
  msgid "Please enter a valid link"
1294
  msgstr "Bitte gib einen gültigen Link ein"
1295
 
1296
- #: views/b2s/curation.php:72
1297
  msgid "Enter link"
1298
  msgstr "Link eingeben"
1299
 
1300
- #: views/b2s/curation.php:75 views/b2s/network.php:431
1301
  msgid "continue"
1302
  msgstr "weiter"
1303
 
1304
- #: views/b2s/curation.php:98 includes/B2S/Ship/Item.php:461
1305
  #: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
1306
  #: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
1307
  #: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
@@ -1318,54 +1316,54 @@ msgstr "weiter"
1318
  msgid "Change image"
1319
  msgstr "Bild ändern"
1320
 
1321
- #: views/b2s/curation.php:102 views/b2s/curation.php:116
1322
  #: includes/B2S/Curation/View.php:23
1323
  msgid "Write something..."
1324
  msgstr "Schreibe etwas..."
1325
 
1326
- #: views/b2s/curation.php:132 views/b2s/ship.php:260 views/b2s/ship.php:262
1327
  #: includes/B2S/Post/Item.php:454
1328
  msgid "Re-share this post"
1329
  msgstr "Diesen Beitrag nochmal teilen"
1330
 
1331
- #: views/b2s/curation.php:133
1332
  msgid "Create a new post"
1333
  msgstr "Neuen Social Media Post erstellen"
1334
 
1335
- #: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
1336
- #: views/b2s/ship.php:18 views/b2s/ship.php:772 includes/B2S/Post/Filter.php:59
1337
  #: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
1338
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
1339
  msgid "published"
1340
  msgstr "veröffentlicht"
1341
 
1342
- #: views/b2s/curation.php:155 views/b2s/post.approve.php:109
1343
- #: views/b2s/ship.php:472
1344
  msgid "Do you want to mark this post as published ?"
1345
  msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
1346
 
1347
- #: views/b2s/curation.php:160 views/b2s/post.approve.php:114
1348
- #: views/b2s/ship.php:477 views/b2s/ship.php:558
1349
  msgid "YES"
1350
  msgstr "JA"
1351
 
1352
- #: views/b2s/curation.php:174 views/b2s/post.calendar.php:265
1353
- #: views/b2s/ship.php:402
1354
  msgid "Need to schedule your posts?"
1355
  msgstr "Du möchtest Deine Beiträge planen?"
1356
 
1357
- #: views/b2s/curation.php:177 views/b2s/post.calendar.php:268
1358
- #: views/b2s/ship.php:405
1359
  msgid "Blog2Social Premium covers everything you need."
1360
  msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
1361
 
1362
- #: views/b2s/curation.php:180 views/b2s/post.calendar.php:271
1363
- #: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1155
1364
  msgid "Schedule for specific dates"
1365
  msgstr "Für bestimmte Termine planen"
1366
 
1367
- #: views/b2s/curation.php:181 views/b2s/post.calendar.php:272
1368
- #: views/b2s/ship.php:409
1369
  msgid ""
1370
  "You want to publish a post on a specific date? No problem! Just enter your "
1371
  "desired date and you are ready to go!"
@@ -1373,13 +1371,13 @@ msgstr ""
1373
  "Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
1374
  "Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
1375
 
1376
- #: views/b2s/curation.php:183 views/b2s/post.calendar.php:274
1377
- #: views/b2s/ship.php:411
1378
  msgid "Schedule post recurrently"
1379
  msgstr "Beitrag mehrfach planen"
1380
 
1381
- #: views/b2s/curation.php:184 views/b2s/post.calendar.php:275
1382
- #: views/b2s/ship.php:412
1383
  msgid ""
1384
  "You have evergreen content you want to re-share from time to time in your "
1385
  "timeline? Schedule your evergreen content to be shared once, multiple times "
@@ -1389,13 +1387,13 @@ msgstr ""
1389
  "teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
1390
  "wiederkehrenden Rhythmus"
1391
 
1392
- #: views/b2s/curation.php:186 views/b2s/post.calendar.php:277
1393
- #: views/b2s/ship.php:414
1394
  msgid "Best Time Scheduler"
1395
  msgstr "Beste Zeiten Manager"
1396
 
1397
- #: views/b2s/curation.php:187 views/b2s/post.calendar.php:278
1398
- #: views/b2s/ship.php:415
1399
  msgid ""
1400
  "Whenever you publish a post, only a fraction of your followers will actually "
1401
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
@@ -1408,17 +1406,17 @@ msgstr ""
1408
  "Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
1409
  "Deiner Posts."
1410
 
1411
- #: views/b2s/curation.php:219
1412
  msgid "You want to create image posts with any image from your media library?"
1413
  msgstr ""
1414
  "Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
1415
  "erstellen?"
1416
 
1417
- #: views/b2s/curation.php:220
1418
  msgid "You want to create text posts?"
1419
  msgstr "Möchtest Du Text-Posts erstellen?"
1420
 
1421
- #: views/b2s/curation.php:227
1422
  msgid ""
1423
  "With Blog2Social you can share your WordPress posts and pages as well as "
1424
  "create your own social media posts to share any content based on text, links,"
@@ -1438,7 +1436,7 @@ msgstr ""
1438
  "Video-Beiträge (Video-Links, z. B. von Youtube) und versorge Deine Follower "
1439
  "mit dem besten Content-Mix in Deinen Social-Media-Netzwerken."
1440
 
1441
- #: views/b2s/curation.php:230
1442
  msgid ""
1443
  "Unlock Blog2Social Premium Pro to create and share image posts, video links, "
1444
  "and text posts from any source."
@@ -1446,18 +1444,18 @@ msgstr ""
1446
  "Schalte Blog2Social Premium Pro frei, um Bild-Beiträge, Video-Links und Text-"
1447
  "Beiträge aus beliebigen Quellen zu erstellen und zu teilen."
1448
 
1449
- #: views/b2s/curation.php:232
1450
  msgid "Share image posts:"
1451
  msgstr "Teile Bild-Beiträge:"
1452
 
1453
- #: views/b2s/curation.php:234
1454
  msgid ""
1455
  "Grab more attention for your content with photos, videos, or infographics."
1456
  msgstr ""
1457
  "Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
1458
  "Infografiken."
1459
 
1460
- #: views/b2s/curation.php:235
1461
  msgid ""
1462
  "Share images to get them into the Google image search to further increase "
1463
  "your outreach and traffic from search engines."
@@ -1466,11 +1464,11 @@ msgstr ""
1466
  "so Deinen Traffic und Deine Reichweite auch über klassische Suchmaschinen "
1467
  "vergrößern kannst."
1468
 
1469
- #: views/b2s/curation.php:237
1470
  msgid "Share text posts:"
1471
  msgstr "Teile Text-Beiträge:"
1472
 
1473
- #: views/b2s/curation.php:239
1474
  msgid ""
1475
  "Share pure text messages and personal comments with your followers and "
1476
  "readers."
@@ -1478,65 +1476,83 @@ msgstr ""
1478
  "Teile reine Textinformationen und persönliche Kommentare mit Deinen "
1479
  "Followern und Lesern."
1480
 
1481
- #: views/b2s/curation.php:240
1482
  msgid "Use hashtags, @mentions, or emojis to share your feelings."
1483
  msgstr ""
1484
  "Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
1485
 
1486
- #: views/b2s/curation.php:242
1487
  #, php-format
1488
  msgid ""
1489
  "Learn more about how to share social media posts in the <a href=\"%s\" "
1490
  "target=\"_blank\">social media posts guide</a>."
1491
  msgstr ""
1492
- "Erhalte in dem “<a href=\"%s\" target=\"_blank\">Social-Media-Posts Guide</a>"
1493
- " mehr Informationen darüber, wie Du Social-Media-Beiträge teilen kannst."
 
1494
 
1495
- #: views/b2s/curation.php:244 views/b2s/html/footer.php:73
1496
  #: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
1497
  msgid "Upgrade to PRO and above"
1498
  msgstr "Upgrade auf PRO und höher"
1499
 
1500
- #: views/b2s/curation.php:261
1501
  msgid ""
1502
  "Text posts enable you to share pure text messages and personal comments with "
1503
- "your followers and readers. You can also use hashtags, @mentions, or emojis "
1504
- "to share your feelings. You can share a text post on the following networks:"
1505
  msgstr ""
1506
  "Das Teilen von Text-Beiträgen ermöglicht es Dir, reine Textinformationen und "
1507
  "persönliche Kommentare mit Deinen Followern und Lesern zu teilen. Du kannst "
1508
- "in Textbeiträgen auch Hashtags, @Handles oder Emojis verwenden, um Deine "
1509
- "Gefühle auszudrücken. Du kannst einen Textbeitrag in den folgenden "
1510
- "Netzwerken teilen:"
1511
 
1512
- #: views/b2s/curation.php:279
 
 
 
 
1513
  #, php-format
1514
  msgid ""
1515
  "Get more information on how to share a text post with hashtags, @mentions "
1516
  "and emojis in the <a href=\"%s\" target=\"_blank\">social media posts "
1517
  "guide</a>."
1518
  msgstr ""
1519
- "Erhalte in dem “<a href=\"%s\" target=\"_blank\">Social-Media-Posts Guide</a>"
1520
- " mehr Informationen darüber, wie Du Text-Beiträge mit Hashtags, @Handles "
1521
- "und Emojis teilen kannst."
 
 
 
 
 
 
 
 
 
1522
 
1523
- #: views/b2s/curation.php:290 views/b2s/repost.php:181
 
 
 
 
 
 
 
 
 
 
 
1524
  msgid "Select image"
1525
  msgstr "Bild auswählen"
1526
 
1527
- #: views/b2s/curation.php:312
1528
- msgid "Available networks for Social Media Posts"
1529
- msgstr "Verfügbare Netzwerke für die Social Media Posts"
1530
-
1531
- #: views/b2s/curation.php:335 views/b2s/repost.php:203
1532
- #, php-format
1533
  msgid ""
1534
- "Under <a href=\"%s\">Network Settings</a> you define which network selection "
1535
- "is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
1536
  msgstr ""
1537
- "Unter <a href=\"%s\">Netzwerkeinstellungen</a> definieren Sie, welche "
1538
- "Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
1539
- "Sie eine Netzwerk-Gruppierung</a>"
1540
 
1541
  #: views/b2s/dashboard.php:26
1542
  msgid "Your Activity"
@@ -1577,7 +1593,7 @@ msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
1577
  msgid "Delete"
1578
  msgstr "Löschen"
1579
 
1580
- #: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:372
1581
  #: views/b2s/html/footer.php:256
1582
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1583
  msgstr ""
@@ -1629,7 +1645,7 @@ msgstr ""
1629
  "Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
1630
  "Business Brancheneinträgen zu erweitern."
1631
 
1632
- #: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
1633
  #: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:53
1634
  msgid "Learn more"
1635
  msgstr "Mehr erfahren"
@@ -1707,8 +1723,8 @@ msgstr "Beitragsvorlage bearbeiten"
1707
  #: views/b2s/network.php:230 views/b2s/ship.php:23
1708
  #: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
1709
  #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
1710
- #: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:371
1711
- #: includes/B2S/Network/Item.php:437 includes/B2S/RePost/Item.php:23
1712
  #: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
1713
  #: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
1714
  #: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
@@ -1718,7 +1734,7 @@ msgid "SMART"
1718
  msgstr "SMART"
1719
 
1720
  #: views/b2s/network.php:242 views/b2s/settings.php:65
1721
- #: includes/B2S/Network/Item.php:589 includes/B2S/Settings/Item.php:133
1722
  msgid "save"
1723
  msgstr "speichern"
1724
 
@@ -1797,7 +1813,7 @@ msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
1797
  msgid "The name of the post author."
1798
  msgstr "Der Name des Autors Deines Beitrags."
1799
 
1800
- #: views/b2s/network.php:318 includes/B2S/Network/Item.php:836
1801
  msgid "Character limit"
1802
  msgstr "Zeichenbegrenzung"
1803
 
@@ -1835,12 +1851,12 @@ msgstr ""
1835
  "und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
1836
  "des jeweiligen Social Networks berücksichtigt."
1837
 
1838
- #: views/b2s/network.php:334 views/b2s/ship.php:569
1839
  msgid "Connect with Pinterest"
1840
  msgstr "Mit Pinterest verbinden"
1841
 
1842
- #: views/b2s/network.php:339 views/b2s/network.php:352 views/b2s/ship.php:574
1843
- #: views/b2s/ship.php:582
1844
  msgid ""
1845
  "The login failed. To connect your Pinterest account to Blog2Social, please "
1846
  "sign in to Pinterest using the Blog2Social browser extension."
@@ -1857,13 +1873,13 @@ msgstr "Lade und aktiviere die Blog2Social Extension"
1857
  msgid "Click on \"continue\""
1858
  msgstr "Klicke auf “weiter”"
1859
 
1860
- #: views/b2s/network.php:359 views/b2s/network.php:377 views/b2s/ship.php:589
1861
- #: views/b2s/ship.php:607
1862
  msgid "An error occurred! Please try again."
1863
  msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
1864
 
1865
- #: views/b2s/network.php:360 views/b2s/network.php:386 views/b2s/ship.php:590
1866
- #: views/b2s/ship.php:616
1867
  msgid ""
1868
  "Login up successful. Please confirm that Blog2Social is allowed to publish "
1869
  "on your profile."
@@ -1871,12 +1887,12 @@ msgstr ""
1871
  "Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil "
1872
  "veröffentlichen darf."
1873
 
1874
- #: views/b2s/network.php:364 views/b2s/network.php:419 views/b2s/ship.php:594
1875
- #: views/b2s/ship.php:649
1876
  msgid "Select Pinboard"
1877
  msgstr "Pinnwand auswählen"
1878
 
1879
- #: views/b2s/network.php:376 views/b2s/ship.php:606
1880
  msgid ""
1881
  "Please make sure to use your original Pinterest login data (email and "
1882
  "password). Social Login via Facebook or Google login data will not work here."
@@ -1888,8 +1904,8 @@ msgstr ""
1888
  "dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
1889
  "stabile Verbindung zu Blog2Social sicherzustellen."
1890
 
1891
- #: views/b2s/network.php:378 views/b2s/network.php:379 views/b2s/ship.php:608
1892
- #: views/b2s/ship.php:609
1893
  #, php-format
1894
  msgid ""
1895
  "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
@@ -1898,11 +1914,11 @@ msgstr ""
1898
  "Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
1899
  "href=\"%s\">Upgrade auf Blog2Social Premium</a>"
1900
 
1901
- #: views/b2s/network.php:380 views/b2s/ship.php:610
1902
  msgid "Invalid Data! Please try again."
1903
  msgstr "Ungültige Daten! Bitte versuche es erneut."
1904
 
1905
- #: views/b2s/network.php:381 views/b2s/ship.php:611
1906
  msgid ""
1907
  "You have not yet created any pinboards in your Pinterest account. Please set "
1908
  "up at least one pinboard to pin on your Pinterest account!"
@@ -1910,7 +1926,7 @@ msgstr ""
1910
  "Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
1911
  "richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
1912
 
1913
- #: views/b2s/network.php:382 views/b2s/ship.php:612
1914
  #, php-format
1915
  msgid ""
1916
  "Login failed. Please check your login data for typos and please check your "
@@ -1922,16 +1938,16 @@ msgstr ""
1922
  "Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" "
1923
  "href=\"%s\">%s</a>"
1924
 
1925
- #: views/b2s/network.php:383 views/b2s/ship.php:613
1926
  msgid "Pinterest has rejected the connection to your blog"
1927
  msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
1928
 
1929
- #: views/b2s/network.php:384 views/b2s/ship.php:614
1930
  msgid "Please select your correct server location and connect again."
1931
  msgstr ""
1932
  "Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
1933
 
1934
- #: views/b2s/network.php:385 views/b2s/ship.php:615
1935
  msgid ""
1936
  "Access to this resource on your server is denied! Please check your "
1937
  "webserver configuration for caching."
@@ -1939,32 +1955,32 @@ msgstr ""
1939
  "Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
1940
  "überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
1941
 
1942
- #: views/b2s/network.php:388 views/b2s/ship.php:618
1943
  #: views/b2s/html/header.php:348 views/prg/html/form.php:141
1944
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1945
  #: views/prg/html/form.php:220
1946
  msgid "E-Mail"
1947
  msgstr "E-Mail"
1948
 
1949
- #: views/b2s/network.php:394 views/b2s/ship.php:624 views/prg/login.php:25
1950
  msgid "Password"
1951
  msgstr "Passwort"
1952
 
1953
- #: views/b2s/network.php:405 views/b2s/ship.php:635
1954
  msgid "Server-Location"
1955
  msgstr "Serverstandort"
1956
 
1957
- #: views/b2s/network.php:427 views/b2s/ship.php:657 views/b2s/ship.php:661
1958
  #: includes/B2S/Settings/Item.php:89
1959
  msgid "authorize"
1960
  msgstr "autorisieren"
1961
 
1962
- #: views/b2s/network.php:428 views/b2s/network.php:430 views/b2s/ship.php:658
1963
- #: views/b2s/ship.php:660
1964
  msgid "confirm"
1965
  msgstr "bestätigen"
1966
 
1967
- #: views/b2s/network.php:429 views/b2s/ship.php:659
1968
  msgid "Sign in to Pinterest"
1969
  msgstr "Melde Dich bei Pinterest an"
1970
 
@@ -2084,7 +2100,7 @@ msgstr ""
2084
  msgid "Upgrade to Blog2Social Business"
2085
  msgstr "Upgrade auf Blog2Social Business"
2086
 
2087
- #: views/b2s/network.php:556 includes/B2S/Network/Item.php:559
2088
  #, php-format
2089
  msgid ""
2090
  "Define parameters that will be added to link posts on this network e.g. to "
@@ -2099,11 +2115,11 @@ msgstr ""
2099
  msgid "My Profile"
2100
  msgstr "Mein Profil"
2101
 
2102
- #: views/b2s/network.php:603 views/b2s/ship.php:714
2103
  msgid "Add Page"
2104
  msgstr "Seite hinzufügen"
2105
 
2106
- #: views/b2s/network.php:608 views/b2s/ship.php:719
2107
  #, php-format
2108
  msgid ""
2109
  "Please make sure to log in with your account which manages your pages and <a "
@@ -2114,16 +2130,16 @@ msgstr ""
2114
  "Guide, um alle Deine Seiten auswählen zu können</a>."
2115
 
2116
  #: views/b2s/network.php:609 views/b2s/network.php:628
2117
- #: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:682
2118
- #: views/b2s/ship.php:701 views/b2s/ship.php:720 views/b2s/ship.php:739
2119
  msgid "Continue"
2120
  msgstr "Fortsetzen"
2121
 
2122
- #: views/b2s/network.php:622 views/b2s/ship.php:733
2123
  msgid "Add Group"
2124
  msgstr "Gruppe hinzufügen"
2125
 
2126
- #: views/b2s/network.php:627 views/b2s/ship.php:738
2127
  #, php-format
2128
  msgid ""
2129
  "Please make sure to log in with your account which manages your groups and "
@@ -2134,11 +2150,11 @@ msgstr ""
2134
  "verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
2135
  "alle Deine Gruppen auszuwählen</a>."
2136
 
2137
- #: views/b2s/network.php:641 views/b2s/ship.php:676
2138
  msgid "Add Profile"
2139
  msgstr "Profil hinzufügen"
2140
 
2141
- #: views/b2s/network.php:646 views/b2s/ship.php:681
2142
  #, php-format
2143
  msgid ""
2144
  "When you connect Blog2Social with your Instagram account, you might get a "
@@ -2160,24 +2176,24 @@ msgstr ""
2160
  "um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
2161
  "Informationen: So verbindest Du Deine Website mit Instagram.</a>"
2162
 
2163
- #: views/b2s/network.php:660 views/b2s/ship.php:695
2164
  msgid "Connect Instagram Business Account"
2165
  msgstr "Instagram Business-Konto verbinden"
2166
 
2167
- #: views/b2s/network.php:665
2168
  #, php-format
2169
  msgid ""
2170
  "Please note: Your Instagram Business Account will be connected with "
2171
  "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
2172
- "Business Account is linked to a Facebook page and enter the login data of "
2173
- "your Facebook page. You will find more information and detailed instructions "
2174
- "in the <a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
2175
  msgstr ""
2176
  "Hinweis: Dein Instagram Business-Konto wird über Facebook mit Blog2Social "
2177
  "verbunden. Stelle daher bitte sicher, das Dein Instagram Business-Konto mit "
2178
  "einer Facebook-Seite verknüpft ist und gib die dazugehörigen Login-Daten ein."
2179
  " Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
2180
- "href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden</a>."
2181
 
2182
  #: views/b2s/network.php:679
2183
  msgid "Network connections"
@@ -2290,15 +2306,15 @@ msgid "scheduled"
2290
  msgstr "geplant"
2291
 
2292
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2293
- #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
2294
- #: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:239
2295
  #: views/b2s/html/footer.php:177
2296
  msgid "Image with frame"
2297
  msgstr "Bild mit Rahmen"
2298
 
2299
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2300
- #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:750
2301
- #: includes/B2S/Network/Item.php:753 includes/B2S/Settings/Item.php:253
2302
  #: views/b2s/html/footer.php:182
2303
  msgid "Image cut out"
2304
  msgstr "Bild zuschneiden"
@@ -2309,22 +2325,22 @@ msgid "add post"
2309
  msgstr "Beitrag hinzufügen"
2310
 
2311
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2312
- #: views/b2s/repost.php:104 views/b2s/ship.php:507
2313
  msgid "Choose your"
2314
  msgstr "Wähle Deinen"
2315
 
2316
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2317
- #: views/b2s/repost.php:104 views/b2s/ship.php:507
2318
  msgid "Post Format"
2319
  msgstr "Postformat"
2320
 
2321
  #: views/b2s/post.calendar.php:113 views/b2s/post.sched.php:132
2322
- #: views/b2s/repost.php:106 views/b2s/ship.php:509
2323
  msgid "for:"
2324
  msgstr "für:"
2325
 
2326
  #: views/b2s/post.calendar.php:132 views/b2s/post.sched.php:151
2327
- #: views/b2s/repost.php:125 views/b2s/ship.php:527
2328
  msgid ""
2329
  "Define the default settings for the custom post format for all of your "
2330
  "Facebook accounts in the Blog2Social settings."
@@ -2333,7 +2349,7 @@ msgstr ""
2333
  "den Blog2Social Einstellungen."
2334
 
2335
  #: views/b2s/post.calendar.php:135 views/b2s/post.sched.php:154
2336
- #: views/b2s/repost.php:128 views/b2s/ship.php:530
2337
  msgid ""
2338
  "Define the default settings for the custom post format for all of your "
2339
  "Twitter accounts in the Blog2Social settings."
@@ -2342,7 +2358,7 @@ msgstr ""
2342
  "unter den Blog2Social Einstellungen."
2343
 
2344
  #: views/b2s/post.calendar.php:138 views/b2s/post.sched.php:157
2345
- #: views/b2s/repost.php:131 views/b2s/ship.php:533
2346
  msgid ""
2347
  "Define the default settings for the custom post format for all of your "
2348
  "LinkedIn accounts in the Blog2Social settings."
@@ -2351,7 +2367,7 @@ msgstr ""
2351
  "unter den Blog2Social Einstellungen."
2352
 
2353
  #: views/b2s/post.calendar.php:141 views/b2s/post.sched.php:160
2354
- #: views/b2s/repost.php:134 views/b2s/ship.php:536
2355
  msgid ""
2356
  "Define the default settings for the custom post format for all of your "
2357
  "Instagram accounts in the Blog2Social settings."
@@ -2360,7 +2376,7 @@ msgstr ""
2360
  "für alle Instagram-Konten in den Blog2Social-Einstellungen."
2361
 
2362
  #: views/b2s/post.calendar.php:156 views/b2s/post.sched.php:111
2363
- #: views/b2s/repost.php:149 views/b2s/ship.php:448
2364
  msgid "Select image for"
2365
  msgstr "Wähle Bild aus für"
2366
 
@@ -2615,6 +2631,16 @@ msgstr "Versionen und Preise anzeigen"
2615
  msgid "Show all premium features"
2616
  msgstr "Alle Premium-Features anzeigen"
2617
 
 
 
 
 
 
 
 
 
 
 
2618
  #: views/b2s/settings.php:32
2619
  msgid "General"
2620
  msgstr "Allgemein"
@@ -2849,9 +2875,9 @@ msgstr "mehr hinzufügen"
2849
  msgid "Profiles | Pages | Groups"
2850
  msgstr "Profile | Seiten | Gruppen"
2851
 
2852
- #: views/b2s/ship.php:164
2853
- msgid "Save network collection"
2854
- msgstr "Netzwerk-Gruppierung speichern"
2855
 
2856
  #: views/b2s/ship.php:173
2857
  msgid "network connected"
@@ -2939,78 +2965,82 @@ msgstr ""
2939
  msgid "You want re-share your blog post?"
2940
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
2941
 
2942
- #: views/b2s/ship.php:336
2943
- msgid "Save Network Settings"
2944
- msgstr "Netzwerkeinstellungen speichern"
2945
-
2946
  #: views/b2s/ship.php:339
2947
  msgid ""
2948
- "You can save your current network settings as \"Standard\" network settings "
2949
- "for any future sharing activities or as a \"Profile\" to choose from "
2950
- "(Premium)."
 
2951
  msgstr ""
2952
- "Du kannst die aktuelle Netzwerk-Auswahl als \"Standard\" Einstellungen "
2953
- "speichern. Diese Netzwerke werden dann als aktiviert auf der rechten "
2954
- "Seitennavigation angezeigt, wenn Du den Button \"Auf Social Media teilen\" "
2955
- "klickst, oder Du kannst die Einstellungen in einem neuen Netzwerk Profil "
2956
- "speichern (Premium)."
2957
 
2958
  #: views/b2s/ship.php:341
2959
  msgid ""
2960
- "Your Standard selection will show as activated upon pressing the \"share on "
2961
- "social media\" button on the right hand side bar. You can change these "
2962
- "settings any time per click, or choose another network profile (Premium)."
 
2963
  msgstr ""
2964
- "Du kannst diesen Blogbeitrag erneut teilen, zum Beispiel, um diesen Beitrag "
2965
- "auf einer anderen Auswahl an Netzwerken oder nur auf bestimmten Profilen, "
2966
- "Seiten und Gruppen neu zu teilen, oder mit anderen Kommentaren, Bildern und "
2967
- "Texten nur auf bestimmten Netzwerke zu teilen, oder um weitere Bilder zum "
2968
- "Blogbeitrag nur an die Bilder-Netzwerke zu senden, oder um Deine Social "
2969
- "Media Posts zu anderen Zeiten zu teilen. So erzielt Du mehre Variationen "
2970
- "Deiner Social Media Posts und kannst Deinen Beitrag öfters posten, um mehr "
2971
- "Aufmerksamkeit und Reichweite zu erzielen, ohne immer wieder die gleiche "
2972
- "Mitteilung zu posten."
2973
 
2974
  #: views/b2s/ship.php:343
2975
  msgid ""
2976
- "You can also pre-define various different sets of networks, for specific "
2977
- "social media accounts, target groups, contents or sharing purposes. For "
2978
- "example you can define a specific set of networks for sharing your posts "
2979
- "images only or for re-sharing your evergreen content on a recurring basis. "
2980
- "On the preview-page you may edit your selected or pre-selected networks "
2981
- "anytime by simply clicking on the respective network account to select or "
2982
- "remove an account from the current sharing scheme."
2983
  msgstr ""
2984
- "Was auch immer Du zu teilen wünscht, klicken Sie einfach auf \"Diesen "
2985
- "Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, wo Du "
2986
- "Deine Netzwerke, Texte und Bilder wählen oder variieren kannst."
 
 
 
2987
 
2988
- #: views/b2s/ship.php:355
 
 
 
 
 
 
 
 
 
 
 
 
 
2989
  msgid "Your blog post is not yet published on your Wordpress!"
2990
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
2991
 
2992
- #: views/b2s/ship.php:358
2993
  msgid "At least one of your selected networks is set to \"Share Now\""
2994
  msgstr ""
2995
  "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
2996
 
2997
- #: views/b2s/ship.php:362
2998
  msgid "Schedule your post"
2999
  msgstr "Beitrag planen"
3000
 
3001
- #: views/b2s/ship.php:365
3002
  msgid "Ignore & share"
3003
  msgstr "Ignorieren & teilen"
3004
 
3005
- #: views/b2s/ship.php:490
3006
  msgid "Important infomations about XING groups"
3007
  msgstr "Wichtige Information zu XING-Gruppen"
3008
 
3009
- #: views/b2s/ship.php:551
3010
  msgid "Overwrite Draft"
3011
  msgstr "Entwurf überschreiben"
3012
 
3013
- #: views/b2s/ship.php:554
3014
  msgid ""
3015
  "There is already a saved draft for this WordPress post or page. If you save "
3016
  "a new draft it will overwrite the old draft. Are you sure you want to "
@@ -3021,26 +3051,11 @@ msgstr ""
3021
  "damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
3022
  "möchtest?"
3023
 
3024
- #: views/b2s/ship.php:700
3025
- #, php-format
3026
- msgid ""
3027
- "Please note: Your Instagram Business Account will be connected with "
3028
- "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
3029
- "Business Account is linked to a Facebook page and enter the corresponding "
3030
- "login data. You will find more information and detailed instructions in the "
3031
- "<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
3032
- msgstr ""
3033
- "Hinweis: Dein Instagram Business-Konto wird über Facebook mit Blog2Social "
3034
- "verbunden. Stelle daher bitte sicher, das Dein Instagram Business-Konto mit "
3035
- "einer Facebook-Seite verknüpft ist und gib die dazugehörigen Login-Daten ein."
3036
- " Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
3037
- "href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden.</a>"
3038
-
3039
- #: views/b2s/ship.php:759
3040
  msgid "add Schedule"
3041
  msgstr "Zeitplan hinzufügen"
3042
 
3043
- #: views/b2s/ship.php:775
3044
  msgid "Give me more information"
3045
  msgstr "Erhalte mehr Infomationen"
3046
 
@@ -3645,7 +3660,7 @@ msgid "Blog"
3645
  msgstr "Blog"
3646
 
3647
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
3648
- #: includes/B2S/Network/Item.php:670 includes/B2S/Ship/Item.php:331
3649
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
3650
  msgid "Personal"
3651
  msgstr "Privat"
@@ -3664,7 +3679,7 @@ msgstr "BUSINESS"
3664
  msgid "You want to connect a network page?"
3665
  msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
3666
 
3667
- #: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:400
3668
  #: includes/B2S/Ship/Portale.php:31
3669
  msgid "Publication"
3670
  msgstr "Publication"
@@ -3678,83 +3693,70 @@ msgid "Best Time Manager"
3678
  msgstr "Best Time Manager"
3679
 
3680
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3681
- #: includes/B2S/Network/Item.php:391
3682
  msgid "To reactivate this connection,"
3683
  msgstr "Um die Verbindung wieder zu aktivieren,"
3684
 
3685
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3686
- #: includes/B2S/Network/Item.php:391 includes/B2S/Ship/Image.php:31
3687
  msgid "please upgrade"
3688
  msgstr "Bitte upgraden"
3689
 
3690
  #: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
3691
- #: includes/B2S/Network/Item.php:394
3692
  msgid "Connection is interrupted since"
3693
  msgstr "Verbindung ist unterbrochen seit"
3694
 
3695
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
3696
- #: includes/B2S/Network/Item.php:398
3697
  msgid "Assigned by"
3698
  msgstr "Zugewiesen von"
3699
 
3700
- #: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:369
3701
- #: includes/B2S/Network/Item.php:435 includes/B2S/Ship/Item.php:1211
3702
  msgid "Days"
3703
  msgstr "Tage"
3704
 
3705
- #: includes/B2S/Network/Item.php:326 includes/B2S/Network/Item.php:869
3706
- #, php-format
3707
- msgid ""
3708
- "Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
3709
- "Old Design until 2020/11/30</a>)"
3710
- msgstr ""
3711
- "Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
3712
- "Design bis 30.11.2020</a>)"
3713
-
3714
- #: includes/B2S/Network/Item.php:327 includes/B2S/Network/Item.php:870
3715
- msgid "Company-Page (Employer Branding Profile, New Design)"
3716
- msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
3717
-
3718
- #: includes/B2S/Network/Item.php:516
3719
  msgid "Connection currently assigned to"
3720
  msgstr "Diese Verbindung ist aktuell zugewiesen an"
3721
 
3722
- #: includes/B2S/Network/Item.php:561 views/prg/html/form.php:84
3723
  #: views/prg/html/form.php:86 views/prg/html/form.php:161
3724
  #: views/prg/html/form.php:163
3725
  msgid "Name"
3726
  msgstr "Name"
3727
 
3728
- #: includes/B2S/Network/Item.php:562
3729
  msgid "Value"
3730
  msgstr "Zugeordneter Wert"
3731
 
3732
- #: includes/B2S/Network/Item.php:586
3733
  msgid "+ add Parameter"
3734
  msgstr "+ Parameter hinzufügen"
3735
 
3736
- #: includes/B2S/Network/Item.php:587
3737
  #, php-format
3738
  msgid "Apply for all %s connections"
3739
  msgstr "Für alle %s Verbindungen übernehmen"
3740
 
3741
- #: includes/B2S/Network/Item.php:588
3742
  msgid "Apply for all connections"
3743
  msgstr "Für alle Verbindungen übernehmen"
3744
 
3745
- #: includes/B2S/Network/Item.php:614
3746
  msgid "Successfully saved"
3747
  msgstr "Erfolgreich gespeichert"
3748
 
3749
- #: includes/B2S/Network/Item.php:615
3750
  msgid "Failed to save"
3751
  msgstr "Speichern fehlgeschlagen"
3752
 
3753
- #: includes/B2S/Network/Item.php:616
3754
  msgid "Failed to load the default template"
3755
  msgstr "Fehler beim Laden der Standardeinstellungen"
3756
 
3757
- #: includes/B2S/Network/Item.php:659
3758
  msgid ""
3759
  "Upgrade to Blog2Social Smart or higher to customize your individual post "
3760
  "templates that will automatically pre-format the structure of your social "
@@ -3774,36 +3776,36 @@ msgstr ""
3774
  "auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
3775
  "Beitragsvorlagen hinzu."
3776
 
3777
- #: includes/B2S/Network/Item.php:660
3778
  msgid "Upgrade to Blog2Social Smart"
3779
  msgstr "Upgrade auf Blog2Social Smart"
3780
 
3781
- #: includes/B2S/Network/Item.php:681
3782
  msgid "Activate Instant Caching"
3783
  msgstr "Instant Caching aktivieren"
3784
 
3785
- #: includes/B2S/Network/Item.php:742
3786
  msgid "Format"
3787
  msgstr "Format"
3788
 
3789
- #: includes/B2S/Network/Item.php:743 includes/B2S/Network/Item.php:764
3790
  msgid "Load default settings"
3791
  msgstr "Lade Standardeinstellungen"
3792
 
3793
- #: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
3794
  #: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
3795
  msgid "Link"
3796
  msgstr "Link"
3797
 
3798
- #: includes/B2S/Network/Item.php:750 includes/B2S/Network/Item.php:753
3799
  msgid "Image"
3800
  msgstr "Bild"
3801
 
3802
- #: includes/B2S/Network/Item.php:762 includes/B2S/Settings/Item.php:64
3803
  msgid "Content"
3804
  msgstr "Inhalt"
3805
 
3806
- #: includes/B2S/Network/Item.php:771 includes/B2S/Ship/Item.php:372
3807
  msgid ""
3808
  "Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
3809
  "in your post."
@@ -3811,11 +3813,11 @@ msgstr ""
3811
  "Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
3812
  "Hashtags in Deinem Beitrag."
3813
 
3814
- #: includes/B2S/Network/Item.php:783
3815
  msgid "clear"
3816
  msgstr "löschen"
3817
 
3818
- #: includes/B2S/Network/Item.php:794
3819
  msgid ""
3820
  "The link will be transmitted as a canonical link, i.e. in the source code of "
3821
  "your page, in order to refer to the original source of the content and to "
@@ -3825,15 +3827,15 @@ msgstr ""
3825
  "um so auf die ursprüngliche Quelle des Inhalts zu verweisen und die "
3826
  "Reichweite über Suchmaschinen wie Google zu vergrößern."
3827
 
3828
- #: includes/B2S/Network/Item.php:796
3829
  msgid "The link will be added automatically at the end of the post."
3830
  msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
3831
 
3832
- #: includes/B2S/Network/Item.php:801
3833
  msgid "The network does not support hashtags."
3834
  msgstr "Das Netzwerk unterstützt keine Hashtags."
3835
 
3836
- #: includes/B2S/Network/Item.php:805
3837
  msgid ""
3838
  "This social network displays the predefined hashtags as clickable tags at "
3839
  "the end of your post."
@@ -3841,14 +3843,14 @@ msgstr ""
3841
  "Das Netzwerk veröffentlicht die vordefinierten Hashtags als anklickbare Tags "
3842
  "am Ende Deines Beitrags."
3843
 
3844
- #: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
3845
- #: includes/B2S/Network/Item.php:900
3846
  msgid "Network limit"
3847
  msgstr "Netzwerkbegrenzung"
3848
 
3849
- #: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
3850
- #: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
3851
- #: includes/B2S/Network/Item.php:900 includes/B2S/Ship/Item.php:215
3852
  #: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
3853
  #: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
3854
  #: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
@@ -3856,11 +3858,11 @@ msgstr "Netzwerkbegrenzung"
3856
  msgid "characters"
3857
  msgstr "Zeichen"
3858
 
3859
- #: includes/B2S/Network/Item.php:817
3860
  msgid "Add a link-URL to the end of my image post."
3861
  msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
3862
 
3863
- #: includes/B2S/Network/Item.php:824
3864
  msgid ""
3865
  "Add a link-URL to the end of my Instagram posts. (Please note, that "
3866
  "Instagram does not turn link-URLs into clickable links)"
@@ -3868,11 +3870,15 @@ msgstr ""
3868
  "Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
3869
  "Instagram Links nicht als klickbare Links darstellt)"
3870
 
3871
- #: includes/B2S/Network/Item.php:829
3872
  msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
3873
  msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
3874
 
3875
- #: includes/B2S/Network/Item.php:840
 
 
 
 
3876
  msgid ""
3877
  "Missing PHP \"mbstring\" extension to use the character limit function. "
3878
  "Please activate server-side the PHP \"mbstring\" extension in your \"php."
@@ -3881,18 +3887,18 @@ msgstr ""
3881
  "Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
3882
  "Zeichenbegrenzungsfunktion zu nutzen."
3883
 
3884
- #: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
3885
  msgid "recommended length"
3886
  msgstr "Empfohlene Länge"
3887
 
3888
- #: includes/B2S/Network/Item.php:926 includes/B2S/Network/Item.php:978
3889
- #: includes/B2S/Network/Item.php:1047 includes/B2S/Network/Item.php:1099
3890
- #: includes/B2S/Network/Item.php:1133 includes/B2S/Network/Item.php:1184
3891
- #: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1268
3892
- #: includes/B2S/Network/Item.php:1287 includes/B2S/Network/Item.php:1321
3893
- #: includes/B2S/Network/Item.php:1337 includes/B2S/Network/Item.php:1358
3894
- #: includes/B2S/Network/Item.php:1374 includes/B2S/Network/Item.php:1390
3895
- #: includes/B2S/Network/Item.php:1409 includes/B2S/Network/Item.php:1425
3896
  msgid "Preview"
3897
  msgstr "Vorschau"
3898
 
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2021-04-19 07:33+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
12
  "Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post &amp; "
13
  "Scheduler - Stable (latest release)\n"
14
  "Report-Msgid-Bugs-To: \n"
15
+ "POT-Creation-Date: 2021-04-19 07:32+0000\n"
16
  "Last-Translator: marius Lol <wolf.12345@gmx.de>\n"
17
  "Language-Team: German\n"
18
  "X-Loco-Version: 2.3.0; wp-5.7-RC3-50503"
157
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
158
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
159
  #: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
160
+ #: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:669
161
  #: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
162
  #: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
163
  msgid "Profile"
165
 
166
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
167
  #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
168
+ #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:325
169
+ #: includes/B2S/Network/Item.php:671 includes/B2S/Ship/Portale.php:39
170
  #: includes/B2S/Ship/Portale.php:39
171
  msgid "Page"
172
  msgstr "Seite"
173
 
174
  #: includes/Loader.php:874 includes/B2S/Network/Item.php:192
175
+ #: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:674
176
  #: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
177
  msgid "Group"
178
  msgstr "Gruppe"
182
  msgstr "Unternehmensseite (Arbeitgeberprofil)"
183
 
184
  #: includes/Loader.php:875 includes/B2S/Network/Item.php:186
185
+ #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:325
186
+ #: includes/B2S/Network/Item.php:671 includes/B2S/Ship/Item.php:331
187
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
188
  #: includes/B2S/Ship/Portale.php:37
189
  msgid "Business"
292
 
293
  #: includes/Loader.php:889
294
  msgid ""
295
+ "Your blog post was not available for the network at the time of publishing."
296
  msgstr ""
297
  "Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
298
  "nicht verfügbar."
359
  msgid "Create Social Media Posts"
360
  msgstr "Erstelle Social Media Posts"
361
 
362
+ #: includes/Loader.php:955 includes/Loader.php:1012 views/b2s/curation.php:257
363
+ #: views/b2s/curation.php:327
364
  msgid "Social Media Posts"
365
  msgstr "Social Media Posts"
366
 
464
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
465
  "zu tun."
466
 
467
+ #: includes/Tools.php:352 views/b2s/html/sidebar.php:30
468
  #: views/b2s/html/sidebar.ship.php:29
469
  msgid "License"
470
  msgstr "Lizenz"
471
 
472
+ #: includes/Tools.php:367
473
  msgid "Greece"
474
  msgstr "Griechenland"
475
 
476
+ #: includes/Tools.php:368
477
  msgid "India"
478
  msgstr "Indien"
479
 
480
+ #: includes/Tools.php:369
481
  msgid "United States of America"
482
  msgstr "Vereinigte Staaten von Amerika"
483
 
484
+ #: includes/Tools.php:370
485
  msgid "Ireland"
486
  msgstr "Irland"
487
 
488
+ #: includes/Tools.php:371
489
  msgid "Italy"
490
  msgstr "Italien"
491
 
492
+ #: includes/Tools.php:372
493
  msgid "Switzerland"
494
  msgstr "Schweiz"
495
 
496
+ #: includes/Tools.php:373
497
  msgid "Czechoslovakia"
498
  msgstr "Tschechoslowakei"
499
 
500
+ #: includes/Tools.php:374
501
  msgid "Indonesia"
502
  msgstr "Indonesien"
503
 
504
+ #: includes/Tools.php:375
505
  msgid "Spain"
506
  msgstr "Spanien"
507
 
508
+ #: includes/Tools.php:376
509
  msgid "Canada"
510
  msgstr "Kanada"
511
 
512
+ #: includes/Tools.php:377
513
  msgid "Great Britain"
514
  msgstr "Großbritannien"
515
 
516
+ #: includes/Tools.php:378
517
  msgid "Russia"
518
  msgstr "Russland"
519
 
520
+ #: includes/Tools.php:379
521
  msgid "Netherlands"
522
  msgstr "Niederlande"
523
 
524
+ #: includes/Tools.php:380 includes/Tools.php:394
525
  msgid "Portugal"
526
  msgstr "Portugal"
527
 
528
+ #: includes/Tools.php:381
529
  msgid "Norway"
530
  msgstr "Norwegen"
531
 
532
+ #: includes/Tools.php:382
533
  msgid "Turkey"
534
  msgstr "Türkei"
535
 
536
+ #: includes/Tools.php:383
537
  msgid "Australia"
538
  msgstr "Australien"
539
 
540
+ #: includes/Tools.php:384
541
  msgid "Austria"
542
  msgstr "Österreich"
543
 
544
+ #: includes/Tools.php:385
545
  msgid "Poland"
546
  msgstr "Polen"
547
 
548
+ #: includes/Tools.php:386
549
  msgid "France"
550
  msgstr "Frankreich"
551
 
552
+ #: includes/Tools.php:387
553
  msgid "Romania"
554
  msgstr "Rumänien"
555
 
556
+ #: includes/Tools.php:388
557
  msgid "Germany"
558
  msgstr "Deutschland"
559
 
560
+ #: includes/Tools.php:389
561
  msgid "Denmark"
562
  msgstr "Dänemark"
563
 
564
+ #: includes/Tools.php:390
565
  msgid "New Zealand"
566
  msgstr "Neuseeland"
567
 
568
+ #: includes/Tools.php:391
569
  msgid "Finland"
570
  msgstr "Finnland"
571
 
572
+ #: includes/Tools.php:392
573
  msgid "Hungary"
574
  msgstr "Ungarn"
575
 
576
+ #: includes/Tools.php:393
577
  msgid "Japan"
578
  msgstr "Japan"
579
 
580
+ #: includes/Tools.php:395
581
  msgid "Argentina"
582
  msgstr "Argentinien"
583
 
584
+ #: includes/Tools.php:396
585
  msgid "Korea"
586
  msgstr "Korea"
587
 
588
+ #: includes/Tools.php:397
589
  msgid "Sweden"
590
  msgstr "Schweden"
591
 
592
+ #: includes/Tools.php:398
593
  msgid "Mexico"
594
  msgstr "Mexiko"
595
 
596
+ #: includes/Tools.php:399
597
  msgid "Slovakia"
598
  msgstr "Slowakei"
599
 
600
+ #: includes/Tools.php:400
601
  msgid "Chile"
602
  msgstr "Chile"
603
 
604
+ #: includes/Tools.php:401
605
  msgid "Colombia"
606
  msgstr "Kolumbien"
607
 
608
+ #: includes/Tools.php:402
609
  msgid "South Africa"
610
  msgstr "Südafrika"
611
 
612
+ #: includes/Tools.php:403
613
  msgid "Philippines"
614
  msgstr "Philippinen"
615
 
616
+ #: includes/Tools.php:406
617
  msgid "is determined automatically"
618
  msgstr "wird automatisch ermittelt"
619
 
620
+ #: includes/Tools.php:413
621
  msgid "Search"
622
  msgstr "Suche"
623
 
624
+ #: includes/Tools.php:414
625
  msgid "Recently Used"
626
  msgstr "Zuletzt verwendet"
627
 
628
+ #: includes/Tools.php:415
629
  msgid "Smileys & People"
630
  msgstr "Smileys & Personen"
631
 
632
+ #: includes/Tools.php:416
633
  msgid "Animals & Nature"
634
  msgstr "Tiere & Natur"
635
 
636
+ #: includes/Tools.php:417
637
  msgid "Food & Drink"
638
  msgstr "Essen & Trinken"
639
 
640
+ #: includes/Tools.php:418
641
  msgid "Activities"
642
  msgstr "Aktivitäten"
643
 
644
+ #: includes/Tools.php:419
645
  msgid "Travel & Places"
646
  msgstr "Reisen & Orte"
647
 
648
+ #: includes/Tools.php:420
649
  msgid "Objects"
650
  msgstr "Objekte"
651
 
652
+ #: includes/Tools.php:421
653
  msgid "Symbols"
654
  msgstr "Symbole"
655
 
656
+ #: includes/Tools.php:422
657
  msgid "Flags"
658
  msgstr "Flaggen"
659
 
660
+ #: includes/Tools.php:423
661
  msgid "No emojis found"
662
  msgstr "Keine Ergebnisse"
663
 
711
 
712
  #: includes/Ajax/Post.php:1929 views/b2s/network.php:7
713
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
714
+ #: includes/B2S/Network/Item.php:394 includes/B2S/Network/Item.php:524
715
  msgid "Unknown username"
716
  msgstr "unbekannter Blog-Nutzer"
717
 
718
+ #: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:525
719
  #: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
720
  #: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
721
  #: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
727
  msgid "Please see FAQ"
728
  msgstr "Siehe FAQ"
729
 
730
+ #: includes/B2S/PostBox.php:143 views/b2s/ship.php:775
731
  #: views/b2s/html/header.php:60
732
  msgid "The connection to the server failed. Try again!"
733
  msgstr ""
869
  msgid "You want to auto-post your blog post?"
870
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
871
 
872
+ #: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
873
  #: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
874
+ #: views/b2s/ship.php:375 views/b2s/ship.php:421 views/b2s/html/footer.php:28
875
  #: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
876
  #: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
877
  #: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
879
  msgid "With Blog2Social Premium you can:"
880
  msgstr "Mit Blog2Social kannst Du:"
881
 
882
+ #: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
883
  #: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
884
+ #: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:31
885
  #: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
886
  #: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
887
  #: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
889
  msgid "Post on pages and groups"
890
  msgstr "Poste auf Seiten und in Gruppen"
891
 
892
+ #: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
893
  #: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
894
+ #: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:32
895
  #: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
896
  #: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
897
  #: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
899
  msgid "Share on multiple profiles, pages and groups"
900
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
901
 
902
+ #: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
903
  #: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
904
+ #: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:33
905
  #: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
906
  #: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
907
  #: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
911
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
912
  "Aktualisierung posten und zeitversetzt planen"
913
 
914
+ #: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
915
  #: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
916
+ #: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:34
917
  #: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
918
  #: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
919
  #: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
921
  msgid "Schedule your posts at the best times on each network"
922
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
923
 
924
+ #: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
925
  #: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
926
+ #: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:35
927
  #: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
928
  #: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
929
  #: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
933
  "social media posts"
934
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
935
 
936
+ #: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
937
  #: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
938
+ #: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:36
939
  #: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
940
  #: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
941
  #: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
945
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
946
  "oder nach einem regelmäßigen Muster"
947
 
948
+ #: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
949
  #: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
950
+ #: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:37
951
  #: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
952
  #: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
953
  #: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
955
  msgid "Schedule and re-share old posts"
956
  msgstr "Plane und teile alte Beiträge"
957
 
958
+ #: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
959
  #: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
960
+ #: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:38
961
  #: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
962
  #: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
963
  #: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
966
  msgstr ""
967
  "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
968
 
969
+ #: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
970
  #: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
971
+ #: views/b2s/ship.php:386 views/b2s/ship.php:432 views/b2s/html/footer.php:39
972
  #: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
973
  #: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
974
  #: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
977
  msgstr ""
978
  "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
979
 
980
+ #: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
981
  #: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
982
+ #: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:40
983
  #: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
984
  #: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
985
  #: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
991
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
992
  "Media Beiträge"
993
 
994
+ #: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
995
  #: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
996
+ #: views/b2s/ship.php:389 views/b2s/ship.php:435 views/b2s/html/footer.php:42
997
  #: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
998
  #: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
999
  #: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
1001
  msgid "Upgrade to SMART and above"
1002
  msgstr "Upgrade auf SMART und höher"
1003
 
1004
+ #: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
1005
+ #: views/b2s/curation.php:245 views/b2s/post.calendar.php:298
1006
+ #: views/b2s/ship.php:325 views/b2s/ship.php:391 views/b2s/ship.php:437
1007
  #: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
1008
  #: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
1009
  #: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
1049
  "Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
1050
  "Erstelle eine Netzwerkgruppierung</a>"
1051
 
1052
+ #: includes/B2S/PostBox.php:281 views/b2s/repost.php:204
 
1053
  msgid "Available networks"
1054
  msgstr "Verfügbare Netzwerke"
1055
 
1141
  " Get more information about the \"best times\" in the guide \"<a href=\"%s\" "
1142
  "target=\"_blank\">The Best Times to Post on Social Media</a>\"."
1143
  msgstr ""
1144
+ "Jedes Social-Media-Netzwerk hat seine \"Besten Zeiten\". Der "
1145
+ "Veröffentlichungszeitpunkt spielt eine entscheidende Rolle, wenn es darum "
1146
+ "geht, möglichst viele Likes, Shares und Kommentare sowie eine große "
1147
+ "Reichweite zu erzielen. Blog2Social stellt Dir vordefinierte “beste Zeiten”-"
1148
+ "Einstellungen zur Verfügung. Wenn Du die \"besten Zeiten\" für Deinen Auto-"
1149
+ "Poster aktivierst, werden Deine WordPress-Beiträge und -Seiten automatisch "
1150
+ "zu den \"besten Zeiten\" freigegeben. Erhalte mehr Informationen über die "
1151
+ "“besten Zeiten” in dem <a href=\"%s\" target=\"_blank\">\"Die besten Zeiten "
1152
+ "für Social-Media-Posts”-Guide</a>."
 
1153
 
1154
  #: views/b2s/autopost.php:93
1155
  #, php-format
1181
  #: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
1182
  #: views/b2s/post.php:41 views/b2s/post.publish.php:45
1183
  #: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
1184
+ #: views/b2s/ship.php:605 views/b2s/ship.php:773 views/b2s/support.php:144
1185
  #: views/b2s/support.php:182 views/prg/html/header.php:86
1186
  msgid "Loading..."
1187
  msgstr "Wird geladen..."
1194
  msgid "Are you sure you want to delete this draft?"
1195
  msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
1196
 
1197
+ #: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
1198
  #: views/b2s/network.php:109 views/b2s/post.approve.php:98
1199
  #: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
1200
  #: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
1201
+ #: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:480
1202
+ #: views/b2s/ship.php:559 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
1203
  msgid "NO"
1204
  msgstr "NEIN"
1205
 
1252
  msgstr "Bild-Beitrag"
1253
 
1254
  #: views/b2s/curation.php:49 views/b2s/curation.php:52
 
1255
  msgid "Text Post"
1256
  msgstr "Text-Beitrag"
1257
 
1265
  msgid "PRO"
1266
  msgstr "PRO"
1267
 
1268
+ #: views/b2s/curation.php:62
1269
  msgid "Load data..."
1270
  msgstr "Daten werden geladen..."
1271
 
1272
+ #: views/b2s/curation.php:68
1273
  msgid ""
1274
  "Enter a link you want to share on your social media networks. You can also "
1275
  "share a video link, for example from YouTube or from Vimeo (also see Video "
1279
  "möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
1280
  "oder Vimeo (siehe auch Video-Beitrag)."
1281
 
1282
+ #: views/b2s/curation.php:69
1283
  msgid ""
1284
  "Enter a video link you want to share on your social media networks, for "
1285
  "example from YouTube or from Vimeo."
1287
  "Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
1288
  "Deinen Social-Media-Netzwerken teilen möchtest."
1289
 
1290
+ #: views/b2s/curation.php:70
1291
  msgid "Please enter a valid link"
1292
  msgstr "Bitte gib einen gültigen Link ein"
1293
 
1294
+ #: views/b2s/curation.php:71
1295
  msgid "Enter link"
1296
  msgstr "Link eingeben"
1297
 
1298
+ #: views/b2s/curation.php:74 views/b2s/network.php:431
1299
  msgid "continue"
1300
  msgstr "weiter"
1301
 
1302
+ #: views/b2s/curation.php:97 includes/B2S/Ship/Item.php:461
1303
  #: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
1304
  #: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
1305
  #: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
1316
  msgid "Change image"
1317
  msgstr "Bild ändern"
1318
 
1319
+ #: views/b2s/curation.php:101 views/b2s/curation.php:115
1320
  #: includes/B2S/Curation/View.php:23
1321
  msgid "Write something..."
1322
  msgstr "Schreibe etwas..."
1323
 
1324
+ #: views/b2s/curation.php:131 views/b2s/ship.php:260 views/b2s/ship.php:262
1325
  #: includes/B2S/Post/Item.php:454
1326
  msgid "Re-share this post"
1327
  msgstr "Diesen Beitrag nochmal teilen"
1328
 
1329
+ #: views/b2s/curation.php:132
1330
  msgid "Create a new post"
1331
  msgstr "Neuen Social Media Post erstellen"
1332
 
1333
+ #: views/b2s/curation.php:138 views/b2s/post.calendar.php:38
1334
+ #: views/b2s/ship.php:18 views/b2s/ship.php:774 includes/B2S/Post/Filter.php:59
1335
  #: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
1336
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
1337
  msgid "published"
1338
  msgstr "veröffentlicht"
1339
 
1340
+ #: views/b2s/curation.php:154 views/b2s/post.approve.php:109
1341
+ #: views/b2s/ship.php:474
1342
  msgid "Do you want to mark this post as published ?"
1343
  msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
1344
 
1345
+ #: views/b2s/curation.php:159 views/b2s/post.approve.php:114
1346
+ #: views/b2s/ship.php:479 views/b2s/ship.php:560
1347
  msgid "YES"
1348
  msgstr "JA"
1349
 
1350
+ #: views/b2s/curation.php:173 views/b2s/post.calendar.php:265
1351
+ #: views/b2s/ship.php:404
1352
  msgid "Need to schedule your posts?"
1353
  msgstr "Du möchtest Deine Beiträge planen?"
1354
 
1355
+ #: views/b2s/curation.php:176 views/b2s/post.calendar.php:268
1356
+ #: views/b2s/ship.php:407
1357
  msgid "Blog2Social Premium covers everything you need."
1358
  msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
1359
 
1360
+ #: views/b2s/curation.php:179 views/b2s/post.calendar.php:271
1361
+ #: views/b2s/ship.php:410 includes/B2S/Ship/Item.php:1155
1362
  msgid "Schedule for specific dates"
1363
  msgstr "Für bestimmte Termine planen"
1364
 
1365
+ #: views/b2s/curation.php:180 views/b2s/post.calendar.php:272
1366
+ #: views/b2s/ship.php:411
1367
  msgid ""
1368
  "You want to publish a post on a specific date? No problem! Just enter your "
1369
  "desired date and you are ready to go!"
1371
  "Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
1372
  "Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
1373
 
1374
+ #: views/b2s/curation.php:182 views/b2s/post.calendar.php:274
1375
+ #: views/b2s/ship.php:413
1376
  msgid "Schedule post recurrently"
1377
  msgstr "Beitrag mehrfach planen"
1378
 
1379
+ #: views/b2s/curation.php:183 views/b2s/post.calendar.php:275
1380
+ #: views/b2s/ship.php:414
1381
  msgid ""
1382
  "You have evergreen content you want to re-share from time to time in your "
1383
  "timeline? Schedule your evergreen content to be shared once, multiple times "
1387
  "teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
1388
  "wiederkehrenden Rhythmus"
1389
 
1390
+ #: views/b2s/curation.php:185 views/b2s/post.calendar.php:277
1391
+ #: views/b2s/ship.php:416
1392
  msgid "Best Time Scheduler"
1393
  msgstr "Beste Zeiten Manager"
1394
 
1395
+ #: views/b2s/curation.php:186 views/b2s/post.calendar.php:278
1396
+ #: views/b2s/ship.php:417
1397
  msgid ""
1398
  "Whenever you publish a post, only a fraction of your followers will actually "
1399
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
1406
  "Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
1407
  "Deiner Posts."
1408
 
1409
+ #: views/b2s/curation.php:218
1410
  msgid "You want to create image posts with any image from your media library?"
1411
  msgstr ""
1412
  "Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
1413
  "erstellen?"
1414
 
1415
+ #: views/b2s/curation.php:219
1416
  msgid "You want to create text posts?"
1417
  msgstr "Möchtest Du Text-Posts erstellen?"
1418
 
1419
+ #: views/b2s/curation.php:226
1420
  msgid ""
1421
  "With Blog2Social you can share your WordPress posts and pages as well as "
1422
  "create your own social media posts to share any content based on text, links,"
1436
  "Video-Beiträge (Video-Links, z. B. von Youtube) und versorge Deine Follower "
1437
  "mit dem besten Content-Mix in Deinen Social-Media-Netzwerken."
1438
 
1439
+ #: views/b2s/curation.php:229
1440
  msgid ""
1441
  "Unlock Blog2Social Premium Pro to create and share image posts, video links, "
1442
  "and text posts from any source."
1444
  "Schalte Blog2Social Premium Pro frei, um Bild-Beiträge, Video-Links und Text-"
1445
  "Beiträge aus beliebigen Quellen zu erstellen und zu teilen."
1446
 
1447
+ #: views/b2s/curation.php:231
1448
  msgid "Share image posts:"
1449
  msgstr "Teile Bild-Beiträge:"
1450
 
1451
+ #: views/b2s/curation.php:233
1452
  msgid ""
1453
  "Grab more attention for your content with photos, videos, or infographics."
1454
  msgstr ""
1455
  "Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
1456
  "Infografiken."
1457
 
1458
+ #: views/b2s/curation.php:234
1459
  msgid ""
1460
  "Share images to get them into the Google image search to further increase "
1461
  "your outreach and traffic from search engines."
1464
  "so Deinen Traffic und Deine Reichweite auch über klassische Suchmaschinen "
1465
  "vergrößern kannst."
1466
 
1467
+ #: views/b2s/curation.php:236
1468
  msgid "Share text posts:"
1469
  msgstr "Teile Text-Beiträge:"
1470
 
1471
+ #: views/b2s/curation.php:238
1472
  msgid ""
1473
  "Share pure text messages and personal comments with your followers and "
1474
  "readers."
1476
  "Teile reine Textinformationen und persönliche Kommentare mit Deinen "
1477
  "Followern und Lesern."
1478
 
1479
+ #: views/b2s/curation.php:239
1480
  msgid "Use hashtags, @mentions, or emojis to share your feelings."
1481
  msgstr ""
1482
  "Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
1483
 
1484
+ #: views/b2s/curation.php:241
1485
  #, php-format
1486
  msgid ""
1487
  "Learn more about how to share social media posts in the <a href=\"%s\" "
1488
  "target=\"_blank\">social media posts guide</a>."
1489
  msgstr ""
1490
+ "Erhalte in dem \"<a href=\"%s\" target=\"_blank\">Social-Media-Posts "
1491
+ "Guide</a>\" mehr Informationen darüber, wie Du Social-Media-Beiträge teilen "
1492
+ "kannst."
1493
 
1494
+ #: views/b2s/curation.php:243 views/b2s/html/footer.php:73
1495
  #: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
1496
  msgid "Upgrade to PRO and above"
1497
  msgstr "Upgrade auf PRO und höher"
1498
 
1499
+ #: views/b2s/curation.php:280
1500
  msgid ""
1501
  "Text posts enable you to share pure text messages and personal comments with "
1502
+ "your followers and readers. You can also customize your posts with "
1503
+ "individual hashtags, @mentions, or emojis."
1504
  msgstr ""
1505
  "Das Teilen von Text-Beiträgen ermöglicht es Dir, reine Textinformationen und "
1506
  "persönliche Kommentare mit Deinen Followern und Lesern zu teilen. Du kannst "
1507
+ "Deine Beiträge auch mit individuellen Hashtags, @Mentions oder Emojis "
1508
+ "anpassen."
 
1509
 
1510
+ #: views/b2s/curation.php:281
1511
+ msgid "You can share a text post on the following networks:"
1512
+ msgstr "Du kannst einen Textbeitrag in den folgenden Netzwerken teilen:"
1513
+
1514
+ #: views/b2s/curation.php:290
1515
  #, php-format
1516
  msgid ""
1517
  "Get more information on how to share a text post with hashtags, @mentions "
1518
  "and emojis in the <a href=\"%s\" target=\"_blank\">social media posts "
1519
  "guide</a>."
1520
  msgstr ""
1521
+ "Erhalte in dem \"<a href=\"%s\" target=\"_blank\">Social-Media-Posts "
1522
+ "Guide</a>\" mehr Informationen darüber, wie Du Text-Beiträge mit Hashtags, "
1523
+ "@Handles und Emojis teilen kannst."
1524
+
1525
+ #: views/b2s/curation.php:292 views/b2s/curation.php:365
1526
+ #, php-format
1527
+ msgid ""
1528
+ "Under the <a href=\"%s\">Network Settings</a> you can define the network "
1529
+ "selection."
1530
+ msgstr ""
1531
+ "Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
1532
+ "Gruppierung festlegen."
1533
 
1534
+ #: views/b2s/curation.php:294 views/b2s/curation.php:367
1535
+ #, php-format
1536
+ msgid ""
1537
+ "More information on how to create a network selection in the guide <a "
1538
+ "href=\"%s\" target=\"_blank\">\"How can I save a specific selection of "
1539
+ "networks?\"</a>"
1540
+ msgstr ""
1541
+ "Weitere Informationen zur Erstellung einer Netzwerk-Gruppierung erhältst Du "
1542
+ "in dem Guide <a href=\"%s\" target=\"_blank\">\"Kann ich eine bestimmte "
1543
+ "Auswahl von Netzwerken speichern?\"</a>."
1544
+
1545
+ #: views/b2s/curation.php:305 views/b2s/repost.php:181
1546
  msgid "Select image"
1547
  msgstr "Bild auswählen"
1548
 
1549
+ #: views/b2s/curation.php:351
 
 
 
 
 
1550
  msgid ""
1551
+ "You can share a link post, a video post, or an image post on the following "
1552
+ "networks:"
1553
  msgstr ""
1554
+ "Du kannst einen Link-Beitrag, einen Video-Beitrag oder einen Bild-Beitrag in "
1555
+ "den folgenden Netzwerken teilen:"
 
1556
 
1557
  #: views/b2s/dashboard.php:26
1558
  msgid "Your Activity"
1593
  msgid "Delete"
1594
  msgstr "Löschen"
1595
 
1596
+ #: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:374
1597
  #: views/b2s/html/footer.php:256
1598
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1599
  msgstr ""
1645
  "Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
1646
  "Business Brancheneinträgen zu erweitern."
1647
 
1648
+ #: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:496
1649
  #: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:53
1650
  msgid "Learn more"
1651
  msgstr "Mehr erfahren"
1723
  #: views/b2s/network.php:230 views/b2s/ship.php:23
1724
  #: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
1725
  #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
1726
+ #: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
1727
+ #: includes/B2S/Network/Item.php:433 includes/B2S/RePost/Item.php:23
1728
  #: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
1729
  #: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
1730
  #: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
1734
  msgstr "SMART"
1735
 
1736
  #: views/b2s/network.php:242 views/b2s/settings.php:65
1737
+ #: includes/B2S/Network/Item.php:585 includes/B2S/Settings/Item.php:133
1738
  msgid "save"
1739
  msgstr "speichern"
1740
 
1813
  msgid "The name of the post author."
1814
  msgstr "Der Name des Autors Deines Beitrags."
1815
 
1816
+ #: views/b2s/network.php:318 includes/B2S/Network/Item.php:842
1817
  msgid "Character limit"
1818
  msgstr "Zeichenbegrenzung"
1819
 
1851
  "und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
1852
  "des jeweiligen Social Networks berücksichtigt."
1853
 
1854
+ #: views/b2s/network.php:334 views/b2s/ship.php:571
1855
  msgid "Connect with Pinterest"
1856
  msgstr "Mit Pinterest verbinden"
1857
 
1858
+ #: views/b2s/network.php:339 views/b2s/network.php:352 views/b2s/ship.php:576
1859
+ #: views/b2s/ship.php:584
1860
  msgid ""
1861
  "The login failed. To connect your Pinterest account to Blog2Social, please "
1862
  "sign in to Pinterest using the Blog2Social browser extension."
1873
  msgid "Click on \"continue\""
1874
  msgstr "Klicke auf “weiter”"
1875
 
1876
+ #: views/b2s/network.php:359 views/b2s/network.php:377 views/b2s/ship.php:591
1877
+ #: views/b2s/ship.php:609
1878
  msgid "An error occurred! Please try again."
1879
  msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
1880
 
1881
+ #: views/b2s/network.php:360 views/b2s/network.php:386 views/b2s/ship.php:592
1882
+ #: views/b2s/ship.php:618
1883
  msgid ""
1884
  "Login up successful. Please confirm that Blog2Social is allowed to publish "
1885
  "on your profile."
1887
  "Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil "
1888
  "veröffentlichen darf."
1889
 
1890
+ #: views/b2s/network.php:364 views/b2s/network.php:419 views/b2s/ship.php:596
1891
+ #: views/b2s/ship.php:651
1892
  msgid "Select Pinboard"
1893
  msgstr "Pinnwand auswählen"
1894
 
1895
+ #: views/b2s/network.php:376 views/b2s/ship.php:608
1896
  msgid ""
1897
  "Please make sure to use your original Pinterest login data (email and "
1898
  "password). Social Login via Facebook or Google login data will not work here."
1904
  "dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
1905
  "stabile Verbindung zu Blog2Social sicherzustellen."
1906
 
1907
+ #: views/b2s/network.php:378 views/b2s/network.php:379 views/b2s/ship.php:610
1908
+ #: views/b2s/ship.php:611
1909
  #, php-format
1910
  msgid ""
1911
  "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
1914
  "Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
1915
  "href=\"%s\">Upgrade auf Blog2Social Premium</a>"
1916
 
1917
+ #: views/b2s/network.php:380 views/b2s/ship.php:612
1918
  msgid "Invalid Data! Please try again."
1919
  msgstr "Ungültige Daten! Bitte versuche es erneut."
1920
 
1921
+ #: views/b2s/network.php:381 views/b2s/ship.php:613
1922
  msgid ""
1923
  "You have not yet created any pinboards in your Pinterest account. Please set "
1924
  "up at least one pinboard to pin on your Pinterest account!"
1926
  "Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
1927
  "richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
1928
 
1929
+ #: views/b2s/network.php:382 views/b2s/ship.php:614
1930
  #, php-format
1931
  msgid ""
1932
  "Login failed. Please check your login data for typos and please check your "
1938
  "Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" "
1939
  "href=\"%s\">%s</a>"
1940
 
1941
+ #: views/b2s/network.php:383 views/b2s/ship.php:615
1942
  msgid "Pinterest has rejected the connection to your blog"
1943
  msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
1944
 
1945
+ #: views/b2s/network.php:384 views/b2s/ship.php:616
1946
  msgid "Please select your correct server location and connect again."
1947
  msgstr ""
1948
  "Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
1949
 
1950
+ #: views/b2s/network.php:385 views/b2s/ship.php:617
1951
  msgid ""
1952
  "Access to this resource on your server is denied! Please check your "
1953
  "webserver configuration for caching."
1955
  "Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
1956
  "überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
1957
 
1958
+ #: views/b2s/network.php:388 views/b2s/ship.php:620
1959
  #: views/b2s/html/header.php:348 views/prg/html/form.php:141
1960
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1961
  #: views/prg/html/form.php:220
1962
  msgid "E-Mail"
1963
  msgstr "E-Mail"
1964
 
1965
+ #: views/b2s/network.php:394 views/b2s/ship.php:626 views/prg/login.php:25
1966
  msgid "Password"
1967
  msgstr "Passwort"
1968
 
1969
+ #: views/b2s/network.php:405 views/b2s/ship.php:637
1970
  msgid "Server-Location"
1971
  msgstr "Serverstandort"
1972
 
1973
+ #: views/b2s/network.php:427 views/b2s/ship.php:659 views/b2s/ship.php:663
1974
  #: includes/B2S/Settings/Item.php:89
1975
  msgid "authorize"
1976
  msgstr "autorisieren"
1977
 
1978
+ #: views/b2s/network.php:428 views/b2s/network.php:430 views/b2s/ship.php:660
1979
+ #: views/b2s/ship.php:662
1980
  msgid "confirm"
1981
  msgstr "bestätigen"
1982
 
1983
+ #: views/b2s/network.php:429 views/b2s/ship.php:661
1984
  msgid "Sign in to Pinterest"
1985
  msgstr "Melde Dich bei Pinterest an"
1986
 
2100
  msgid "Upgrade to Blog2Social Business"
2101
  msgstr "Upgrade auf Blog2Social Business"
2102
 
2103
+ #: views/b2s/network.php:556 includes/B2S/Network/Item.php:555
2104
  #, php-format
2105
  msgid ""
2106
  "Define parameters that will be added to link posts on this network e.g. to "
2115
  msgid "My Profile"
2116
  msgstr "Mein Profil"
2117
 
2118
+ #: views/b2s/network.php:603 views/b2s/ship.php:716
2119
  msgid "Add Page"
2120
  msgstr "Seite hinzufügen"
2121
 
2122
+ #: views/b2s/network.php:608 views/b2s/ship.php:721
2123
  #, php-format
2124
  msgid ""
2125
  "Please make sure to log in with your account which manages your pages and <a "
2130
  "Guide, um alle Deine Seiten auswählen zu können</a>."
2131
 
2132
  #: views/b2s/network.php:609 views/b2s/network.php:628
2133
+ #: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:684
2134
+ #: views/b2s/ship.php:703 views/b2s/ship.php:722 views/b2s/ship.php:741
2135
  msgid "Continue"
2136
  msgstr "Fortsetzen"
2137
 
2138
+ #: views/b2s/network.php:622 views/b2s/ship.php:735
2139
  msgid "Add Group"
2140
  msgstr "Gruppe hinzufügen"
2141
 
2142
+ #: views/b2s/network.php:627 views/b2s/ship.php:740
2143
  #, php-format
2144
  msgid ""
2145
  "Please make sure to log in with your account which manages your groups and "
2150
  "verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
2151
  "alle Deine Gruppen auszuwählen</a>."
2152
 
2153
+ #: views/b2s/network.php:641 views/b2s/ship.php:678
2154
  msgid "Add Profile"
2155
  msgstr "Profil hinzufügen"
2156
 
2157
+ #: views/b2s/network.php:646 views/b2s/ship.php:683
2158
  #, php-format
2159
  msgid ""
2160
  "When you connect Blog2Social with your Instagram account, you might get a "
2176
  "um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
2177
  "Informationen: So verbindest Du Deine Website mit Instagram.</a>"
2178
 
2179
+ #: views/b2s/network.php:660 views/b2s/ship.php:697
2180
  msgid "Connect Instagram Business Account"
2181
  msgstr "Instagram Business-Konto verbinden"
2182
 
2183
+ #: views/b2s/network.php:665 views/b2s/ship.php:702
2184
  #, php-format
2185
  msgid ""
2186
  "Please note: Your Instagram Business Account will be connected with "
2187
  "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
2188
+ "Business Account is linked to a Facebook page and enter the corresponding "
2189
+ "login data. You will find more information and detailed instructions in the "
2190
+ "<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
2191
  msgstr ""
2192
  "Hinweis: Dein Instagram Business-Konto wird über Facebook mit Blog2Social "
2193
  "verbunden. Stelle daher bitte sicher, das Dein Instagram Business-Konto mit "
2194
  "einer Facebook-Seite verknüpft ist und gib die dazugehörigen Login-Daten ein."
2195
  " Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
2196
+ "href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden.</a>"
2197
 
2198
  #: views/b2s/network.php:679
2199
  msgid "Network connections"
2306
  msgstr "geplant"
2307
 
2308
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2309
+ #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:748
2310
+ #: includes/B2S/Network/Item.php:751 includes/B2S/Settings/Item.php:239
2311
  #: views/b2s/html/footer.php:177
2312
  msgid "Image with frame"
2313
  msgstr "Bild mit Rahmen"
2314
 
2315
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2316
+ #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
2317
+ #: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:253
2318
  #: views/b2s/html/footer.php:182
2319
  msgid "Image cut out"
2320
  msgstr "Bild zuschneiden"
2325
  msgstr "Beitrag hinzufügen"
2326
 
2327
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2328
+ #: views/b2s/repost.php:104 views/b2s/ship.php:509
2329
  msgid "Choose your"
2330
  msgstr "Wähle Deinen"
2331
 
2332
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2333
+ #: views/b2s/repost.php:104 views/b2s/ship.php:509
2334
  msgid "Post Format"
2335
  msgstr "Postformat"
2336
 
2337
  #: views/b2s/post.calendar.php:113 views/b2s/post.sched.php:132
2338
+ #: views/b2s/repost.php:106 views/b2s/ship.php:511
2339
  msgid "for:"
2340
  msgstr "für:"
2341
 
2342
  #: views/b2s/post.calendar.php:132 views/b2s/post.sched.php:151
2343
+ #: views/b2s/repost.php:125 views/b2s/ship.php:529
2344
  msgid ""
2345
  "Define the default settings for the custom post format for all of your "
2346
  "Facebook accounts in the Blog2Social settings."
2349
  "den Blog2Social Einstellungen."
2350
 
2351
  #: views/b2s/post.calendar.php:135 views/b2s/post.sched.php:154
2352
+ #: views/b2s/repost.php:128 views/b2s/ship.php:532
2353
  msgid ""
2354
  "Define the default settings for the custom post format for all of your "
2355
  "Twitter accounts in the Blog2Social settings."
2358
  "unter den Blog2Social Einstellungen."
2359
 
2360
  #: views/b2s/post.calendar.php:138 views/b2s/post.sched.php:157
2361
+ #: views/b2s/repost.php:131 views/b2s/ship.php:535
2362
  msgid ""
2363
  "Define the default settings for the custom post format for all of your "
2364
  "LinkedIn accounts in the Blog2Social settings."
2367
  "unter den Blog2Social Einstellungen."
2368
 
2369
  #: views/b2s/post.calendar.php:141 views/b2s/post.sched.php:160
2370
+ #: views/b2s/repost.php:134 views/b2s/ship.php:538
2371
  msgid ""
2372
  "Define the default settings for the custom post format for all of your "
2373
  "Instagram accounts in the Blog2Social settings."
2376
  "für alle Instagram-Konten in den Blog2Social-Einstellungen."
2377
 
2378
  #: views/b2s/post.calendar.php:156 views/b2s/post.sched.php:111
2379
+ #: views/b2s/repost.php:149 views/b2s/ship.php:450
2380
  msgid "Select image for"
2381
  msgstr "Wähle Bild aus für"
2382
 
2631
  msgid "Show all premium features"
2632
  msgstr "Alle Premium-Features anzeigen"
2633
 
2634
+ #: views/b2s/repost.php:203
2635
+ #, php-format
2636
+ msgid ""
2637
+ "Under <a href=\"%s\">Network Settings</a> you define which network selection "
2638
+ "is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
2639
+ msgstr ""
2640
+ "Unter <a href=\"%s\">Netzwerkeinstellungen</a> definieren Sie, welche "
2641
+ "Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
2642
+ "Sie eine Netzwerk-Gruppierung</a>"
2643
+
2644
  #: views/b2s/settings.php:32
2645
  msgid "General"
2646
  msgstr "Allgemein"
2875
  msgid "Profiles | Pages | Groups"
2876
  msgstr "Profile | Seiten | Gruppen"
2877
 
2878
+ #: views/b2s/ship.php:164 views/b2s/ship.php:336
2879
+ msgid "Save network selection"
2880
+ msgstr "Netzwerkauswahl speichern"
2881
 
2882
  #: views/b2s/ship.php:173
2883
  msgid "network connected"
2965
  msgid "You want re-share your blog post?"
2966
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
2967
 
 
 
 
 
2968
  #: views/b2s/ship.php:339
2969
  msgid ""
2970
+ "You can save your current network selection. This network selection will be "
2971
+ "loaded automatically next time you open the social media post editor via "
2972
+ "\"Site & Blog Content\" ->\"Share on Social Media\" or \"Social Media "
2973
+ "Posts\" ->\"Customize & Schedule\"."
2974
  msgstr ""
2975
+ "Du kannst Deine aktuelle Netzwerkauswahl speichern. Diese Netzwerkauswahl "
2976
+ "wird dann auch beim nächsten Mal geladen, wenn Du den Social Media Post-"
2977
+ "Editor über “Seiten & Blog Content” ->”Auf Social Media teilen oder “Social "
2978
+ "Media Posts” ->”Anpassen & Planen” öffnest."
 
2979
 
2980
  #: views/b2s/ship.php:341
2981
  msgid ""
2982
+ "Your saved networks will be activated for your schedule (green checkmark) in "
2983
+ "the right side navigation. You can select or deselect social network "
2984
+ "accounts at any time by clicking on them or connect new social networks on "
2985
+ "the \"+ Add more\" icon on top of the navigation bar."
2986
  msgstr ""
2987
+ "Deine gespeicherten Netzwerke werden für Deine Planung aktiviert (grüner "
2988
+ "Haken) in der rechten Seitennavigation angezeigt. Du kannst jederzeit "
2989
+ "Netzwerke per Klick deaktivieren und andere aktivieren oder über die "
2990
+ "Schaltfläche \"+ Mehr hinzufügen\", im obersten Feld der Navigation, neue "
2991
+ "Netzwerke verbinden."
 
 
 
 
2992
 
2993
  #: views/b2s/ship.php:343
2994
  msgid ""
2995
+ "This allows you to adjust your network selection at any time and save it by "
2996
+ "clicking on \"Save network selection\"."
 
 
 
 
 
2997
  msgstr ""
2998
+ "Auf diese Weise kannst Du jederzeit Deine Netzwerkauswahl anpassen und diese "
2999
+ "speichern (\"Netzwerkauswahl speichern\")."
3000
+
3001
+ #: views/b2s/ship.php:345
3002
+ msgid "Note: "
3003
+ msgstr "Hinweis: "
3004
 
3005
+ #: views/b2s/ship.php:345
3006
+ #, php-format
3007
+ msgid ""
3008
+ "To define and save more network selections for your posting purposes, you "
3009
+ "can use the option \"Multiple Network collections\" (Premium feature) to "
3010
+ "define <a href=\"%s\" target=\"_blank\">multiple network collections in the "
3011
+ "social networks section</a>."
3012
+ msgstr ""
3013
+ "Um mehrere Netzwerkauswahlen anzulegen und zu speichern, kannst Du mit der "
3014
+ "Option \"Netzwerkgruppierungen definieren\" (Premiumfunktion) <a href=\"%s\" "
3015
+ "target=\"_blank\">mehrere Netzwerkgruppierungen im Bereich Soziale Netzwerke "
3016
+ "anlegen</a>."
3017
+
3018
+ #: views/b2s/ship.php:357
3019
  msgid "Your blog post is not yet published on your Wordpress!"
3020
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
3021
 
3022
+ #: views/b2s/ship.php:360
3023
  msgid "At least one of your selected networks is set to \"Share Now\""
3024
  msgstr ""
3025
  "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
3026
 
3027
+ #: views/b2s/ship.php:364
3028
  msgid "Schedule your post"
3029
  msgstr "Beitrag planen"
3030
 
3031
+ #: views/b2s/ship.php:367
3032
  msgid "Ignore & share"
3033
  msgstr "Ignorieren & teilen"
3034
 
3035
+ #: views/b2s/ship.php:492
3036
  msgid "Important infomations about XING groups"
3037
  msgstr "Wichtige Information zu XING-Gruppen"
3038
 
3039
+ #: views/b2s/ship.php:553
3040
  msgid "Overwrite Draft"
3041
  msgstr "Entwurf überschreiben"
3042
 
3043
+ #: views/b2s/ship.php:556
3044
  msgid ""
3045
  "There is already a saved draft for this WordPress post or page. If you save "
3046
  "a new draft it will overwrite the old draft. Are you sure you want to "
3051
  "damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
3052
  "möchtest?"
3053
 
3054
+ #: views/b2s/ship.php:761
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3055
  msgid "add Schedule"
3056
  msgstr "Zeitplan hinzufügen"
3057
 
3058
+ #: views/b2s/ship.php:777
3059
  msgid "Give me more information"
3060
  msgstr "Erhalte mehr Infomationen"
3061
 
3660
  msgstr "Blog"
3661
 
3662
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
3663
+ #: includes/B2S/Network/Item.php:669 includes/B2S/Ship/Item.php:331
3664
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
3665
  msgid "Personal"
3666
  msgstr "Privat"
3679
  msgid "You want to connect a network page?"
3680
  msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
3681
 
3682
+ #: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:396
3683
  #: includes/B2S/Ship/Portale.php:31
3684
  msgid "Publication"
3685
  msgstr "Publication"
3693
  msgstr "Best Time Manager"
3694
 
3695
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3696
+ #: includes/B2S/Network/Item.php:387
3697
  msgid "To reactivate this connection,"
3698
  msgstr "Um die Verbindung wieder zu aktivieren,"
3699
 
3700
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3701
+ #: includes/B2S/Network/Item.php:387 includes/B2S/Ship/Image.php:31
3702
  msgid "please upgrade"
3703
  msgstr "Bitte upgraden"
3704
 
3705
  #: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
3706
+ #: includes/B2S/Network/Item.php:390
3707
  msgid "Connection is interrupted since"
3708
  msgstr "Verbindung ist unterbrochen seit"
3709
 
3710
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
3711
+ #: includes/B2S/Network/Item.php:394
3712
  msgid "Assigned by"
3713
  msgstr "Zugewiesen von"
3714
 
3715
+ #: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:365
3716
+ #: includes/B2S/Network/Item.php:431 includes/B2S/Ship/Item.php:1211
3717
  msgid "Days"
3718
  msgstr "Tage"
3719
 
3720
+ #: includes/B2S/Network/Item.php:512
 
 
 
 
 
 
 
 
 
 
 
 
 
3721
  msgid "Connection currently assigned to"
3722
  msgstr "Diese Verbindung ist aktuell zugewiesen an"
3723
 
3724
+ #: includes/B2S/Network/Item.php:557 views/prg/html/form.php:84
3725
  #: views/prg/html/form.php:86 views/prg/html/form.php:161
3726
  #: views/prg/html/form.php:163
3727
  msgid "Name"
3728
  msgstr "Name"
3729
 
3730
+ #: includes/B2S/Network/Item.php:558
3731
  msgid "Value"
3732
  msgstr "Zugeordneter Wert"
3733
 
3734
+ #: includes/B2S/Network/Item.php:582
3735
  msgid "+ add Parameter"
3736
  msgstr "+ Parameter hinzufügen"
3737
 
3738
+ #: includes/B2S/Network/Item.php:583
3739
  #, php-format
3740
  msgid "Apply for all %s connections"
3741
  msgstr "Für alle %s Verbindungen übernehmen"
3742
 
3743
+ #: includes/B2S/Network/Item.php:584
3744
  msgid "Apply for all connections"
3745
  msgstr "Für alle Verbindungen übernehmen"
3746
 
3747
+ #: includes/B2S/Network/Item.php:613
3748
  msgid "Successfully saved"
3749
  msgstr "Erfolgreich gespeichert"
3750
 
3751
+ #: includes/B2S/Network/Item.php:614
3752
  msgid "Failed to save"
3753
  msgstr "Speichern fehlgeschlagen"
3754
 
3755
+ #: includes/B2S/Network/Item.php:615
3756
  msgid "Failed to load the default template"
3757
  msgstr "Fehler beim Laden der Standardeinstellungen"
3758
 
3759
+ #: includes/B2S/Network/Item.php:658
3760
  msgid ""
3761
  "Upgrade to Blog2Social Smart or higher to customize your individual post "
3762
  "templates that will automatically pre-format the structure of your social "
3776
  "auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
3777
  "Beitragsvorlagen hinzu."
3778
 
3779
+ #: includes/B2S/Network/Item.php:659
3780
  msgid "Upgrade to Blog2Social Smart"
3781
  msgstr "Upgrade auf Blog2Social Smart"
3782
 
3783
+ #: includes/B2S/Network/Item.php:680
3784
  msgid "Activate Instant Caching"
3785
  msgstr "Instant Caching aktivieren"
3786
 
3787
+ #: includes/B2S/Network/Item.php:741
3788
  msgid "Format"
3789
  msgstr "Format"
3790
 
3791
+ #: includes/B2S/Network/Item.php:742 includes/B2S/Network/Item.php:763
3792
  msgid "Load default settings"
3793
  msgstr "Lade Standardeinstellungen"
3794
 
3795
+ #: includes/B2S/Network/Item.php:748 includes/B2S/Network/Item.php:751
3796
  #: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
3797
  msgid "Link"
3798
  msgstr "Link"
3799
 
3800
+ #: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
3801
  msgid "Image"
3802
  msgstr "Bild"
3803
 
3804
+ #: includes/B2S/Network/Item.php:761 includes/B2S/Settings/Item.php:64
3805
  msgid "Content"
3806
  msgstr "Inhalt"
3807
 
3808
+ #: includes/B2S/Network/Item.php:770 includes/B2S/Ship/Item.php:372
3809
  msgid ""
3810
  "Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
3811
  "in your post."
3813
  "Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
3814
  "Hashtags in Deinem Beitrag."
3815
 
3816
+ #: includes/B2S/Network/Item.php:782
3817
  msgid "clear"
3818
  msgstr "löschen"
3819
 
3820
+ #: includes/B2S/Network/Item.php:793
3821
  msgid ""
3822
  "The link will be transmitted as a canonical link, i.e. in the source code of "
3823
  "your page, in order to refer to the original source of the content and to "
3827
  "um so auf die ursprüngliche Quelle des Inhalts zu verweisen und die "
3828
  "Reichweite über Suchmaschinen wie Google zu vergrößern."
3829
 
3830
+ #: includes/B2S/Network/Item.php:795
3831
  msgid "The link will be added automatically at the end of the post."
3832
  msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
3833
 
3834
+ #: includes/B2S/Network/Item.php:800
3835
  msgid "The network does not support hashtags."
3836
  msgstr "Das Netzwerk unterstützt keine Hashtags."
3837
 
3838
+ #: includes/B2S/Network/Item.php:804
3839
  msgid ""
3840
  "This social network displays the predefined hashtags as clickable tags at "
3841
  "the end of your post."
3843
  "Das Netzwerk veröffentlicht die vordefinierten Hashtags als anklickbare Tags "
3844
  "am Ende Deines Beitrags."
3845
 
3846
+ #: includes/B2S/Network/Item.php:809 includes/B2S/Network/Item.php:866
3847
+ #: includes/B2S/Network/Item.php:902
3848
  msgid "Network limit"
3849
  msgstr "Netzwerkbegrenzung"
3850
 
3851
+ #: includes/B2S/Network/Item.php:809 includes/B2S/Network/Item.php:866
3852
+ #: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:902
3853
+ #: includes/B2S/Network/Item.php:902 includes/B2S/Ship/Item.php:215
3854
  #: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
3855
  #: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
3856
  #: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
3858
  msgid "characters"
3859
  msgstr "Zeichen"
3860
 
3861
+ #: includes/B2S/Network/Item.php:816
3862
  msgid "Add a link-URL to the end of my image post."
3863
  msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
3864
 
3865
+ #: includes/B2S/Network/Item.php:823
3866
  msgid ""
3867
  "Add a link-URL to the end of my Instagram posts. (Please note, that "
3868
  "Instagram does not turn link-URLs into clickable links)"
3870
  "Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
3871
  "Instagram Links nicht als klickbare Links darstellt)"
3872
 
3873
+ #: includes/B2S/Network/Item.php:828
3874
  msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
3875
  msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
3876
 
3877
+ #: includes/B2S/Network/Item.php:835
3878
+ msgid "Add a link-URL to the end of my post."
3879
+ msgstr "Link automatisch am Ende meines Beitrags einfügen."
3880
+
3881
+ #: includes/B2S/Network/Item.php:846
3882
  msgid ""
3883
  "Missing PHP \"mbstring\" extension to use the character limit function. "
3884
  "Please activate server-side the PHP \"mbstring\" extension in your \"php."
3887
  "Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
3888
  "Zeichenbegrenzungsfunktion zu nutzen."
3889
 
3890
+ #: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:902
3891
  msgid "recommended length"
3892
  msgstr "Empfohlene Länge"
3893
 
3894
+ #: includes/B2S/Network/Item.php:928 includes/B2S/Network/Item.php:980
3895
+ #: includes/B2S/Network/Item.php:1049 includes/B2S/Network/Item.php:1101
3896
+ #: includes/B2S/Network/Item.php:1135 includes/B2S/Network/Item.php:1186
3897
+ #: includes/B2S/Network/Item.php:1216 includes/B2S/Network/Item.php:1270
3898
+ #: includes/B2S/Network/Item.php:1289 includes/B2S/Network/Item.php:1323
3899
+ #: includes/B2S/Network/Item.php:1339 includes/B2S/Network/Item.php:1360
3900
+ #: includes/B2S/Network/Item.php:1376 includes/B2S/Network/Item.php:1392
3901
+ #: includes/B2S/Network/Item.php:1411 includes/B2S/Network/Item.php:1427
3902
  msgid "Preview"
3903
  msgstr "Vorschau"
3904
 
languages/blog2social.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2021-03-19 14:28+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -146,7 +146,7 @@ msgstr ""
146
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
147
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
148
  #: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
149
- #: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:670
150
  #: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
151
  #: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
152
  msgid "Profile"
@@ -154,14 +154,14 @@ msgstr ""
154
 
155
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
156
  #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
157
- #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:329
158
- #: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Portale.php:39
159
  #: includes/B2S/Ship/Portale.php:39
160
  msgid "Page"
161
  msgstr ""
162
 
163
  #: includes/Loader.php:874 includes/B2S/Network/Item.php:192
164
- #: includes/B2S/Network/Item.php:400 includes/B2S/Network/Item.php:675
165
  #: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
166
  msgid "Group"
167
  msgstr ""
@@ -171,8 +171,8 @@ msgid "Company-Page (Employer Branding Profile)"
171
  msgstr ""
172
 
173
  #: includes/Loader.php:875 includes/B2S/Network/Item.php:186
174
- #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:329
175
- #: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Item.php:331
176
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
177
  #: includes/B2S/Ship/Portale.php:37
178
  msgid "Business"
@@ -259,7 +259,7 @@ msgstr ""
259
 
260
  #: includes/Loader.php:889
261
  msgid ""
262
- "Your blog post was not available for the network at the time of publication."
263
  msgstr ""
264
 
265
  #: includes/Loader.php:890
@@ -313,7 +313,8 @@ msgstr ""
313
  msgid "Create Social Media Posts"
314
  msgstr ""
315
 
316
- #: includes/Loader.php:955 includes/Loader.php:1012
 
317
  msgid "Social Media Posts"
318
  msgstr ""
319
 
@@ -404,200 +405,200 @@ msgid ""
404
  "higher, or ask your server administrator to do it for you."
405
  msgstr ""
406
 
407
- #: includes/Tools.php:349 views/b2s/html/sidebar.php:30
408
  #: views/b2s/html/sidebar.ship.php:29
409
  msgid "License"
410
  msgstr ""
411
 
412
- #: includes/Tools.php:364
413
  msgid "Greece"
414
  msgstr ""
415
 
416
- #: includes/Tools.php:365
417
  msgid "India"
418
  msgstr ""
419
 
420
- #: includes/Tools.php:366
421
  msgid "United States of America"
422
  msgstr ""
423
 
424
- #: includes/Tools.php:367
425
  msgid "Ireland"
426
  msgstr ""
427
 
428
- #: includes/Tools.php:368
429
  msgid "Italy"
430
  msgstr ""
431
 
432
- #: includes/Tools.php:369
433
  msgid "Switzerland"
434
  msgstr ""
435
 
436
- #: includes/Tools.php:370
437
  msgid "Czechoslovakia"
438
  msgstr ""
439
 
440
- #: includes/Tools.php:371
441
  msgid "Indonesia"
442
  msgstr ""
443
 
444
- #: includes/Tools.php:372
445
  msgid "Spain"
446
  msgstr ""
447
 
448
- #: includes/Tools.php:373
449
  msgid "Canada"
450
  msgstr ""
451
 
452
- #: includes/Tools.php:374
453
  msgid "Great Britain"
454
  msgstr ""
455
 
456
- #: includes/Tools.php:375
457
  msgid "Russia"
458
  msgstr ""
459
 
460
- #: includes/Tools.php:376
461
  msgid "Netherlands"
462
  msgstr ""
463
 
464
- #: includes/Tools.php:377 includes/Tools.php:391
465
  msgid "Portugal"
466
  msgstr ""
467
 
468
- #: includes/Tools.php:378
469
  msgid "Norway"
470
  msgstr ""
471
 
472
- #: includes/Tools.php:379
473
  msgid "Turkey"
474
  msgstr ""
475
 
476
- #: includes/Tools.php:380
477
  msgid "Australia"
478
  msgstr ""
479
 
480
- #: includes/Tools.php:381
481
  msgid "Austria"
482
  msgstr ""
483
 
484
- #: includes/Tools.php:382
485
  msgid "Poland"
486
  msgstr ""
487
 
488
- #: includes/Tools.php:383
489
  msgid "France"
490
  msgstr ""
491
 
492
- #: includes/Tools.php:384
493
  msgid "Romania"
494
  msgstr ""
495
 
496
- #: includes/Tools.php:385
497
  msgid "Germany"
498
  msgstr ""
499
 
500
- #: includes/Tools.php:386
501
  msgid "Denmark"
502
  msgstr ""
503
 
504
- #: includes/Tools.php:387
505
  msgid "New Zealand"
506
  msgstr ""
507
 
508
- #: includes/Tools.php:388
509
  msgid "Finland"
510
  msgstr ""
511
 
512
- #: includes/Tools.php:389
513
  msgid "Hungary"
514
  msgstr ""
515
 
516
- #: includes/Tools.php:390
517
  msgid "Japan"
518
  msgstr ""
519
 
520
- #: includes/Tools.php:392
521
  msgid "Argentina"
522
  msgstr ""
523
 
524
- #: includes/Tools.php:393
525
  msgid "Korea"
526
  msgstr ""
527
 
528
- #: includes/Tools.php:394
529
  msgid "Sweden"
530
  msgstr ""
531
 
532
- #: includes/Tools.php:395
533
  msgid "Mexico"
534
  msgstr ""
535
 
536
- #: includes/Tools.php:396
537
  msgid "Slovakia"
538
  msgstr ""
539
 
540
- #: includes/Tools.php:397
541
  msgid "Chile"
542
  msgstr ""
543
 
544
- #: includes/Tools.php:398
545
  msgid "Colombia"
546
  msgstr ""
547
 
548
- #: includes/Tools.php:399
549
  msgid "South Africa"
550
  msgstr ""
551
 
552
- #: includes/Tools.php:400
553
  msgid "Philippines"
554
  msgstr ""
555
 
556
- #: includes/Tools.php:403
557
  msgid "is determined automatically"
558
  msgstr ""
559
 
560
- #: includes/Tools.php:410
561
  msgid "Search"
562
  msgstr ""
563
 
564
- #: includes/Tools.php:411
565
  msgid "Recently Used"
566
  msgstr ""
567
 
568
- #: includes/Tools.php:412
569
  msgid "Smileys & People"
570
  msgstr ""
571
 
572
- #: includes/Tools.php:413
573
  msgid "Animals & Nature"
574
  msgstr ""
575
 
576
- #: includes/Tools.php:414
577
  msgid "Food & Drink"
578
  msgstr ""
579
 
580
- #: includes/Tools.php:415
581
  msgid "Activities"
582
  msgstr ""
583
 
584
- #: includes/Tools.php:416
585
  msgid "Travel & Places"
586
  msgstr ""
587
 
588
- #: includes/Tools.php:417
589
  msgid "Objects"
590
  msgstr ""
591
 
592
- #: includes/Tools.php:418
593
  msgid "Symbols"
594
  msgstr ""
595
 
596
- #: includes/Tools.php:419
597
  msgid "Flags"
598
  msgstr ""
599
 
600
- #: includes/Tools.php:420
601
  msgid "No emojis found"
602
  msgstr ""
603
 
@@ -646,11 +647,11 @@ msgstr ""
646
 
647
  #: includes/Ajax/Post.php:1929 views/b2s/network.php:7
648
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
649
- #: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:528
650
  msgid "Unknown username"
651
  msgstr ""
652
 
653
- #: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:529
654
  #: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
655
  #: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
656
  #: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
@@ -662,7 +663,7 @@ msgstr ""
662
  msgid "Please see FAQ"
663
  msgstr ""
664
 
665
- #: includes/B2S/PostBox.php:143 views/b2s/ship.php:773
666
  #: views/b2s/html/header.php:60
667
  msgid "The connection to the server failed. Try again!"
668
  msgstr ""
@@ -783,9 +784,9 @@ msgstr ""
783
  msgid "You want to auto-post your blog post?"
784
  msgstr ""
785
 
786
- #: includes/B2S/PostBox.php:217 views/b2s/curation.php:191
787
  #: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
788
- #: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
789
  #: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
790
  #: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
791
  #: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
@@ -793,9 +794,9 @@ msgstr ""
793
  msgid "With Blog2Social Premium you can:"
794
  msgstr ""
795
 
796
- #: includes/B2S/PostBox.php:220 views/b2s/curation.php:194
797
  #: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
798
- #: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
799
  #: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
800
  #: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
801
  #: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
@@ -803,9 +804,9 @@ msgstr ""
803
  msgid "Post on pages and groups"
804
  msgstr ""
805
 
806
- #: includes/B2S/PostBox.php:221 views/b2s/curation.php:195
807
  #: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
808
- #: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
809
  #: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
810
  #: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
811
  #: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
@@ -813,9 +814,9 @@ msgstr ""
813
  msgid "Share on multiple profiles, pages and groups"
814
  msgstr ""
815
 
816
- #: includes/B2S/PostBox.php:222 views/b2s/curation.php:196
817
  #: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
818
- #: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
819
  #: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
820
  #: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
821
  #: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
@@ -823,9 +824,9 @@ msgstr ""
823
  msgid "Auto-post and auto-schedule new and updated blog posts"
824
  msgstr ""
825
 
826
- #: includes/B2S/PostBox.php:223 views/b2s/curation.php:197
827
  #: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
828
- #: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
829
  #: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
830
  #: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
831
  #: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
@@ -833,9 +834,9 @@ msgstr ""
833
  msgid "Schedule your posts at the best times on each network"
834
  msgstr ""
835
 
836
- #: includes/B2S/PostBox.php:224 views/b2s/curation.php:198
837
  #: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
838
- #: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
839
  #: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
840
  #: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
841
  #: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
@@ -845,9 +846,9 @@ msgid ""
845
  "social media posts"
846
  msgstr ""
847
 
848
- #: includes/B2S/PostBox.php:225 views/b2s/curation.php:199
849
  #: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
850
- #: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
851
  #: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
852
  #: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
853
  #: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
@@ -855,9 +856,9 @@ msgstr ""
855
  msgid "Schedule your post for one time, multiple times or recurrently"
856
  msgstr ""
857
 
858
- #: includes/B2S/PostBox.php:226 views/b2s/curation.php:200
859
  #: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
860
- #: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
861
  #: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
862
  #: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
863
  #: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
@@ -865,9 +866,9 @@ msgstr ""
865
  msgid "Schedule and re-share old posts"
866
  msgstr ""
867
 
868
- #: includes/B2S/PostBox.php:227 views/b2s/curation.php:201
869
  #: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
870
- #: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
871
  #: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
872
  #: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
873
  #: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
@@ -875,9 +876,9 @@ msgstr ""
875
  msgid "Select link format or image format for your posts"
876
  msgstr ""
877
 
878
- #: includes/B2S/PostBox.php:228 views/b2s/curation.php:202
879
  #: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
880
- #: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
881
  #: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
882
  #: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
883
  #: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
@@ -885,9 +886,9 @@ msgstr ""
885
  msgid "Select individual images per post"
886
  msgstr ""
887
 
888
- #: includes/B2S/PostBox.php:229 views/b2s/curation.php:203
889
  #: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
890
- #: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
891
  #: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
892
  #: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
893
  #: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
@@ -897,9 +898,9 @@ msgid ""
897
  "media posts"
898
  msgstr ""
899
 
900
- #: includes/B2S/PostBox.php:231 views/b2s/curation.php:205
901
  #: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
902
- #: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
903
  #: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
904
  #: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
905
  #: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
@@ -907,9 +908,9 @@ msgstr ""
907
  msgid "Upgrade to SMART and above"
908
  msgstr ""
909
 
910
- #: includes/B2S/PostBox.php:233 views/b2s/curation.php:207
911
- #: views/b2s/curation.php:246 views/b2s/post.calendar.php:298
912
- #: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
913
  #: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
914
  #: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
915
  #: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
@@ -946,8 +947,7 @@ msgid ""
946
  "selection.</a>"
947
  msgstr ""
948
 
949
- #: includes/B2S/PostBox.php:281 views/b2s/curation.php:336
950
- #: views/b2s/repost.php:204
951
  msgid "Available networks"
952
  msgstr ""
953
 
@@ -1057,7 +1057,7 @@ msgstr ""
1057
  #: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
1058
  #: views/b2s/post.php:41 views/b2s/post.publish.php:45
1059
  #: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
1060
- #: views/b2s/ship.php:603 views/b2s/ship.php:771 views/b2s/support.php:144
1061
  #: views/b2s/support.php:182 views/prg/html/header.php:86
1062
  msgid "Loading..."
1063
  msgstr ""
@@ -1070,12 +1070,12 @@ msgstr ""
1070
  msgid "Are you sure you want to delete this draft?"
1071
  msgstr ""
1072
 
1073
- #: views/b2s/curation.draft.php:90 views/b2s/curation.php:161
1074
  #: views/b2s/network.php:109 views/b2s/post.approve.php:98
1075
  #: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
1076
  #: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
1077
- #: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
1078
- #: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
1079
  msgid "NO"
1080
  msgstr ""
1081
 
@@ -1125,7 +1125,6 @@ msgid "Image Post"
1125
  msgstr ""
1126
 
1127
  #: views/b2s/curation.php:49 views/b2s/curation.php:52
1128
- #: views/b2s/curation.php:258
1129
  msgid "Text Post"
1130
  msgstr ""
1131
 
@@ -1139,36 +1138,36 @@ msgstr ""
1139
  msgid "PRO"
1140
  msgstr ""
1141
 
1142
- #: views/b2s/curation.php:63
1143
  msgid "Load data..."
1144
  msgstr ""
1145
 
1146
- #: views/b2s/curation.php:69
1147
  msgid ""
1148
  "Enter a link you want to share on your social media networks. You can also "
1149
  "share a video link, for example from YouTube or from Vimeo (also see Video "
1150
  "Post)."
1151
  msgstr ""
1152
 
1153
- #: views/b2s/curation.php:70
1154
  msgid ""
1155
  "Enter a video link you want to share on your social media networks, for "
1156
  "example from YouTube or from Vimeo."
1157
  msgstr ""
1158
 
1159
- #: views/b2s/curation.php:71
1160
  msgid "Please enter a valid link"
1161
  msgstr ""
1162
 
1163
- #: views/b2s/curation.php:72
1164
  msgid "Enter link"
1165
  msgstr ""
1166
 
1167
- #: views/b2s/curation.php:75 views/b2s/network.php:431
1168
  msgid "continue"
1169
  msgstr ""
1170
 
1171
- #: views/b2s/curation.php:98 includes/B2S/Ship/Item.php:461
1172
  #: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
1173
  #: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
1174
  #: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
@@ -1185,79 +1184,79 @@ msgstr ""
1185
  msgid "Change image"
1186
  msgstr ""
1187
 
1188
- #: views/b2s/curation.php:102 views/b2s/curation.php:116
1189
  #: includes/B2S/Curation/View.php:23
1190
  msgid "Write something..."
1191
  msgstr ""
1192
 
1193
- #: views/b2s/curation.php:132 views/b2s/ship.php:260 views/b2s/ship.php:262
1194
  #: includes/B2S/Post/Item.php:454
1195
  msgid "Re-share this post"
1196
  msgstr ""
1197
 
1198
- #: views/b2s/curation.php:133
1199
  msgid "Create a new post"
1200
  msgstr ""
1201
 
1202
- #: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
1203
- #: views/b2s/ship.php:18 views/b2s/ship.php:772 includes/B2S/Post/Filter.php:59
1204
  #: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
1205
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
1206
  msgid "published"
1207
  msgstr ""
1208
 
1209
- #: views/b2s/curation.php:155 views/b2s/post.approve.php:109
1210
- #: views/b2s/ship.php:472
1211
  msgid "Do you want to mark this post as published ?"
1212
  msgstr ""
1213
 
1214
- #: views/b2s/curation.php:160 views/b2s/post.approve.php:114
1215
- #: views/b2s/ship.php:477 views/b2s/ship.php:558
1216
  msgid "YES"
1217
  msgstr ""
1218
 
1219
- #: views/b2s/curation.php:174 views/b2s/post.calendar.php:265
1220
- #: views/b2s/ship.php:402
1221
  msgid "Need to schedule your posts?"
1222
  msgstr ""
1223
 
1224
- #: views/b2s/curation.php:177 views/b2s/post.calendar.php:268
1225
- #: views/b2s/ship.php:405
1226
  msgid "Blog2Social Premium covers everything you need."
1227
  msgstr ""
1228
 
1229
- #: views/b2s/curation.php:180 views/b2s/post.calendar.php:271
1230
- #: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1155
1231
  msgid "Schedule for specific dates"
1232
  msgstr ""
1233
 
1234
- #: views/b2s/curation.php:181 views/b2s/post.calendar.php:272
1235
- #: views/b2s/ship.php:409
1236
  msgid ""
1237
  "You want to publish a post on a specific date? No problem! Just enter your "
1238
  "desired date and you are ready to go!"
1239
  msgstr ""
1240
 
1241
- #: views/b2s/curation.php:183 views/b2s/post.calendar.php:274
1242
- #: views/b2s/ship.php:411
1243
  msgid "Schedule post recurrently"
1244
  msgstr ""
1245
 
1246
- #: views/b2s/curation.php:184 views/b2s/post.calendar.php:275
1247
- #: views/b2s/ship.php:412
1248
  msgid ""
1249
  "You have evergreen content you want to re-share from time to time in your "
1250
  "timeline? Schedule your evergreen content to be shared once, multiple times "
1251
  "or recurringly at specific times."
1252
  msgstr ""
1253
 
1254
- #: views/b2s/curation.php:186 views/b2s/post.calendar.php:277
1255
- #: views/b2s/ship.php:414
1256
  msgid "Best Time Scheduler"
1257
  msgstr ""
1258
 
1259
- #: views/b2s/curation.php:187 views/b2s/post.calendar.php:278
1260
- #: views/b2s/ship.php:415
1261
  msgid ""
1262
  "Whenever you publish a post, only a fraction of your followers will actually "
1263
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
@@ -1265,15 +1264,15 @@ msgid ""
1265
  "lifespan of your posts."
1266
  msgstr ""
1267
 
1268
- #: views/b2s/curation.php:219
1269
  msgid "You want to create image posts with any image from your media library?"
1270
  msgstr ""
1271
 
1272
- #: views/b2s/curation.php:220
1273
  msgid "You want to create text posts?"
1274
  msgstr ""
1275
 
1276
- #: views/b2s/curation.php:227
1277
  msgid ""
1278
  "With Blog2Social you can share your WordPress posts and pages as well as "
1279
  "create your own social media posts to share any content based on text, links,"
@@ -1285,61 +1284,65 @@ msgid ""
1285
  "networks."
1286
  msgstr ""
1287
 
1288
- #: views/b2s/curation.php:230
1289
  msgid ""
1290
  "Unlock Blog2Social Premium Pro to create and share image posts, video links, "
1291
  "and text posts from any source."
1292
  msgstr ""
1293
 
1294
- #: views/b2s/curation.php:232
1295
  msgid "Share image posts:"
1296
  msgstr ""
1297
 
1298
- #: views/b2s/curation.php:234
1299
  msgid ""
1300
  "Grab more attention for your content with photos, videos, or infographics."
1301
  msgstr ""
1302
 
1303
- #: views/b2s/curation.php:235
1304
  msgid ""
1305
  "Share images to get them into the Google image search to further increase "
1306
  "your outreach and traffic from search engines."
1307
  msgstr ""
1308
 
1309
- #: views/b2s/curation.php:237
1310
  msgid "Share text posts:"
1311
  msgstr ""
1312
 
1313
- #: views/b2s/curation.php:239
1314
  msgid ""
1315
  "Share pure text messages and personal comments with your followers and "
1316
  "readers."
1317
  msgstr ""
1318
 
1319
- #: views/b2s/curation.php:240
1320
  msgid "Use hashtags, @mentions, or emojis to share your feelings."
1321
  msgstr ""
1322
 
1323
- #: views/b2s/curation.php:242
1324
  #, php-format
1325
  msgid ""
1326
  "Learn more about how to share social media posts in the <a href=\"%s\" "
1327
  "target=\"_blank\">social media posts guide</a>."
1328
  msgstr ""
1329
 
1330
- #: views/b2s/curation.php:244 views/b2s/html/footer.php:73
1331
  #: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
1332
  msgid "Upgrade to PRO and above"
1333
  msgstr ""
1334
 
1335
- #: views/b2s/curation.php:261
1336
  msgid ""
1337
  "Text posts enable you to share pure text messages and personal comments with "
1338
- "your followers and readers. You can also use hashtags, @mentions, or emojis "
1339
- "to share your feelings. You can share a text post on the following networks:"
 
 
 
 
1340
  msgstr ""
1341
 
1342
- #: views/b2s/curation.php:279
1343
  #, php-format
1344
  msgid ""
1345
  "Get more information on how to share a text post with hashtags, @mentions "
@@ -1347,19 +1350,29 @@ msgid ""
1347
  "guide</a>."
1348
  msgstr ""
1349
 
1350
- #: views/b2s/curation.php:290 views/b2s/repost.php:181
1351
- msgid "Select image"
 
 
 
1352
  msgstr ""
1353
 
1354
- #: views/b2s/curation.php:312
1355
- msgid "Available networks for Social Media Posts"
 
 
 
 
1356
  msgstr ""
1357
 
1358
- #: views/b2s/curation.php:335 views/b2s/repost.php:203
1359
- #, php-format
 
 
 
1360
  msgid ""
1361
- "Under <a href=\"%s\">Network Settings</a> you define which network selection "
1362
- "is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
1363
  msgstr ""
1364
 
1365
  #: views/b2s/dashboard.php:26
@@ -1401,7 +1414,7 @@ msgstr ""
1401
  msgid "Delete"
1402
  msgstr ""
1403
 
1404
- #: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:372
1405
  #: views/b2s/html/footer.php:256
1406
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1407
  msgstr ""
@@ -1443,7 +1456,7 @@ msgid ""
1443
  "Business listings."
1444
  msgstr ""
1445
 
1446
- #: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
1447
  #: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:53
1448
  msgid "Learn more"
1449
  msgstr ""
@@ -1514,8 +1527,8 @@ msgstr ""
1514
  #: views/b2s/network.php:230 views/b2s/ship.php:23
1515
  #: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
1516
  #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
1517
- #: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:371
1518
- #: includes/B2S/Network/Item.php:437 includes/B2S/RePost/Item.php:23
1519
  #: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
1520
  #: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
1521
  #: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
@@ -1525,7 +1538,7 @@ msgid "SMART"
1525
  msgstr ""
1526
 
1527
  #: views/b2s/network.php:242 views/b2s/settings.php:65
1528
- #: includes/B2S/Network/Item.php:589 includes/B2S/Settings/Item.php:133
1529
  msgid "save"
1530
  msgstr ""
1531
 
@@ -1592,7 +1605,7 @@ msgstr ""
1592
  msgid "The name of the post author."
1593
  msgstr ""
1594
 
1595
- #: views/b2s/network.php:318 includes/B2S/Network/Item.php:836
1596
  msgid "Character limit"
1597
  msgstr ""
1598
 
@@ -1619,12 +1632,12 @@ msgid ""
1619
  "network."
1620
  msgstr ""
1621
 
1622
- #: views/b2s/network.php:334 views/b2s/ship.php:569
1623
  msgid "Connect with Pinterest"
1624
  msgstr ""
1625
 
1626
- #: views/b2s/network.php:339 views/b2s/network.php:352 views/b2s/ship.php:574
1627
- #: views/b2s/ship.php:582
1628
  msgid ""
1629
  "The login failed. To connect your Pinterest account to Blog2Social, please "
1630
  "sign in to Pinterest using the Blog2Social browser extension."
@@ -1638,24 +1651,24 @@ msgstr ""
1638
  msgid "Click on \"continue\""
1639
  msgstr ""
1640
 
1641
- #: views/b2s/network.php:359 views/b2s/network.php:377 views/b2s/ship.php:589
1642
- #: views/b2s/ship.php:607
1643
  msgid "An error occurred! Please try again."
1644
  msgstr ""
1645
 
1646
- #: views/b2s/network.php:360 views/b2s/network.php:386 views/b2s/ship.php:590
1647
- #: views/b2s/ship.php:616
1648
  msgid ""
1649
  "Login up successful. Please confirm that Blog2Social is allowed to publish "
1650
  "on your profile."
1651
  msgstr ""
1652
 
1653
- #: views/b2s/network.php:364 views/b2s/network.php:419 views/b2s/ship.php:594
1654
- #: views/b2s/ship.php:649
1655
  msgid "Select Pinboard"
1656
  msgstr ""
1657
 
1658
- #: views/b2s/network.php:376 views/b2s/ship.php:606
1659
  msgid ""
1660
  "Please make sure to use your original Pinterest login data (email and "
1661
  "password). Social Login via Facebook or Google login data will not work here."
@@ -1663,25 +1676,25 @@ msgid ""
1663
  "deactivated to ensure a stable connection to Blog2Social."
1664
  msgstr ""
1665
 
1666
- #: views/b2s/network.php:378 views/b2s/network.php:379 views/b2s/ship.php:608
1667
- #: views/b2s/ship.php:609
1668
  #, php-format
1669
  msgid ""
1670
  "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
1671
  "Upgrade to Blog2Social Premium</a>"
1672
  msgstr ""
1673
 
1674
- #: views/b2s/network.php:380 views/b2s/ship.php:610
1675
  msgid "Invalid Data! Please try again."
1676
  msgstr ""
1677
 
1678
- #: views/b2s/network.php:381 views/b2s/ship.php:611
1679
  msgid ""
1680
  "You have not yet created any pinboards in your Pinterest account. Please set "
1681
  "up at least one pinboard to pin on your Pinterest account!"
1682
  msgstr ""
1683
 
1684
- #: views/b2s/network.php:382 views/b2s/ship.php:612
1685
  #, php-format
1686
  msgid ""
1687
  "Login failed. Please check your login data for typos and please check your "
@@ -1689,46 +1702,46 @@ msgid ""
1689
  "account: <a target=\"_blank\" href=\"%s\">%s</a>"
1690
  msgstr ""
1691
 
1692
- #: views/b2s/network.php:383 views/b2s/ship.php:613
1693
  msgid "Pinterest has rejected the connection to your blog"
1694
  msgstr ""
1695
 
1696
- #: views/b2s/network.php:384 views/b2s/ship.php:614
1697
  msgid "Please select your correct server location and connect again."
1698
  msgstr ""
1699
 
1700
- #: views/b2s/network.php:385 views/b2s/ship.php:615
1701
  msgid ""
1702
  "Access to this resource on your server is denied! Please check your "
1703
  "webserver configuration for caching."
1704
  msgstr ""
1705
 
1706
- #: views/b2s/network.php:388 views/b2s/ship.php:618
1707
  #: views/b2s/html/header.php:348 views/prg/html/form.php:141
1708
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1709
  #: views/prg/html/form.php:220
1710
  msgid "E-Mail"
1711
  msgstr ""
1712
 
1713
- #: views/b2s/network.php:394 views/b2s/ship.php:624 views/prg/login.php:25
1714
  msgid "Password"
1715
  msgstr ""
1716
 
1717
- #: views/b2s/network.php:405 views/b2s/ship.php:635
1718
  msgid "Server-Location"
1719
  msgstr ""
1720
 
1721
- #: views/b2s/network.php:427 views/b2s/ship.php:657 views/b2s/ship.php:661
1722
  #: includes/B2S/Settings/Item.php:89
1723
  msgid "authorize"
1724
  msgstr ""
1725
 
1726
- #: views/b2s/network.php:428 views/b2s/network.php:430 views/b2s/ship.php:658
1727
- #: views/b2s/ship.php:660
1728
  msgid "confirm"
1729
  msgstr ""
1730
 
1731
- #: views/b2s/network.php:429 views/b2s/ship.php:659
1732
  msgid "Sign in to Pinterest"
1733
  msgstr ""
1734
 
@@ -1834,7 +1847,7 @@ msgstr ""
1834
  msgid "Upgrade to Blog2Social Business"
1835
  msgstr ""
1836
 
1837
- #: views/b2s/network.php:556 includes/B2S/Network/Item.php:559
1838
  #, php-format
1839
  msgid ""
1840
  "Define parameters that will be added to link posts on this network e.g. to "
@@ -1846,11 +1859,11 @@ msgstr ""
1846
  msgid "My Profile"
1847
  msgstr ""
1848
 
1849
- #: views/b2s/network.php:603 views/b2s/ship.php:714
1850
  msgid "Add Page"
1851
  msgstr ""
1852
 
1853
- #: views/b2s/network.php:608 views/b2s/ship.php:719
1854
  #, php-format
1855
  msgid ""
1856
  "Please make sure to log in with your account which manages your pages and <a "
@@ -1858,16 +1871,16 @@ msgid ""
1858
  msgstr ""
1859
 
1860
  #: views/b2s/network.php:609 views/b2s/network.php:628
1861
- #: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:682
1862
- #: views/b2s/ship.php:701 views/b2s/ship.php:720 views/b2s/ship.php:739
1863
  msgid "Continue"
1864
  msgstr ""
1865
 
1866
- #: views/b2s/network.php:622 views/b2s/ship.php:733
1867
  msgid "Add Group"
1868
  msgstr ""
1869
 
1870
- #: views/b2s/network.php:627 views/b2s/ship.php:738
1871
  #, php-format
1872
  msgid ""
1873
  "Please make sure to log in with your account which manages your groups and "
@@ -1875,11 +1888,11 @@ msgid ""
1875
  "groups</a>."
1876
  msgstr ""
1877
 
1878
- #: views/b2s/network.php:641 views/b2s/ship.php:676
1879
  msgid "Add Profile"
1880
  msgstr ""
1881
 
1882
- #: views/b2s/network.php:646 views/b2s/ship.php:681
1883
  #, php-format
1884
  msgid ""
1885
  "When you connect Blog2Social with your Instagram account, you might get a "
@@ -1892,18 +1905,18 @@ msgid ""
1892
  " How to connect with Instagram.</a>."
1893
  msgstr ""
1894
 
1895
- #: views/b2s/network.php:660 views/b2s/ship.php:695
1896
  msgid "Connect Instagram Business Account"
1897
  msgstr ""
1898
 
1899
- #: views/b2s/network.php:665
1900
  #, php-format
1901
  msgid ""
1902
  "Please note: Your Instagram Business Account will be connected with "
1903
  "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
1904
- "Business Account is linked to a Facebook page and enter the login data of "
1905
- "your Facebook page. You will find more information and detailed instructions "
1906
- "in the <a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
1907
  msgstr ""
1908
 
1909
  #: views/b2s/network.php:679
@@ -2002,15 +2015,15 @@ msgid "scheduled"
2002
  msgstr ""
2003
 
2004
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2005
- #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
2006
- #: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:239
2007
  #: views/b2s/html/footer.php:177
2008
  msgid "Image with frame"
2009
  msgstr ""
2010
 
2011
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2012
- #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:750
2013
- #: includes/B2S/Network/Item.php:753 includes/B2S/Settings/Item.php:253
2014
  #: views/b2s/html/footer.php:182
2015
  msgid "Image cut out"
2016
  msgstr ""
@@ -2021,50 +2034,50 @@ msgid "add post"
2021
  msgstr ""
2022
 
2023
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2024
- #: views/b2s/repost.php:104 views/b2s/ship.php:507
2025
  msgid "Choose your"
2026
  msgstr ""
2027
 
2028
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2029
- #: views/b2s/repost.php:104 views/b2s/ship.php:507
2030
  msgid "Post Format"
2031
  msgstr ""
2032
 
2033
  #: views/b2s/post.calendar.php:113 views/b2s/post.sched.php:132
2034
- #: views/b2s/repost.php:106 views/b2s/ship.php:509
2035
  msgid "for:"
2036
  msgstr ""
2037
 
2038
  #: views/b2s/post.calendar.php:132 views/b2s/post.sched.php:151
2039
- #: views/b2s/repost.php:125 views/b2s/ship.php:527
2040
  msgid ""
2041
  "Define the default settings for the custom post format for all of your "
2042
  "Facebook accounts in the Blog2Social settings."
2043
  msgstr ""
2044
 
2045
  #: views/b2s/post.calendar.php:135 views/b2s/post.sched.php:154
2046
- #: views/b2s/repost.php:128 views/b2s/ship.php:530
2047
  msgid ""
2048
  "Define the default settings for the custom post format for all of your "
2049
  "Twitter accounts in the Blog2Social settings."
2050
  msgstr ""
2051
 
2052
  #: views/b2s/post.calendar.php:138 views/b2s/post.sched.php:157
2053
- #: views/b2s/repost.php:131 views/b2s/ship.php:533
2054
  msgid ""
2055
  "Define the default settings for the custom post format for all of your "
2056
  "LinkedIn accounts in the Blog2Social settings."
2057
  msgstr ""
2058
 
2059
  #: views/b2s/post.calendar.php:141 views/b2s/post.sched.php:160
2060
- #: views/b2s/repost.php:134 views/b2s/ship.php:536
2061
  msgid ""
2062
  "Define the default settings for the custom post format for all of your "
2063
  "Instagram accounts in the Blog2Social settings."
2064
  msgstr ""
2065
 
2066
  #: views/b2s/post.calendar.php:156 views/b2s/post.sched.php:111
2067
- #: views/b2s/repost.php:149 views/b2s/ship.php:448
2068
  msgid "Select image for"
2069
  msgstr ""
2070
 
@@ -2287,6 +2300,13 @@ msgstr ""
2287
  msgid "Show all premium features"
2288
  msgstr ""
2289
 
 
 
 
 
 
 
 
2290
  #: views/b2s/settings.php:32
2291
  msgid "General"
2292
  msgstr ""
@@ -2475,8 +2495,8 @@ msgstr ""
2475
  msgid "Profiles | Pages | Groups"
2476
  msgstr ""
2477
 
2478
- #: views/b2s/ship.php:164
2479
- msgid "Save network collection"
2480
  msgstr ""
2481
 
2482
  #: views/b2s/ship.php:173
@@ -2551,81 +2571,77 @@ msgstr ""
2551
  msgid "You want re-share your blog post?"
2552
  msgstr ""
2553
 
2554
- #: views/b2s/ship.php:336
2555
- msgid "Save Network Settings"
2556
- msgstr ""
2557
-
2558
  #: views/b2s/ship.php:339
2559
  msgid ""
2560
- "You can save your current network settings as \"Standard\" network settings "
2561
- "for any future sharing activities or as a \"Profile\" to choose from "
2562
- "(Premium)."
 
2563
  msgstr ""
2564
 
2565
  #: views/b2s/ship.php:341
2566
  msgid ""
2567
- "Your Standard selection will show as activated upon pressing the \"share on "
2568
- "social media\" button on the right hand side bar. You can change these "
2569
- "settings any time per click, or choose another network profile (Premium)."
 
2570
  msgstr ""
2571
 
2572
  #: views/b2s/ship.php:343
2573
  msgid ""
2574
- "You can also pre-define various different sets of networks, for specific "
2575
- "social media accounts, target groups, contents or sharing purposes. For "
2576
- "example you can define a specific set of networks for sharing your posts "
2577
- "images only or for re-sharing your evergreen content on a recurring basis. "
2578
- "On the preview-page you may edit your selected or pre-selected networks "
2579
- "anytime by simply clicking on the respective network account to select or "
2580
- "remove an account from the current sharing scheme."
2581
  msgstr ""
2582
 
2583
- #: views/b2s/ship.php:355
 
 
 
 
 
 
 
 
 
 
 
 
 
2584
  msgid "Your blog post is not yet published on your Wordpress!"
2585
  msgstr ""
2586
 
2587
- #: views/b2s/ship.php:358
2588
  msgid "At least one of your selected networks is set to \"Share Now\""
2589
  msgstr ""
2590
 
2591
- #: views/b2s/ship.php:362
2592
  msgid "Schedule your post"
2593
  msgstr ""
2594
 
2595
- #: views/b2s/ship.php:365
2596
  msgid "Ignore & share"
2597
  msgstr ""
2598
 
2599
- #: views/b2s/ship.php:490
2600
  msgid "Important infomations about XING groups"
2601
  msgstr ""
2602
 
2603
- #: views/b2s/ship.php:551
2604
  msgid "Overwrite Draft"
2605
  msgstr ""
2606
 
2607
- #: views/b2s/ship.php:554
2608
  msgid ""
2609
  "There is already a saved draft for this WordPress post or page. If you save "
2610
  "a new draft it will overwrite the old draft. Are you sure you want to "
2611
  "overwrite your draft?"
2612
  msgstr ""
2613
 
2614
- #: views/b2s/ship.php:700
2615
- #, php-format
2616
- msgid ""
2617
- "Please note: Your Instagram Business Account will be connected with "
2618
- "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
2619
- "Business Account is linked to a Facebook page and enter the corresponding "
2620
- "login data. You will find more information and detailed instructions in the "
2621
- "<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
2622
- msgstr ""
2623
-
2624
- #: views/b2s/ship.php:759
2625
  msgid "add Schedule"
2626
  msgstr ""
2627
 
2628
- #: views/b2s/ship.php:775
2629
  msgid "Give me more information"
2630
  msgstr ""
2631
 
@@ -3172,7 +3188,7 @@ msgid "Blog"
3172
  msgstr ""
3173
 
3174
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
3175
- #: includes/B2S/Network/Item.php:670 includes/B2S/Ship/Item.php:331
3176
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
3177
  msgid "Personal"
3178
  msgstr ""
@@ -3191,7 +3207,7 @@ msgstr ""
3191
  msgid "You want to connect a network page?"
3192
  msgstr ""
3193
 
3194
- #: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:400
3195
  #: includes/B2S/Ship/Portale.php:31
3196
  msgid "Publication"
3197
  msgstr ""
@@ -3205,81 +3221,70 @@ msgid "Best Time Manager"
3205
  msgstr ""
3206
 
3207
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3208
- #: includes/B2S/Network/Item.php:391
3209
  msgid "To reactivate this connection,"
3210
  msgstr ""
3211
 
3212
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3213
- #: includes/B2S/Network/Item.php:391 includes/B2S/Ship/Image.php:31
3214
  msgid "please upgrade"
3215
  msgstr ""
3216
 
3217
  #: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
3218
- #: includes/B2S/Network/Item.php:394
3219
  msgid "Connection is interrupted since"
3220
  msgstr ""
3221
 
3222
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
3223
- #: includes/B2S/Network/Item.php:398
3224
  msgid "Assigned by"
3225
  msgstr ""
3226
 
3227
- #: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:369
3228
- #: includes/B2S/Network/Item.php:435 includes/B2S/Ship/Item.php:1211
3229
  msgid "Days"
3230
  msgstr ""
3231
 
3232
- #: includes/B2S/Network/Item.php:326 includes/B2S/Network/Item.php:869
3233
- #, php-format
3234
- msgid ""
3235
- "Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
3236
- "Old Design until 2020/11/30</a>)"
3237
- msgstr ""
3238
-
3239
- #: includes/B2S/Network/Item.php:327 includes/B2S/Network/Item.php:870
3240
- msgid "Company-Page (Employer Branding Profile, New Design)"
3241
- msgstr ""
3242
-
3243
- #: includes/B2S/Network/Item.php:516
3244
  msgid "Connection currently assigned to"
3245
  msgstr ""
3246
 
3247
- #: includes/B2S/Network/Item.php:561 views/prg/html/form.php:84
3248
  #: views/prg/html/form.php:86 views/prg/html/form.php:161
3249
  #: views/prg/html/form.php:163
3250
  msgid "Name"
3251
  msgstr ""
3252
 
3253
- #: includes/B2S/Network/Item.php:562
3254
  msgid "Value"
3255
  msgstr ""
3256
 
3257
- #: includes/B2S/Network/Item.php:586
3258
  msgid "+ add Parameter"
3259
  msgstr ""
3260
 
3261
- #: includes/B2S/Network/Item.php:587
3262
  #, php-format
3263
  msgid "Apply for all %s connections"
3264
  msgstr ""
3265
 
3266
- #: includes/B2S/Network/Item.php:588
3267
  msgid "Apply for all connections"
3268
  msgstr ""
3269
 
3270
- #: includes/B2S/Network/Item.php:614
3271
  msgid "Successfully saved"
3272
  msgstr ""
3273
 
3274
- #: includes/B2S/Network/Item.php:615
3275
  msgid "Failed to save"
3276
  msgstr ""
3277
 
3278
- #: includes/B2S/Network/Item.php:616
3279
  msgid "Failed to load the default template"
3280
  msgstr ""
3281
 
3282
- #: includes/B2S/Network/Item.php:659
3283
  msgid ""
3284
  "Upgrade to Blog2Social Smart or higher to customize your individual post "
3285
  "templates that will automatically pre-format the structure of your social "
@@ -3290,74 +3295,74 @@ msgid ""
3290
  "or slogans) to your post templates."
3291
  msgstr ""
3292
 
3293
- #: includes/B2S/Network/Item.php:660
3294
  msgid "Upgrade to Blog2Social Smart"
3295
  msgstr ""
3296
 
3297
- #: includes/B2S/Network/Item.php:681
3298
  msgid "Activate Instant Caching"
3299
  msgstr ""
3300
 
3301
- #: includes/B2S/Network/Item.php:742
3302
  msgid "Format"
3303
  msgstr ""
3304
 
3305
- #: includes/B2S/Network/Item.php:743 includes/B2S/Network/Item.php:764
3306
  msgid "Load default settings"
3307
  msgstr ""
3308
 
3309
- #: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
3310
  #: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
3311
  msgid "Link"
3312
  msgstr ""
3313
 
3314
- #: includes/B2S/Network/Item.php:750 includes/B2S/Network/Item.php:753
3315
  msgid "Image"
3316
  msgstr ""
3317
 
3318
- #: includes/B2S/Network/Item.php:762 includes/B2S/Settings/Item.php:64
3319
  msgid "Content"
3320
  msgstr ""
3321
 
3322
- #: includes/B2S/Network/Item.php:771 includes/B2S/Ship/Item.php:372
3323
  msgid ""
3324
  "Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
3325
  "in your post."
3326
  msgstr ""
3327
 
3328
- #: includes/B2S/Network/Item.php:783
3329
  msgid "clear"
3330
  msgstr ""
3331
 
3332
- #: includes/B2S/Network/Item.php:794
3333
  msgid ""
3334
  "The link will be transmitted as a canonical link, i.e. in the source code of "
3335
  "your page, in order to refer to the original source of the content and to "
3336
  "increase the reach from search engines like Google."
3337
  msgstr ""
3338
 
3339
- #: includes/B2S/Network/Item.php:796
3340
  msgid "The link will be added automatically at the end of the post."
3341
  msgstr ""
3342
 
3343
- #: includes/B2S/Network/Item.php:801
3344
  msgid "The network does not support hashtags."
3345
  msgstr ""
3346
 
3347
- #: includes/B2S/Network/Item.php:805
3348
  msgid ""
3349
  "This social network displays the predefined hashtags as clickable tags at "
3350
  "the end of your post."
3351
  msgstr ""
3352
 
3353
- #: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
3354
- #: includes/B2S/Network/Item.php:900
3355
  msgid "Network limit"
3356
  msgstr ""
3357
 
3358
- #: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
3359
- #: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
3360
- #: includes/B2S/Network/Item.php:900 includes/B2S/Ship/Item.php:215
3361
  #: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
3362
  #: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
3363
  #: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
@@ -3365,39 +3370,43 @@ msgstr ""
3365
  msgid "characters"
3366
  msgstr ""
3367
 
3368
- #: includes/B2S/Network/Item.php:817
3369
  msgid "Add a link-URL to the end of my image post."
3370
  msgstr ""
3371
 
3372
- #: includes/B2S/Network/Item.php:824
3373
  msgid ""
3374
  "Add a link-URL to the end of my Instagram posts. (Please note, that "
3375
  "Instagram does not turn link-URLs into clickable links)"
3376
  msgstr ""
3377
 
3378
- #: includes/B2S/Network/Item.php:829
3379
  msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
3380
  msgstr ""
3381
 
3382
- #: includes/B2S/Network/Item.php:840
 
 
 
 
3383
  msgid ""
3384
  "Missing PHP \"mbstring\" extension to use the character limit function. "
3385
  "Please activate server-side the PHP \"mbstring\" extension in your \"php."
3386
  "ini\" file."
3387
  msgstr ""
3388
 
3389
- #: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
3390
  msgid "recommended length"
3391
  msgstr ""
3392
 
3393
- #: includes/B2S/Network/Item.php:926 includes/B2S/Network/Item.php:978
3394
- #: includes/B2S/Network/Item.php:1047 includes/B2S/Network/Item.php:1099
3395
- #: includes/B2S/Network/Item.php:1133 includes/B2S/Network/Item.php:1184
3396
- #: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1268
3397
- #: includes/B2S/Network/Item.php:1287 includes/B2S/Network/Item.php:1321
3398
- #: includes/B2S/Network/Item.php:1337 includes/B2S/Network/Item.php:1358
3399
- #: includes/B2S/Network/Item.php:1374 includes/B2S/Network/Item.php:1390
3400
- #: includes/B2S/Network/Item.php:1409 includes/B2S/Network/Item.php:1425
3401
  msgid "Preview"
3402
  msgstr ""
3403
 
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2021-04-19 07:32+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
146
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
147
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
148
  #: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
149
+ #: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:669
150
  #: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
151
  #: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
152
  msgid "Profile"
154
 
155
  #: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
156
  #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
157
+ #: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:325
158
+ #: includes/B2S/Network/Item.php:671 includes/B2S/Ship/Portale.php:39
159
  #: includes/B2S/Ship/Portale.php:39
160
  msgid "Page"
161
  msgstr ""
162
 
163
  #: includes/Loader.php:874 includes/B2S/Network/Item.php:192
164
+ #: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:674
165
  #: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
166
  msgid "Group"
167
  msgstr ""
171
  msgstr ""
172
 
173
  #: includes/Loader.php:875 includes/B2S/Network/Item.php:186
174
+ #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:325
175
+ #: includes/B2S/Network/Item.php:671 includes/B2S/Ship/Item.php:331
176
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
177
  #: includes/B2S/Ship/Portale.php:37
178
  msgid "Business"
259
 
260
  #: includes/Loader.php:889
261
  msgid ""
262
+ "Your blog post was not available for the network at the time of publishing."
263
  msgstr ""
264
 
265
  #: includes/Loader.php:890
313
  msgid "Create Social Media Posts"
314
  msgstr ""
315
 
316
+ #: includes/Loader.php:955 includes/Loader.php:1012 views/b2s/curation.php:257
317
+ #: views/b2s/curation.php:327
318
  msgid "Social Media Posts"
319
  msgstr ""
320
 
405
  "higher, or ask your server administrator to do it for you."
406
  msgstr ""
407
 
408
+ #: includes/Tools.php:352 views/b2s/html/sidebar.php:30
409
  #: views/b2s/html/sidebar.ship.php:29
410
  msgid "License"
411
  msgstr ""
412
 
413
+ #: includes/Tools.php:367
414
  msgid "Greece"
415
  msgstr ""
416
 
417
+ #: includes/Tools.php:368
418
  msgid "India"
419
  msgstr ""
420
 
421
+ #: includes/Tools.php:369
422
  msgid "United States of America"
423
  msgstr ""
424
 
425
+ #: includes/Tools.php:370
426
  msgid "Ireland"
427
  msgstr ""
428
 
429
+ #: includes/Tools.php:371
430
  msgid "Italy"
431
  msgstr ""
432
 
433
+ #: includes/Tools.php:372
434
  msgid "Switzerland"
435
  msgstr ""
436
 
437
+ #: includes/Tools.php:373
438
  msgid "Czechoslovakia"
439
  msgstr ""
440
 
441
+ #: includes/Tools.php:374
442
  msgid "Indonesia"
443
  msgstr ""
444
 
445
+ #: includes/Tools.php:375
446
  msgid "Spain"
447
  msgstr ""
448
 
449
+ #: includes/Tools.php:376
450
  msgid "Canada"
451
  msgstr ""
452
 
453
+ #: includes/Tools.php:377
454
  msgid "Great Britain"
455
  msgstr ""
456
 
457
+ #: includes/Tools.php:378
458
  msgid "Russia"
459
  msgstr ""
460
 
461
+ #: includes/Tools.php:379
462
  msgid "Netherlands"
463
  msgstr ""
464
 
465
+ #: includes/Tools.php:380 includes/Tools.php:394
466
  msgid "Portugal"
467
  msgstr ""
468
 
469
+ #: includes/Tools.php:381
470
  msgid "Norway"
471
  msgstr ""
472
 
473
+ #: includes/Tools.php:382
474
  msgid "Turkey"
475
  msgstr ""
476
 
477
+ #: includes/Tools.php:383
478
  msgid "Australia"
479
  msgstr ""
480
 
481
+ #: includes/Tools.php:384
482
  msgid "Austria"
483
  msgstr ""
484
 
485
+ #: includes/Tools.php:385
486
  msgid "Poland"
487
  msgstr ""
488
 
489
+ #: includes/Tools.php:386
490
  msgid "France"
491
  msgstr ""
492
 
493
+ #: includes/Tools.php:387
494
  msgid "Romania"
495
  msgstr ""
496
 
497
+ #: includes/Tools.php:388
498
  msgid "Germany"
499
  msgstr ""
500
 
501
+ #: includes/Tools.php:389
502
  msgid "Denmark"
503
  msgstr ""
504
 
505
+ #: includes/Tools.php:390
506
  msgid "New Zealand"
507
  msgstr ""
508
 
509
+ #: includes/Tools.php:391
510
  msgid "Finland"
511
  msgstr ""
512
 
513
+ #: includes/Tools.php:392
514
  msgid "Hungary"
515
  msgstr ""
516
 
517
+ #: includes/Tools.php:393
518
  msgid "Japan"
519
  msgstr ""
520
 
521
+ #: includes/Tools.php:395
522
  msgid "Argentina"
523
  msgstr ""
524
 
525
+ #: includes/Tools.php:396
526
  msgid "Korea"
527
  msgstr ""
528
 
529
+ #: includes/Tools.php:397
530
  msgid "Sweden"
531
  msgstr ""
532
 
533
+ #: includes/Tools.php:398
534
  msgid "Mexico"
535
  msgstr ""
536
 
537
+ #: includes/Tools.php:399
538
  msgid "Slovakia"
539
  msgstr ""
540
 
541
+ #: includes/Tools.php:400
542
  msgid "Chile"
543
  msgstr ""
544
 
545
+ #: includes/Tools.php:401
546
  msgid "Colombia"
547
  msgstr ""
548
 
549
+ #: includes/Tools.php:402
550
  msgid "South Africa"
551
  msgstr ""
552
 
553
+ #: includes/Tools.php:403
554
  msgid "Philippines"
555
  msgstr ""
556
 
557
+ #: includes/Tools.php:406
558
  msgid "is determined automatically"
559
  msgstr ""
560
 
561
+ #: includes/Tools.php:413
562
  msgid "Search"
563
  msgstr ""
564
 
565
+ #: includes/Tools.php:414
566
  msgid "Recently Used"
567
  msgstr ""
568
 
569
+ #: includes/Tools.php:415
570
  msgid "Smileys & People"
571
  msgstr ""
572
 
573
+ #: includes/Tools.php:416
574
  msgid "Animals & Nature"
575
  msgstr ""
576
 
577
+ #: includes/Tools.php:417
578
  msgid "Food & Drink"
579
  msgstr ""
580
 
581
+ #: includes/Tools.php:418
582
  msgid "Activities"
583
  msgstr ""
584
 
585
+ #: includes/Tools.php:419
586
  msgid "Travel & Places"
587
  msgstr ""
588
 
589
+ #: includes/Tools.php:420
590
  msgid "Objects"
591
  msgstr ""
592
 
593
+ #: includes/Tools.php:421
594
  msgid "Symbols"
595
  msgstr ""
596
 
597
+ #: includes/Tools.php:422
598
  msgid "Flags"
599
  msgstr ""
600
 
601
+ #: includes/Tools.php:423
602
  msgid "No emojis found"
603
  msgstr ""
604
 
647
 
648
  #: includes/Ajax/Post.php:1929 views/b2s/network.php:7
649
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
650
+ #: includes/B2S/Network/Item.php:394 includes/B2S/Network/Item.php:524
651
  msgid "Unknown username"
652
  msgstr ""
653
 
654
+ #: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:525
655
  #: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
656
  #: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
657
  #: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
663
  msgid "Please see FAQ"
664
  msgstr ""
665
 
666
+ #: includes/B2S/PostBox.php:143 views/b2s/ship.php:775
667
  #: views/b2s/html/header.php:60
668
  msgid "The connection to the server failed. Try again!"
669
  msgstr ""
784
  msgid "You want to auto-post your blog post?"
785
  msgstr ""
786
 
787
+ #: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
788
  #: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
789
+ #: views/b2s/ship.php:375 views/b2s/ship.php:421 views/b2s/html/footer.php:28
790
  #: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
791
  #: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
792
  #: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
794
  msgid "With Blog2Social Premium you can:"
795
  msgstr ""
796
 
797
+ #: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
798
  #: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
799
+ #: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:31
800
  #: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
801
  #: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
802
  #: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
804
  msgid "Post on pages and groups"
805
  msgstr ""
806
 
807
+ #: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
808
  #: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
809
+ #: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:32
810
  #: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
811
  #: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
812
  #: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
814
  msgid "Share on multiple profiles, pages and groups"
815
  msgstr ""
816
 
817
+ #: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
818
  #: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
819
+ #: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:33
820
  #: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
821
  #: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
822
  #: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
824
  msgid "Auto-post and auto-schedule new and updated blog posts"
825
  msgstr ""
826
 
827
+ #: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
828
  #: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
829
+ #: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:34
830
  #: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
831
  #: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
832
  #: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
834
  msgid "Schedule your posts at the best times on each network"
835
  msgstr ""
836
 
837
+ #: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
838
  #: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
839
+ #: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:35
840
  #: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
841
  #: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
842
  #: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
846
  "social media posts"
847
  msgstr ""
848
 
849
+ #: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
850
  #: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
851
+ #: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:36
852
  #: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
853
  #: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
854
  #: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
856
  msgid "Schedule your post for one time, multiple times or recurrently"
857
  msgstr ""
858
 
859
+ #: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
860
  #: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
861
+ #: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:37
862
  #: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
863
  #: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
864
  #: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
866
  msgid "Schedule and re-share old posts"
867
  msgstr ""
868
 
869
+ #: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
870
  #: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
871
+ #: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:38
872
  #: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
873
  #: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
874
  #: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
876
  msgid "Select link format or image format for your posts"
877
  msgstr ""
878
 
879
+ #: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
880
  #: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
881
+ #: views/b2s/ship.php:386 views/b2s/ship.php:432 views/b2s/html/footer.php:39
882
  #: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
883
  #: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
884
  #: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
886
  msgid "Select individual images per post"
887
  msgstr ""
888
 
889
+ #: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
890
  #: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
891
+ #: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:40
892
  #: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
893
  #: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
894
  #: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
898
  "media posts"
899
  msgstr ""
900
 
901
+ #: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
902
  #: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
903
+ #: views/b2s/ship.php:389 views/b2s/ship.php:435 views/b2s/html/footer.php:42
904
  #: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
905
  #: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
906
  #: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
908
  msgid "Upgrade to SMART and above"
909
  msgstr ""
910
 
911
+ #: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
912
+ #: views/b2s/curation.php:245 views/b2s/post.calendar.php:298
913
+ #: views/b2s/ship.php:325 views/b2s/ship.php:391 views/b2s/ship.php:437
914
  #: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
915
  #: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
916
  #: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
947
  "selection.</a>"
948
  msgstr ""
949
 
950
+ #: includes/B2S/PostBox.php:281 views/b2s/repost.php:204
 
951
  msgid "Available networks"
952
  msgstr ""
953
 
1057
  #: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
1058
  #: views/b2s/post.php:41 views/b2s/post.publish.php:45
1059
  #: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
1060
+ #: views/b2s/ship.php:605 views/b2s/ship.php:773 views/b2s/support.php:144
1061
  #: views/b2s/support.php:182 views/prg/html/header.php:86
1062
  msgid "Loading..."
1063
  msgstr ""
1070
  msgid "Are you sure you want to delete this draft?"
1071
  msgstr ""
1072
 
1073
+ #: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
1074
  #: views/b2s/network.php:109 views/b2s/post.approve.php:98
1075
  #: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
1076
  #: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
1077
+ #: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:480
1078
+ #: views/b2s/ship.php:559 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
1079
  msgid "NO"
1080
  msgstr ""
1081
 
1125
  msgstr ""
1126
 
1127
  #: views/b2s/curation.php:49 views/b2s/curation.php:52
 
1128
  msgid "Text Post"
1129
  msgstr ""
1130
 
1138
  msgid "PRO"
1139
  msgstr ""
1140
 
1141
+ #: views/b2s/curation.php:62
1142
  msgid "Load data..."
1143
  msgstr ""
1144
 
1145
+ #: views/b2s/curation.php:68
1146
  msgid ""
1147
  "Enter a link you want to share on your social media networks. You can also "
1148
  "share a video link, for example from YouTube or from Vimeo (also see Video "
1149
  "Post)."
1150
  msgstr ""
1151
 
1152
+ #: views/b2s/curation.php:69
1153
  msgid ""
1154
  "Enter a video link you want to share on your social media networks, for "
1155
  "example from YouTube or from Vimeo."
1156
  msgstr ""
1157
 
1158
+ #: views/b2s/curation.php:70
1159
  msgid "Please enter a valid link"
1160
  msgstr ""
1161
 
1162
+ #: views/b2s/curation.php:71
1163
  msgid "Enter link"
1164
  msgstr ""
1165
 
1166
+ #: views/b2s/curation.php:74 views/b2s/network.php:431
1167
  msgid "continue"
1168
  msgstr ""
1169
 
1170
+ #: views/b2s/curation.php:97 includes/B2S/Ship/Item.php:461
1171
  #: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
1172
  #: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
1173
  #: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
1184
  msgid "Change image"
1185
  msgstr ""
1186
 
1187
+ #: views/b2s/curation.php:101 views/b2s/curation.php:115
1188
  #: includes/B2S/Curation/View.php:23
1189
  msgid "Write something..."
1190
  msgstr ""
1191
 
1192
+ #: views/b2s/curation.php:131 views/b2s/ship.php:260 views/b2s/ship.php:262
1193
  #: includes/B2S/Post/Item.php:454
1194
  msgid "Re-share this post"
1195
  msgstr ""
1196
 
1197
+ #: views/b2s/curation.php:132
1198
  msgid "Create a new post"
1199
  msgstr ""
1200
 
1201
+ #: views/b2s/curation.php:138 views/b2s/post.calendar.php:38
1202
+ #: views/b2s/ship.php:18 views/b2s/ship.php:774 includes/B2S/Post/Filter.php:59
1203
  #: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
1204
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
1205
  msgid "published"
1206
  msgstr ""
1207
 
1208
+ #: views/b2s/curation.php:154 views/b2s/post.approve.php:109
1209
+ #: views/b2s/ship.php:474
1210
  msgid "Do you want to mark this post as published ?"
1211
  msgstr ""
1212
 
1213
+ #: views/b2s/curation.php:159 views/b2s/post.approve.php:114
1214
+ #: views/b2s/ship.php:479 views/b2s/ship.php:560
1215
  msgid "YES"
1216
  msgstr ""
1217
 
1218
+ #: views/b2s/curation.php:173 views/b2s/post.calendar.php:265
1219
+ #: views/b2s/ship.php:404
1220
  msgid "Need to schedule your posts?"
1221
  msgstr ""
1222
 
1223
+ #: views/b2s/curation.php:176 views/b2s/post.calendar.php:268
1224
+ #: views/b2s/ship.php:407
1225
  msgid "Blog2Social Premium covers everything you need."
1226
  msgstr ""
1227
 
1228
+ #: views/b2s/curation.php:179 views/b2s/post.calendar.php:271
1229
+ #: views/b2s/ship.php:410 includes/B2S/Ship/Item.php:1155
1230
  msgid "Schedule for specific dates"
1231
  msgstr ""
1232
 
1233
+ #: views/b2s/curation.php:180 views/b2s/post.calendar.php:272
1234
+ #: views/b2s/ship.php:411
1235
  msgid ""
1236
  "You want to publish a post on a specific date? No problem! Just enter your "
1237
  "desired date and you are ready to go!"
1238
  msgstr ""
1239
 
1240
+ #: views/b2s/curation.php:182 views/b2s/post.calendar.php:274
1241
+ #: views/b2s/ship.php:413
1242
  msgid "Schedule post recurrently"
1243
  msgstr ""
1244
 
1245
+ #: views/b2s/curation.php:183 views/b2s/post.calendar.php:275
1246
+ #: views/b2s/ship.php:414
1247
  msgid ""
1248
  "You have evergreen content you want to re-share from time to time in your "
1249
  "timeline? Schedule your evergreen content to be shared once, multiple times "
1250
  "or recurringly at specific times."
1251
  msgstr ""
1252
 
1253
+ #: views/b2s/curation.php:185 views/b2s/post.calendar.php:277
1254
+ #: views/b2s/ship.php:416
1255
  msgid "Best Time Scheduler"
1256
  msgstr ""
1257
 
1258
+ #: views/b2s/curation.php:186 views/b2s/post.calendar.php:278
1259
+ #: views/b2s/ship.php:417
1260
  msgid ""
1261
  "Whenever you publish a post, only a fraction of your followers will actually "
1262
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
1264
  "lifespan of your posts."
1265
  msgstr ""
1266
 
1267
+ #: views/b2s/curation.php:218
1268
  msgid "You want to create image posts with any image from your media library?"
1269
  msgstr ""
1270
 
1271
+ #: views/b2s/curation.php:219
1272
  msgid "You want to create text posts?"
1273
  msgstr ""
1274
 
1275
+ #: views/b2s/curation.php:226
1276
  msgid ""
1277
  "With Blog2Social you can share your WordPress posts and pages as well as "
1278
  "create your own social media posts to share any content based on text, links,"
1284
  "networks."
1285
  msgstr ""
1286
 
1287
+ #: views/b2s/curation.php:229
1288
  msgid ""
1289
  "Unlock Blog2Social Premium Pro to create and share image posts, video links, "
1290
  "and text posts from any source."
1291
  msgstr ""
1292
 
1293
+ #: views/b2s/curation.php:231
1294
  msgid "Share image posts:"
1295
  msgstr ""
1296
 
1297
+ #: views/b2s/curation.php:233
1298
  msgid ""
1299
  "Grab more attention for your content with photos, videos, or infographics."
1300
  msgstr ""
1301
 
1302
+ #: views/b2s/curation.php:234
1303
  msgid ""
1304
  "Share images to get them into the Google image search to further increase "
1305
  "your outreach and traffic from search engines."
1306
  msgstr ""
1307
 
1308
+ #: views/b2s/curation.php:236
1309
  msgid "Share text posts:"
1310
  msgstr ""
1311
 
1312
+ #: views/b2s/curation.php:238
1313
  msgid ""
1314
  "Share pure text messages and personal comments with your followers and "
1315
  "readers."
1316
  msgstr ""
1317
 
1318
+ #: views/b2s/curation.php:239
1319
  msgid "Use hashtags, @mentions, or emojis to share your feelings."
1320
  msgstr ""
1321
 
1322
+ #: views/b2s/curation.php:241
1323
  #, php-format
1324
  msgid ""
1325
  "Learn more about how to share social media posts in the <a href=\"%s\" "
1326
  "target=\"_blank\">social media posts guide</a>."
1327
  msgstr ""
1328
 
1329
+ #: views/b2s/curation.php:243 views/b2s/html/footer.php:73
1330
  #: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
1331
  msgid "Upgrade to PRO and above"
1332
  msgstr ""
1333
 
1334
+ #: views/b2s/curation.php:280
1335
  msgid ""
1336
  "Text posts enable you to share pure text messages and personal comments with "
1337
+ "your followers and readers. You can also customize your posts with "
1338
+ "individual hashtags, @mentions, or emojis."
1339
+ msgstr ""
1340
+
1341
+ #: views/b2s/curation.php:281
1342
+ msgid "You can share a text post on the following networks:"
1343
  msgstr ""
1344
 
1345
+ #: views/b2s/curation.php:290
1346
  #, php-format
1347
  msgid ""
1348
  "Get more information on how to share a text post with hashtags, @mentions "
1350
  "guide</a>."
1351
  msgstr ""
1352
 
1353
+ #: views/b2s/curation.php:292 views/b2s/curation.php:365
1354
+ #, php-format
1355
+ msgid ""
1356
+ "Under the <a href=\"%s\">Network Settings</a> you can define the network "
1357
+ "selection."
1358
  msgstr ""
1359
 
1360
+ #: views/b2s/curation.php:294 views/b2s/curation.php:367
1361
+ #, php-format
1362
+ msgid ""
1363
+ "More information on how to create a network selection in the guide <a "
1364
+ "href=\"%s\" target=\"_blank\">\"How can I save a specific selection of "
1365
+ "networks?\"</a>"
1366
  msgstr ""
1367
 
1368
+ #: views/b2s/curation.php:305 views/b2s/repost.php:181
1369
+ msgid "Select image"
1370
+ msgstr ""
1371
+
1372
+ #: views/b2s/curation.php:351
1373
  msgid ""
1374
+ "You can share a link post, a video post, or an image post on the following "
1375
+ "networks:"
1376
  msgstr ""
1377
 
1378
  #: views/b2s/dashboard.php:26
1414
  msgid "Delete"
1415
  msgstr ""
1416
 
1417
+ #: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:374
1418
  #: views/b2s/html/footer.php:256
1419
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1420
  msgstr ""
1456
  "Business listings."
1457
  msgstr ""
1458
 
1459
+ #: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:496
1460
  #: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:53
1461
  msgid "Learn more"
1462
  msgstr ""
1527
  #: views/b2s/network.php:230 views/b2s/ship.php:23
1528
  #: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
1529
  #: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
1530
+ #: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
1531
+ #: includes/B2S/Network/Item.php:433 includes/B2S/RePost/Item.php:23
1532
  #: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
1533
  #: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
1534
  #: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
1538
  msgstr ""
1539
 
1540
  #: views/b2s/network.php:242 views/b2s/settings.php:65
1541
+ #: includes/B2S/Network/Item.php:585 includes/B2S/Settings/Item.php:133
1542
  msgid "save"
1543
  msgstr ""
1544
 
1605
  msgid "The name of the post author."
1606
  msgstr ""
1607
 
1608
+ #: views/b2s/network.php:318 includes/B2S/Network/Item.php:842
1609
  msgid "Character limit"
1610
  msgstr ""
1611
 
1632
  "network."
1633
  msgstr ""
1634
 
1635
+ #: views/b2s/network.php:334 views/b2s/ship.php:571
1636
  msgid "Connect with Pinterest"
1637
  msgstr ""
1638
 
1639
+ #: views/b2s/network.php:339 views/b2s/network.php:352 views/b2s/ship.php:576
1640
+ #: views/b2s/ship.php:584
1641
  msgid ""
1642
  "The login failed. To connect your Pinterest account to Blog2Social, please "
1643
  "sign in to Pinterest using the Blog2Social browser extension."
1651
  msgid "Click on \"continue\""
1652
  msgstr ""
1653
 
1654
+ #: views/b2s/network.php:359 views/b2s/network.php:377 views/b2s/ship.php:591
1655
+ #: views/b2s/ship.php:609
1656
  msgid "An error occurred! Please try again."
1657
  msgstr ""
1658
 
1659
+ #: views/b2s/network.php:360 views/b2s/network.php:386 views/b2s/ship.php:592
1660
+ #: views/b2s/ship.php:618
1661
  msgid ""
1662
  "Login up successful. Please confirm that Blog2Social is allowed to publish "
1663
  "on your profile."
1664
  msgstr ""
1665
 
1666
+ #: views/b2s/network.php:364 views/b2s/network.php:419 views/b2s/ship.php:596
1667
+ #: views/b2s/ship.php:651
1668
  msgid "Select Pinboard"
1669
  msgstr ""
1670
 
1671
+ #: views/b2s/network.php:376 views/b2s/ship.php:608
1672
  msgid ""
1673
  "Please make sure to use your original Pinterest login data (email and "
1674
  "password). Social Login via Facebook or Google login data will not work here."
1676
  "deactivated to ensure a stable connection to Blog2Social."
1677
  msgstr ""
1678
 
1679
+ #: views/b2s/network.php:378 views/b2s/network.php:379 views/b2s/ship.php:610
1680
+ #: views/b2s/ship.php:611
1681
  #, php-format
1682
  msgid ""
1683
  "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
1684
  "Upgrade to Blog2Social Premium</a>"
1685
  msgstr ""
1686
 
1687
+ #: views/b2s/network.php:380 views/b2s/ship.php:612
1688
  msgid "Invalid Data! Please try again."
1689
  msgstr ""
1690
 
1691
+ #: views/b2s/network.php:381 views/b2s/ship.php:613
1692
  msgid ""
1693
  "You have not yet created any pinboards in your Pinterest account. Please set "
1694
  "up at least one pinboard to pin on your Pinterest account!"
1695
  msgstr ""
1696
 
1697
+ #: views/b2s/network.php:382 views/b2s/ship.php:614
1698
  #, php-format
1699
  msgid ""
1700
  "Login failed. Please check your login data for typos and please check your "
1702
  "account: <a target=\"_blank\" href=\"%s\">%s</a>"
1703
  msgstr ""
1704
 
1705
+ #: views/b2s/network.php:383 views/b2s/ship.php:615
1706
  msgid "Pinterest has rejected the connection to your blog"
1707
  msgstr ""
1708
 
1709
+ #: views/b2s/network.php:384 views/b2s/ship.php:616
1710
  msgid "Please select your correct server location and connect again."
1711
  msgstr ""
1712
 
1713
+ #: views/b2s/network.php:385 views/b2s/ship.php:617
1714
  msgid ""
1715
  "Access to this resource on your server is denied! Please check your "
1716
  "webserver configuration for caching."
1717
  msgstr ""
1718
 
1719
+ #: views/b2s/network.php:388 views/b2s/ship.php:620
1720
  #: views/b2s/html/header.php:348 views/prg/html/form.php:141
1721
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1722
  #: views/prg/html/form.php:220
1723
  msgid "E-Mail"
1724
  msgstr ""
1725
 
1726
+ #: views/b2s/network.php:394 views/b2s/ship.php:626 views/prg/login.php:25
1727
  msgid "Password"
1728
  msgstr ""
1729
 
1730
+ #: views/b2s/network.php:405 views/b2s/ship.php:637
1731
  msgid "Server-Location"
1732
  msgstr ""
1733
 
1734
+ #: views/b2s/network.php:427 views/b2s/ship.php:659 views/b2s/ship.php:663
1735
  #: includes/B2S/Settings/Item.php:89
1736
  msgid "authorize"
1737
  msgstr ""
1738
 
1739
+ #: views/b2s/network.php:428 views/b2s/network.php:430 views/b2s/ship.php:660
1740
+ #: views/b2s/ship.php:662
1741
  msgid "confirm"
1742
  msgstr ""
1743
 
1744
+ #: views/b2s/network.php:429 views/b2s/ship.php:661
1745
  msgid "Sign in to Pinterest"
1746
  msgstr ""
1747
 
1847
  msgid "Upgrade to Blog2Social Business"
1848
  msgstr ""
1849
 
1850
+ #: views/b2s/network.php:556 includes/B2S/Network/Item.php:555
1851
  #, php-format
1852
  msgid ""
1853
  "Define parameters that will be added to link posts on this network e.g. to "
1859
  msgid "My Profile"
1860
  msgstr ""
1861
 
1862
+ #: views/b2s/network.php:603 views/b2s/ship.php:716
1863
  msgid "Add Page"
1864
  msgstr ""
1865
 
1866
+ #: views/b2s/network.php:608 views/b2s/ship.php:721
1867
  #, php-format
1868
  msgid ""
1869
  "Please make sure to log in with your account which manages your pages and <a "
1871
  msgstr ""
1872
 
1873
  #: views/b2s/network.php:609 views/b2s/network.php:628
1874
+ #: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:684
1875
+ #: views/b2s/ship.php:703 views/b2s/ship.php:722 views/b2s/ship.php:741
1876
  msgid "Continue"
1877
  msgstr ""
1878
 
1879
+ #: views/b2s/network.php:622 views/b2s/ship.php:735
1880
  msgid "Add Group"
1881
  msgstr ""
1882
 
1883
+ #: views/b2s/network.php:627 views/b2s/ship.php:740
1884
  #, php-format
1885
  msgid ""
1886
  "Please make sure to log in with your account which manages your groups and "
1888
  "groups</a>."
1889
  msgstr ""
1890
 
1891
+ #: views/b2s/network.php:641 views/b2s/ship.php:678
1892
  msgid "Add Profile"
1893
  msgstr ""
1894
 
1895
+ #: views/b2s/network.php:646 views/b2s/ship.php:683
1896
  #, php-format
1897
  msgid ""
1898
  "When you connect Blog2Social with your Instagram account, you might get a "
1905
  " How to connect with Instagram.</a>."
1906
  msgstr ""
1907
 
1908
+ #: views/b2s/network.php:660 views/b2s/ship.php:697
1909
  msgid "Connect Instagram Business Account"
1910
  msgstr ""
1911
 
1912
+ #: views/b2s/network.php:665 views/b2s/ship.php:702
1913
  #, php-format
1914
  msgid ""
1915
  "Please note: Your Instagram Business Account will be connected with "
1916
  "Blog2Social via Facebook. Therefore, please make sure that your Instagram "
1917
+ "Business Account is linked to a Facebook page and enter the corresponding "
1918
+ "login data. You will find more information and detailed instructions in the "
1919
+ "<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
1920
  msgstr ""
1921
 
1922
  #: views/b2s/network.php:679
2015
  msgstr ""
2016
 
2017
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2018
+ #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:748
2019
+ #: includes/B2S/Network/Item.php:751 includes/B2S/Settings/Item.php:239
2020
  #: views/b2s/html/footer.php:177
2021
  msgid "Image with frame"
2022
  msgstr ""
2023
 
2024
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
2025
+ #: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
2026
+ #: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:253
2027
  #: views/b2s/html/footer.php:182
2028
  msgid "Image cut out"
2029
  msgstr ""
2034
  msgstr ""
2035
 
2036
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2037
+ #: views/b2s/repost.php:104 views/b2s/ship.php:509
2038
  msgid "Choose your"
2039
  msgstr ""
2040
 
2041
  #: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
2042
+ #: views/b2s/repost.php:104 views/b2s/ship.php:509
2043
  msgid "Post Format"
2044
  msgstr ""
2045
 
2046
  #: views/b2s/post.calendar.php:113 views/b2s/post.sched.php:132
2047
+ #: views/b2s/repost.php:106 views/b2s/ship.php:511
2048
  msgid "for:"
2049
  msgstr ""
2050
 
2051
  #: views/b2s/post.calendar.php:132 views/b2s/post.sched.php:151
2052
+ #: views/b2s/repost.php:125 views/b2s/ship.php:529
2053
  msgid ""
2054
  "Define the default settings for the custom post format for all of your "
2055
  "Facebook accounts in the Blog2Social settings."
2056
  msgstr ""
2057
 
2058
  #: views/b2s/post.calendar.php:135 views/b2s/post.sched.php:154
2059
+ #: views/b2s/repost.php:128 views/b2s/ship.php:532
2060
  msgid ""
2061
  "Define the default settings for the custom post format for all of your "
2062
  "Twitter accounts in the Blog2Social settings."
2063
  msgstr ""
2064
 
2065
  #: views/b2s/post.calendar.php:138 views/b2s/post.sched.php:157
2066
+ #: views/b2s/repost.php:131 views/b2s/ship.php:535
2067
  msgid ""
2068
  "Define the default settings for the custom post format for all of your "
2069
  "LinkedIn accounts in the Blog2Social settings."
2070
  msgstr ""
2071
 
2072
  #: views/b2s/post.calendar.php:141 views/b2s/post.sched.php:160
2073
+ #: views/b2s/repost.php:134 views/b2s/ship.php:538
2074
  msgid ""
2075
  "Define the default settings for the custom post format for all of your "
2076
  "Instagram accounts in the Blog2Social settings."
2077
  msgstr ""
2078
 
2079
  #: views/b2s/post.calendar.php:156 views/b2s/post.sched.php:111
2080
+ #: views/b2s/repost.php:149 views/b2s/ship.php:450
2081
  msgid "Select image for"
2082
  msgstr ""
2083
 
2300
  msgid "Show all premium features"
2301
  msgstr ""
2302
 
2303
+ #: views/b2s/repost.php:203
2304
+ #, php-format
2305
+ msgid ""
2306
+ "Under <a href=\"%s\">Network Settings</a> you define which network selection "
2307
+ "is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
2308
+ msgstr ""
2309
+
2310
  #: views/b2s/settings.php:32
2311
  msgid "General"
2312
  msgstr ""
2495
  msgid "Profiles | Pages | Groups"
2496
  msgstr ""
2497
 
2498
+ #: views/b2s/ship.php:164 views/b2s/ship.php:336
2499
+ msgid "Save network selection"
2500
  msgstr ""
2501
 
2502
  #: views/b2s/ship.php:173
2571
  msgid "You want re-share your blog post?"
2572
  msgstr ""
2573
 
 
 
 
 
2574
  #: views/b2s/ship.php:339
2575
  msgid ""
2576
+ "You can save your current network selection. This network selection will be "
2577
+ "loaded automatically next time you open the social media post editor via "
2578
+ "\"Site & Blog Content\" ->\"Share on Social Media\" or \"Social Media "
2579
+ "Posts\" ->\"Customize & Schedule\"."
2580
  msgstr ""
2581
 
2582
  #: views/b2s/ship.php:341
2583
  msgid ""
2584
+ "Your saved networks will be activated for your schedule (green checkmark) in "
2585
+ "the right side navigation. You can select or deselect social network "
2586
+ "accounts at any time by clicking on them or connect new social networks on "
2587
+ "the \"+ Add more\" icon on top of the navigation bar."
2588
  msgstr ""
2589
 
2590
  #: views/b2s/ship.php:343
2591
  msgid ""
2592
+ "This allows you to adjust your network selection at any time and save it by "
2593
+ "clicking on \"Save network selection\"."
 
 
 
 
 
2594
  msgstr ""
2595
 
2596
+ #: views/b2s/ship.php:345
2597
+ msgid "Note: "
2598
+ msgstr ""
2599
+
2600
+ #: views/b2s/ship.php:345
2601
+ #, php-format
2602
+ msgid ""
2603
+ "To define and save more network selections for your posting purposes, you "
2604
+ "can use the option \"Multiple Network collections\" (Premium feature) to "
2605
+ "define <a href=\"%s\" target=\"_blank\">multiple network collections in the "
2606
+ "social networks section</a>."
2607
+ msgstr ""
2608
+
2609
+ #: views/b2s/ship.php:357
2610
  msgid "Your blog post is not yet published on your Wordpress!"
2611
  msgstr ""
2612
 
2613
+ #: views/b2s/ship.php:360
2614
  msgid "At least one of your selected networks is set to \"Share Now\""
2615
  msgstr ""
2616
 
2617
+ #: views/b2s/ship.php:364
2618
  msgid "Schedule your post"
2619
  msgstr ""
2620
 
2621
+ #: views/b2s/ship.php:367
2622
  msgid "Ignore & share"
2623
  msgstr ""
2624
 
2625
+ #: views/b2s/ship.php:492
2626
  msgid "Important infomations about XING groups"
2627
  msgstr ""
2628
 
2629
+ #: views/b2s/ship.php:553
2630
  msgid "Overwrite Draft"
2631
  msgstr ""
2632
 
2633
+ #: views/b2s/ship.php:556
2634
  msgid ""
2635
  "There is already a saved draft for this WordPress post or page. If you save "
2636
  "a new draft it will overwrite the old draft. Are you sure you want to "
2637
  "overwrite your draft?"
2638
  msgstr ""
2639
 
2640
+ #: views/b2s/ship.php:761
 
 
 
 
 
 
 
 
 
 
2641
  msgid "add Schedule"
2642
  msgstr ""
2643
 
2644
+ #: views/b2s/ship.php:777
2645
  msgid "Give me more information"
2646
  msgstr ""
2647
 
3188
  msgstr ""
3189
 
3190
  #: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
3191
+ #: includes/B2S/Network/Item.php:669 includes/B2S/Ship/Item.php:331
3192
  #: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
3193
  msgid "Personal"
3194
  msgstr ""
3207
  msgid "You want to connect a network page?"
3208
  msgstr ""
3209
 
3210
+ #: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:396
3211
  #: includes/B2S/Ship/Portale.php:31
3212
  msgid "Publication"
3213
  msgstr ""
3221
  msgstr ""
3222
 
3223
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3224
+ #: includes/B2S/Network/Item.php:387
3225
  msgid "To reactivate this connection,"
3226
  msgstr ""
3227
 
3228
  #: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
3229
+ #: includes/B2S/Network/Item.php:387 includes/B2S/Ship/Image.php:31
3230
  msgid "please upgrade"
3231
  msgstr ""
3232
 
3233
  #: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
3234
+ #: includes/B2S/Network/Item.php:390
3235
  msgid "Connection is interrupted since"
3236
  msgstr ""
3237
 
3238
  #: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
3239
+ #: includes/B2S/Network/Item.php:394
3240
  msgid "Assigned by"
3241
  msgstr ""
3242
 
3243
+ #: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:365
3244
+ #: includes/B2S/Network/Item.php:431 includes/B2S/Ship/Item.php:1211
3245
  msgid "Days"
3246
  msgstr ""
3247
 
3248
+ #: includes/B2S/Network/Item.php:512
 
 
 
 
 
 
 
 
 
 
 
3249
  msgid "Connection currently assigned to"
3250
  msgstr ""
3251
 
3252
+ #: includes/B2S/Network/Item.php:557 views/prg/html/form.php:84
3253
  #: views/prg/html/form.php:86 views/prg/html/form.php:161
3254
  #: views/prg/html/form.php:163
3255
  msgid "Name"
3256
  msgstr ""
3257
 
3258
+ #: includes/B2S/Network/Item.php:558
3259
  msgid "Value"
3260
  msgstr ""
3261
 
3262
+ #: includes/B2S/Network/Item.php:582
3263
  msgid "+ add Parameter"
3264
  msgstr ""
3265
 
3266
+ #: includes/B2S/Network/Item.php:583
3267
  #, php-format
3268
  msgid "Apply for all %s connections"
3269
  msgstr ""
3270
 
3271
+ #: includes/B2S/Network/Item.php:584
3272
  msgid "Apply for all connections"
3273
  msgstr ""
3274
 
3275
+ #: includes/B2S/Network/Item.php:613
3276
  msgid "Successfully saved"
3277
  msgstr ""
3278
 
3279
+ #: includes/B2S/Network/Item.php:614
3280
  msgid "Failed to save"
3281
  msgstr ""
3282
 
3283
+ #: includes/B2S/Network/Item.php:615
3284
  msgid "Failed to load the default template"
3285
  msgstr ""
3286
 
3287
+ #: includes/B2S/Network/Item.php:658
3288
  msgid ""
3289
  "Upgrade to Blog2Social Smart or higher to customize your individual post "
3290
  "templates that will automatically pre-format the structure of your social "
3295
  "or slogans) to your post templates."
3296
  msgstr ""
3297
 
3298
+ #: includes/B2S/Network/Item.php:659
3299
  msgid "Upgrade to Blog2Social Smart"
3300
  msgstr ""
3301
 
3302
+ #: includes/B2S/Network/Item.php:680
3303
  msgid "Activate Instant Caching"
3304
  msgstr ""
3305
 
3306
+ #: includes/B2S/Network/Item.php:741
3307
  msgid "Format"
3308
  msgstr ""
3309
 
3310
+ #: includes/B2S/Network/Item.php:742 includes/B2S/Network/Item.php:763
3311
  msgid "Load default settings"
3312
  msgstr ""
3313
 
3314
+ #: includes/B2S/Network/Item.php:748 includes/B2S/Network/Item.php:751
3315
  #: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
3316
  msgid "Link"
3317
  msgstr ""
3318
 
3319
+ #: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
3320
  msgid "Image"
3321
  msgstr ""
3322
 
3323
+ #: includes/B2S/Network/Item.php:761 includes/B2S/Settings/Item.php:64
3324
  msgid "Content"
3325
  msgstr ""
3326
 
3327
+ #: includes/B2S/Network/Item.php:770 includes/B2S/Ship/Item.php:372
3328
  msgid ""
3329
  "Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
3330
  "in your post."
3331
  msgstr ""
3332
 
3333
+ #: includes/B2S/Network/Item.php:782
3334
  msgid "clear"
3335
  msgstr ""
3336
 
3337
+ #: includes/B2S/Network/Item.php:793
3338
  msgid ""
3339
  "The link will be transmitted as a canonical link, i.e. in the source code of "
3340
  "your page, in order to refer to the original source of the content and to "
3341
  "increase the reach from search engines like Google."
3342
  msgstr ""
3343
 
3344
+ #: includes/B2S/Network/Item.php:795
3345
  msgid "The link will be added automatically at the end of the post."
3346
  msgstr ""
3347
 
3348
+ #: includes/B2S/Network/Item.php:800
3349
  msgid "The network does not support hashtags."
3350
  msgstr ""
3351
 
3352
+ #: includes/B2S/Network/Item.php:804
3353
  msgid ""
3354
  "This social network displays the predefined hashtags as clickable tags at "
3355
  "the end of your post."
3356
  msgstr ""
3357
 
3358
+ #: includes/B2S/Network/Item.php:809 includes/B2S/Network/Item.php:866
3359
+ #: includes/B2S/Network/Item.php:902
3360
  msgid "Network limit"
3361
  msgstr ""
3362
 
3363
+ #: includes/B2S/Network/Item.php:809 includes/B2S/Network/Item.php:866
3364
+ #: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:902
3365
+ #: includes/B2S/Network/Item.php:902 includes/B2S/Ship/Item.php:215
3366
  #: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
3367
  #: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
3368
  #: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
3370
  msgid "characters"
3371
  msgstr ""
3372
 
3373
+ #: includes/B2S/Network/Item.php:816
3374
  msgid "Add a link-URL to the end of my image post."
3375
  msgstr ""
3376
 
3377
+ #: includes/B2S/Network/Item.php:823
3378
  msgid ""
3379
  "Add a link-URL to the end of my Instagram posts. (Please note, that "
3380
  "Instagram does not turn link-URLs into clickable links)"
3381
  msgstr ""
3382
 
3383
+ #: includes/B2S/Network/Item.php:828
3384
  msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
3385
  msgstr ""
3386
 
3387
+ #: includes/B2S/Network/Item.php:835
3388
+ msgid "Add a link-URL to the end of my post."
3389
+ msgstr ""
3390
+
3391
+ #: includes/B2S/Network/Item.php:846
3392
  msgid ""
3393
  "Missing PHP \"mbstring\" extension to use the character limit function. "
3394
  "Please activate server-side the PHP \"mbstring\" extension in your \"php."
3395
  "ini\" file."
3396
  msgstr ""
3397
 
3398
+ #: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:902
3399
  msgid "recommended length"
3400
  msgstr ""
3401
 
3402
+ #: includes/B2S/Network/Item.php:928 includes/B2S/Network/Item.php:980
3403
+ #: includes/B2S/Network/Item.php:1049 includes/B2S/Network/Item.php:1101
3404
+ #: includes/B2S/Network/Item.php:1135 includes/B2S/Network/Item.php:1186
3405
+ #: includes/B2S/Network/Item.php:1216 includes/B2S/Network/Item.php:1270
3406
+ #: includes/B2S/Network/Item.php:1289 includes/B2S/Network/Item.php:1323
3407
+ #: includes/B2S/Network/Item.php:1339 includes/B2S/Network/Item.php:1360
3408
+ #: includes/B2S/Network/Item.php:1376 includes/B2S/Network/Item.php:1392
3409
+ #: includes/B2S/Network/Item.php:1411 includes/B2S/Network/Item.php:1427
3410
  msgid "Preview"
3411
  msgstr ""
3412
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: auto post, auto publish, social media scheduling, social media calendar, s
5
  Donate link: https://paypal.me/adenion
6
  Requires at least: 4.7.0
7
  Tested up to: 5.7
8
- Stable tag: 6.7.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -221,6 +221,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
221
  7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
222
 
223
  == Changelog ==
 
 
224
  = 6.7.0 =
225
  Instagram Business Solution & Usability Optimization
226
  = 6.6.4 =
@@ -271,54 +273,10 @@ Usability Optimization
271
  Usability Optimization, Rebrandly integration, url parameter settings
272
  = 6.0.0 =
273
  New Image Posts, Imgur, Animated Gifs and Emojis
274
- = 5.9.0 =
275
- Usability Optimization & Gif support
276
- = 5.8.1 =
277
- Usability Optimization
278
- = 5.8.0 =
279
- Wordpress Multisite compatible
280
- = 5.7.2 =
281
- Additional Security Update and improvements
282
- = 5.7.1 =
283
- Additional Security Update and improvements
284
- = 5.7.0 =
285
- Save your social media posts as drafts
286
- = 5.6.1 =
287
- Improvments and Bugfixes Posting Template
288
- = 5.6.0 =
289
- Post Templates
290
- = 5.5.0 =
291
- Team function
292
- = 5.4.1 =
293
- Usability Optimization
294
- = 5.4.0 =
295
- New Content Curation features and Debugger Tool
296
- = 5.3.0 =
297
- A new look, improved support hub and calendar
298
- = 5.2.0 =
299
- New XING Interface and Google + News
300
- = 5.1.4 =
301
- Connection of Blog2Social and press distribution service PR- Gateway and additional language extension
302
- = 5.1.3 =
303
- Additional Security Update
304
- = 5.1.2 =
305
- Security Update
306
- = 5.1.1 =
307
- Introducing Instant Sharing for Google+
308
- = 5.1.0 =
309
- Advanced Best Time Manager
310
- = 5.0.4 =
311
- Network Format and Calendar Optimization
312
- = 5.0.3 =
313
- Usability Optimization
314
- = 5.0.2 =
315
- Usability Optimization
316
- = 5.0.1 =
317
- Usability Optimization
318
- = 5.0.0 =
319
- Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
320
 
321
  == Upgrade Notice ==
 
 
322
  = 6.7.0 =
323
  Instagram Business Solution & Usability Optimization
324
  = 6.6.4 =
@@ -368,50 +326,4 @@ Usability Optimization
368
  = 6.1.0 =
369
  Usability Optimization, Rebrandly integration, url parameter settings
370
  = 6.0.0 =
371
- New Image Posts, Imgur, Animated Gifs and Emojis
372
- = 5.9.0 =
373
- Usability Optimization & Gif support
374
- = 5.8.1 =
375
- Usability Optimization
376
- = 5.8.0 =
377
- Wordpress Multisite compatible
378
- = 5.7.2 =
379
- Additional Security Update and improvements
380
- = 5.7.1 =
381
- Additional Security Update and improvements
382
- = 5.7.0 =
383
- Save your social media posts as drafts
384
- = 5.6.1 =
385
- Improvments and Bugfixes Posting Template
386
- = 5.6.0 =
387
- Post Templates
388
- = 5.5.0 =
389
- Team function
390
- = 5.4.1 =
391
- Usability Optimization
392
- = 5.4.0 =
393
- New Content Curation features and Debugger Tool
394
- = 5.3.0 =
395
- A new look, improved support hub and calendar
396
- = 5.2.0 =
397
- Usability Optimization
398
- = 5.1.4 =
399
- Usability Optimization, language portuguese
400
- = 5.1.3 =
401
- Usability Optimization
402
- = 5.1.2 =
403
- Usability Optimization
404
- = 5.1.1 =
405
- Usability Optimization, google plus instant sharing
406
- = 5.1.0 =
407
- Usability Optimization, new content seeding plan
408
- = 5.0.4 =
409
- Usability Optimization, calendar Optimization
410
- = 5.0.3 =
411
- Usability Optimization
412
- = 5.0.2 =
413
- Usability Optimization
414
- = 5.0.1 =
415
- Usability Optimization
416
- = 5.0.0 =
417
- Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
5
  Donate link: https://paypal.me/adenion
6
  Requires at least: 4.7.0
7
  Tested up to: 5.7
8
+ Stable tag: 6.7.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
221
  7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
222
 
223
  == Changelog ==
224
+ = 6.7.1 =
225
+ Usability Optimization
226
  = 6.7.0 =
227
  Instagram Business Solution & Usability Optimization
228
  = 6.6.4 =
273
  Usability Optimization, Rebrandly integration, url parameter settings
274
  = 6.0.0 =
275
  New Image Posts, Imgur, Animated Gifs and Emojis
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
 
277
  == Upgrade Notice ==
278
+ = 6.7.1 =
279
+ Usability Optimization
280
  = 6.7.0 =
281
  Instagram Business Solution & Usability Optimization
282
  = 6.6.4 =
326
  = 6.1.0 =
327
  Usability Optimization, Rebrandly integration, url parameter settings
328
  = 6.0.0 =
329
+ New Image Posts, Imgur, Animated Gifs and Emojis
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
views/b2s/curation.php CHANGED
@@ -51,7 +51,6 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
51
  <button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="image"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
52
  <button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="text"><?php esc_html_e('Text Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
53
  <?php } ?>
54
- <button class="btn btn-sm btn-link b2sTextPostInfoModalBtn">Info</button>
55
  <input type="hidden" id="b2s-curation-post-format" value="0">
56
  </div>
57
  </div>
@@ -255,28 +254,44 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
255
  <div class="modal-content">
256
  <div class="modal-header">
257
  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
258
- <h4 class="modal-title" ><?php esc_html_e('Text Post', 'blog2social'); ?></h4>
259
  </div>
260
  <div class="modal-body">
261
- <?php esc_html_e('Text posts enable you to share pure text messages and personal comments with your followers and readers. You can also use hashtags, @mentions, or emojis to share your feelings. You can share a text post on the following networks:', 'blog2social') ?>
262
- <br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  <br>
264
- Facebook<br>
265
- Twitter<br>
266
- Linkedin<br>
267
- Tumblr<br>
268
- Diigo<br>
269
- Medium<br>
270
- Torial<br>
271
- Reddit<br>
272
- Bloglovin<br>
273
- VK<br>
274
- Google My Business<br>
275
- Xing<br>
276
- Telegram<br>
277
  <br>
 
278
  <br>
279
- <?php echo sprintf(__('Get more information on how to share a text post with hashtags, @mentions and emojis in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_text_post_info')); ?>
 
 
280
  </div>
281
  </div>
282
  </div>
@@ -309,42 +324,48 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
309
  <div class="modal-content">
310
  <div class="modal-header">
311
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoNetworkModal">&times;</button>
312
- <h4 class="modal-title"><?php esc_html_e('Available networks for Social Media Posts', 'blog2social') ?></h4>
313
  </div>
314
- <div class="modal-body">
315
- <div class="b2s-network-imgs">
316
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Facebook') ?>" src="<?php echo plugins_url('/assets/images/portale/1_flat.png', B2S_PLUGIN_FILE) ?>">
317
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Twitter') ?>" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) ?>">
318
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('LinkedIn') ?>" src="<?php echo plugins_url('/assets/images/portale/3_flat.png', B2S_PLUGIN_FILE) ?>">
319
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Pinterest') ?>" src="<?php echo plugins_url('/assets/images/portale/6_flat.png', B2S_PLUGIN_FILE) ?>">
320
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Flickr') ?>" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>">
321
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Diigo') ?>" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>">
322
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Instagram') ?>" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>">
323
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Reddit') ?>" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>">
324
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('VKontakte') ?>" src="<?php echo plugins_url('/assets/images/portale/17_flat.png', B2S_PLUGIN_FILE) ?>">
325
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
326
- <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Imgur') ?>" src="<?php echo plugins_url('/assets/images/portale/21_flat.png', B2S_PLUGIN_FILE) ?>">
 
327
 
328
- <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
329
- <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
330
- <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
331
- <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
332
- <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  </div>
334
- <br>
335
- <p class="b2s-bold"><?php echo sprintf(__('Under <a href="%s">Network Settings</a> you define which network selection is used. <a href="%s" target="_blank">To create a network grouping.</a>', 'blog2social'), 'admin.php?page=blog2social-network', B2S_Tools::getSupportLink('network_grouping')) ?></p>
336
- <h4><?php esc_html_e('Available networks', 'blog2social') ?></h4>
337
- <p class="b2s-bold"><?php esc_attr_e('Facebook (Profile & Seiten)') ?></p>
338
- <p class="b2s-bold"><?php esc_attr_e('Twitter (1 Profil)') ?></p>
339
- <p class="b2s-bold"><?php esc_attr_e('LinkedIn') ?></p>
340
- <p class="b2s-bold"><?php esc_attr_e('Pinterest') ?></p>
341
- <p class="b2s-bold"><?php esc_attr_e('Flickr') ?></p>
342
- <p class="b2s-bold"><?php esc_attr_e('Diigo') ?></p>
343
- <p class="b2s-bold"><?php esc_attr_e('Instagram') ?></p>
344
- <p class="b2s-bold"><?php esc_attr_e('Reddit') ?></p>
345
- <p class="b2s-bold"><?php esc_attr_e('VKontakte (Profile & Seiten)') ?></p>
346
- <p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
347
- <p class="b2s-bold"><?php esc_attr_e('Imgur') ?></p>
348
  </div>
349
  </div>
350
  </div>
51
  <button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="image"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
52
  <button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="text"><?php esc_html_e('Text Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
53
  <?php } ?>
 
54
  <input type="hidden" id="b2s-curation-post-format" value="0">
55
  </div>
56
  </div>
254
  <div class="modal-content">
255
  <div class="modal-header">
256
  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
257
+ <h4 class="modal-title" ><?php esc_html_e('Social Media Posts', 'blog2social'); ?></h4>
258
  </div>
259
  <div class="modal-body">
260
+ <div class="b2s-network-imgs">
261
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Facebook') ?>" src="<?php echo plugins_url('/assets/images/portale/1_flat.png', B2S_PLUGIN_FILE) ?>">
262
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Twitter') ?>" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) ?>">
263
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('LinkedIn') ?>" src="<?php echo plugins_url('/assets/images/portale/3_flat.png', B2S_PLUGIN_FILE) ?>">
264
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('VKontakte') ?>" src="<?php echo plugins_url('/assets/images/portale/17_flat.png', B2S_PLUGIN_FILE) ?>">
265
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
266
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
267
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
268
+
269
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Flickr') ?>" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>">
270
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Diigo') ?>" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>">
271
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Pinterest') ?>" src="<?php echo plugins_url('/assets/images/portale/6_flat.png', B2S_PLUGIN_FILE) ?>">
272
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Instagram') ?>" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>">
273
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Reddit') ?>" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>">
274
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
275
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
276
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
277
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
278
+ </div>
279
  <br>
280
+ <p><?php esc_html_e('Text posts enable you to share pure text messages and personal comments with your followers and readers. You can also customize your posts with individual hashtags, @mentions, or emojis.', 'blog2social') ?></p>
281
+ <h4><?php esc_html_e('You can share a text post on the following networks:', 'blog2social') ?></h4>
282
+ <p class="b2s-bold"><?php esc_attr_e('Facebook (Profile & Seiten)') ?></p>
283
+ <p class="b2s-bold"><?php esc_attr_e('Twitter (1 Profil)') ?></p>
284
+ <p class="b2s-bold"><?php esc_attr_e('LinkedIn') ?></p>
285
+ <p class="b2s-bold"><?php esc_attr_e('VKontakte (Profile & Seiten)') ?></p>
286
+ <p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
287
+ <p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
288
+ <p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
 
 
 
 
289
  <br>
290
+ <p><?php echo sprintf(__('Get more information on how to share a text post with hashtags, @mentions and emojis in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_text_post_info')); ?></p>
291
  <br>
292
+ <p><?php echo sprintf(__('Under the <a href="%s">Network Settings</a> you can define the network selection.', 'blog2social'), 'admin.php?page=blog2social-network'); ?>
293
+ <br>
294
+ <?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
295
  </div>
296
  </div>
297
  </div>
324
  <div class="modal-content">
325
  <div class="modal-header">
326
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoNetworkModal">&times;</button>
327
+ <h4 class="modal-title"><?php esc_html_e('Social Media Posts', 'blog2social') ?></h4>
328
  </div>
329
+ <div class="modal-body">
330
+ <div class="b2s-network-imgs">
331
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Facebook') ?>" src="<?php echo plugins_url('/assets/images/portale/1_flat.png', B2S_PLUGIN_FILE) ?>">
332
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Twitter') ?>" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) ?>">
333
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('LinkedIn') ?>" src="<?php echo plugins_url('/assets/images/portale/3_flat.png', B2S_PLUGIN_FILE) ?>">
334
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Pinterest') ?>" src="<?php echo plugins_url('/assets/images/portale/6_flat.png', B2S_PLUGIN_FILE) ?>">
335
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Flickr') ?>" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>">
336
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Diigo') ?>" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>">
337
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Instagram') ?>" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>">
338
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Reddit') ?>" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>">
339
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('VKontakte') ?>" src="<?php echo plugins_url('/assets/images/portale/17_flat.png', B2S_PLUGIN_FILE) ?>">
340
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
341
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
342
+ <img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
343
 
344
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
345
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
346
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
347
+ <img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
348
+ </div>
349
+ <br>
350
+ <p><?php esc_html_e('With Blog2Social you can share social media posts consisting of texts, links, images, and videos automatically with your followers and readers and customize your posts with individual hashtags, @mentions, or emojis.') ?></p>
351
+ <h4><?php esc_html_e('You can share a link post, a video post, or an image post on the following networks:', 'blog2social') ?></h4>
352
+ <p class="b2s-bold"><?php esc_attr_e('Facebook (Profile & Seiten)') ?></p>
353
+ <p class="b2s-bold"><?php esc_attr_e('Twitter (1 Profil)') ?></p>
354
+ <p class="b2s-bold"><?php esc_attr_e('LinkedIn') ?></p>
355
+ <p class="b2s-bold"><?php esc_attr_e('Pinterest') ?></p>
356
+ <p class="b2s-bold"><?php esc_attr_e('Flickr') ?></p>
357
+ <p class="b2s-bold"><?php esc_attr_e('Diigo') ?></p>
358
+ <p class="b2s-bold"><?php esc_attr_e('Instagram') ?></p>
359
+ <p class="b2s-bold"><?php esc_attr_e('Reddit') ?></p>
360
+ <p class="b2s-bold"><?php esc_attr_e('VKontakte (Profile & Seiten)') ?></p>
361
+ <p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
362
+ <p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
363
+ <p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
364
+ <br>
365
+ <p><?php echo sprintf(__('Under the <a href="%s">Network Settings</a> you can define the network selection.', 'blog2social'), 'admin.php?page=blog2social-network'); ?>
366
+ <br>
367
+ <?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
368
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  </div>
370
  </div>
371
  </div>
views/b2s/ship.php CHANGED
@@ -161,9 +161,9 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
161
  <div class="b2s-network-details-header b2s-margin-top-8">
162
 
163
  <a href="#" class="btn btn-primary btn-sm b2s-network-setting-save b2s-loading-area-save-profile-change">
164
- <?php esc_html_e('Save network collection', 'blog2social') ?>
165
  </a>
166
- <a href="#" class="btn btn-primary btn-sm hidden-sm b2s-network-setting-save b2s-network-setting-save-btn"><?php echo esc_html_e('Info', 'blog2social'); ?></a>
167
  </div>
168
  </div>
169
  </li>
@@ -333,14 +333,16 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
333
  <div class="modal-content">
334
  <div class="modal-header">
335
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-network-setting-save">&times;</button>
336
- <h4 class="modal-title"><?php esc_html_e('Save Network Settings', 'blog2social') ?></h4>
337
  </div>
338
  <div class="modal-body">
339
- <?php esc_html_e('You can save your current network settings as "Standard" network settings for any future sharing activities or as a "Profile" to choose from (Premium).', 'blog2social') ?>
340
  <br><br>
341
- <?php esc_html_e('Your Standard selection will show as activated upon pressing the "share on social media" button on the right hand side bar. You can change these settings any time per click, or choose another network profile (Premium).', 'blog2social') ?>
342
  <br><br>
343
- <?php esc_html_e('You can also pre-define various different sets of networks, for specific social media accounts, target groups, contents or sharing purposes. For example you can define a specific set of networks for sharing your posts images only or for re-sharing your evergreen content on a recurring basis. On the preview-page you may edit your selected or pre-selected networks anytime by simply clicking on the respective network account to select or remove an account from the current sharing scheme.', 'blog2social') ?>
 
 
344
  </div>
345
  </div>
346
  </div>
161
  <div class="b2s-network-details-header b2s-margin-top-8">
162
 
163
  <a href="#" class="btn btn-primary btn-sm b2s-network-setting-save b2s-loading-area-save-profile-change">
164
+ <?php esc_html_e('Save network selection', 'blog2social') ?>
165
  </a>
166
+ <a href="#" class="btn btn-link btn-sm hidden-sm b2s-network-setting-save b2s-network-setting-save-btn"><?php echo esc_html_e('Info', 'blog2social'); ?></a>
167
  </div>
168
  </div>
169
  </li>
333
  <div class="modal-content">
334
  <div class="modal-header">
335
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-network-setting-save">&times;</button>
336
+ <h4 class="modal-title"><?php esc_html_e('Save network selection', 'blog2social') ?></h4>
337
  </div>
338
  <div class="modal-body">
339
+ <?php esc_html_e('You can save your current network selection. This network selection will be loaded automatically next time you open the social media post editor via "Site & Blog Content" ->"Share on Social Media" or "Social Media Posts" ->"Customize & Schedule".', 'blog2social') ?>
340
  <br><br>
341
+ <?php esc_html_e('Your saved networks will be activated for your schedule (green checkmark) in the right side navigation. You can select or deselect social network accounts at any time by clicking on them or connect new social networks on the "+ Add more" icon on top of the navigation bar.', 'blog2social') ?>
342
  <br><br>
343
+ <?php esc_html_e('This allows you to adjust your network selection at any time and save it by clicking on "Save network selection".', 'blog2social') ?>
344
+ <br><br>
345
+ <span class="b2s-bold"><?php esc_html_e('Note: ', 'blog2social') ?></span><?php echo sprintf(__('To define and save more network selections for your posting purposes, you can use the option "Multiple Network collections" (Premium feature) to define <a href="%s" target="_blank">multiple network collections in the social networks section</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('network_mandant_collection'))); ?>
346
  </div>
347
  </div>
348
  </div>