Blog2Social: Social Media Auto Post & Scheduler - Version 4.9.2

Version Description

Usability Optimization

Download this release

Release Info

Developer Blog2Social
Plugin Icon 128x128 Blog2Social: Social Media Auto Post & Scheduler
Version 4.9.2
Comparing to
See all releases

Code changes from version 4.9.1 to 4.9.2

assets/js/b2s/ship.js CHANGED
@@ -690,7 +690,7 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
690
  jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').show();
691
  } else {
692
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", false);
693
- jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').hide();
694
  }
695
  }
696
  }
@@ -897,10 +897,10 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
897
  if (data.networkId == 1 && data.networkType == 0) {
898
  if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + data.networkAuthId + '"]').val() == "1") {
899
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
900
- jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').show();
901
  } else {
902
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", false);
903
- jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').hide();
904
  }
905
  }
906
 
@@ -921,7 +921,6 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
921
  jQuery('#b2sTwitterOrginalPost').val(jQuery('.tw-textarea-input[data-network-auth-id="' + data.networkAuthId + '"]').val());
922
  }
923
  }
924
-
925
  }
926
  }
927
  }
@@ -1072,6 +1071,7 @@ jQuery(document).on('change', '.b2s-post-item-details-release-input-date-select'
1072
  //set orginal edit content for customize sched content
1073
  var content = jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"][data-network-count="-1"]').val();
1074
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').val(content);
 
1075
  }
1076
 
1077
  checkSchedDateTime(jQuery(this).attr('data-network-auth-id'));
@@ -1127,6 +1127,8 @@ jQuery(document).on('click', '.b2s-re-share-btn', function () {
1127
  jQuery(document).on('click', '.b2s-post-item-details-release-input-add', function () {
1128
  var networkAuthId = jQuery(this).attr('data-network-auth-id');
1129
  var netCount = jQuery(this).attr('data-network-count');
 
 
1130
  var netCountNext = parseInt(netCount) + 1;
1131
  var curMode = jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val();
1132
  jQuery(this).hide();
@@ -1137,12 +1139,12 @@ jQuery(document).on('click', '.b2s-post-item-details-release-input-add', functio
1137
  jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
1138
  jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
1139
  jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
 
1140
  if (curMode == 1) {
1141
  //since 4.9.0 custom content
1142
  jQuery('.b2s-post-item-details-release-customize-sched-area-details-row[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
1143
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
1144
  }
1145
-
1146
  //recurrently
1147
  if (curMode == 2) {
1148
  jQuery('.b2s-post-item-details-release-input-interval-select[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
@@ -1599,15 +1601,17 @@ jQuery.validator.addMethod("checkUrl", function (value, element, regexp) {
1599
  jQuery.validator.addClassRules("b2s-post-item-details-item-url-input", {
1600
  checkUrl: /^(https?:\/\/)?[a-zA-Z0-99ÄÖÜöäü-]+([\-\.]{1}[a-zA-Z0-99ÄÖÜöäü-]+)*\.[a-zA-Z0-9-]{2,20}(:[0-9]{1,5})?(\/.*)?$/
1601
  });
1602
- //Twitter TOS 032018 - protected multiple accounts with same content to same time
1603
  jQuery.validator.addMethod("unique", function (value, element, params) {
1604
  var curNetworkAuthId = jQuery(element).attr('data-network-auth-id');
 
1605
  var prefix = params;
1606
  var selector = jQuery.validator.format("[name!='{0}'][unique='{1}']", element.name, prefix);
1607
  var matches = new Array();
1608
- //TOS Network Twitter 032018
1609
- jQuery('.b2s-unique-content').hide();
1610
  jQuery('.tw-textarea-input').removeClass('error');
 
1611
  jQuery(selector).each(function (index, item) {
1612
  //none disabled elements || ignore default content if curSchedMode=1
1613
  if (!jQuery(item).is(':not(:disabled)') || !jQuery(item).is(':visible') || !jQuery('.b2s-post-item[data-network-auth-id="' + jQuery(item).attr('data-network-auth-id') + '"]').is(':visible') || (jQuery(item).attr('data-network-count') == -1 && jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + jQuery(item).attr('data-network-auth-id') + '"] option[value="1"]:selected').length > 0)) {
@@ -1624,6 +1628,8 @@ jQuery.validator.addMethod("unique", function (value, element, params) {
1624
  }
1625
  return matches.length == 0;
1626
  });
 
 
1627
  jQuery.validator.classRuleSettings.unique = {
1628
  unique: true
1629
  };
@@ -1742,6 +1748,7 @@ jQuery("#b2sNetworkSent").validate({
1742
  jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').show();
1743
  jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').html(content[i]['html']);
1744
  jQuery('.b2s-post-approve-info').hide();
 
1745
  if (typeof content[i]['approve'] !== typeof undefined) {
1746
  jQuery('.panel-group[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').addClass('b2s-border-color-warning');
1747
  }
690
  jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').show();
691
  } else {
692
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", false);
693
+ jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').hide();
694
  }
695
  }
696
  }
897
  if (data.networkId == 1 && data.networkType == 0) {
898
  if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + data.networkAuthId + '"]').val() == "1") {
899
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
900
+ jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').show();
901
  } else {
902
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", false);
903
+ jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').hide();
904
  }
905
  }
906
 
921
  jQuery('#b2sTwitterOrginalPost').val(jQuery('.tw-textarea-input[data-network-auth-id="' + data.networkAuthId + '"]').val());
922
  }
923
  }
 
924
  }
925
  }
926
  }
1071
  //set orginal edit content for customize sched content
1072
  var content = jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"][data-network-count="-1"]').val();
1073
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').val(content);
1074
+
1075
  }
1076
 
1077
  checkSchedDateTime(jQuery(this).attr('data-network-auth-id'));
1127
  jQuery(document).on('click', '.b2s-post-item-details-release-input-add', function () {
1128
  var networkAuthId = jQuery(this).attr('data-network-auth-id');
1129
  var netCount = jQuery(this).attr('data-network-count');
1130
+ var networkId = jQuery(this).attr('data-network-id');
1131
+ var networkType = jQuery(this).attr('data-network-type');
1132
  var netCountNext = parseInt(netCount) + 1;
1133
  var curMode = jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val();
1134
  jQuery(this).hide();
1139
  jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
1140
  jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
1141
  jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
1142
+
1143
  if (curMode == 1) {
1144
  //since 4.9.0 custom content
1145
  jQuery('.b2s-post-item-details-release-customize-sched-area-details-row[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
1146
  jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').removeAttr('disabled');
1147
  }
 
1148
  //recurrently
1149
  if (curMode == 2) {
1150
  jQuery('.b2s-post-item-details-release-input-interval-select[data-network-auth-id="' + networkAuthId + '"][data-network-count="' + netCountNext + '"]').show();
1601
  jQuery.validator.addClassRules("b2s-post-item-details-item-url-input", {
1602
  checkUrl: /^(https?:\/\/)?[a-zA-Z0-99ÄÖÜöäü-]+([\-\.]{1}[a-zA-Z0-99ÄÖÜöäü-]+)*\.[a-zA-Z0-9-]{2,20}(:[0-9]{1,5})?(\/.*)?$/
1603
  });
1604
+ //Twitter TOS 032018 - protected multiple accounts with same content to same time ( by all connections)
1605
  jQuery.validator.addMethod("unique", function (value, element, params) {
1606
  var curNetworkAuthId = jQuery(element).attr('data-network-auth-id');
1607
+ var curNetworkId = jQuery(element).attr('data-network-id');
1608
  var prefix = params;
1609
  var selector = jQuery.validator.format("[name!='{0}'][unique='{1}']", element.name, prefix);
1610
  var matches = new Array();
1611
+
1612
+ jQuery('.b2s-unique-content[data-network-id="' + curNetworkId + '"]').hide();
1613
  jQuery('.tw-textarea-input').removeClass('error');
1614
+
1615
  jQuery(selector).each(function (index, item) {
1616
  //none disabled elements || ignore default content if curSchedMode=1
1617
  if (!jQuery(item).is(':not(:disabled)') || !jQuery(item).is(':visible') || !jQuery('.b2s-post-item[data-network-auth-id="' + jQuery(item).attr('data-network-auth-id') + '"]').is(':visible') || (jQuery(item).attr('data-network-count') == -1 && jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + jQuery(item).attr('data-network-auth-id') + '"] option[value="1"]:selected').length > 0)) {
1628
  }
1629
  return matches.length == 0;
1630
  });
1631
+
1632
+
1633
  jQuery.validator.classRuleSettings.unique = {
1634
  unique: true
1635
  };
1748
  jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').show();
1749
  jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').html(content[i]['html']);
1750
  jQuery('.b2s-post-approve-info').hide();
1751
+ jQuery('.b2s-content-info').hide();
1752
  if (typeof content[i]['approve'] !== typeof undefined) {
1753
  jQuery('.panel-group[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').addClass('b2s-border-color-warning');
1754
  }
blog2social.php CHANGED
@@ -7,12 +7,12 @@
7
  * Author: Blog2Social, Adenion
8
  * Text Domain: blog2social
9
  * Domain Path: /languages
10
- * Version: 4.9.1
11
  * Author URI: https://www.blog2social.com
12
  * License: GPL2+
13
  */
14
  //B2SDefine
15
- define('B2S_PLUGIN_VERSION', '491');
16
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
17
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
18
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
7
  * Author: Blog2Social, Adenion
8
  * Text Domain: blog2social
9
  * Domain Path: /languages
10
+ * Version: 4.9.2
11
  * Author URI: https://www.blog2social.com
12
  * License: GPL2+
13
  */
14
  //B2SDefine
15
+ define('B2S_PLUGIN_VERSION', '492');
16
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
17
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
18
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
includes/Ajax/Post.php CHANGED
@@ -170,7 +170,8 @@ class Ajax_Post {
170
 
171
  $b2sShipSend = new B2S_Ship_Save();
172
 
173
- delete_option('B2S_PLUGIN_POST_META_TAGES_' . (int) $post['post_id']);
 
174
 
175
  //since V4.9.1 Instant Share Approve - Facebook Profile
176
  $shareApproveNetworkData = unserialize(B2S_PLUGIN_NETWORK_SHARE_APPROVE);
@@ -225,11 +226,6 @@ class Ajax_Post {
225
  $meta->updateMeta((int) $post['post_id']);
226
  }
227
 
228
- //Nocache
229
- if ($metaCard || $metaOg) {
230
- clean_post_cache((int) $post['post_id']);
231
- }
232
-
233
  $sendData = array("board" => isset($data['board']) ? $data['board'] : '',
234
  "group" => isset($data['group']) ? $data['group'] : '',
235
  "custom_title" => isset($data['custom_title']) ? strip_tags($data['custom_title']) : '',
@@ -760,8 +756,7 @@ class Ajax_Post {
760
  if (is_numeric($_POST['b2s_id']) && is_string($_POST['sched_date'])) {
761
 
762
  //since V4.9.1 Instant Share Approve - Facebook Profile
763
- $shareApprove = (isset($_POST['post_for_approve']) && (int) $_POST['post_for_approve'] = 1) ? 1 : 0;
764
-
765
  $sql = "UPDATE b2s_posts "
766
  . "SET sched_date = '" . date('Y-m-d H:i:s', strtotime($_POST['sched_date'])) . "', "
767
  . "user_timezone = '" . $_POST['user_timezone'] . "', "
@@ -832,7 +827,8 @@ class Ajax_Post {
832
  }
833
  }
834
  delete_option("B2S_PLUGIN_CALENDAR_BLOCKED_" . $_POST['b2s_id']);
835
- delete_option('B2S_PLUGIN_POST_META_TAGES_' . (int) $_POST['post_id']);
 
836
  }
837
  echo json_encode(array('result' => true));
838
  wp_die();
@@ -862,7 +858,8 @@ class Ajax_Post {
862
  $b2sids = array($post['b2s_id']);
863
  /* } */
864
 
865
- delete_option('B2S_PLUGIN_POST_META_TAGES_' . (int) $post['post_id']);
 
866
 
867
  require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
868
  $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
@@ -871,8 +868,9 @@ class Ajax_Post {
871
  foreach ($b2sids as $b2s_id) {
872
  $b2sShipSend = new B2S_Calendar_Save();
873
 
874
- $defaultPostData = array('token' => B2S_PLUGIN_TOKEN,
875
- 'blog_user_id' => B2S_PLUGIN_BLOG_USER_ID,
 
876
  'post_id' => (int) $post['post_id'],
877
  'b2s_id' => (int) $b2s_id,
878
  'default_titel' => isset($post['default_titel']) ? $post['default_titel'] : '',
@@ -882,14 +880,10 @@ class Ajax_Post {
882
 
883
  //is relay post?
884
  if (isset($post['relay_primary_post_id']) && (int) $post['relay_primary_post_id'] > 0 && (int) $b2s_id > 0) {
885
-
886
  if (isset($post['relay_primary_sched_date']) && !empty($post['relay_primary_sched_date']) && isset($post['network_auth_id']) && (int) $post['network_auth_id'] > 0) {
887
-
888
  if (isset($post['b2s'][$post['network_auth_id']]['post_relay_delay'][0]) && (int) $post['b2s'][$post['network_auth_id']]['post_relay_delay'][0] > 0) {
889
-
890
  $sched_date = date('Y-m-d H:i:00', strtotime("+" . $post['b2s'][$post['network_auth_id']]['post_relay_delay'][0] . " minutes", strtotime($post['relay_primary_sched_date'])));
891
  $sched_date_utc = date('Y-m-d H:i:00', strtotime(B2S_Util::getUTCForDate($sched_date, $post['user_timezone'] * (-1))));
892
-
893
  $wpdb->update('b2s_posts', array(
894
  'user_timezone' => $post['user_timezone'],
895
  'publish_date' => "0000-00-00 00:00:00",
@@ -897,23 +891,20 @@ class Ajax_Post {
897
  'sched_date_utc' => $sched_date_utc,
898
  'hook_action' => 2
899
  ), array("id" => $b2s_id), array('%s', '%s', '%s', '%s', '%d'));
900
-
901
  $sched_date = B2S_Util::getCustomDateFormat(date('Y-m-d H:i:00', strtotime($sched_date)), substr(B2S_LANGUAGE, 0, 2));
902
  }
903
  }
904
  } else {
905
 
906
  foreach ($post['b2s'] as $networkAuthId => $data) {
907
-
908
  if (!isset($data['url']) || !isset($data['content']) || !isset($data['network_id'])) {
909
  continue;
910
  }
911
-
912
  //Change/Set MetaTags
913
  if ((int) $data['network_id'] == 1 && $metaOg == false && (int) $post['post_id'] > 0 && isset($data['post_format']) && (int) $data['post_format'] == 0 && isset($post['change_og_meta']) && (int) $post['change_og_meta'] == 1) { //LinkPost
914
  $metaOg = true;
915
  $meta = B2S_Meta::getInstance();
916
- $meta->getMeta((int) $post['post_id']);
917
  if (isset($data['og_title']) && !empty($data['og_title'])) {
918
  $meta->setMeta('og_title', $data['og_title']);
919
  }
@@ -943,11 +934,6 @@ class Ajax_Post {
943
  $meta->updateMeta((int) $post['post_id']);
944
  }
945
 
946
- //Nocache
947
- if ($metaCard || $metaOg) {
948
- clean_post_cache((int) $post['post_id']);
949
- }
950
-
951
  $sendData = array("board" => isset($data['board']) ? $data['board'] : '',
952
  "group" => isset($data['group']) ? $data['group'] : '',
953
  "custom_title" => isset($data['custom_title']) ? strip_tags($data['custom_title']) : '',
@@ -1020,7 +1006,8 @@ class Ajax_Post {
1020
  $lock = $options->_getOption("B2S_PLUGIN_USER_CALENDAR_BLOCKED");
1021
 
1022
  if (isset($_POST['post_id']) && (int) $_POST['post_id'] > 0) {
1023
- delete_option('B2S_PLUGIN_POST_META_TAGES_' . (int) $_POST['post_id']);
 
1024
  }
1025
  if ($lock) {
1026
  delete_option("B2S_PLUGIN_CALENDAR_BLOCKED_" . $lock);
170
 
171
  $b2sShipSend = new B2S_Ship_Save();
172
 
173
+ delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
174
+ delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
175
 
176
  //since V4.9.1 Instant Share Approve - Facebook Profile
177
  $shareApproveNetworkData = unserialize(B2S_PLUGIN_NETWORK_SHARE_APPROVE);
226
  $meta->updateMeta((int) $post['post_id']);
227
  }
228
 
 
 
 
 
 
229
  $sendData = array("board" => isset($data['board']) ? $data['board'] : '',
230
  "group" => isset($data['group']) ? $data['group'] : '',
231
  "custom_title" => isset($data['custom_title']) ? strip_tags($data['custom_title']) : '',
756
  if (is_numeric($_POST['b2s_id']) && is_string($_POST['sched_date'])) {
757
 
758
  //since V4.9.1 Instant Share Approve - Facebook Profile
759
+ $shareApprove = (isset($_POST['post_for_approve']) && (int) $_POST['post_for_approve'] == 1) ? 1 : 0;
 
760
  $sql = "UPDATE b2s_posts "
761
  . "SET sched_date = '" . date('Y-m-d H:i:s', strtotime($_POST['sched_date'])) . "', "
762
  . "user_timezone = '" . $_POST['user_timezone'] . "', "
827
  }
828
  }
829
  delete_option("B2S_PLUGIN_CALENDAR_BLOCKED_" . $_POST['b2s_id']);
830
+ delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $_POST['post_id']);
831
+ delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $_POST['post_id']);
832
  }
833
  echo json_encode(array('result' => true));
834
  wp_die();
858
  $b2sids = array($post['b2s_id']);
859
  /* } */
860
 
861
+ delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
862
+ delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
863
 
864
  require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
865
  $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
868
  foreach ($b2sids as $b2s_id) {
869
  $b2sShipSend = new B2S_Calendar_Save();
870
 
871
+ $defaultPostData = array(
872
+ 'original_blog_user_id' => (int) $post['original_blog_user_id'],
873
+ 'last_edit_blog_user_id' => B2S_PLUGIN_BLOG_USER_ID,
874
  'post_id' => (int) $post['post_id'],
875
  'b2s_id' => (int) $b2s_id,
876
  'default_titel' => isset($post['default_titel']) ? $post['default_titel'] : '',
880
 
881
  //is relay post?
882
  if (isset($post['relay_primary_post_id']) && (int) $post['relay_primary_post_id'] > 0 && (int) $b2s_id > 0) {
 
883
  if (isset($post['relay_primary_sched_date']) && !empty($post['relay_primary_sched_date']) && isset($post['network_auth_id']) && (int) $post['network_auth_id'] > 0) {
 
884
  if (isset($post['b2s'][$post['network_auth_id']]['post_relay_delay'][0]) && (int) $post['b2s'][$post['network_auth_id']]['post_relay_delay'][0] > 0) {
 
885
  $sched_date = date('Y-m-d H:i:00', strtotime("+" . $post['b2s'][$post['network_auth_id']]['post_relay_delay'][0] . " minutes", strtotime($post['relay_primary_sched_date'])));
886
  $sched_date_utc = date('Y-m-d H:i:00', strtotime(B2S_Util::getUTCForDate($sched_date, $post['user_timezone'] * (-1))));
 
887
  $wpdb->update('b2s_posts', array(
888
  'user_timezone' => $post['user_timezone'],
889
  'publish_date' => "0000-00-00 00:00:00",
891
  'sched_date_utc' => $sched_date_utc,
892
  'hook_action' => 2
893
  ), array("id" => $b2s_id), array('%s', '%s', '%s', '%s', '%d'));
 
894
  $sched_date = B2S_Util::getCustomDateFormat(date('Y-m-d H:i:00', strtotime($sched_date)), substr(B2S_LANGUAGE, 0, 2));
895
  }
896
  }
897
  } else {
898
 
899
  foreach ($post['b2s'] as $networkAuthId => $data) {
 
900
  if (!isset($data['url']) || !isset($data['content']) || !isset($data['network_id'])) {
901
  continue;
902
  }
 
903
  //Change/Set MetaTags
904
  if ((int) $data['network_id'] == 1 && $metaOg == false && (int) $post['post_id'] > 0 && isset($data['post_format']) && (int) $data['post_format'] == 0 && isset($post['change_og_meta']) && (int) $post['change_og_meta'] == 1) { //LinkPost
905
  $metaOg = true;
906
  $meta = B2S_Meta::getInstance();
907
+ $res = $meta->getMeta((int) $post['post_id']);
908
  if (isset($data['og_title']) && !empty($data['og_title'])) {
909
  $meta->setMeta('og_title', $data['og_title']);
910
  }
934
  $meta->updateMeta((int) $post['post_id']);
935
  }
936
 
 
 
 
 
 
937
  $sendData = array("board" => isset($data['board']) ? $data['board'] : '',
938
  "group" => isset($data['group']) ? $data['group'] : '',
939
  "custom_title" => isset($data['custom_title']) ? strip_tags($data['custom_title']) : '',
1006
  $lock = $options->_getOption("B2S_PLUGIN_USER_CALENDAR_BLOCKED");
1007
 
1008
  if (isset($_POST['post_id']) && (int) $_POST['post_id'] > 0) {
1009
+ delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $_POST['post_id']);
1010
+ delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $_POST['post_id']);
1011
  }
1012
  if ($lock) {
1013
  delete_option("B2S_PLUGIN_CALENDAR_BLOCKED_" . $lock);
includes/B2S/Calendar/Filter.php CHANGED
@@ -70,7 +70,7 @@ class B2S_Calendar_Filter {
70
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
71
  $addNetwork = ($network_id >= 1) ? $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id) : '';
72
  $addNetworkDetails = ($network_details_id >= 1) ? $wpdb->prepare(' AND b2s_posts.`network_details_id` = %d', $network_details_id) : '';
73
- $approvePosts = " AND (b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0)OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1)";
74
 
75
  $sql = "SELECT b2s_posts.sched_date, "
76
  . "b2s_posts.blog_user_id, "
@@ -94,7 +94,7 @@ class B2S_Calendar_Filter {
94
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
95
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
96
  . "WHERE b2s_posts.publish_link = '' "
97
- . "AND b2s_posts.hide = 0 " . $approvePosts . $addNotAdminPosts . $addNetwork . $addNetworkDetails . " ORDER BY sched_date";
98
 
99
 
100
  $res = self::getBySql($sql);
@@ -106,7 +106,7 @@ class B2S_Calendar_Filter {
106
  global $wpdb;
107
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
108
  $addNetwork = $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id);
109
- $approvePosts = " AND (b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0)OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1)";
110
 
111
  $sql = "SELECT b2s_posts_network_details.network_type, "
112
  . "b2s_posts_network_details.network_display_name, "
@@ -114,7 +114,7 @@ class B2S_Calendar_Filter {
114
  . "FROM b2s_posts "
115
  . "INNER JOIN b2s_posts_network_details ON b2s_posts.network_details_id = b2s_posts_network_details.id "
116
  . "WHERE b2s_posts.sched_date != '0000-00-00 00:00:00' AND b2s_posts.publish_error_code= '' "
117
- . "AND b2s_posts.hide = '0' " . $approvePosts . $addNotAdminPosts . $addNetwork . " GROUP BY b2s_posts.network_details_id";
118
 
119
  $result = $wpdb->get_results($sql);
120
  if (is_array($result) && !empty($result)) {
@@ -141,7 +141,7 @@ class B2S_Calendar_Filter {
141
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
142
  $addNetwork = ($network_id >= 1) ? $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id) : '';
143
  $addNetworkDetails = ($network_details_id >= 1) ? $wpdb->prepare(' AND b2s_posts.`network_details_id` = %d', $network_details_id) : '';
144
- $approvePosts = " AND (b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0)OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1)";
145
 
146
 
147
  $sql = "SELECT b2s_posts.sched_date, "
@@ -166,8 +166,8 @@ class B2S_Calendar_Filter {
166
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
167
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
168
  . "WHERE b2s_posts.publish_link = '' "
169
- . "&& b2s_posts.sched_date BETWEEN '" . date('Y-m-d H:i:s', strtotime($start)) . "' AND '" . date('Y-m-d H:i:s', strtotime($end)) . "' "
170
- . "AND b2s_posts.hide = 0 " . $approvePosts . $addNotAdminPosts . $addNetwork . $addNetworkDetails . " ORDER BY sched_date";
171
 
172
 
173
  $res = self::getBySql($sql);
@@ -208,8 +208,8 @@ class B2S_Calendar_Filter {
208
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
209
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
210
  . "WHERE b2s_posts.id = %d "
211
- . "&& b2s_posts.publish_link = '' "
212
- . "&& b2s_posts.hide = 0 "
213
  . "ORDER BY sched_date";
214
 
215
  $sql = $wpdb->prepare($sql, array($id));
@@ -252,7 +252,7 @@ class B2S_Calendar_Filter {
252
  . "INNER JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
253
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
254
  . "WHERE b2s_posts.post_id = %d "
255
- . "&& b2s_posts.hide = 0 "
256
  . "ORDER BY sched_date";
257
 
258
  $sql = $wpdb->prepare($sql, array($id));
70
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
71
  $addNetwork = ($network_id >= 1) ? $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id) : '';
72
  $addNetworkDetails = ($network_details_id >= 1) ? $wpdb->prepare(' AND b2s_posts.`network_details_id` = %d', $network_details_id) : '';
73
+ $approvePosts = " AND ((b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0)OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1))";
74
 
75
  $sql = "SELECT b2s_posts.sched_date, "
76
  . "b2s_posts.blog_user_id, "
94
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
95
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
96
  . "WHERE b2s_posts.publish_link = '' "
97
+ . "AND b2s_posts.hide = 0 " . $addNotAdminPosts . $addNetwork . $addNetworkDetails . $approvePosts . " ORDER BY sched_date";
98
 
99
 
100
  $res = self::getBySql($sql);
106
  global $wpdb;
107
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
108
  $addNetwork = $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id);
109
+ $approvePosts = " AND ((b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0)OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1))";
110
 
111
  $sql = "SELECT b2s_posts_network_details.network_type, "
112
  . "b2s_posts_network_details.network_display_name, "
114
  . "FROM b2s_posts "
115
  . "INNER JOIN b2s_posts_network_details ON b2s_posts.network_details_id = b2s_posts_network_details.id "
116
  . "WHERE b2s_posts.sched_date != '0000-00-00 00:00:00' AND b2s_posts.publish_error_code= '' "
117
+ . "AND b2s_posts.hide = '0' " . $addNotAdminPosts . $addNetwork . $approvePosts . " GROUP BY b2s_posts.network_details_id";
118
 
119
  $result = $wpdb->get_results($sql);
120
  if (is_array($result) && !empty($result)) {
141
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND b2s_posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
142
  $addNetwork = ($network_id >= 1) ? $wpdb->prepare(' AND b2s_posts_network_details.`network_id` = %d', $network_id) : '';
143
  $addNetworkDetails = ($network_details_id >= 1) ? $wpdb->prepare(' AND b2s_posts.`network_details_id` = %d', $network_details_id) : '';
144
+ $approvePosts = " AND ((b2s_posts.`sched_date_utc` != '0000-00-00 00:00:00' AND b2s_posts.`post_for_approve` = 0) OR (b2s_posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND b2s_posts.`post_for_approve` = 1))";
145
 
146
 
147
  $sql = "SELECT b2s_posts.sched_date, "
166
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
167
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
168
  . "WHERE b2s_posts.publish_link = '' "
169
+ . "AND b2s_posts.sched_date BETWEEN '" . date('Y-m-d H:i:s', strtotime($start)) . "' AND '" . date('Y-m-d H:i:s', strtotime($end)) . "' "
170
+ . "AND b2s_posts.hide = 0 " . $addNotAdminPosts . $addNetwork . $addNetworkDetails . $approvePosts . " ORDER BY sched_date";
171
 
172
 
173
  $res = self::getBySql($sql);
208
  . "LEFT JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
209
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
210
  . "WHERE b2s_posts.id = %d "
211
+ . "AND b2s_posts.publish_link = '' "
212
+ . "AND b2s_posts.hide = 0 "
213
  . "ORDER BY sched_date";
214
 
215
  $sql = $wpdb->prepare($sql, array($id));
252
  . "INNER JOIN b2s_posts_sched_details ON b2s_posts.sched_details_id = b2s_posts_sched_details.id "
253
  . "INNER JOIN " . $wpdb->posts . " post ON post.ID = b2s_posts.post_id "
254
  . "WHERE b2s_posts.post_id = %d "
255
+ . "AND b2s_posts.hide = 0 "
256
  . "ORDER BY sched_date";
257
 
258
  $sql = $wpdb->prepare($sql, array($id));
includes/B2S/Post/Item.php CHANGED
@@ -175,7 +175,7 @@ class B2S_Post_Item {
175
  ) filter
176
  ON posts.`ID` = filter.`post_id`
177
  WHERE $addSearchType $addSearchAuthorId $addSearchPostTitle AND $postTypes $leftJoinWhere";
178
-
179
  $schedResult = $wpdb->get_results($sqlPostsTotal);
180
  if (is_array($schedResult) && !empty($schedResult)) {
181
  $this->postCalendarSchedDates = array();
@@ -506,13 +506,13 @@ class B2S_Post_Item {
506
  'network_auth_id' => $var->network_auth_id,
507
  'network_type' => $var->network_type
508
  );
509
-
510
  if ($var->sched_data != null && !empty($var->sched_data)) {
511
  $schedData = unserialize($var->sched_data);
512
  $data['post_format'] = isset($schedData['post_format']) ? (int) $schedData['post_format'] : 0;
513
  $data['image_url'] = isset($schedData['image_url']) ? $schedData['image_url'] : "";
514
- $data['content'] = isset($schedData['content']) ? $schedData['content'] : "";
515
- $data['url'] = isset($schedData['url']) ? $schedData['url'] : "";
516
  } else {
517
  $postData = get_post($var->post_id);
518
  $data['url'] = (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid);
@@ -540,7 +540,7 @@ class B2S_Post_Item {
540
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `b2s_posts`.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
541
  $addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
542
  $addSearchUserAuthId = ($userAuthId != 0) ? " AND `b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
543
- $sqlData = $wpdb->prepare("SELECT `b2s_posts`.`id`, `b2s_posts`.`post_id`,`blog_user_id`,`v2_id`, `sched_date`,`sched_type`, `relay_primary_post_id`, `b2s_posts_network_details`.`network_id`,`b2s_posts_network_details`.`network_auth_id`,`b2s_posts_network_details`.`network_type`,`b2s_posts_network_details`.`network_display_name` FROM `b2s_posts` LEFT JOIN `b2s_posts_network_details` ON `b2s_posts`.`network_details_id` = `b2s_posts_network_details`.`id` WHERE `b2s_posts`.`hide` = 0 AND ((`b2s_posts`.`sched_date_utc` != '0000-00-00 00:00:00' AND `b2s_posts`.`post_for_approve` = 0) OR (`b2s_posts`.`sched_date_utc` >= '".gmdate('Y-m-d H:i:s')."' AND `b2s_posts`.`post_for_approve` = 1)) AND `b2s_posts`.`sched_type` != 3 AND `b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchUserAuthId AND `b2s_posts`.`post_id` = %d ORDER BY `b2s_posts`.`sched_date` ASC ", $post_id);
544
  $result = $wpdb->get_results($sqlData);
545
  $specialPostingData = array(4 => __('Retweet', 'blog2social'));
546
  if (!empty($result) && is_array($result)) {
@@ -556,10 +556,13 @@ class B2S_Post_Item {
556
  <div class="media">';
557
  $content .='<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . $post_id . '" name="selected-checkbox-item" value="' . $var->id . '" type="checkbox">';
558
 
 
 
 
559
  $content .='<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
560
  <div class="media-body">
561
  <strong>' . $networkName[$var->network_id] . '</strong>
562
- <p class="info">' . $networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' ) . ' | ' . __('scheduled by', 'blog2social') . ' <a href="' . get_author_posts_url($var->blog_user_id) . '">' . (isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-') . '</a> <span class="b2s-post-sched-area-sched-time" data-post-id="' . $var->id . '">' . B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2)) . '</span> ' . $specialPosting . '</p>
563
  <p class="info">';
564
 
565
  if ((int) $var->v2_id == 0) {
175
  ) filter
176
  ON posts.`ID` = filter.`post_id`
177
  WHERE $addSearchType $addSearchAuthorId $addSearchPostTitle AND $postTypes $leftJoinWhere";
178
+
179
  $schedResult = $wpdb->get_results($sqlPostsTotal);
180
  if (is_array($schedResult) && !empty($schedResult)) {
181
  $this->postCalendarSchedDates = array();
506
  'network_auth_id' => $var->network_auth_id,
507
  'network_type' => $var->network_type
508
  );
509
+
510
  if ($var->sched_data != null && !empty($var->sched_data)) {
511
  $schedData = unserialize($var->sched_data);
512
  $data['post_format'] = isset($schedData['post_format']) ? (int) $schedData['post_format'] : 0;
513
  $data['image_url'] = isset($schedData['image_url']) ? $schedData['image_url'] : "";
514
+ $data['content'] = isset($schedData['content']) ? $schedData['content'] : "";
515
+ $data['url'] = isset($schedData['url']) ? $schedData['url'] : "";
516
  } else {
517
  $postData = get_post($var->post_id);
518
  $data['url'] = (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid);
540
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `b2s_posts`.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
541
  $addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
542
  $addSearchUserAuthId = ($userAuthId != 0) ? " AND `b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
543
+ $sqlData = $wpdb->prepare("SELECT `b2s_posts`.`id`, `b2s_posts`.`post_id`,`blog_user_id`,`last_edit_blog_user_id`,`v2_id`, `sched_date`,`sched_type`, `relay_primary_post_id`, `b2s_posts_network_details`.`network_id`,`b2s_posts_network_details`.`network_auth_id`,`b2s_posts_network_details`.`network_type`,`b2s_posts_network_details`.`network_display_name` FROM `b2s_posts` LEFT JOIN `b2s_posts_network_details` ON `b2s_posts`.`network_details_id` = `b2s_posts_network_details`.`id` WHERE `b2s_posts`.`hide` = 0 AND ((`b2s_posts`.`sched_date_utc` != '0000-00-00 00:00:00' AND `b2s_posts`.`post_for_approve` = 0) OR (`b2s_posts`.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `b2s_posts`.`post_for_approve` = 1)) AND `b2s_posts`.`sched_type` != 3 AND `b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchUserAuthId AND `b2s_posts`.`post_id` = %d ORDER BY `b2s_posts`.`sched_date` ASC ", $post_id);
544
  $result = $wpdb->get_results($sqlData);
545
  $specialPostingData = array(4 => __('Retweet', 'blog2social'));
546
  if (!empty($result) && is_array($result)) {
556
  <div class="media">';
557
  $content .='<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . $post_id . '" name="selected-checkbox-item" value="' . $var->id . '" type="checkbox">';
558
 
559
+ $userInfoLastEdit = ((int) $var->last_edit_blog_user_id > 0 && (int) $var->last_edit_blog_user_id != (int) $var->blog_user_id) ? get_user_meta($var->last_edit_blog_user_id) : '';
560
+ $lastEdit = (!empty($userInfoLastEdit)) ? ' | ' . __('last modified by', 'blog2social') . ' <a href="' . get_author_posts_url($var->last_edit_blog_user_id) . '">' . (isset($userInfoLastEdit['nickname'][0]) ? $userInfoLastEdit['nickname'][0] : '-') . '</a> | ' : '';
561
+
562
  $content .='<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
563
  <div class="media-body">
564
  <strong>' . $networkName[$var->network_id] . '</strong>
565
+ <p class="info">' . $networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' ) . ' | ' . __('scheduled by', 'blog2social') . ' <a href="' . get_author_posts_url($var->blog_user_id) . '">' . (isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-') . '</a> <span class="b2s-post-sched-area-sched-time" data-post-id="' . $var->id . '">' .$lastEdit. B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2)) . '</span> ' . $specialPosting . '</p>
566
  <p class="info">';
567
 
568
  if ((int) $var->v2_id == 0) {
includes/B2S/Settings/Item.php CHANGED
@@ -104,7 +104,6 @@ class B2S_Settings_Item {
104
  $content .='<span class="b2s-user-network-shortener-account-detail" data-provider-id="0" style="display:' . (($isShortenerBitlyActive) ? 'inline-block' : 'none') . ';">(' . __('Account', 'blog2social') . ': <span id="b2s-shortener-account-display-name" data-provider-id="0">' . (($isShortenerBitlyActive) ? $this->settings->shortener_bitly_display_name : '') . '</span> <a href="#" class="b2s-shortener-account-change-btn" data-provider-id="0" onclick="wopShortener(\'' . $this->authUrl . '&provider_id=0\', \'Blog2Social Network\'); return false;">' . __('change', 'blog2social') . '</a> | <a href="#" class="b2s-shortener-account-delete-btn" data-provider-id="0">' . __('delete', 'blog2social') . '</a>)</span>';
105
  $content .='</span>';
106
  $content .= '<br>';
107
- $content .= '<br>';
108
  $content .= '<input type="checkbox" value="' . $isCheckedAllowShortcode . '" id="b2s-user-network-settings-allow-shortcode" ' . (($isCheckedAllowShortcode == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-shortcode"> ' . __('allow shortcodes in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowShortcodeModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
109
  $content .= '<br>';
110
  $content .= '<input type="checkbox" value="' . (($isCheckedAllowHashTag == 1) ? 0 : 1) . '" id="b2s-user-network-settings-allow-hashtag" ' . (($isCheckedAllowHashTag == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-hashtag"> ' . __('include Wordpress tags as hashtags in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowHashTagModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
@@ -122,6 +121,7 @@ class B2S_Settings_Item {
122
  $content .='</select> <a href="#" data-toggle="modal" data-target="#b2sInfoContentTwitterModal" class="b2s-info-btn hidden-xs">' . __('Info', 'blog2social') . '</a>';
123
  $content .='<div class="clearfix"></div>';
124
  $content .='<br>';
 
125
  $content .='<hr>';
126
  $content .='<h4>' . __('System', 'blog2social') . '</h4>';
127
  $content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong><br>';
@@ -192,9 +192,9 @@ class B2S_Settings_Item {
192
  } else {
193
  $content .='(' . __('share up to', 'blog2social') . ' ' . $limit[B2S_PLUGIN_USER_VERSION] . ' ' . __('posts per day', 'blog2social') . ') ';
194
  $content .='<a class="b2s-info-btn" href="' . B2S_Tools::getSupportLink('affiliate') . '" target="_blank">' . __('Upgrade', 'blog2social') . '</a>';
195
- }
196
  $content .='</p>';
197
-
198
  $content .='<br>';
199
  $content .='<p class="b2s-bold">' . __('Select by default to automatically share your imported posts', 'blog2social') . '</p>';
200
  $content .= '<form id="b2s-user-network-settings-auto-post-imported-own" method = "post" ' . (!empty($isPremium) ? 'class="b2s-btn-disabled"' : '') . ' >';
104
  $content .='<span class="b2s-user-network-shortener-account-detail" data-provider-id="0" style="display:' . (($isShortenerBitlyActive) ? 'inline-block' : 'none') . ';">(' . __('Account', 'blog2social') . ': <span id="b2s-shortener-account-display-name" data-provider-id="0">' . (($isShortenerBitlyActive) ? $this->settings->shortener_bitly_display_name : '') . '</span> <a href="#" class="b2s-shortener-account-change-btn" data-provider-id="0" onclick="wopShortener(\'' . $this->authUrl . '&provider_id=0\', \'Blog2Social Network\'); return false;">' . __('change', 'blog2social') . '</a> | <a href="#" class="b2s-shortener-account-delete-btn" data-provider-id="0">' . __('delete', 'blog2social') . '</a>)</span>';
105
  $content .='</span>';
106
  $content .= '<br>';
 
107
  $content .= '<input type="checkbox" value="' . $isCheckedAllowShortcode . '" id="b2s-user-network-settings-allow-shortcode" ' . (($isCheckedAllowShortcode == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-shortcode"> ' . __('allow shortcodes in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowShortcodeModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
108
  $content .= '<br>';
109
  $content .= '<input type="checkbox" value="' . (($isCheckedAllowHashTag == 1) ? 0 : 1) . '" id="b2s-user-network-settings-allow-hashtag" ' . (($isCheckedAllowHashTag == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-hashtag"> ' . __('include Wordpress tags as hashtags in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowHashTagModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
121
  $content .='</select> <a href="#" data-toggle="modal" data-target="#b2sInfoContentTwitterModal" class="b2s-info-btn hidden-xs">' . __('Info', 'blog2social') . '</a>';
122
  $content .='<div class="clearfix"></div>';
123
  $content .='<br>';
124
+ $content .='<br>';
125
  $content .='<hr>';
126
  $content .='<h4>' . __('System', 'blog2social') . '</h4>';
127
  $content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong><br>';
192
  } else {
193
  $content .='(' . __('share up to', 'blog2social') . ' ' . $limit[B2S_PLUGIN_USER_VERSION] . ' ' . __('posts per day', 'blog2social') . ') ';
194
  $content .='<a class="b2s-info-btn" href="' . B2S_Tools::getSupportLink('affiliate') . '" target="_blank">' . __('Upgrade', 'blog2social') . '</a>';
195
+ }
196
  $content .='</p>';
197
+
198
  $content .='<br>';
199
  $content .='<p class="b2s-bold">' . __('Select by default to automatically share your imported posts', 'blog2social') . '</p>';
200
  $content .= '<form id="b2s-user-network-settings-auto-post-imported-own" method = "post" ' . (!empty($isPremium) ? 'class="b2s-btn-disabled"' : '') . ' >';
includes/B2S/Ship/Item.php CHANGED
@@ -8,7 +8,7 @@ class B2S_Ship_Item {
8
  private $setPostFormat = array(1, 2, 10, 12);
9
  private $isCommentProfile = array(1, 3, 8, 10, 17);
10
  private $isCommentPage = array(1);
11
- private $isCommentGroup = array(1, 8);
12
  private $allowTag = array(4, 9, 11, 16);
13
  private $allowHtml = array(4, 11, 14);
14
  private $showTitleProfile = array(4, 9, 11, 14, 16);
@@ -41,14 +41,18 @@ class B2S_Ship_Item {
41
  private $getText = array(1, 7, 10, 12, 16, 17, 18);
42
  private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18);
43
  private $maxWeekTimeSelect = 52;
44
- private $networkTos = array(2);
 
45
  private $maxMonthTimeSelect = 12;
46
  private $maxTimeSelect = 50;
47
  private $maxSchedCount = 3;
48
- //private $maxReplayCount = 3;
49
  private $setRelayCount = 0;
50
  private $maxDaySelect = 31;
51
- private $noScheduleRegularly = array(2, 4, 11, 14, 15, 18);
 
 
 
52
  private $defaultImage;
53
  private $postData;
54
  private $postUrl;
@@ -209,7 +213,6 @@ class B2S_Ship_Item {
209
  $message = $this->hook_message($message);
210
  $network_display_name = $data->network_display_name;
211
  $isRequiredTextarea = (in_array($data->networkId, $this->isCommentGroup)) ? '' : 'required="required"';
212
-
213
  $countCharacter = 0;
214
  if ($limit !== false) {
215
  $textareaLimitInfo = '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '">' . (int) $countCharacter . '</span>/' . $limitValue . ' ' . __('characters', 'blog2social') . '</span>';
@@ -265,15 +268,19 @@ class B2S_Ship_Item {
265
  //TOS Facebook 072018
266
  if (isset($shareApproveNetworkData[(int) $data->networkType]) && is_array($shareApproveNetworkData[(int) $data->networkType]) && in_array((int) $data->networkId, $shareApproveNetworkData[(int) $data->networkType])) {
267
  $content .='';
268
- $content .='<div class="b2s-post-approve-info" data-network-auth-id="' . $data->networkAuthId . '"><div class="clearfix"></div><div class="alert alert-warning">' . __('You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post.', 'blog2social').'</div></div>';
269
  }
270
 
271
  //TOS Twitter 030218
272
- if (in_array($data->networkId, $this->networkTos)) {
273
  $content .='';
274
- $content .='<div class="b2s-unique-content" data-network-auth-id="' . $data->networkAuthId . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-danger">' . __('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . __('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . B2S_Tools::getSupportLink('network_tos_blog_032018') . '" target="_blank">' . __('Learn more about this', 'blog2social') . '</a></div></div>';
 
 
 
 
 
275
  }
276
-
277
 
278
  $content .= '<div class="b2s-post-item-details-edit-area" data-network-auth-id="' . $data->networkAuthId . '">';
279
  $content .= (in_array($data->networkId, $this->showBoards) || ($data->networkType == 2 && in_array($data->networkId, $this->showBoardsGroup))) ? $this->getBoardHtml($data->networkAuthId, $data->networkId) : '';
@@ -418,7 +425,7 @@ class B2S_Ship_Item {
418
  $edit .= '</div>';
419
  }
420
  } else {
421
- $edit = '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-text-limit="' . $limitValue . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
422
 
423
  //EDIT Function - Calendar
424
  $meta = $this->hook_meta(array());
@@ -452,8 +459,8 @@ class B2S_Ship_Item {
452
 
453
  if ($networkId == 2) {
454
  $edit = '<div class="row"><br>';
455
- //TOS Twitter 032018
456
- $edit .='<div class="b2s-unique-content col-xs-12" data-network-auth-id="' . $networkAuthId . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-danger">' . __('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . __('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . B2S_Tools::getSupportLink('network_tos_blog_032018') . '" target="_blank">' . __('Learn more about this', 'blog2social') . '</a></div><br></div>';
457
  $edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
458
  $edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-id="' . $networkId . '" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
459
  $edit .= '<img src="' . $this->defaultImage . '" class="tw-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
@@ -508,7 +515,7 @@ class B2S_Ship_Item {
508
  $edit .= '</div>';
509
  $edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
510
  $edit .= $infoArea;
511
- $edit .= '<textarea disabled="disabled" class="form-control b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . $schedCount . '" data-network-text-limit="' . $limitValue . '" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][sched_content][' . $schedCount . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
512
  $edit .= '</div>';
513
  } else {
514
  $edit .= '<div class="col-xs-12">';
@@ -692,6 +699,7 @@ class B2S_Ship_Item {
692
 
693
  $isSelectedSched = (B2S_PLUGIN_USER_VERSION > 0 && (trim(strtolower($this->postStatus)) == 'future' || !empty($this->selSchedDate))) ? 'selected="selected"' : '';
694
  $isSelectedNow = (empty($isSelectedSched)) ? 'selected="selected"' : '';
 
695
 
696
  $shipping = '<br>';
697
  $shipping .= '<select name="b2s[' . $networkAuthId . '][releaseSelect]" data-user-version="' . B2S_PLUGIN_USER_VERSION . '" data-network-type="' . $networkTyp . '" data-network-customize-content="' . (in_array($networkId, $this->allowSchedCustomizeContent) ? 1 : 0) . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" class="form-control b2s-select b2s-post-item-details-release-input-date-select ' . (B2S_PLUGIN_USER_VERSION == 0 ? 'b2s-post-item-details-release-input-date-select-reset' : '') . '" >';
@@ -699,9 +707,8 @@ class B2S_Ship_Item {
699
 
700
  $isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? ' [' . __("PREMIUM", "blog2social") . ']' : '';
701
  $shipping .= '<option value="1" ' . $isSelectedSched . '>' . __('Schedule for specific dates', 'blog2social') . $isPremium . '</option>';
702
- if ($networkTyp != 2 && !in_array($networkId, $this->noScheduleRegularly)) {
703
- $shipping .= '<option value="2">' . __('Schedule Recurrent Post', 'blog2social') . $isPremium . '</option>';
704
- }
705
 
706
  $shipping .= '</select>';
707
 
@@ -750,7 +757,9 @@ class B2S_Ship_Item {
750
 
751
  $shipping .= '<div class="clearfix"></div>';
752
 
753
- if ($networkTyp != 2 && !in_array($networkId, $this->noScheduleRegularly)) {
 
 
754
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-div-interval" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '"><select name="b2s[' . $networkAuthId . '][intervalSelect][' . $schedcount . ']" class="form-control b2s-select b2s-post-item-details-release-input-interval-select" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;" disabled="disabled">';
755
  $shipping .= '<option value="0" selected="selected">' . __('weekly', 'blog2social') . '</option>';
756
  $shipping .= '<option value="1">' . __('monthly', 'blog2social') . '</option>';
@@ -800,7 +809,7 @@ class B2S_Ship_Item {
800
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-label-time" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '"><input type="text" placeholder="' . __('Time', 'blog2social') . '" name="b2s[' . $networkAuthId . '][time][' . $schedcount . ']" data-network-id="' . $networkId . '" data-network-type="' . $networkTyp . '" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" class="b2s-post-item-details-release-input-time form-control" style="display:none;" disabled="disabled" readonly value=""></div>';
801
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-4 del-padding-left b2s-post-item-details-release-area-label-day" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '">';
802
 
803
- if ($networkTyp != 2 && !in_array($networkId, $this->noScheduleRegularly)) {
804
  $shipping .= '<div class="b2s-post-item-details-release-input-daySelect" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;">';
805
  $shipping .= '<input id="b2s-' . $networkAuthId . '-' . $schedcount . '-mo" type="checkbox" name="b2s[' . $networkAuthId . '][mo][' . $schedcount . ']" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" class="form-control b2s-post-item-details-release-input-days b2s-post-item-details-release-input-lable-day-mo" value="1" disabled="disabled"><label for="b2s-' . $networkAuthId . '-' . $schedcount . '-mo" class="b2s-post-item-details-release-input-lable-day">' . __('Mon', 'blog2social') . '</label>'; //MO
806
  $shipping .= '<input id="b2s-' . $networkAuthId . '-' . $schedcount . '-di" type="checkbox" name="b2s[' . $networkAuthId . '][di][' . $schedcount . ']" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" class="form-control b2s-post-item-details-release-input-days b2s-post-item-details-release-input-lable-day-di" value="1" disabled="disabled"><label for="b2s-' . $networkAuthId . '-' . $schedcount . '-di" class="b2s-post-item-details-release-input-lable-day">' . __('Tue', 'blog2social') . '</label>'; //Di
@@ -813,8 +822,10 @@ class B2S_Ship_Item {
813
  }
814
  $shipping .= '</div>';
815
  $shipping .= '<div class="col-md-2 del-padding-left">';
816
- $shipping .= ( $schedcount >= 1) ? '<button class="btn btn-link b2s-post-item-details-release-input-hide" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">-' . __('delete', 'blog2social') . '</button>' : '';
817
- $shipping .= $schedcount < $maxSchedCount - 1 ? '<button class="btn btn-link b2s-post-item-details-release-input-add" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">+' . __('add another post', 'blog2social') . '</button>' : '';
 
 
818
  $shipping .= '</div>';
819
 
820
  //since 4.8.0 customize content
8
  private $setPostFormat = array(1, 2, 10, 12);
9
  private $isCommentProfile = array(1, 3, 8, 10, 17);
10
  private $isCommentPage = array(1);
11
+ private $isCommentGroup = array(1);
12
  private $allowTag = array(4, 9, 11, 16);
13
  private $allowHtml = array(4, 11, 14);
14
  private $showTitleProfile = array(4, 9, 11, 14, 16);
41
  private $getText = array(1, 7, 10, 12, 16, 17, 18);
42
  private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18);
43
  private $maxWeekTimeSelect = 52;
44
+ private $networkTosProfile = array(2);
45
+ private $networkTosGroup = array(8);
46
  private $maxMonthTimeSelect = 12;
47
  private $maxTimeSelect = 50;
48
  private $maxSchedCount = 3;
49
+ //private $maxReplayCount = 3;
50
  private $setRelayCount = 0;
51
  private $maxDaySelect = 31;
52
+ private $noScheduleRegularly = array(2,4, 11, 14, 15, 18);
53
+ private $noScheduleRegularlyPage = array(8);
54
+ private $addNoMoreSchedPage = array(8);
55
+ private $addNoMoreSchedGroup = array(8);
56
  private $defaultImage;
57
  private $postData;
58
  private $postUrl;
213
  $message = $this->hook_message($message);
214
  $network_display_name = $data->network_display_name;
215
  $isRequiredTextarea = (in_array($data->networkId, $this->isCommentGroup)) ? '' : 'required="required"';
 
216
  $countCharacter = 0;
217
  if ($limit !== false) {
218
  $textareaLimitInfo = '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '">' . (int) $countCharacter . '</span>/' . $limitValue . ' ' . __('characters', 'blog2social') . '</span>';
268
  //TOS Facebook 072018
269
  if (isset($shareApproveNetworkData[(int) $data->networkType]) && is_array($shareApproveNetworkData[(int) $data->networkType]) && in_array((int) $data->networkId, $shareApproveNetworkData[(int) $data->networkType])) {
270
  $content .='';
271
+ $content .='<div class="b2s-post-approve-info" data-network-auth-id="' . $data->networkAuthId . '"><div class="clearfix"></div><div class="alert alert-warning">' . __('You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post.', 'blog2social') . '</div></div>';
272
  }
273
 
274
  //TOS Twitter 030218
275
+ if ($data->networkType == 0 && in_array($data->networkId, $this->networkTosProfile)) {
276
  $content .='';
277
+ $content .='<div class="b2s-unique-content" data-network-id="' . $data->networkId . '" data-network-auth-id="' . $data->networkAuthId . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-danger">' . __('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . __('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . B2S_Tools::getSupportLink('network_tos_blog_032018') . '" target="_blank">' . __('Learn more about this', 'blog2social') . '</a></div></div>';
278
+ }
279
+ //TOS Xing Group 080218
280
+ if ($data->networkType == 2 && in_array($data->networkId, $this->networkTosGroup)) {
281
+ $content .='';
282
+ $content .='<div class="b2s-content-info" data-network-id="' . $data->networkId . '" data-network-auth-id="' . $data->networkAuthId . '"><div class="clearfix"></div><div class="alert alert-warning">' . __('Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups.', 'blog2social') . ' <a href="' . B2S_Tools::getSupportLink('network_tos_blog_082018') . '" target="_blank">' . __('Read more', 'blog2social') . '</a></div></div>';
283
  }
 
284
 
285
  $content .= '<div class="b2s-post-item-details-edit-area" data-network-auth-id="' . $data->networkAuthId . '">';
286
  $content .= (in_array($data->networkId, $this->showBoards) || ($data->networkType == 2 && in_array($data->networkId, $this->showBoardsGroup))) ? $this->getBoardHtml($data->networkAuthId, $data->networkId) : '';
425
  $edit .= '</div>';
426
  }
427
  } else {
428
+ $edit = '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . $networkId . '" data-network-text-limit="' . $limitValue . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
429
 
430
  //EDIT Function - Calendar
431
  $meta = $this->hook_meta(array());
459
 
460
  if ($networkId == 2) {
461
  $edit = '<div class="row"><br>';
462
+ //TOS Twitter 032018
463
+ $edit .='<div class="b2s-unique-content col-xs-12" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-danger">' . __('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . __('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . B2S_Tools::getSupportLink('network_tos_blog_032018') . '" target="_blank">' . __('Learn more about this', 'blog2social') . '</a></div><br></div>';
464
  $edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
465
  $edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-id="' . $networkId . '" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
466
  $edit .= '<img src="' . $this->defaultImage . '" class="tw-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
515
  $edit .= '</div>';
516
  $edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
517
  $edit .= $infoArea;
518
+ $edit .= '<textarea disabled="disabled" class="form-control b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . $schedCount . '" data-network-text-limit="' . $limitValue . '" data-network-id="' . $networkId . '" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][sched_content][' . $schedCount . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
519
  $edit .= '</div>';
520
  } else {
521
  $edit .= '<div class="col-xs-12">';
699
 
700
  $isSelectedSched = (B2S_PLUGIN_USER_VERSION > 0 && (trim(strtolower($this->postStatus)) == 'future' || !empty($this->selSchedDate))) ? 'selected="selected"' : '';
701
  $isSelectedNow = (empty($isSelectedSched)) ? 'selected="selected"' : '';
702
+ $showSchedRegularly = (!($networkTyp == 2 || (in_array($networkId, $this->noScheduleRegularly)) || ($networkTyp == 1 && in_array($networkId, $this->noScheduleRegularlyPage)))) ? true : false;
703
 
704
  $shipping = '<br>';
705
  $shipping .= '<select name="b2s[' . $networkAuthId . '][releaseSelect]" data-user-version="' . B2S_PLUGIN_USER_VERSION . '" data-network-type="' . $networkTyp . '" data-network-customize-content="' . (in_array($networkId, $this->allowSchedCustomizeContent) ? 1 : 0) . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" class="form-control b2s-select b2s-post-item-details-release-input-date-select ' . (B2S_PLUGIN_USER_VERSION == 0 ? 'b2s-post-item-details-release-input-date-select-reset' : '') . '" >';
707
 
708
  $isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? ' [' . __("PREMIUM", "blog2social") . ']' : '';
709
  $shipping .= '<option value="1" ' . $isSelectedSched . '>' . __('Schedule for specific dates', 'blog2social') . $isPremium . '</option>';
710
+
711
+ $shipping .= ($showSchedRegularly) ? '<option value="2">' . __('Schedule Recurrent Post', 'blog2social') . $isPremium . '</option>' : '';
 
712
 
713
  $shipping .= '</select>';
714
 
757
 
758
  $shipping .= '<div class="clearfix"></div>';
759
 
760
+
761
+
762
+ if ($showSchedRegularly) {
763
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-div-interval" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '"><select name="b2s[' . $networkAuthId . '][intervalSelect][' . $schedcount . ']" class="form-control b2s-select b2s-post-item-details-release-input-interval-select" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;" disabled="disabled">';
764
  $shipping .= '<option value="0" selected="selected">' . __('weekly', 'blog2social') . '</option>';
765
  $shipping .= '<option value="1">' . __('monthly', 'blog2social') . '</option>';
809
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-label-time" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '"><input type="text" placeholder="' . __('Time', 'blog2social') . '" name="b2s[' . $networkAuthId . '][time][' . $schedcount . ']" data-network-id="' . $networkId . '" data-network-type="' . $networkTyp . '" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" class="b2s-post-item-details-release-input-time form-control" style="display:none;" disabled="disabled" readonly value=""></div>';
810
  $shipping .= '<div class="col-xs-12 col-sm-6 col-md-4 del-padding-left b2s-post-item-details-release-area-label-day" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '">';
811
 
812
+ if ($showSchedRegularly) {
813
  $shipping .= '<div class="b2s-post-item-details-release-input-daySelect" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;">';
814
  $shipping .= '<input id="b2s-' . $networkAuthId . '-' . $schedcount . '-mo" type="checkbox" name="b2s[' . $networkAuthId . '][mo][' . $schedcount . ']" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" class="form-control b2s-post-item-details-release-input-days b2s-post-item-details-release-input-lable-day-mo" value="1" disabled="disabled"><label for="b2s-' . $networkAuthId . '-' . $schedcount . '-mo" class="b2s-post-item-details-release-input-lable-day">' . __('Mon', 'blog2social') . '</label>'; //MO
815
  $shipping .= '<input id="b2s-' . $networkAuthId . '-' . $schedcount . '-di" type="checkbox" name="b2s[' . $networkAuthId . '][di][' . $schedcount . ']" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" class="form-control b2s-post-item-details-release-input-days b2s-post-item-details-release-input-lable-day-di" value="1" disabled="disabled"><label for="b2s-' . $networkAuthId . '-' . $schedcount . '-di" class="b2s-post-item-details-release-input-lable-day">' . __('Tue', 'blog2social') . '</label>'; //Di
822
  }
823
  $shipping .= '</div>';
824
  $shipping .= '<div class="col-md-2 del-padding-left">';
825
+ if (!($networkTyp >= 1 && (in_array($networkId, $this->addNoMoreSchedPage) || in_array($networkId, $this->addNoMoreSchedGroup)))) {
826
+ $shipping .= ( $schedcount >= 1) ? '<button class="btn btn-link b2s-post-item-details-release-input-hide" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">-' . __('delete', 'blog2social') . '</button>' : '';
827
+ $shipping .= $schedcount < $maxSchedCount - 1 ? '<button class="btn btn-link b2s-post-item-details-release-input-add" data-network-id="' . $networkId . '" data-network-type="' . $networkTyp . '" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">+' . __('add another post', 'blog2social') . '</button>' : '';
828
+ }
829
  $shipping .= '</div>';
830
 
831
  //since 4.8.0 customize content
includes/B2S/Ship/Save.php CHANGED
@@ -205,10 +205,15 @@ class B2S_Ship_Save {
205
 
206
  unset($serializeData['network_type']);
207
  unset($serializeData['network_display_name']);
208
- unset($serializeData['token']);
209
- unset($serializeData['blog_user_id']);
210
  unset($serializeData['post_id']);
211
  unset($serializeData['image']);
 
 
 
 
 
 
 
212
 
213
  $printSchedDate = array();
214
  //mode: once schedule
@@ -324,7 +329,7 @@ class B2S_Ship_Save {
324
  if (isset($data['b2s_id']) && $data['b2s_id'] > 0) {
325
  $wpdb->update('b2s_posts', array(
326
  'post_id' => $data['post_id'],
327
- 'blog_user_id' => $data['blog_user_id'],
328
  'user_timezone' => $schedData['user_timezone'],
329
  'publish_date' => "0000-00-00 00:00:00",
330
  'sched_details_id' => $schedDate['sched_details_id'],
@@ -353,7 +358,7 @@ class B2S_Ship_Save {
353
  //since V4.8.0 relay posts
354
  if (!empty($relayData) && is_array($relayData)) {
355
  $internal_post_id = $wpdb->insert_id;
356
- $relaySchedData = array('user_timezone' => $schedData['user_timezone'], 'sched_date' => $schedDate['sched_date'], 'sched_date_utc' => $schedDate['sched_date_utc'], 'post_id' => $data['post_id'], 'blog_user_id' => $data['blog_user_id']);
357
  $relayResult = $this->saveRelayDetails((int) $internal_post_id, $relayData, $relaySchedData);
358
  $printSchedDate = array_merge($printSchedDate, $relayResult);
359
  }
@@ -369,16 +374,16 @@ class B2S_Ship_Save {
369
  $html = "";
370
  $data['token'] = B2S_PLUGIN_TOKEN;
371
  if ($info) {
372
- $html .='<br><div class="alert alert-warning"><b>' . __('For sharing your posts on personal Facebook Profiles you can now use Facebook Instant Sharing', 'blog2social') . '</b> (<a target="_blank" href="'.B2S_Tools::getSupportLink('network_tos_faq_news_072018').'">'.__('Read why','blog2social').'</a>).';
373
  $html .='<br><br>';
374
- $html .='<b>'.__('This is how it works:', 'blog2social') . '</b><br>';
375
  $html .= __('-To share your post immediately, click the "Share" button next to your selected Facebook profile below.', 'blog2social') . '<br>';
376
  $html .= __('-For scheduled posts, Blog2Social will save your post and move it to the "Scheduled Posts" tab on your "Posts & Sharing" navigation bar. On your scheduled date and time, your post will move to the "Instant Sharing" tab and you can click on "Share" to post it to your Facebook Profile instantly.', 'blog2social');
377
  $html .='</div>';
378
  }
379
-
380
  $approveLink = '<a href="#" class="btn btn-primary" onclick="wopApprove(\'' . B2S_PLUGIN_API_ENDPOINT . 'instant/share.php?data=' . base64_encode(serialize($data)) . '\', \'Blog2Social\'); return false;" target="_blank"><i class="glyphicon glyphicon-share"></i> ' . __('share', 'blog2social') . '</a>';
381
- $html .= '<span class="text-warning">'.$approveLink.' (' . __('Please share your Facebook post now', 'blog2social') .')</span><br>';
382
  return $html;
383
  }
384
 
205
 
206
  unset($serializeData['network_type']);
207
  unset($serializeData['network_display_name']);
 
 
208
  unset($serializeData['post_id']);
209
  unset($serializeData['image']);
210
+ //insert mode
211
+ unset($serializeData['token']);
212
+ unset($serializeData['blog_user_id']);
213
+ //update mode
214
+ unset($serializeData['original_blog_user_id']);
215
+ unset($serializeData['last_edit_blog_user_id']);
216
+
217
 
218
  $printSchedDate = array();
219
  //mode: once schedule
329
  if (isset($data['b2s_id']) && $data['b2s_id'] > 0) {
330
  $wpdb->update('b2s_posts', array(
331
  'post_id' => $data['post_id'],
332
+ 'last_edit_blog_user_id' => $data['last_edit_blog_user_id'],
333
  'user_timezone' => $schedData['user_timezone'],
334
  'publish_date' => "0000-00-00 00:00:00",
335
  'sched_details_id' => $schedDate['sched_details_id'],
358
  //since V4.8.0 relay posts
359
  if (!empty($relayData) && is_array($relayData)) {
360
  $internal_post_id = $wpdb->insert_id;
361
+ $relaySchedData = array('user_timezone' => $schedData['user_timezone'], 'sched_date' => $schedDate['sched_date'], 'sched_date_utc' => $schedDate['sched_date_utc'], 'post_id' => $data['post_id'], 'blog_user_id' => ( isset($data['original_blog_user_id']) ? $data['original_blog_user_id'] : $data['blog_user_id'] )); //update - insert
362
  $relayResult = $this->saveRelayDetails((int) $internal_post_id, $relayData, $relaySchedData);
363
  $printSchedDate = array_merge($printSchedDate, $relayResult);
364
  }
374
  $html = "";
375
  $data['token'] = B2S_PLUGIN_TOKEN;
376
  if ($info) {
377
+ $html .='<br><div class="alert alert-warning"><b>' . __('For sharing your posts on personal Facebook Profiles you can now use Facebook Instant Sharing', 'blog2social') . '</b> (<a target="_blank" href="' . B2S_Tools::getSupportLink('network_tos_faq_news_072018') . '">' . __('Read why', 'blog2social') . '</a>).';
378
  $html .='<br><br>';
379
+ $html .='<b>' . __('This is how it works:', 'blog2social') . '</b><br>';
380
  $html .= __('-To share your post immediately, click the "Share" button next to your selected Facebook profile below.', 'blog2social') . '<br>';
381
  $html .= __('-For scheduled posts, Blog2Social will save your post and move it to the "Scheduled Posts" tab on your "Posts & Sharing" navigation bar. On your scheduled date and time, your post will move to the "Instant Sharing" tab and you can click on "Share" to post it to your Facebook Profile instantly.', 'blog2social');
382
  $html .='</div>';
383
  }
384
+
385
  $approveLink = '<a href="#" class="btn btn-primary" onclick="wopApprove(\'' . B2S_PLUGIN_API_ENDPOINT . 'instant/share.php?data=' . base64_encode(serialize($data)) . '\', \'Blog2Social\'); return false;" target="_blank"><i class="glyphicon glyphicon-share"></i> ' . __('share', 'blog2social') . '</a>';
386
+ $html .= '<span class="text-warning">' . $approveLink . ' (' . __('Please share your Facebook post now', 'blog2social') . ')</span><br>';
387
  return $html;
388
  }
389
 
includes/Loader.php CHANGED
@@ -20,6 +20,9 @@ class B2S_Loader {
20
  }
21
 
22
  public function call_global_hooks() {
 
 
 
23
  require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
24
  require_once(B2S_PLUGIN_DIR . 'includes/B2S/AutoPost.php');
25
  require_once(B2S_PLUGIN_DIR . 'includes/B2S/Rating.php');
@@ -103,6 +106,13 @@ class B2S_Loader {
103
  B2S_Meta::getInstance()->_run();
104
  }
105
 
 
 
 
 
 
 
 
106
  public function plugin_deactivate_add_modal() {
107
  include_once(B2S_PLUGIN_DIR . '/views/b2s/partials/plugin-deactivate-modal.php');
108
  }
@@ -1129,6 +1139,7 @@ class B2S_Loader {
1129
  `id` int(11) NOT NULL AUTO_INCREMENT,
1130
  `post_id` int(11) NOT NULL,
1131
  `blog_user_id` int(11) NOT NULL,
 
1132
  `user_timezone` TINYINT NOT NULL DEFAULT '0',
1133
  `sched_details_id` INT NOT NULL,
1134
  `sched_type` TINYINT NOT NULL DEFAULT '0',
@@ -1160,13 +1171,15 @@ class B2S_Loader {
1160
  $b2sPostsColsData[] = $value->Field;
1161
  }
1162
  }
 
 
 
1163
  if (!in_array("post_for_relay", $b2sPostsColsData)) {
1164
  $wpdb->query("ALTER TABLE b2s_posts ADD post_for_relay TINYINT NOT NULL DEFAULT '0'");
1165
  }
1166
  if (!in_array("post_for_approve", $b2sPostsColsData)) {
1167
  $wpdb->query("ALTER TABLE b2s_posts ADD post_for_approve TINYINT NOT NULL DEFAULT '0'");
1168
  }
1169
-
1170
  if (!in_array("relay_primary_post_id", $b2sPostsColsData)) {
1171
  $wpdb->query("ALTER TABLE b2s_posts ADD relay_primary_post_id int(11) NOT NULL DEFAULT '0'");
1172
  $wpdb->query('ALTER TABLE `b2s_posts` ADD INDEX(`relay_primary_post_id`)');
@@ -1177,7 +1190,7 @@ class B2S_Loader {
1177
  }
1178
 
1179
  $keys = $wpdb->get_results('SHOW INDEX FROM `b2s_posts`');
1180
- $allowIndexPosts = array('PRIMARY', 'post_id', 'blog_user_id', 'sched_details_id', 'sched_date', 'sched_date_utc' . 'publish_date', 'relay_primary_post_id', 'hook_action', 'hide');
1181
  foreach ($keys as $k => $value) {
1182
  if (!in_array($value->Key_name, $allowIndexPosts)) {
1183
  $wpdb->query('ALTER TABLE `b2s_posts` DROP INDEX ' . $value->Key_name);
20
  }
21
 
22
  public function call_global_hooks() {
23
+
24
+ $this->b2s_register_custom_post_type();
25
+
26
  require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
27
  require_once(B2S_PLUGIN_DIR . 'includes/B2S/AutoPost.php');
28
  require_once(B2S_PLUGIN_DIR . 'includes/B2S/Rating.php');
106
  B2S_Meta::getInstance()->_run();
107
  }
108
 
109
+ private function b2s_register_custom_post_type() {
110
+ if (post_type_exists("b2s_ex_post")) {
111
+ return;
112
+ }
113
+ register_post_type('b2s_ex_post', array('public' => false, 'label' => 'Related Posts for Blog2Social'));
114
+ }
115
+
116
  public function plugin_deactivate_add_modal() {
117
  include_once(B2S_PLUGIN_DIR . '/views/b2s/partials/plugin-deactivate-modal.php');
118
  }
1139
  `id` int(11) NOT NULL AUTO_INCREMENT,
1140
  `post_id` int(11) NOT NULL,
1141
  `blog_user_id` int(11) NOT NULL,
1142
+ `last_edit_blog_user_id` int(11) NOT NULL,
1143
  `user_timezone` TINYINT NOT NULL DEFAULT '0',
1144
  `sched_details_id` INT NOT NULL,
1145
  `sched_type` TINYINT NOT NULL DEFAULT '0',
1171
  $b2sPostsColsData[] = $value->Field;
1172
  }
1173
  }
1174
+ if (!in_array("last_edit_blog_user_id", $b2sPostsColsData)) {
1175
+ $wpdb->query("ALTER TABLE b2s_posts ADD last_edit_blog_user_id INT NOT NULL DEFAULT '0'");
1176
+ }
1177
  if (!in_array("post_for_relay", $b2sPostsColsData)) {
1178
  $wpdb->query("ALTER TABLE b2s_posts ADD post_for_relay TINYINT NOT NULL DEFAULT '0'");
1179
  }
1180
  if (!in_array("post_for_approve", $b2sPostsColsData)) {
1181
  $wpdb->query("ALTER TABLE b2s_posts ADD post_for_approve TINYINT NOT NULL DEFAULT '0'");
1182
  }
 
1183
  if (!in_array("relay_primary_post_id", $b2sPostsColsData)) {
1184
  $wpdb->query("ALTER TABLE b2s_posts ADD relay_primary_post_id int(11) NOT NULL DEFAULT '0'");
1185
  $wpdb->query('ALTER TABLE `b2s_posts` ADD INDEX(`relay_primary_post_id`)');
1190
  }
1191
 
1192
  $keys = $wpdb->get_results('SHOW INDEX FROM `b2s_posts`');
1193
+ $allowIndexPosts = array('PRIMARY', 'post_id', 'blog_user_id', 'sched_details_id', 'sched_date', 'sched_date_utc', 'publish_date', 'relay_primary_post_id', 'hook_action', 'hide');
1194
  foreach ($keys as $k => $value) {
1195
  if (!in_array($value->Key_name, $allowIndexPosts)) {
1196
  $wpdb->query('ALTER TABLE `b2s_posts` DROP INDEX ' . $value->Key_name);
includes/Tools.php CHANGED
@@ -128,23 +128,23 @@ class B2S_Tools {
128
  }
129
 
130
  //TOS Twitter 032018
131
- //BTN: More information
132
  if ($type == 'network_tos_faq_032018') {
133
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/3/127/en/twitter-terms-of-service-update-february-2018-common-questions.html' : 'https://www.blog2social.com/de/faq/content/3/127/de/twitter-aenderung-der-allgemeinen-geschaeftsbedingungen-update-februar-2018-haeufig-gestellte-fragen.html');
134
  }
135
- //BTN: More Information about these changes.
136
  if ($type == 'network_tos_faq_news_032018') {
137
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/news/34/en/version-47-twitter-terms-of-service-update.html' : 'https://www.blog2social.com/de/faq/news/30/de/version-47-twitter-update-der-allgemeinen-geschaeftsbedingungen.html');
138
  }
139
- //BTN: Learn more about this
140
  if ($type == 'network_tos_blog_032018') {
141
  return (($lang == 'en') ? 'https://www.blog2social.com/en/blog/how-new-twitter-rules-impact-your-social-media-marketing' : 'https://www.blog2social.com/de/blog/neue-twitter-regeln-social-media-marketing');
142
  }
143
- //BTN: read more
144
  if ($type == 'network_tos_faq_news_072018') {
145
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/news/39/en/version-491-_-facebook-profile-changes-_-introducing-facebook-instant-sharing.html' : 'https://www.blog2social.com/de/faq/news/35/de/version-491-_-facebook_profil_aenderungen-_-neue-funktion-facebook-instant-sharing.html');
146
- }
147
- //BTN: introduction
148
  if ($type == 'network_tos_faq_072018') {
149
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/3/135/en/how-to-share-on-facebook-profiles-&-pages-and-in-events-&-groups-with-facebook-instant-sharing.html' : 'https://www.blog2social.com/de/faq/content/3/136/de/mit-facebook-instant-sharing-auf-facebook_profilen-_seiten-sowie-in-_veranstaltungen-und-_gruppen-teilen.html');
150
  }
@@ -152,13 +152,10 @@ class B2S_Tools {
152
  if ($type == 'network_tos_faq_2_072018') {
153
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/11/136/en/converting-your-facebook-profile-to-a-facebook-page.html' : 'https://www.blog2social.com/de/faq/content/11/137/de/facebook_profil-in-eine-facebook_seite-umwandeln.html');
154
  }
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
  }
163
 
164
  public static function getAffiliateId() {
128
  }
129
 
130
  //TOS Twitter 032018
131
+ //BTN: More information Twitter
132
  if ($type == 'network_tos_faq_032018') {
133
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/3/127/en/twitter-terms-of-service-update-february-2018-common-questions.html' : 'https://www.blog2social.com/de/faq/content/3/127/de/twitter-aenderung-der-allgemeinen-geschaeftsbedingungen-update-februar-2018-haeufig-gestellte-fragen.html');
134
  }
135
+ //BTN: More Information about these changes. Twitter
136
  if ($type == 'network_tos_faq_news_032018') {
137
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/news/34/en/version-47-twitter-terms-of-service-update.html' : 'https://www.blog2social.com/de/faq/news/30/de/version-47-twitter-update-der-allgemeinen-geschaeftsbedingungen.html');
138
  }
139
+ //BTN: Learn more about this Twitter
140
  if ($type == 'network_tos_blog_032018') {
141
  return (($lang == 'en') ? 'https://www.blog2social.com/en/blog/how-new-twitter-rules-impact-your-social-media-marketing' : 'https://www.blog2social.com/de/blog/neue-twitter-regeln-social-media-marketing');
142
  }
143
+ //BTN: read more Facebook
144
  if ($type == 'network_tos_faq_news_072018') {
145
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/news/39/en/version-491-_-facebook-profile-changes-_-introducing-facebook-instant-sharing.html' : 'https://www.blog2social.com/de/faq/news/35/de/version-491-_-facebook_profil_aenderungen-_-neue-funktion-facebook-instant-sharing.html');
146
+ }
147
+ //BTN: introduction Facebook
148
  if ($type == 'network_tos_faq_072018') {
149
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/3/135/en/how-to-share-on-facebook-profiles-&-pages-and-in-events-&-groups-with-facebook-instant-sharing.html' : 'https://www.blog2social.com/de/faq/content/3/136/de/mit-facebook-instant-sharing-auf-facebook_profilen-_seiten-sowie-in-_veranstaltungen-und-_gruppen-teilen.html');
150
  }
152
  if ($type == 'network_tos_faq_2_072018') {
153
  return (($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/11/136/en/converting-your-facebook-profile-to-a-facebook-page.html' : 'https://www.blog2social.com/de/faq/content/11/137/de/facebook_profil-in-eine-facebook_seite-umwandeln.html');
154
  }
155
+ //BTN: read more Xing
156
+ if ($type == 'network_tos_blog_082018') {
157
+ return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/content/3/137/en/how-to-successfully-post-to-xing-groups.html' : 'https://www.blog2social.com/de/faq/content/3/135/de/so-gelingt-ihnen-das-erfolgreiche-teilen-in-xing_gruppen.html';
158
+ }
 
 
 
159
  }
160
 
161
  public static function getAffiliateId() {
includes/Util.php CHANGED
@@ -54,10 +54,10 @@ class B2S_Util {
54
  }
55
 
56
  public static function getMetaTags($postId = 0, $postUrl = '', $network = 1) {
57
-
58
  //GETSTOREEDDATA
59
  if ((int) $postId != 0) {
60
- $metaData = get_option('B2S_PLUGIN_POST_META_TAGES_' . $postId);
61
  if ($metaData !== false && is_array($metaData)) {
62
  return $metaData;
63
  }
@@ -69,7 +69,6 @@ class B2S_Util {
69
  $postUrl = $postUrl . ((parse_url($postUrl, PHP_URL_QUERY) ? '&' : '?') . 'no_cache=1'); //nocache
70
  $html = self::b2sFileGetContents($postUrl);
71
  if (!empty($html) && $html !== false) {
72
- $type = ($network == 2) ? 'twitter' : 'og';
73
  //Search rist OG Parameter
74
  $temp = self::b2sGetAllTags($html, $type);
75
  foreach ($getTags as $k => $v) {
@@ -94,7 +93,7 @@ class B2S_Util {
94
  }
95
  //STOREDATA
96
  if ((int) $postId != 0) {
97
- update_option('B2S_PLUGIN_POST_META_TAGES_' . $postId, $param);
98
  }
99
  return $param;
100
  }
@@ -178,7 +177,10 @@ class B2S_Util {
178
  }
179
 
180
  private static function b2sGetAllTags($html, $type = 'og') {
181
- $search = ($type = 'og') ? 'property' : 'name';
 
 
 
182
  $list = array();
183
  $doc = new DOMDocument();
184
  if (function_exists('mb_convert_encoding')) {
@@ -189,15 +191,18 @@ class B2S_Util {
189
  $metas = $doc->getElementsByTagName('meta');
190
  for ($i = 0; $i < $metas->length; $i++) {
191
  $meta = $metas->item($i);
192
- if ($meta->getAttribute($search) == $type . ':title') {
193
  $list['title'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
 
194
  }
195
- if ($meta->getAttribute($search) == $type . ':description') {
196
  $desc = self::cleanContent(strip_shortcodes($meta->getAttribute('content')));
197
  $list['description'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($desc) : $desc);
 
198
  }
199
- if ($meta->getAttribute($search) == $type . ':image') {
200
  $list['image'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
 
201
  }
202
  }
203
  return $list;
54
  }
55
 
56
  public static function getMetaTags($postId = 0, $postUrl = '', $network = 1) {
57
+ $type = ($network == 2) ? 'twitter' : 'og';
58
  //GETSTOREEDDATA
59
  if ((int) $postId != 0) {
60
+ $metaData = get_option('B2S_PLUGIN_POST_META_TAGES_' . strtoupper($type) . '_' . $postId);
61
  if ($metaData !== false && is_array($metaData)) {
62
  return $metaData;
63
  }
69
  $postUrl = $postUrl . ((parse_url($postUrl, PHP_URL_QUERY) ? '&' : '?') . 'no_cache=1'); //nocache
70
  $html = self::b2sFileGetContents($postUrl);
71
  if (!empty($html) && $html !== false) {
 
72
  //Search rist OG Parameter
73
  $temp = self::b2sGetAllTags($html, $type);
74
  foreach ($getTags as $k => $v) {
93
  }
94
  //STOREDATA
95
  if ((int) $postId != 0) {
96
+ update_option('B2S_PLUGIN_POST_META_TAGES_' . strtoupper($type) . '_' . $postId, $param);
97
  }
98
  return $param;
99
  }
177
  }
178
 
179
  private static function b2sGetAllTags($html, $type = 'og') {
180
+ $titleFound = false;
181
+ $descriptionFound = false;
182
+ $imageFound = false;
183
+ $search = 'property';
184
  $list = array();
185
  $doc = new DOMDocument();
186
  if (function_exists('mb_convert_encoding')) {
191
  $metas = $doc->getElementsByTagName('meta');
192
  for ($i = 0; $i < $metas->length; $i++) {
193
  $meta = $metas->item($i);
194
+ if ($meta->getAttribute($search) == $type . ':title' && !$titleFound) {
195
  $list['title'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
196
+ $titleFound = true;
197
  }
198
+ if ($meta->getAttribute($search) == $type . ':description' && !$descriptionFound) {
199
  $desc = self::cleanContent(strip_shortcodes($meta->getAttribute('content')));
200
  $list['description'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($desc) : $desc);
201
+ $descriptionFound = true;
202
  }
203
+ if ($meta->getAttribute($search) == $type . ':image' && !$imageFound) {
204
  $list['image'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
205
+ $imageFound = true;
206
  }
207
  }
208
  return $list;
languages/blog2social-de_DE.mo CHANGED
Binary file
languages/blog2social-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Stable (latest release)\n"
5
  "Report-Msgid-Bugs-To: \n"
6
  "POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
7
- "PO-Revision-Date: Tue Aug 07 2018 08:56:28 GMT+0200\n"
8
  "Last-Translator: Sven Bürger <s.buerger@adenion.de>\n"
9
  "Language-Team: \n"
10
  "Language: German\n"
@@ -23,22 +23,21 @@ msgstr ""
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: de_DE"
25
 
26
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:190
 
 
 
 
27
  msgid ""
28
- "Immediate Cross-Posting across all networks: Share an unlimited number of "
29
- "posts"
30
  msgstr ""
31
- "Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte "
32
- "Anzahl an Beiträgen"
33
 
34
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:191
35
- msgid "Scheduled Auto-Posting"
36
- msgstr "Scheduled Auto-Posting"
37
-
38
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:191 ../..
39
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:194
40
- msgid "Upgrade"
41
- msgstr "Upgrade"
42
 
43
  #. Name of the plugin
44
  msgid "Blog2Social: Social Media Auto Post & Scheduler"
@@ -65,376 +64,376 @@ msgstr ""
65
  msgid "Blog2Social, Adenion"
66
  msgstr "Blog2Social, Adenion"
67
 
68
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Calendar/Filter.php:123
69
  msgid "show all"
70
  msgstr "alle anzeigen"
71
 
72
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:46 ../..
73
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Navbar.php:32
74
  msgid "Default"
75
  msgstr "Standard"
76
 
77
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:46
78
  msgid "Show all"
79
  msgstr "alle anzeigen"
80
 
81
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:47 ../..
82
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:131
83
  msgid "My profile"
84
  msgstr "Mein Profil"
85
 
86
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:49
87
  msgid "Your profiles:"
88
  msgstr "weitere Profile:"
89
 
90
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:104 ../..
91
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:267
92
  msgid "Connections"
93
  msgstr "Verbindungen"
94
 
95
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:116 ../..
96
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:116 ../..
97
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:154 ../..
98
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:156 ../..
99
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:276 ../..
100
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:457 ../..
101
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:471 ../..
102
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:493 ../..
103
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:544 ../..
104
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:34 ../..
105
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:34 ../..
106
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:576
107
  msgid "Profile"
108
  msgstr "Profil"
109
 
110
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:116 ../..
111
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:34
112
  msgid "You want to connect a network profile?"
113
  msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
114
 
115
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:116 ../..
116
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:119 ../..
117
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:122 ../..
118
- #: /plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:110 ../..
119
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:115 ../..
120
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:137 ../..
121
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:75 ../..
122
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:82 ../..
123
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:700 ../..
124
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:28 ../..
125
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:31 ../..
126
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:34 ../..
127
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:654 ../../plugins/blog2social-
128
- #: v-4-9-1/includes/Loader.php:722 ../../plugins/blog2social-v-4-9-
129
- #: 1/views/b2s/network.php:35 ../../plugins/blog2social-v-4-9-
130
- #: 1/views/b2s/partials/post-edit-modal.php:9 ../../plugins/blog2social-v-4-9-
131
- #: 1/views/b2s/settings.php:67 ../../plugins/blog2social-v-4-9-
132
- #: 1/views/b2s/settings.php:89 ../../plugins/blog2social-v-4-9-1/views/b2s/ship.
133
- #: php:17 ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:31 ../..
134
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:9 ../..
135
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:13
136
  msgid "PREMIUM"
137
  msgstr "PREMIUM"
138
 
139
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:119 ../..
140
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:119 ../..
141
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:186 ../..
142
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:188 ../..
143
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:276 ../..
144
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:472 ../..
145
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:494 ../..
146
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:547 ../..
147
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:31 ../..
148
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:31 ../..
149
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:576
150
  msgid "Page"
151
  msgstr "Seite"
152
 
153
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:119 ../..
154
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:31
155
  msgid "You want to connect a network page?"
156
  msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
157
 
158
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:122 ../..
159
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:122 ../..
160
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:218 ../..
161
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:220 ../..
162
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:473 ../..
163
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:495 ../..
164
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:551 ../..
165
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:28 ../..
166
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:28 ../..
167
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:576
168
  msgid "Group"
169
  msgstr "Gruppe"
170
 
171
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:122 ../..
172
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Portale.php:28
173
  msgid "You want to connect a social media group?"
174
  msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
175
 
176
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:165 ../..
177
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:228
178
  msgid "Authorization is interrupted since"
179
  msgstr "Autorisierung ist unterbrochen seit"
180
 
181
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:176 ../..
182
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:208 ../..
183
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:240
184
  msgid "To reactivate this social media connection,"
185
  msgstr "Um diese Social Media Verbindung zu reaktivieren,"
186
 
187
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:176 ../..
188
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:208 ../..
189
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:240 ../..
190
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:32
191
  msgid "please upgrade"
192
  msgstr "Bitte upgraden"
193
 
194
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Network/Item.php:196
195
  msgid "Authorization is interrupted since"
196
  msgstr "Autorisierung ist unterbrochen seit"
197
 
198
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:34
199
  msgid "all authors"
200
  msgstr "alle Autoren"
201
 
202
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:49 ../..
203
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:200 ../..
204
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:389 ../..
205
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:41 ../..
206
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:97 ../..
207
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:12 ../../plugins/blog2social-v-
208
- #: 4-9-1/views/b2s/ship.php:537
209
  msgid "published"
210
  msgstr "veröffentlicht"
211
 
212
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:49 ../..
213
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:200 ../..
214
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:41 ../..
215
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:97 ../..
216
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:12
217
  msgid "scheduled"
218
  msgstr "geplant"
219
 
220
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:49 ../..
221
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:200 ../..
222
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:97 ../..
223
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:12
224
  msgid "draft"
225
  msgstr "Entwurf"
226
 
227
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:50
228
  msgid "all statuses"
229
  msgstr "kein Status"
230
 
231
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:61 ../..
232
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:73
233
  msgid "newest first"
234
  msgstr "neuste zuerst"
235
 
236
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:61 ../..
237
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:73
238
  msgid "oldest first"
239
  msgstr "älteste zuerst"
240
 
241
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:86
242
  msgid "all categories & tags"
243
  msgstr "alle Kategorien & Schlagwörter"
244
 
245
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:108 ../..
246
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:53
247
  msgid "all post types"
248
  msgstr "alle Typen"
249
 
250
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:129 ../..
251
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:74
252
  msgid "Search Title"
253
  msgstr "Suche nach Titel"
254
 
255
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:149 ../..
256
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:85
257
  msgid "sort"
258
  msgstr "sortieren"
259
 
260
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:150 ../..
261
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:86
262
  msgid "reset"
263
  msgstr "zurücksetzen"
264
 
265
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:155
266
  msgid "selected date"
267
  msgstr "ausgewähltes Datum"
268
 
269
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Filter.php:155
270
  msgid "scheduled post(s)"
271
  msgstr "geplante Beiträge"
272
 
273
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:203
274
  msgid "You have no posts published or scheduled."
275
  msgstr "Du hast derzeit keine Beiträge veröffentlicht oder geplant."
276
 
277
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:225
278
  msgid "last shared on social media"
279
  msgstr "zuletzt auf Social Media geteilt"
280
 
281
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:233
282
  msgid "Share on Social Media"
283
  msgstr "auf Social Media teilen"
284
 
285
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:235 ../..
286
- #: /plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:129
287
  msgid "Author"
288
  msgstr "Autor"
289
 
290
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:235 ../..
291
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:31
292
  msgid "on blog"
293
  msgstr "auf dem Blog"
294
 
295
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:252 ../..
296
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:234 ../../plugins/blog2social-
297
- #: v-4-9-1/views/b2s/ship.php:236
298
  msgid "Re-share this post"
299
  msgstr "Diesen Beitrag nochmal teilen"
300
 
301
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:253 ../..
302
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:277 ../..
303
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:299
304
  msgid "Details"
305
  msgstr "Details"
306
 
307
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:255
308
  msgid "shared social media posts"
309
  msgstr "geteilte Beiträge"
310
 
311
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:255
312
  msgid "latest share by"
313
  msgstr "zuletzt geteilt von"
314
 
315
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:279 ../..
316
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/activity.php:13
317
  msgid "scheduled social media posts"
318
  msgstr "geplante Beiträge"
319
 
320
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:279
321
  msgid "next share by"
322
  msgstr "als nächstes geteilt von"
323
 
324
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:301
325
  msgid "social media posts ready to be shared"
326
  msgstr "Social Media Posts sind bereit geteilt zu werden"
327
 
328
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:413 ../..
329
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:33 ../..
330
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:47
331
  msgid "Auto-Posting"
332
  msgstr "Auto-Posting"
333
 
334
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:413 ../..
335
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:545 ../..
336
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:399
337
  msgid "Retweet"
338
  msgstr "Retweet"
339
 
340
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:419 ../..
341
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:488 ../..
342
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:550
343
  msgid "select all"
344
  msgstr "alle auswählen"
345
 
346
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:422
347
  msgid "show"
348
  msgstr "ansehen"
349
 
350
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:429 ../..
351
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:410
352
  msgid "Please see"
353
  msgstr "Siehe"
354
 
355
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:429 ../..
356
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:410
357
  msgid "FAQ"
358
  msgstr "FAQ"
359
 
360
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:434
361
  msgid "sharing in progress by"
362
  msgstr "wir geteilt"
363
 
364
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:434
365
  msgid "shared by"
366
  msgstr "geteilt von"
367
 
368
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:455 ../..
369
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:468
370
  msgid "You want to delete a publish post entry?"
371
  msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
372
 
373
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:456 ../..
374
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:469
375
  msgid "delete from reporting"
376
  msgstr "aus Reporting löschen"
377
 
378
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:459
379
  msgid "re-share"
380
  msgstr "erneut teilen"
381
 
382
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:491
383
  msgid "is waiting to shared by"
384
  msgstr "wartet darauf geteilt zu werden\n"
385
 
386
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:520 ../..
387
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:380
388
  msgid "share"
389
  msgstr "teilen"
390
 
391
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:528
392
  msgid "You want to delete your Social Media post?"
393
  msgstr "Du möchtest Deinen Social Media Post löschen?"
394
 
395
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:529 ../..
396
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:571 ../..
397
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:104 ../..
398
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:678 ../..
399
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:816
400
  msgid "delete"
401
  msgstr "löschen"
402
 
403
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:562
404
  msgid "scheduled by"
405
  msgstr "geplant von "
406
 
407
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:567
408
  msgid "You want to edit your scheduled post?"
409
  msgstr "Möchtest Du Deinen geplanten Beitrag bearbeiten?"
410
 
411
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:568
412
  msgid "edit"
413
  msgstr "bearbeiten"
414
 
415
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Post/Item.php:579
416
  msgid "delete scheduling"
417
  msgstr "Planung löschen"
418
 
419
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:27 ../..
420
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:50
421
  msgid "Please see FAQ"
422
  msgstr "Siehe FAQ"
423
 
424
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:36
425
  msgid "last auto-post:"
426
  msgstr "letzter Auto-Post:"
427
 
428
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:78 ../..
429
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:539 ../../plugins/blog2social-
430
- #: v-4-9-1/views/b2s/html/header.phtml:55
431
  msgid "The connection to the server failed. Try again!"
432
  msgstr ""
433
  "Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
434
  "erneut!"
435
 
436
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:79 ../..
437
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:49
438
  msgid ""
439
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
440
  "heartbeats for using Blog2Social!"
@@ -442,8 +441,8 @@ msgstr ""
442
  "WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
443
  "Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
444
 
445
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:80 ../..
446
- #: /plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:82
447
  msgid ""
448
  "Your post is still on draft or pending status. Please make sure that your "
449
  "post is published or scheduled to be published on this blog. You can then "
@@ -453,8 +452,8 @@ msgstr ""
453
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
454
  "planen."
455
 
456
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:81 ../..
457
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:534
458
  msgid ""
459
  "There are no authorizations for your selected profile. Please, authorize "
460
  "with a social network or select a other profile."
@@ -462,12 +461,12 @@ msgstr ""
462
  "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
463
  "mit einem Netzwerk oder wähle ein anderes Profil aus. "
464
 
465
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:81 ../..
466
- #: /plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:179
467
  msgid "Network settings"
468
  msgstr "Netzwerkeinstellungen"
469
 
470
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:83
471
  msgid ""
472
  "Notice: Please make sure, that your website address is reachable. The Social "
473
  "Networks do not allow postings from local installations."
@@ -475,43 +474,42 @@ msgstr ""
475
  "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
476
  "Fragen wende Dich bitte an unseren Support."
477
 
478
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:99
479
  msgid "Custom Sharing & Scheduling"
480
  msgstr "Individuelles Teilen und Planen"
481
 
482
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:99 ../..
483
- #: /plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:103 ../..
484
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:91 ../..
485
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:99 ../..
486
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:108 ../..
487
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:110 ../..
488
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:122 ../..
489
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:128 ../..
490
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:144 ../..
491
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:184 ../..
492
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:318 ../..
493
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:320 ../..
494
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:477 ../..
495
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:642 ../..
496
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:18 ../..
497
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:69 ../..
498
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:92 ../..
499
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:55 ../../plugins/blog2social-v-
500
- #: 4-9-1/views/b2s/ship.php:145 ../../plugins/blog2social-v-4-9-1/views/b2s/ship.
501
- #: php:232
502
  msgid "Info"
503
  msgstr "Info"
504
 
505
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:100
506
  msgid "Customize & Schedule Social Media Posts"
507
  msgstr "Social Media Posts anpassen & planen"
508
 
509
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:102
510
  msgid "Facebook Instant Sharing:"
511
  msgstr "Facebook Instant Sharing:"
512
 
513
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:102 ../..
514
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:142
515
  msgid ""
516
  "Auto-posts for Facebook Profiles will be shown in the \"Instant Sharing\" tab "
517
  "on your \"Posts & Sharing\" navigation bar and can be shared on your Facebook "
@@ -522,35 +520,34 @@ msgstr ""
522
  "auf den “Teilen” Button neben dem Post an Dein Facebook-Profil gesendet "
523
  "werden."
524
 
525
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:103 ../..
526
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:317
527
  msgid "Social Media Auto-Posting"
528
  msgstr "Social Media Auto-Posting"
529
 
530
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:107
531
  msgid "enable Auto-Posting"
532
  msgstr "Auto-Posting aktivieren"
533
 
534
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:117 ../..
535
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:47 ../..
536
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:172 ../..
537
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:46 ../..
538
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:50 ../..
539
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:187 ../..
540
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:40 ../..
541
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.php:37 ../../plugins/blog2social-v-
542
- #: 4-9-1/views/b2s/post.publish.php:40 ../../plugins/blog2social-v-4-9-
543
- #: 1/views/b2s/post.sched.php:52 ../../plugins/blog2social-v-4-9-1/views/b2s/ship.
544
- #: php:167 ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:536 ../..
545
- #: /plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:81
546
  msgid "Loading..."
547
  msgstr "Lade Daten..."
548
 
549
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:125
550
  msgid "Blog2Social: Customize & Schedule Social Media Posts"
551
  msgstr "Blog2Social : Beiträge anpassen & planen"
552
 
553
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:128
554
  msgid ""
555
  "Customize and schedule your social media posts on the one page preview for "
556
  "all your selected networks: tailor your posts with individual comments, "
@@ -564,13 +561,13 @@ msgstr ""
564
  "mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
565
  "Community zu erzielen"
566
 
567
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:137 ../..
568
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:306
569
  msgid "Blog2Social: Social Media Auto-Posting"
570
  msgstr "Blog2Social: Social Media Auto-Posting"
571
 
572
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:141 ../..
573
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:310
574
  msgid ""
575
  "You have 2 general options to define the date and time to share your blog "
576
  "posts on social media with the Auto-Poster:"
@@ -578,13 +575,13 @@ msgstr ""
578
  "Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
579
  "Deine Blogbeiträge auf Social Media zu teilen: "
580
 
581
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:142 ../..
582
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:311
583
  msgid "1. Immediately after publishing your blog post"
584
  msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
585
 
586
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:143 ../..
587
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:312
588
  msgid ""
589
  "Published blog posts: If you publish your blog post with click on publish in "
590
  "your WordPress post editor, Blog2Social will automatically share your social "
@@ -594,8 +591,8 @@ msgstr ""
594
  "auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
595
  " teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
596
 
597
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:144 ../..
598
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:313
599
  msgid ""
600
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
601
  "in your WordPress post editor, Blog2Social will share your social media post "
@@ -606,8 +603,8 @@ msgstr ""
606
  "Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
607
  "Veröffentlichung auf Social Media. "
608
 
609
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:145 ../..
610
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:314
611
  msgid ""
612
  "2. Schedule your social media posts for a specific date and time If you want "
613
  "to share your post at a particular date and time, different from your "
@@ -619,183 +616,172 @@ msgstr ""
619
  "abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
620
  "die Uhrzeit fest. "
621
 
622
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:149 ../..
623
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:319
624
  msgid "You want to auto-post your blog post?"
625
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
626
 
627
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:150 ../..
628
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:98 ../..
629
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:225 ../..
630
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:300 ../../plugins/blog2social-
631
- #: v-4-9-1/views/b2s/ship.php:360 ../../plugins/blog2social-v-4-9-
632
- #: 1/views/b2s/ship.php:406 ../../plugins/blog2social-v-4-9-
633
- #: 1/views/b2s/html/footer.phtml:25 ../../plugins/blog2social-v-4-9-
634
- #: 1/views/b2s/html/footer.phtml:143 ../../plugins/blog2social-v-4-9-
635
- #: 1/views/b2s/html/footer.phtml:209 ../../plugins/blog2social-v-4-9-
636
- #: 1/views/b2s/html/footer.phtml:249 ../../plugins/blog2social-v-4-9-
637
- #: 1/views/b2s/html/footer.phtml:320 ../../plugins/blog2social-v-4-9-
638
- #: 1/views/b2s/html/footer.phtml:405
639
  msgid "With Blog2Social Premium you can:"
640
  msgstr "Mit Blog2Social kannst Du:"
641
 
642
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:153 ../..
643
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:101 ../..
644
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:228 ../..
645
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:303 ../../plugins/blog2social-
646
- #: v-4-9-1/views/b2s/ship.php:363 ../../plugins/blog2social-v-4-9-
647
- #: 1/views/b2s/ship.php:409 ../../plugins/blog2social-v-4-9-
648
- #: 1/views/b2s/html/footer.phtml:28 ../../plugins/blog2social-v-4-9-
649
- #: 1/views/b2s/html/footer.phtml:146 ../../plugins/blog2social-v-4-9-
650
- #: 1/views/b2s/html/footer.phtml:212 ../../plugins/blog2social-v-4-9-
651
- #: 1/views/b2s/html/footer.phtml:252 ../../plugins/blog2social-v-4-9-
652
- #: 1/views/b2s/html/footer.phtml:323 ../../plugins/blog2social-v-4-9-
653
- #: 1/views/b2s/html/footer.phtml:408 ../../plugins/blog2social-v-4-9-
654
- #: 1/views/b2s/html/header.phtml:318
655
  msgid "Post on pages and groups"
656
  msgstr "Poste auf Seiten und in Gruppen"
657
 
658
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:154 ../..
659
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:102 ../..
660
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:229 ../..
661
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:304 ../../plugins/blog2social-
662
- #: v-4-9-1/views/b2s/ship.php:364 ../../plugins/blog2social-v-4-9-
663
- #: 1/views/b2s/ship.php:410 ../../plugins/blog2social-v-4-9-
664
- #: 1/views/b2s/html/footer.phtml:29 ../../plugins/blog2social-v-4-9-
665
- #: 1/views/b2s/html/footer.phtml:147 ../../plugins/blog2social-v-4-9-
666
- #: 1/views/b2s/html/footer.phtml:213 ../../plugins/blog2social-v-4-9-
667
- #: 1/views/b2s/html/footer.phtml:253 ../../plugins/blog2social-v-4-9-
668
- #: 1/views/b2s/html/footer.phtml:324 ../../plugins/blog2social-v-4-9-
669
- #: 1/views/b2s/html/footer.phtml:409
670
  msgid "Share on multiple profiles, pages and groups"
671
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
672
 
673
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:155 ../..
674
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:103 ../..
675
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:230 ../..
676
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:305 ../../plugins/blog2social-
677
- #: v-4-9-1/views/b2s/ship.php:365 ../../plugins/blog2social-v-4-9-
678
- #: 1/views/b2s/ship.php:411 ../../plugins/blog2social-v-4-9-
679
- #: 1/views/b2s/html/footer.phtml:30 ../../plugins/blog2social-v-4-9-
680
- #: 1/views/b2s/html/footer.phtml:64 ../../plugins/blog2social-v-4-9-
681
- #: 1/views/b2s/html/footer.phtml:148 ../../plugins/blog2social-v-4-9-
682
- #: 1/views/b2s/html/footer.phtml:214 ../../plugins/blog2social-v-4-9-
683
- #: 1/views/b2s/html/footer.phtml:254 ../../plugins/blog2social-v-4-9-
684
- #: 1/views/b2s/html/footer.phtml:325 ../../plugins/blog2social-v-4-9-
685
- #: 1/views/b2s/html/footer.phtml:410
686
  msgid "Auto-post and auto-schedule new and updated blog posts"
687
  msgstr ""
688
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
689
  "Aktualisierung posten und zeitversetzt planen"
690
 
691
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:156 ../..
692
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:104 ../..
693
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:231 ../..
694
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:306 ../../plugins/blog2social-
695
- #: v-4-9-1/views/b2s/ship.php:366 ../../plugins/blog2social-v-4-9-
696
- #: 1/views/b2s/ship.php:412 ../../plugins/blog2social-v-4-9-
697
- #: 1/views/b2s/html/footer.phtml:31 ../../plugins/blog2social-v-4-9-
698
- #: 1/views/b2s/html/footer.phtml:149 ../../plugins/blog2social-v-4-9-
699
- #: 1/views/b2s/html/footer.phtml:215 ../../plugins/blog2social-v-4-9-
700
- #: 1/views/b2s/html/footer.phtml:255 ../../plugins/blog2social-v-4-9-
701
- #: 1/views/b2s/html/footer.phtml:326 ../../plugins/blog2social-v-4-9-
702
- #: 1/views/b2s/html/footer.phtml:411
703
  msgid "Schedule your posts at the best times on each network"
704
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
705
 
706
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:157 ../..
707
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:105 ../..
708
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:232 ../..
709
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:307 ../../plugins/blog2social-
710
- #: v-4-9-1/views/b2s/ship.php:367 ../../plugins/blog2social-v-4-9-
711
- #: 1/views/b2s/ship.php:413 ../../plugins/blog2social-v-4-9-
712
- #: 1/views/b2s/html/footer.phtml:32 ../../plugins/blog2social-v-4-9-
713
- #: 1/views/b2s/html/footer.phtml:150 ../../plugins/blog2social-v-4-9-
714
- #: 1/views/b2s/html/footer.phtml:216 ../../plugins/blog2social-v-4-9-
715
- #: 1/views/b2s/html/footer.phtml:256 ../../plugins/blog2social-v-4-9-
716
- #: 1/views/b2s/html/footer.phtml:327 ../../plugins/blog2social-v-4-9-
717
- #: 1/views/b2s/html/footer.phtml:412
718
  msgid ""
719
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
720
  "social media posts"
721
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
722
 
723
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:158 ../..
724
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:106 ../..
725
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:233 ../..
726
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:308 ../../plugins/blog2social-
727
- #: v-4-9-1/views/b2s/ship.php:368 ../../plugins/blog2social-v-4-9-
728
- #: 1/views/b2s/ship.php:414 ../../plugins/blog2social-v-4-9-
729
- #: 1/views/b2s/html/footer.phtml:33 ../../plugins/blog2social-v-4-9-
730
- #: 1/views/b2s/html/footer.phtml:151 ../../plugins/blog2social-v-4-9-
731
- #: 1/views/b2s/html/footer.phtml:217 ../../plugins/blog2social-v-4-9-
732
- #: 1/views/b2s/html/footer.phtml:257 ../../plugins/blog2social-v-4-9-
733
- #: 1/views/b2s/html/footer.phtml:328 ../../plugins/blog2social-v-4-9-
734
- #: 1/views/b2s/html/footer.phtml:413
735
  msgid "Schedule your post for one time, multiple times or recurrently"
736
  msgstr ""
737
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
738
  "oder nach einem regelmäßigen Muster"
739
 
740
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:159 ../..
741
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:107 ../..
742
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:234 ../..
743
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:309 ../../plugins/blog2social-
744
- #: v-4-9-1/views/b2s/ship.php:369 ../../plugins/blog2social-v-4-9-
745
- #: 1/views/b2s/ship.php:415 ../../plugins/blog2social-v-4-9-
746
- #: 1/views/b2s/html/footer.phtml:34 ../../plugins/blog2social-v-4-9-
747
- #: 1/views/b2s/html/footer.phtml:152 ../../plugins/blog2social-v-4-9-
748
- #: 1/views/b2s/html/footer.phtml:218 ../../plugins/blog2social-v-4-9-
749
- #: 1/views/b2s/html/footer.phtml:258 ../../plugins/blog2social-v-4-9-
750
- #: 1/views/b2s/html/footer.phtml:329 ../../plugins/blog2social-v-4-9-
751
- #: 1/views/b2s/html/footer.phtml:414
752
  msgid "Schedule and re-share old posts"
753
  msgstr "Plane und teile alte Beiträge"
754
 
755
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:160 ../..
756
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:108 ../..
757
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:235 ../..
758
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:310 ../../plugins/blog2social-
759
- #: v-4-9-1/views/b2s/ship.php:370 ../../plugins/blog2social-v-4-9-
760
- #: 1/views/b2s/ship.php:416 ../../plugins/blog2social-v-4-9-
761
- #: 1/views/b2s/html/footer.phtml:35 ../../plugins/blog2social-v-4-9-
762
- #: 1/views/b2s/html/footer.phtml:66 ../../plugins/blog2social-v-4-9-
763
- #: 1/views/b2s/html/footer.phtml:153 ../../plugins/blog2social-v-4-9-
764
- #: 1/views/b2s/html/footer.phtml:219 ../../plugins/blog2social-v-4-9-
765
- #: 1/views/b2s/html/footer.phtml:259 ../../plugins/blog2social-v-4-9-
766
- #: 1/views/b2s/html/footer.phtml:330 ../../plugins/blog2social-v-4-9-
767
- #: 1/views/b2s/html/footer.phtml:415
768
  msgid "Select link format or image format for your posts"
769
  msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
770
 
771
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:161 ../..
772
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:109 ../..
773
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:236 ../..
774
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:311 ../../plugins/blog2social-
775
- #: v-4-9-1/views/b2s/ship.php:371 ../../plugins/blog2social-v-4-9-
776
- #: 1/views/b2s/ship.php:417 ../../plugins/blog2social-v-4-9-
777
- #: 1/views/b2s/html/footer.phtml:36 ../../plugins/blog2social-v-4-9-
778
- #: 1/views/b2s/html/footer.phtml:67 ../../plugins/blog2social-v-4-9-
779
- #: 1/views/b2s/html/footer.phtml:154 ../../plugins/blog2social-v-4-9-
780
- #: 1/views/b2s/html/footer.phtml:220 ../../plugins/blog2social-v-4-9-
781
- #: 1/views/b2s/html/footer.phtml:260 ../../plugins/blog2social-v-4-9-
782
- #: 1/views/b2s/html/footer.phtml:331 ../../plugins/blog2social-v-4-9-
783
- #: 1/views/b2s/html/footer.phtml:416
784
  msgid "Select individual images per post"
785
  msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
786
 
787
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:162 ../..
788
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:110 ../..
789
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:237 ../..
790
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:312 ../../plugins/blog2social-
791
- #: v-4-9-1/views/b2s/ship.php:372 ../../plugins/blog2social-v-4-9-
792
- #: 1/views/b2s/ship.php:418 ../../plugins/blog2social-v-4-9-
793
- #: 1/views/b2s/html/footer.phtml:37 ../../plugins/blog2social-v-4-9-
794
- #: 1/views/b2s/html/footer.phtml:155 ../../plugins/blog2social-v-4-9-
795
- #: 1/views/b2s/html/footer.phtml:221 ../../plugins/blog2social-v-4-9-
796
- #: 1/views/b2s/html/footer.phtml:261 ../../plugins/blog2social-v-4-9-
797
- #: 1/views/b2s/html/footer.phtml:332 ../../plugins/blog2social-v-4-9-
798
- #: 1/views/b2s/html/footer.phtml:417
799
  msgid ""
800
  "Reporting & calendar: keep track of your published and scheduled social "
801
  "media posts"
@@ -803,36 +789,34 @@ msgstr ""
803
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
804
  "Media Beiträge"
805
 
806
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:164 ../..
807
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:112 ../..
808
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:239 ../..
809
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:314 ../../plugins/blog2social-
810
- #: v-4-9-1/views/b2s/ship.php:374 ../../plugins/blog2social-v-4-9-
811
- #: 1/views/b2s/ship.php:420 ../../plugins/blog2social-v-4-9-
812
- #: 1/views/b2s/html/footer.phtml:39 ../../plugins/blog2social-v-4-9-
813
- #: 1/views/b2s/html/footer.phtml:157 ../../plugins/blog2social-v-4-9-
814
- #: 1/views/b2s/html/footer.phtml:223 ../../plugins/blog2social-v-4-9-
815
- #: 1/views/b2s/html/footer.phtml:263 ../../plugins/blog2social-v-4-9-
816
- #: 1/views/b2s/html/footer.phtml:334 ../../plugins/blog2social-v-4-9-
817
- #: 1/views/b2s/html/footer.phtml:419 ../../plugins/blog2social-v-4-9-
818
- #: 1/views/b2s/html/header.phtml:254
819
  msgid "Upgrade to PREMIUM"
820
  msgstr "Jetzt auf Premium upgraden"
821
 
822
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:166 ../..
823
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:114 ../..
824
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:241 ../..
825
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:316 ../../plugins/blog2social-
826
- #: v-4-9-1/views/b2s/ship.php:376 ../../plugins/blog2social-v-4-9-
827
- #: 1/views/b2s/ship.php:422 ../../plugins/blog2social-v-4-9-
828
- #: 1/views/b2s/html/footer.phtml:41 ../../plugins/blog2social-v-4-9-
829
- #: 1/views/b2s/html/footer.phtml:72 ../../plugins/blog2social-v-4-9-
830
- #: 1/views/b2s/html/footer.phtml:90 ../../plugins/blog2social-v-4-9-
831
- #: 1/views/b2s/html/footer.phtml:159 ../../plugins/blog2social-v-4-9-
832
- #: 1/views/b2s/html/footer.phtml:225 ../../plugins/blog2social-v-4-9-
833
- #: 1/views/b2s/html/footer.phtml:265 ../../plugins/blog2social-v-4-9-
834
- #: 1/views/b2s/html/footer.phtml:336 ../../plugins/blog2social-v-4-9-
835
- #: 1/views/b2s/html/footer.phtml:421
836
  msgid ""
837
  "or <a href=\"http://service.blog2social.com/trial\" target=\"_blank\">start with "
838
  "free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
@@ -841,54 +825,54 @@ msgstr ""
841
  "Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
842
  "Zahlungsinformationen erforderlich)"
843
 
844
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:179
845
  msgid "Select profile:"
846
  msgstr "Profil auswählen: "
847
 
848
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:190
849
  msgid "Select Twitter profile:"
850
  msgstr "Twitter Profil auswählen:"
851
 
852
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:208
853
  msgid "When do you want to share your post on social media?"
854
  msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
855
 
856
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:211
857
  msgid "immediately after publishing"
858
  msgstr "sofort nach Veröffentlichung"
859
 
860
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:212
861
  msgid "at scheduled times"
862
  msgstr "zu geplanten Zeiten"
863
 
864
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:215
865
  msgid "You want to sched your blog post with Auto-Poster?"
866
  msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
867
 
868
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:215 ../..
869
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:70 ../..
870
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:88
871
  msgid "Upgrade to PREMIUM PRO"
872
  msgstr "Upgrade auf PREMIUM PRO"
873
 
874
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:221
875
  msgid "Select date:"
876
  msgstr "Datum auswählen:"
877
 
878
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:222 ../..
879
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:294
880
  msgid "show calendar"
881
  msgstr "Kalender anzeigen"
882
 
883
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:229
884
  msgid "post at"
885
  msgstr "beachte"
886
 
887
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:230
888
  msgid "my time settings"
889
  msgstr "meine Zeit-Einstellungen"
890
 
891
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/PostBox.php:231
892
  msgid ""
893
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
894
  "you with the best times to post​ on the social networks. You can always "
@@ -899,92 +883,92 @@ msgstr ""
899
  "posten. Du kannst jederzeit Deine eigenen Zeiten unter Einstellungen "
900
  "bearbeiten."
901
 
902
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:84 ../..
903
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:104 ../..
904
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:660
905
  msgid "Account"
906
  msgstr "Konto"
907
 
908
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:87 ../..
909
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:266
910
  msgid "Personal Time Zone"
911
  msgstr "Persönliche Zeitzone"
912
 
913
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:93
914
  msgid "Timezone for Scheduling"
915
  msgstr "Zeitzone für die Planung"
916
 
917
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:93
918
  msgid "User"
919
  msgstr "Benutzer"
920
 
921
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:98
922
  msgid "Content"
923
  msgstr "Inhalt"
924
 
925
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:99
926
  msgid "Url Shortener"
927
  msgstr "Url Shortener"
928
 
929
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:100
930
  msgid "Bitly"
931
  msgstr "Bitly"
932
 
933
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:103 ../..
934
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:198
935
  msgid "connect"
936
  msgstr "Jetzt mit Netzwerken verbinden"
937
 
938
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:104
939
  msgid "change"
940
  msgstr "ändern"
941
 
942
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:108
943
  msgid "allow shortcodes in my post"
944
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
945
 
946
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:110
947
  msgid "include Wordpress tags as hashtags in my post"
948
  msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
949
 
950
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:113 ../..
951
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:291
952
  msgid "Define Twitter post content"
953
  msgstr "Twitter Beitragsinhalt definieren"
954
 
955
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:119 ../..
956
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:374 ../..
957
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:389
958
  msgid "title"
959
  msgstr "Titel"
960
 
961
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:119 ../..
962
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:120 ../..
963
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:121
964
  msgid "hashtags"
965
  msgstr "Hashtags"
966
 
967
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:120
968
  msgid "title & content"
969
  msgstr "Titel & Inhalt"
970
 
971
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:120 ../..
972
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:121 ../..
973
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:365
974
  msgid "(PREMIUM)"
975
  msgstr "(PREMIUM)"
976
 
977
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:121
978
  msgid "only content"
979
  msgstr "nur Inhalt"
980
 
981
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:126
982
  msgid "System"
983
  msgstr "System"
984
 
985
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:127 ../..
986
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:314 ../..
987
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:339
988
  msgid ""
989
  "This is a global feature for your blog, which can only be edited by users "
990
  "with admin rights."
@@ -992,21 +976,21 @@ msgstr ""
992
  "Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
993
  "Admin Rechten bearbeitet werden kann."
994
 
995
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:128
996
  msgid "activate Legacy mode"
997
  msgstr "Kompatibilitätsmodus aktivieren"
998
 
999
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:144
1000
  msgid "Auto-post your own created posts"
1001
  msgstr "Auto-Poste Deine selbsterstellten Blogbeiträge"
1002
 
1003
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:145
1004
  msgid "Define by default to automatically post your posts on social media:"
1005
  msgstr ""
1006
  "Definiere standardmäßig Blogbeiträge oder Seiten, die Du auf Social Media "
1007
  "automatisch teilen möchtest:"
1008
 
1009
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:147
1010
  msgid ""
1011
  "Select by default if the auto-poster is activated when you publish a new "
1012
  "post or update a post."
@@ -1014,21 +998,21 @@ msgstr ""
1014
  "Wähle standardmäßig aus, ob der Auto-Poster aktiviert ist, wenn Du einen "
1015
  "neuen Beitrag veröffentlichst oder aktualisierst. "
1016
 
1017
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:152
1018
  msgid "new posts"
1019
  msgstr "Neue Beiträge"
1020
 
1021
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:153 ../..
1022
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:165
1023
  msgid "Unselect all"
1024
  msgstr "Alle abwählen"
1025
 
1026
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:153 ../..
1027
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:165
1028
  msgid "Select all"
1029
  msgstr "Alle auswählen"
1030
 
1031
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:161
1032
  msgid ""
1033
  "By enabling this feature your previously published social media posts will "
1034
  "be sent again to your selected social media channels as soon as the post is "
@@ -1038,46 +1022,63 @@ msgstr ""
1038
  "Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
1039
  "Beitrag aktualisiert wird"
1040
 
1041
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:164
1042
  msgid "updating existing posts"
1043
  msgstr "Bestehenden Beitrag aktualisieren"
1044
 
1045
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:176 ../..
1046
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:218
1047
  msgid "Save"
1048
  msgstr " Speichern"
1049
 
1050
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:184
1051
  msgid "Auto-post your imported posts to Twitter & Facebook"
1052
  msgstr "Auto-Poste Deine importierten Beiträge auf Twitter & Facebook"
1053
 
1054
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:185
1055
  msgid "Define by default to automatically share your imported posts to social media:"
1056
  msgstr ""
1057
  "Definiere standardmässig alle Deine importierten Beiträge auf den Social "
1058
  "Media zu veröffentlichen:"
1059
 
1060
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:188
1061
  msgid "Your current licence:"
1062
  msgstr "Deine aktuelle Lizenz:"
1063
 
1064
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1065
  msgid "share up to"
1066
  msgstr "teile bis zu"
1067
 
1068
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:193
1069
  msgid "posts per day"
1070
  msgstr "Beiträge pro Tag"
1071
 
1072
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:199
1073
  msgid "Select by default to automatically share your imported posts"
1074
  msgstr "Teile standardmäßig automatisch importierte Beiträge auf meinen Social Media"
1075
 
1076
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:203
1077
  msgid "Select to auto-post to your standard networks:"
1078
  msgstr "Wähle die Netzwerke aus, auf denen automatisch veröffentlicht werden soll:"
1079
 
1080
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:204
1081
  msgid ""
1082
  "In accordance with the new Twitter TOS, one Twitter account can be selected "
1083
  "as your primary Twitter account for auto-posting."
@@ -1085,57 +1086,57 @@ msgstr ""
1085
  "In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
1086
  "Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden."
1087
 
1088
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:204
1089
  msgid "More information"
1090
  msgstr "Zusätzliche Informationen"
1091
 
1092
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:206
1093
  msgid "Select to auto-post immediately after publishing or with a delay"
1094
  msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
1095
 
1096
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:207
1097
  msgid "immediately"
1098
  msgstr "sofort"
1099
 
1100
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:208
1101
  msgid "publish with a delay of"
1102
  msgstr "veröffentlichen mit einer Verzögerung von"
1103
 
1104
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:209
1105
  msgid "minutes"
1106
  msgstr "Minuten"
1107
 
1108
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:232
1109
  msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
1110
  msgstr ""
1111
  "Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
1112
  "automatisch veröffentlicht)"
1113
 
1114
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:233
1115
  msgid "Post Types"
1116
  msgstr "Posttypen"
1117
 
1118
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:234
1119
  msgid "Include (Post only...)"
1120
  msgstr "enthält (nur Beiträge, mit ...)"
1121
 
1122
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:235
1123
  msgid "Exclude (Do no post ...)"
1124
  msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
1125
 
1126
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:269
1127
  msgid "add/change connection"
1128
  msgstr "Verbindung hinzufügen/ändern"
1129
 
1130
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:312
1131
  msgid "Reset all page and post meta data"
1132
  msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
1133
 
1134
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:317
1135
  msgid "Meta Tags Settings for Posts and Pages"
1136
  msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
1137
 
1138
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:318
1139
  msgid ""
1140
  "Add Open Graph meta tags to your shared posts or pages, required by Facebook "
1141
  "and other social networks to display your post or page image, title and "
@@ -1145,7 +1146,7 @@ msgstr ""
1145
  "Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
1146
  "Beitrag/Seite korrekt darstellen können."
1147
 
1148
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:320
1149
  msgid ""
1150
  "Add Twitter Card meta tags to your shared posts or pages, required by "
1151
  "Twitter to display your post or page image, title and description correctly."
@@ -1154,11 +1155,11 @@ msgstr ""
1154
  "Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
1155
  "darstellen kann."
1156
 
1157
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:341
1158
  msgid "Frontpage Settings"
1159
  msgstr "Frontpage Einstellungen"
1160
 
1161
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:343
1162
  msgid ""
1163
  "Add the default Open Graph parameters for title, description and image you "
1164
  "want Facebook to display, if you share the frontpage of your blog as link "
@@ -1168,33 +1169,33 @@ msgstr ""
1168
  "die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
1169
  "als Link Post teilst (http://www.DeinBlog.de) "
1170
 
1171
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:346 ../..
1172
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:367 ../..
1173
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:30 ../../plugins/blog2social-v-
1174
- #: 4-9-1/views/prg/ship.php:41 ../../plugins/blog2social-v-4-9-1/views/prg/ship.
1175
- #: php:43 ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:26 ../..
1176
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:28
1177
  msgid "Title"
1178
  msgstr "Titel"
1179
 
1180
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:347 ../..
1181
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:368
1182
  msgid "Description"
1183
  msgstr "Beschreibung"
1184
 
1185
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:348 ../..
1186
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:369
1187
  msgid "Image URL"
1188
  msgstr "Bild Url"
1189
 
1190
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:350 ../..
1191
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:371 ../..
1192
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:80 ../..
1193
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:82
1194
  msgid "Image upload / Media Gallery"
1195
  msgstr "Bild hochladen / Mediathek"
1196
 
1197
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:353
1198
  msgid ""
1199
  "Please note: Facebook supports images with a minimum dimension of 200x200 "
1200
  "pixels and an aspect ratio of 1:1."
@@ -1202,7 +1203,7 @@ msgstr ""
1202
  "Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
1203
  "200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
1204
 
1205
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:359
1206
  msgid ""
1207
  "Add the default Twitter Card parameters for title, description and image you "
1208
  "want Twitter to display, if you share the frontpage of your blog as link "
@@ -1212,19 +1213,19 @@ msgstr ""
1212
  "Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www."
1213
  "DeinBlog.de) "
1214
 
1215
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:362
1216
  msgid "The default card type to use"
1217
  msgstr "Der zu verwendende Standard-Kartentyp"
1218
 
1219
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:364
1220
  msgid "Summary"
1221
  msgstr "Zusammenfassung"
1222
 
1223
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:365
1224
  msgid "Summary with large image"
1225
  msgstr "Zusammenfassung mit großem Bild"
1226
 
1227
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:374
1228
  msgid ""
1229
  "Please note: Twitter supports images with a minimum dimension of 144x144 "
1230
  "pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
@@ -1236,11 +1237,11 @@ msgstr ""
1236
  " The Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt "
1237
  "die Bildformate JPG, PNG, WEBP und GIF. "
1238
 
1239
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:390
1240
  msgid "Did you know?"
1241
  msgstr "Wusstest Du schon?"
1242
 
1243
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:391
1244
  msgid ""
1245
  "With Premium Pro, you can change the custom post format photo post or link "
1246
  "post for each individual social media post and channel (profile, page, "
@@ -1250,30 +1251,30 @@ msgstr ""
1250
  "Beitrag individuell zwischen Link-Beitrag und Bild-Beitrag auswählen "
1251
  "(Profile, Seiten, Gruppen)"
1252
 
1253
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:391
1254
  msgid "Upgrade to Premium Pro now."
1255
  msgstr "Upgrade auf Premium PRO"
1256
 
1257
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:408 ../..
1258
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:462 ../..
1259
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:505 ../..
1260
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:60 ../..
1261
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:172 ../..
1262
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:127
1263
  msgid "Image with frame"
1264
  msgstr "Bild mit Rahmen"
1265
 
1266
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:408 ../..
1267
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:462 ../..
1268
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:505 ../..
1269
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:60 ../..
1270
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:172 ../..
1271
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:110
1272
  msgid "Link Post"
1273
  msgstr "Link-Beitrag"
1274
 
1275
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:413 ../..
1276
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:128
1277
  msgid ""
1278
  "Insert white frames to show the whole image in your timeline. All image "
1279
  "information will be shown in your timeline."
@@ -1282,7 +1283,7 @@ msgstr ""
1282
  "das quadratische Instagram-Layout anzupassen und das gesamte Bild bereits in "
1283
  "Deiner Timeline anzuzeigen. "
1284
 
1285
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:415
1286
  msgid ""
1287
  "The link post format displays posts title, link address and the first one or "
1288
  "two sentences of the post. The networks scan this information from your META "
@@ -1306,26 +1307,26 @@ msgstr ""
1306
  "Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
1307
  "Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. "
1308
 
1309
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:419 ../..
1310
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:484 ../..
1311
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:505 ../..
1312
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:60 ../..
1313
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:172 ../..
1314
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:132
1315
  msgid "Image cut out"
1316
  msgstr "Bild zuschneiden"
1317
 
1318
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:419 ../..
1319
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:484 ../..
1320
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:505 ../..
1321
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:60 ../..
1322
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:172 ../..
1323
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:115
1324
  msgid "Photo Post"
1325
  msgstr "Bild-Beitrag"
1326
 
1327
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:424 ../..
1328
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:133
1329
  msgid ""
1330
  "The image preview will be cropped automatically to fit the default Instagram "
1331
  "layout for your Instagram timeline. The image will be shown uncropped when "
@@ -1336,8 +1337,8 @@ msgstr ""
1336
  "auf Deiner Timeline. Mit Klick auf den Post wird das Bild in der Instagram-"
1337
  "Vorschau als Ganzes angezeigt."
1338
 
1339
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:426 ../..
1340
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:116
1341
  msgid ""
1342
  "A photo or image post displays the selected image in the one-page preview of "
1343
  "Blog2Social and your comment above the image. The image links to the image "
@@ -1353,58 +1354,57 @@ msgstr ""
1353
  "langfristig sichtbar bleibt. Auf Facebook kannst Du den Namen des Albums "
1354
  "bearbeiten und eine Beschreibung Deiner Wahl ergänzen."
1355
 
1356
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:457
1357
  msgid "All"
1358
  msgstr "alle"
1359
 
1360
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:477
1361
  msgid "Activate Instant Caching"
1362
  msgstr "Instant Caching aktivieren"
1363
 
1364
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:558 ../..
1365
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:27
1366
  msgid "Uhr"
1367
  msgstr "Uhr"
1368
 
1369
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:562
1370
  msgid "Best times to post"
1371
  msgstr "Beste Zeiten"
1372
 
1373
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:575 ../..
1374
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:75 ../..
1375
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:50 ../../plugins/blog2social-v-
1376
- #: 4-9-1/views/b2s/ship.php:359 ../../plugins/blog2social-v-4-9-
1377
- #: 1/views/b2s/html/footer.phtml:208
1378
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1379
  msgstr ""
1380
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
1381
  "Manager benutzen?"
1382
 
1383
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:577 ../..
1384
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:57 ../..
1385
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:77 ../..
1386
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:117 ../..
1387
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:119 ../..
1388
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:132 ../..
1389
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:134 ../..
1390
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:147 ../..
1391
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:149 ../..
1392
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:163 ../..
1393
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:165 ../..
1394
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:456
1395
  msgid "save"
1396
  msgstr "speichern"
1397
 
1398
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Settings/Item.php:582
1399
  msgid "Sorry, we can not load your data at the moment..."
1400
  msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
1401
 
1402
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:29
1403
  msgid "The images file types .jpg and .png are allowed. Please try another."
1404
  msgstr "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
1405
 
1406
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:30 ../..
1407
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:15
1408
  msgid ""
1409
  "You need a higher user role to upload an image on this blog. Please contact "
1410
  "your administrator."
@@ -1412,11 +1412,11 @@ msgstr ""
1412
  "Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
1413
  "hochzuladen. Bitte kontaktiere Deinen Administrator."
1414
 
1415
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:31
1416
  msgid "To select an individual image from your media library,"
1417
  msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
1418
 
1419
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:37
1420
  msgid ""
1421
  "The best size for images in social media posts are between: 667-1000px x 523-"
1422
  "1000px. Blog2Social will automatically resize your image according to "
@@ -1426,80 +1426,80 @@ msgstr ""
1426
  "1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe "
1427
  "des jeweiligen Netzwerks an."
1428
 
1429
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:61
1430
  msgid "No images are included in your post."
1431
  msgstr "In dem Beitrag sind keine Bilder hinterlegt"
1432
 
1433
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:69
1434
  msgid "Apply image for all posts"
1435
  msgstr "Bild für alle Posts übernehmen"
1436
 
1437
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:73 ../..
1438
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:75
1439
  msgid "Apply image for this post"
1440
  msgstr "Bild für diesen Post übernehmen"
1441
 
1442
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:86 ../..
1443
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:195
1444
  msgid "Select or upload an image from media gallery"
1445
  msgstr "Bild auswählen / hochladen"
1446
 
1447
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Image.php:87 ../..
1448
- #: /plugins/blog2social-v-4-9-1/views/b2s/settings.php:196
1449
  msgid "Use image"
1450
  msgstr "Bild verwenden"
1451
 
1452
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:102
1453
  msgid "Network does not support image for profiles"
1454
  msgstr "Netzwerk unterstützt keine Bilder für Profile"
1455
 
1456
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:103
1457
  msgid "Network defines image by link"
1458
  msgstr "Netzwerk wählt selber das Bild aus"
1459
 
1460
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:105
1461
  msgid "Supported HTML tags"
1462
  msgstr "Erlaubte HTML-Elemente"
1463
 
1464
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:106 ../..
1465
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:165
1466
  msgid "Network does not support emojis"
1467
  msgstr "Netzwerk unterstützt keine Emojis"
1468
 
1469
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:149
1470
  msgid "Text only"
1471
  msgstr "nur Text"
1472
 
1473
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:150 ../..
1474
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:154 ../..
1475
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:189 ../..
1476
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:193 ../..
1477
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:215 ../..
1478
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:219 ../..
1479
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:824 ../..
1480
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:826
1481
  msgid "characters"
1482
  msgstr "Zeichen"
1483
 
1484
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:164
1485
  msgid "Network does not support image for pages"
1486
  msgstr "Netzwerk unterstützt keine Bilder für Seiten"
1487
 
1488
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:248
1489
  msgid "post format"
1490
  msgstr "Postformat"
1491
 
1492
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:258 ../..
1493
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:832
1494
  msgid "Insert full-text"
1495
  msgstr "ganzen Text einfügen"
1496
 
1497
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:260 ../..
1498
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:834
1499
  msgid "Delete text"
1500
  msgstr "Text löschen"
1501
 
1502
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:268
1503
  msgid ""
1504
  "You can customize your post with individual comments, @-handles, emojis, and "
1505
  "more in the Instant Sharing window, after planning your post."
@@ -1508,9 +1508,9 @@ msgstr ""
1508
  "mehr im Fenster \"Instant Sharing\" anpassen, nachdem Du Deinen Post geplant "
1509
  "hast."
1510
 
1511
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:274 ../..
1512
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:456 ../..
1513
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:711
1514
  msgid ""
1515
  "Please keep in mind that according to Twitter’s new TOS, users are no longer "
1516
  "allowed to post identical or substantially similar content to multiple "
@@ -1521,9 +1521,9 @@ msgstr ""
1521
  "Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
1522
  "mehreren Accounts zu posten."
1523
 
1524
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:274 ../..
1525
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:456 ../..
1526
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:711
1527
  msgid ""
1528
  "Violating these rules can result in Twitter suspending your account. Always "
1529
  "vary your Tweets with different comments, hashtags or handles to prevent "
@@ -1533,252 +1533,252 @@ msgstr ""
1533
  "sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
1534
  "Hashtags und Handles um doppelte Beiträge zu vermeiden."
1535
 
1536
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:274 ../..
1537
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:456 ../..
1538
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:711
1539
  msgid "Learn more about this"
1540
  msgstr "Erfahre mehr darüber"
1541
 
1542
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:294
1543
  msgid "hide calendar"
1544
  msgstr "Kalender ausblenden"
1545
 
1546
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:340 ../..
1547
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:364 ../..
1548
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:388 ../..
1549
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:406 ../..
1550
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:421 ../..
1551
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:448 ../..
1552
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:466 ../..
1553
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:482 ../..
1554
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:495 ../..
1555
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:511 ../..
1556
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:516
1557
  msgid "Write something about your post..."
1558
  msgstr "Schreibe etwas..."
1559
 
1560
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:347 ../..
1561
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:371 ../..
1562
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:395 ../..
1563
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:444 ../..
1564
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:462 ../..
1565
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:478 ../..
1566
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:507 ../..
1567
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:541
1568
  msgid "Change image"
1569
  msgstr "Bild ändern\n"
1570
 
1571
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:351
1572
  msgid ""
1573
  "Info: Change Open Graph Meta tags image, title and description for this "
1574
  "network"
1575
  msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
1576
 
1577
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:354 ../..
1578
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:378
1579
  msgid ""
1580
  "You want to change your link image, link title and link description for this "
1581
  "network? Click here."
1582
  msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
1583
 
1584
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:356
1585
  msgid "OG Meta title"
1586
  msgstr "OG Titel"
1587
 
1588
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:357
1589
  msgid "OG Meta description"
1590
  msgstr "OG Beschreibung"
1591
 
1592
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:375
1593
  msgid "Info: Change Card Meta tags image, title and description for this network"
1594
  msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
1595
 
1596
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:380
1597
  msgid "Card Meta title"
1598
  msgstr "Card Titel"
1599
 
1600
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:381
1601
  msgid "Card Meta description"
1602
  msgstr "Card Beschreibung"
1603
 
1604
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:528
1605
  msgid "required"
1606
  msgstr "erforderlich"
1607
 
1608
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:548 ../..
1609
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:550
1610
  msgid "Link"
1611
  msgstr "Link"
1612
 
1613
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:609
1614
  msgid "The Headline..."
1615
  msgstr "Die Überschrift..."
1616
 
1617
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:614
1618
  msgid "Hashtags"
1619
  msgstr "Hashtags"
1620
 
1621
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:642
1622
  msgid "Enable Retweets for all Tweets with the selected profile"
1623
  msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
1624
 
1625
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:661 ../..
1626
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:57
1627
  msgid "Delay"
1628
  msgstr "Verzögerung"
1629
 
1630
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:671 ../..
1631
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:672 ../..
1632
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:673 ../..
1633
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:674 ../..
1634
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:61 ../..
1635
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:62 ../..
1636
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:63 ../..
1637
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:64
1638
  msgid "min"
1639
  msgstr "min"
1640
 
1641
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:679
1642
  msgid "Add Retweet"
1643
  msgstr "Retweet hinzufügen"
1644
 
1645
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:698
1646
  msgid "Share Now"
1647
  msgstr "Sofort teilen"
1648
 
1649
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:701 ../..
1650
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:214 ../..
1651
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:395
1652
  msgid "Schedule for specific dates"
1653
  msgstr "Für bestimmte Termine planen\n"
1654
 
1655
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:703
1656
  msgid "Schedule Recurrent Post"
1657
  msgstr "regelmäßig Planen"
1658
 
1659
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:738
1660
  msgid "Interval"
1661
  msgstr "Intervall"
1662
 
1663
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:739 ../..
1664
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:742
1665
  msgid "Duration"
1666
  msgstr "Dauer"
1667
 
1668
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:743
1669
  msgid "Repeat"
1670
  msgstr "Wiederholungen"
1671
 
1672
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:744
1673
  msgid "Day of month"
1674
  msgstr "Tag im Month"
1675
 
1676
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:745
1677
  msgid "Duration in days"
1678
  msgstr "Abstand in Tagen"
1679
 
1680
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:747
1681
  msgid "Start date"
1682
  msgstr "Startdatum"
1683
 
1684
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:748 ../..
1685
- #: /plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:800 ../..
1686
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:47 ../..
1687
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:50
1688
  msgid "Time"
1689
  msgstr "Zeit"
1690
 
1691
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:749
1692
  msgid "Days"
1693
  msgstr "Tage"
1694
 
1695
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:755
1696
  msgid "weekly"
1697
  msgstr "wöchentlich"
1698
 
1699
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:756
1700
  msgid "monthly"
1701
  msgstr "monatlich"
1702
 
1703
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:757
1704
  msgid "own period"
1705
  msgstr "eigener Zeitraum"
1706
 
1707
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:763
1708
  msgid "Week"
1709
  msgstr "Woche"
1710
 
1711
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:763
1712
  msgid "Weeks"
1713
  msgstr "Wochen"
1714
 
1715
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:772
1716
  msgid "Month"
1717
  msgstr "Monat"
1718
 
1719
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:772
1720
  msgid "Months"
1721
  msgstr "Monate"
1722
 
1723
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:792
1724
  msgid "End Of Month"
1725
  msgstr "Monatsende"
1726
 
1727
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:797
1728
  msgid "Timespan"
1729
  msgstr "Timespan"
1730
 
1731
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:799 ../..
1732
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:46 ../..
1733
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:49
1734
  msgid "Date"
1735
  msgstr "Startdatum"
1736
 
1737
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:805
1738
  msgid "Mon"
1739
  msgstr "Mo"
1740
 
1741
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:806
1742
  msgid "Tue"
1743
  msgstr "Di"
1744
 
1745
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:807
1746
  msgid "Wed"
1747
  msgstr "Mi"
1748
 
1749
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:808
1750
  msgid "Thu"
1751
  msgstr "Do"
1752
 
1753
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:809
1754
  msgid "Fri"
1755
  msgstr "Fr"
1756
 
1757
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:810
1758
  msgid "Sat"
1759
  msgstr "Sa"
1760
 
1761
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:811
1762
  msgid "Sun"
1763
  msgstr "So"
1764
 
1765
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:817
1766
  msgid "add another post"
1767
  msgstr "einen weiteren Post anlegen\n"
1768
 
1769
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:830
1770
  msgid "Copy from original"
1771
  msgstr "Text von Original kopieren"
1772
 
1773
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:846
1774
  msgid "Apply Settings To All Networks"
1775
  msgstr "Planung für alle Netzwerke übernehmen"
1776
 
1777
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Item.php:847
1778
  msgid "Save as best time for this network"
1779
  msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
1780
 
1781
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:372
1782
  msgid ""
1783
  "For sharing your posts on personal Facebook Profiles you can now use "
1784
  "Facebook Instant Sharing"
@@ -1786,15 +1786,15 @@ msgstr ""
1786
  "Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht ab sofort "
1787
  "Facebook Instant Sharing zur Verfügung"
1788
 
1789
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:372
1790
  msgid "Read why"
1791
  msgstr "mehr Informationen"
1792
 
1793
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:374
1794
  msgid "This is how it works:"
1795
  msgstr "Und so funktioniert es:"
1796
 
1797
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:375
1798
  msgid ""
1799
  "-To share your post immediately, click the \"Share\" button next to your "
1800
  "selected Facebook profile below."
@@ -1802,7 +1802,7 @@ msgstr ""
1802
  "-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
1803
  "neben Deinem unten aufgeführten Profil."
1804
 
1805
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:376
1806
  msgid ""
1807
  "-For scheduled posts, Blog2Social will save your post and move it to the "
1808
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
@@ -1815,60 +1815,60 @@ msgstr ""
1815
  "Klicke dann auf \"Teilen\", um Deinen Post dann an Dein Facebook-Profil zu "
1816
  "senden."
1817
 
1818
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:381
1819
  msgid "Please share your Facebook post now"
1820
  msgstr "Bitte teile nun Deinen Facebook Post"
1821
 
1822
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:390
1823
  msgid "view social media post"
1824
  msgstr "Zeige Social Media Beitrag an"
1825
 
1826
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/Ship/Save.php:400
1827
  msgid "scheduled on"
1828
  msgstr "geplant für"
1829
 
1830
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/User/Info.php:11
1831
  msgid "Number of shared posts"
1832
  msgstr "Anzahl geteilter Beiträge"
1833
 
1834
- #: ../../plugins/blog2social-v-4-9-1/includes/B2S/User/Info.php:14
1835
  msgid "Number of scheduled posts"
1836
  msgstr "Anzahl der geplanten Posts"
1837
 
1838
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:42
1839
  msgid "Modify pin board"
1840
  msgstr "Pinnwand ändern"
1841
 
1842
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:42
1843
  msgid "Modify forum"
1844
  msgstr "Forum ändern"
1845
 
1846
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:42
1847
  msgid "Modify subreddit"
1848
  msgstr "Subreddit ändern"
1849
 
1850
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:284
1851
  msgid "Auto-Post on Social Media"
1852
  msgstr "Automatisch auf Social Media teilen"
1853
 
1854
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:285
1855
  msgid "Social Media Content Calendar"
1856
  msgstr "Social Media Kalender"
1857
 
1858
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:525
1859
  msgid "This post will be shared into your social media on"
1860
  msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
1861
 
1862
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:525 ../..
1863
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:527
1864
  msgid "show details"
1865
  msgstr "siehe Details"
1866
 
1867
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:527
1868
  msgid "This post will be shared on social media in 2-3 minutes!"
1869
  msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
1870
 
1871
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:531
1872
  msgid ""
1873
  "Please, make sure that your post are publish on this blog on this moment. "
1874
  "Then you can auto post your post with Blog2social."
@@ -1876,20 +1876,20 @@ msgstr ""
1876
  "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
1877
  " Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
1878
 
1879
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:546
1880
  msgid "Upgrade to Premium"
1881
  msgstr "Premium freischalten"
1882
 
1883
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:566
1884
  msgctxt "command (plugins)"
1885
  msgid "Deactivate"
1886
  msgstr "Deaktivieren"
1887
 
1888
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:577
1889
  msgid "Your post could not be posted."
1890
  msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
1891
 
1892
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:578
1893
  msgid ""
1894
  "Your authorization has expired. Please reconnect your account in the "
1895
  "Blog2Social network settings."
@@ -1897,11 +1897,11 @@ msgstr ""
1897
  "Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
1898
  "Blog2Social Netzwerkeinstellungen erneut. "
1899
 
1900
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:579
1901
  msgid "The network has marked the post as spam or abusive."
1902
  msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
1903
 
1904
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:580
1905
  msgid ""
1906
  "We don't have the permission to publish your post. Please check your "
1907
  "authorization."
@@ -1909,7 +1909,7 @@ msgstr ""
1909
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
1910
  "überprüfe deine Autorisierung."
1911
 
1912
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:581
1913
  msgid ""
1914
  "Your authorization is interrupted. Please check your authorization. Please "
1915
  "see <a target=\"_blank\" href=\"https://www.blog2social."
@@ -1919,15 +1919,15 @@ msgstr ""
1919
  "Siehe <a target=\"_blank\" href=\"https://www.blog2social."
1920
  "com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
1921
 
1922
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:582
1923
  msgid "Your daily limit has been reached."
1924
  msgstr "Dein tägliches Beitragslimit wurde erreicht."
1925
 
1926
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:583
1927
  msgid "Your post could not be posted, because your image is not available."
1928
  msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
1929
 
1930
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:584
1931
  msgid ""
1932
  "The network has blocked your account. Please see <a target=\"_blank\" "
1933
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
@@ -1937,7 +1937,7 @@ msgstr ""
1937
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
1938
  "loesungen.html\">FAQ</a>."
1939
 
1940
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:585
1941
  msgid ""
1942
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
1943
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
@@ -1947,13 +1947,13 @@ msgstr ""
1947
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
1948
  "loesungen.html\">FAQ</a>."
1949
 
1950
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:586
1951
  msgid "Your daily limit for this network has been reached. Please try again later."
1952
  msgstr ""
1953
  "Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
1954
  "versuche es später noch einmal."
1955
 
1956
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:587
1957
  msgid ""
1958
  "The network can not publish special characters such as Emoji. Please see <a "
1959
  "target=\"_blank\" href=\"https://www.blog2social."
@@ -1963,80 +1963,80 @@ msgstr ""
1963
  "//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
1964
  "html\">FAQ</a>."
1965
 
1966
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:588
1967
  msgid "Your post is a duplicate."
1968
  msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
1969
 
1970
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:589
1971
  msgid "The network requires a public url."
1972
  msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
1973
 
1974
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:590
1975
  msgid "You have already retweeted this post."
1976
  msgstr "Du hast diesen Post bereits retweetet.\n"
1977
 
1978
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:591
1979
  msgid "Your group can not be found by the network."
1980
  msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden. "
1981
 
1982
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:648 ../..
1983
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:648 ../../plugins/blog2social-
1984
- #: v-4-9-1/includes/Loader.php:683
1985
  msgid "Dashboard"
1986
  msgstr "Dashboard"
1987
 
1988
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:649 ../..
1989
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:649 ../../plugins/blog2social-
1990
- #: v-4-9-1/includes/Loader.php:690
1991
  msgid "Posts & Sharing"
1992
  msgstr "Beiträge"
1993
 
1994
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:650 ../..
1995
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:650 ../../plugins/blog2social-
1996
- #: v-4-9-1/includes/Loader.php:697 ../../plugins/blog2social-v-4-9-
1997
- #: 1/views/b2s/network.php:17
1998
  msgid "Networks"
1999
  msgstr "Netzwerke"
2000
 
2001
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:651 ../..
2002
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:651 ../../plugins/blog2social-
2003
- #: v-4-9-1/includes/Loader.php:703 ../../plugins/blog2social-v-4-9-
2004
- #: 1/views/b2s/ship.php:53 ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:283
2005
  msgid "Settings"
2006
  msgstr "Einstellungen"
2007
 
2008
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:652 ../..
2009
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:652 ../../plugins/blog2social-
2010
- #: v-4-9-1/includes/Loader.php:709
2011
  msgid "PR-Service"
2012
  msgstr "PR-Service"
2013
 
2014
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:653 ../..
2015
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:653 ../../plugins/blog2social-
2016
- #: v-4-9-1/includes/Loader.php:716 ../../plugins/blog2social-v-4-9-
2017
- #: 1/views/b2s/widgets/tutorial.php:4
2018
  msgid "How to & FAQ"
2019
  msgstr "How to & FAQ"
2020
 
2021
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:654
2022
  msgid "Premium"
2023
  msgstr "Premium"
2024
 
2025
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:674
2026
  msgid "Blog2Social"
2027
  msgstr "Blog2Social"
2028
 
2029
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:1090 ../..
2030
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:1272
2031
  msgid "or"
2032
  msgstr "oder"
2033
 
2034
- #: ../../plugins/blog2social-v-4-9-1/includes/Loader.php:1090 ../..
2035
- #: /plugins/blog2social-v-4-9-1/includes/Loader.php:1272
2036
  msgid "back to install plugins"
2037
  msgstr "zurück zur Pluginübersicht"
2038
 
2039
- #: ../../plugins/blog2social-v-4-9-1/includes/Notice.php:18
2040
  msgid ""
2041
  "<strong>Rate it!</strong> If you like Blog2Social, please give us a 5 star "
2042
  "rating. I there is anything that does not work for you, please contact us!"
@@ -2044,36 +2044,36 @@ msgstr ""
2044
  "Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
2045
  "Bewertung. Spreche uns an, wenn Dir ir­gend­was nicht gefällt."
2046
 
2047
- #: ../../plugins/blog2social-v-4-9-1/includes/Notice.php:19 ../..
2048
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:55
2049
  msgid "RATE BLOG2SOCIAL"
2050
  msgstr "Blog2Social jetzt bewerten"
2051
 
2052
- #: ../../plugins/blog2social-v-4-9-1/includes/Notice.php:20
2053
  msgid "hide"
2054
  msgstr "ausblenden"
2055
 
2056
- #: ../../plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:31
2057
  msgid "All Authors"
2058
  msgstr "alle Autoren"
2059
 
2060
- #: ../../plugins/blog2social-v-4-9-1/includes/PRG/Post/Filter.php:42
2061
  msgid "All Types"
2062
  msgstr "alle Typen"
2063
 
2064
- #: ../../plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:100
2065
  msgid "You have no posts published or scheduled"
2066
  msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
2067
 
2068
- #: ../../plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:127
2069
  msgid "Publish on PR-Gateway"
2070
  msgstr "Beitrag über PR-Gateway veröffentlichen"
2071
 
2072
- #: ../../plugins/blog2social-v-4-9-1/includes/PRG/Post/Item.php:129
2073
  msgid "on Blog"
2074
  msgstr "auf dem Blog"
2075
 
2076
- #: ../../plugins/blog2social-v-4-9-1/includes/System.php:69
2077
  msgid ""
2078
  "Blog2Social used cURL. cURL is not installed in your PHP installation on "
2079
  "your server. Install cURL and activate Blog2Social again."
@@ -2081,8 +2081,8 @@ msgstr ""
2081
  "Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
2082
  "Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
2083
 
2084
- #: ../../plugins/blog2social-v-4-9-1/includes/System.php:72 ../..
2085
- #: /plugins/blog2social-v-4-9-1/includes/System.php:78
2086
  msgid ""
2087
  "Please see <a href=\"https://www.blog2social."
2088
  "com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
@@ -2092,7 +2092,7 @@ msgstr ""
2092
  "com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
2093
  "blog2social.html\" target=\"_blank\">FAQ</a>"
2094
 
2095
- #: ../../plugins/blog2social-v-4-9-1/includes/System.php:75
2096
  msgid ""
2097
  "Blog2Social used PHP. Your installed PHP version on your server is not high "
2098
  "enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
@@ -2101,7 +2101,7 @@ msgstr ""
2101
  "um Blog2Social zu nutzen. Aktualisere Deine PHP Version auf 5.5.3 oder höher."
2102
  " "
2103
 
2104
- #: ../../plugins/blog2social-v-4-9-1/includes/System.php:81
2105
  msgid ""
2106
  "Blog2Social does not seem to have permission to write in your WordPress "
2107
  "database. Please assign Blog2Social the permission to write in the WordPress "
@@ -2114,7 +2114,7 @@ msgstr ""
2114
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
2115
  "zu tun.\n"
2116
 
2117
- #: ../../plugins/blog2social-v-4-9-1/includes/System.php:84
2118
  msgid ""
2119
  "<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
2120
  "requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
@@ -2124,27 +2124,27 @@ msgstr ""
2124
  "com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
2125
  "blog2social.html\" target=\"_blank\">Siehe FAQ</a>"
2126
 
2127
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/dashboard.php:82
2128
  msgid "Couldn't find your answer?"
2129
  msgstr "Konntest Du Deine Antwort nicht finden?"
2130
 
2131
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/dashboard.php:84
2132
  msgid "Contact Support by Email"
2133
  msgstr "Support-Team per E-Mail kontaktieren"
2134
 
2135
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/dashboard.php:86
2136
  msgid "Call us: +49 2181 7569-277"
2137
  msgstr "Ruf' uns an: +49 2181 7569-277"
2138
 
2139
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/dashboard.php:88
2140
  msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
2141
  msgstr "(Anrufzeiten: Montags bis Freitag von 9:00 bis 17:00 MEZ)"
2142
 
2143
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:9
2144
  msgid "How to use Blog2Social"
2145
  msgstr "So nutzt Du Blog2Social"
2146
 
2147
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:17
2148
  msgid ""
2149
  "Learn how to get the most out of Blog2Social to promote your blog on social "
2150
  "media. Find step-by-step instructions and tips for FREE and PREMIUM users."
@@ -2153,55 +2153,54 @@ msgstr ""
2153
  "auf den Social Media zu bewerben. Siehe Dir dazu die Schritt-für-Schritt "
2154
  "Anleitung und Tipps für Free und Premium Nutzer an."
2155
 
2156
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:30
2157
  msgid "Do you need help?"
2158
  msgstr "Brauchst Du Unterstützung?"
2159
 
2160
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:32
2161
  msgid "Find answers to common questions in our FAQ."
2162
  msgstr "Finde Antworten zu häufig gestelle Fragen in umserem FAQ."
2163
 
2164
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:37
2165
  msgid "search FAQ"
2166
  msgstr "suchen"
2167
 
2168
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/howto.php:41 ../..
2169
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/support.php:1
2170
  msgid "TOP 5 FAQ"
2171
  msgstr "TOP 5 FAQ"
2172
 
2173
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:21 ../..
2174
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:22 ../..
2175
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:169 ../..
2176
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:170 ../..
2177
- #: /plugins/blog2social-v-4-9-1/views/prg/post.php:25 ../../plugins/blog2social-v-
2178
- #: 4-9-1/views/prg/post.php:26 ../../plugins/blog2social-v-4-9-
2179
- #: 1/views/b2s/html/post.navbar.phtml:18 ../../plugins/blog2social-v-4-9-
2180
- #: 1/views/b2s/html/post.navbar.phtml:19
2181
  msgid "filter"
2182
  msgstr "Filter"
2183
 
2184
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:27 ../..
2185
- #: /plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:81
2186
  msgid "Delete"
2187
  msgstr "löschen"
2188
 
2189
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:32 ../..
2190
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:35 ../..
2191
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:68 ../..
2192
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:91
2193
  msgid "Create new profile"
2194
  msgstr "neues Profil erstellen"
2195
 
2196
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:34
2197
  msgid "You want to define a new combination of networks?"
2198
  msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
2199
 
2200
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:74
2201
  msgid "create"
2202
  msgstr "erstellen"
2203
 
2204
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:94
2205
  msgid ""
2206
  "All connected networks will be displayed as default \"Standard\" networks "
2207
  "profile.<br><br>You may define various sets of social media accounts, "
@@ -2241,45 +2240,44 @@ msgstr ""
2241
  "verschiedene Netzwerk-Profile noch schneller auf Deine verschiedenen "
2242
  "Netzwerk-Kombinationen zuzugreifen."
2243
 
2244
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:97
2245
  msgid "You want to add another network profile, pages or groups?"
2246
  msgstr ""
2247
  "Du möchtest ein weiteres Netzwerkprofil anlegen oder auf Seiten und Gruppen "
2248
  "posten?"
2249
 
2250
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:126
2251
  msgid "Delete Profile"
2252
  msgstr "Profil löschen"
2253
 
2254
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:129
2255
  msgid "Do you really want to delete this profile"
2256
  msgstr "Soll Dein Profil wirklich gelöscht werden?"
2257
 
2258
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:132 ../..
2259
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:87 ../..
2260
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:74 ../..
2261
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.publish.php:74 ../..
2262
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:86 ../..
2263
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:80 ../..
2264
- #: /plugins/blog2social-v-4-9-1/views/prg/ship.php:92
2265
  msgid "NO"
2266
  msgstr "NEIN"
2267
 
2268
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:133 ../..
2269
- #: /plugins/blog2social-v-4-9-1/views/b2s/network.php:184 ../..
2270
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:88 ../..
2271
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:75 ../..
2272
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.publish.php:75 ../..
2273
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:87 ../..
2274
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:81
2275
  msgid "YES, delete"
2276
  msgstr "Ja, löschen"
2277
 
2278
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:144
2279
  msgid "Google My Business"
2280
  msgstr "Google My Business"
2281
 
2282
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:147
2283
  msgid ""
2284
  "Blog2Social uses the official Google My Business API to share your content "
2285
  "on your business listing. You can connect Google My Business listings with "
@@ -2291,7 +2289,7 @@ msgstr ""
2291
  "zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
2292
  "welchem Standort Ihr Content geteilt werden soll."
2293
 
2294
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:150
2295
  msgid ""
2296
  "Google currently allows access to the API for all companies with up to 9 "
2297
  "locations in their Google My Business Listings. However, Google plans to "
@@ -2303,53 +2301,53 @@ msgstr ""
2303
  "Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
2304
  "Business Brancheneinträgen zu erweitern."
2305
 
2306
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:153 ../..
2307
- #: /plugins/blog2social-v-4-9-1/views/b2s/premium.php:22 ../..
2308
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:14
2309
  msgid "Learn more"
2310
  msgstr "Erfahre mehr"
2311
 
2312
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:166
2313
  msgid "Delete Authorization"
2314
  msgstr "Autorisierung löschen"
2315
 
2316
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:175
2317
  msgid "Do you really want to delete this authorization"
2318
  msgstr "Soll die Autorisierung wirklich löschen werden?"
2319
 
2320
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:178
2321
  msgid "You have still set up scheduled posts for this network:"
2322
  msgstr "Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
2323
 
2324
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:179
2325
  msgid "scheduled posts"
2326
  msgstr "geplante Beiträge"
2327
 
2328
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:185
2329
  msgid "View schedule posts for this profile"
2330
  msgstr "Gehe zu geplanten Beiträgen für dieses Profil."
2331
 
2332
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:204
2333
  msgid "Please re-authorize your account with Blog2Social and try again"
2334
  msgstr "Bitte autorisiere Dein Konto bei Blog2Social und versuche es erneut."
2335
 
2336
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:205
2337
  msgid "Change successful"
2338
  msgstr "Änderung erfolgreich"
2339
 
2340
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:206
2341
  msgid "Could not be changed"
2342
  msgstr "Kann nicht geändert werden"
2343
 
2344
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/network.php:214
2345
  msgid "modfiy"
2346
  msgstr "ändern"
2347
 
2348
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:8
2349
  msgid "Posting on Facebook Profiles – Introducing Facebook Instant Sharing"
2350
  msgstr "Posten auf Facebook-Profilen – Neues Feature: Facebook Instant Sharing"
2351
 
2352
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:11
2353
  msgid ""
2354
  "As part of recent updates to the Facebook Platform Policies, Facebook "
2355
  "introduced significant changes to the APIs that third-party programs, such "
@@ -2360,7 +2358,7 @@ msgstr ""
2360
  "(APIs) vorgenommen, die von Drittanbieterprogrammen, wie z. B. Social Media "
2361
  "Marketing-Tools, verwendet werden."
2362
 
2363
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:14
2364
  msgid ""
2365
  "Due to Facebook API changes, starting on 1st August 2018, access to personal "
2366
  "Facebook Profiles has been severely restricted for all social media tools. "
@@ -2372,16 +2370,16 @@ msgstr ""
2372
  "eingeschränkt. Die automatische Veröffentlichung auf persönlichen Facebook-"
2373
  "Profilen ist daher mit keinem Social Media-Tool oder App mehr erlaubt."
2374
 
2375
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:15 .
2376
- #: ./../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:70
2377
  msgid "read more"
2378
  msgstr "mehr erfahren"
2379
 
2380
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:18
2381
  msgid "What does this mean for your Social Media Marketing?"
2382
  msgstr "Was bedeutet das für Dein Social-Media-Marketing?"
2383
 
2384
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:20
2385
  msgid ""
2386
  "Sharing your posts on your Facebook Profile will still be possible with "
2387
  "Blog2Social! To help you keep sharing content with your followers, "
@@ -2390,7 +2388,7 @@ msgstr ""
2390
  "Um Dir weiterhin zu ermöglichen, Inhalte mit Deinen Followern zu teilen, "
2391
  "führt Blog2Social jetzt Facebook Instant Sharing ein."
2392
 
2393
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:22
2394
  msgid ""
2395
  "Instant Sharing will not only let you share content on your Facebook Profile."
2396
  " You will also be able to share in Groups, Events and more!"
@@ -2398,7 +2396,7 @@ msgstr ""
2398
  "Mit Instant Sharing kannst Du nicht nur Inhalte auf Deinem Facebook-Profil "
2399
  "teilen, sondern auch in -Gruppen und -Veranstaltungen! "
2400
 
2401
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:24
2402
  msgid ""
2403
  "Learn how to use all the new features of Facebook Instant Sharing including "
2404
  "@handles, emotions, and more customizing features!"
@@ -2407,11 +2405,11 @@ msgstr ""
2407
  "kannst, einschließlich @handles, Emojis und zusätzlichen "
2408
  "Individualisierungsmöglichkeiten!"
2409
 
2410
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:27
2411
  msgid "Please note:"
2412
  msgstr "Hinweis:"
2413
 
2414
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:29
2415
  msgid ""
2416
  "Changes to the API currently only affect personal Facebook Profiles. Sharing "
2417
  "your posts automatically on your Facebook Pages will also still be possible "
@@ -2423,7 +2421,7 @@ msgstr ""
2423
  "weiterhin mit Social Media Tools möglich. Selbstverständlich kannst Du auch "
2424
  "weiterhin mit Blog2Social automatisch auf deinen Facebook-Seiten posten."
2425
 
2426
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:31
2427
  msgid ""
2428
  "If you are using your personal Facebook Profile for business, promotion, or "
2429
  "publishing purposes, you might also consider converting your personal "
@@ -2433,23 +2431,23 @@ msgstr ""
2433
  "Veröffentlichungszwecke verwendest, kann es sich für Dich lohnen, Dein "
2434
  "persönliches Facebook-Profil in eine Facebook-Seite umzuwandeln."
2435
 
2436
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:33
2437
  msgid "Learn how to convert your Facebook Profile to a Facebook Page"
2438
  msgstr ""
2439
  "Hier erfährst Du, wie Du Dein Facebook-Profil in eine Facebook-Seite "
2440
  "umwandeln kannst und welche Vorteile das bringt."
2441
 
2442
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/network-tos-modal.php:38
2443
  msgid "I understand the Facebook changes"
2444
  msgstr "Ich verstehe die Änderungen bei Facebook"
2445
 
2446
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/plugin-deactivate-modal.
2447
- #: php:10
2448
  msgid "Do you want to delete your scheduled posts?"
2449
  msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
2450
 
2451
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/plugin-deactivate-modal.
2452
- #: php:13
2453
  msgid ""
2454
  "Do you want Blog2Social to delete all your scheduled social media posts? "
2455
  "Your scheduled posts will no longer be sent to your social networks."
@@ -2458,78 +2456,78 @@ msgstr ""
2458
  "geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend "
2459
  "nicht weiter an Deine sozialen Netzwerke versendet."
2460
 
2461
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/plugin-deactivate-modal.
2462
- #: php:14
2463
  msgid "Delete scheduled posts"
2464
  msgstr "Geplante Beiträge löschen"
2465
 
2466
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/plugin-deactivate-modal.
2467
- #: php:17
2468
  msgid "Continue deactivation"
2469
  msgstr "Deaktivierung fortsetzen"
2470
 
2471
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:7
2472
  msgid "Edit Post"
2473
  msgstr "Beitrag bearbeiten"
2474
 
2475
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:34
2476
  msgid "This post is blocked by %1"
2477
  msgstr "% 1bearbeitet gerade diesen Beitrag."
2478
 
2479
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:68
2480
  msgid "The orginal tweet is scheduled on:"
2481
  msgstr "Der Original-Tweet ist geplant für:"
2482
 
2483
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/partials/post-edit-modal.php:85
2484
  msgid "Change details"
2485
  msgstr "Änderungen übernehmen"
2486
 
2487
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:78
2488
  msgid "Delete Social Media Posts"
2489
  msgstr "Social Media Posts löschen"
2490
 
2491
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:81
2492
  msgid "Are you sure you want to delete these Social Media posts?"
2493
  msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
2494
 
2495
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.approve.php:83 ../..
2496
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:70 ../..
2497
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.publish.php:70 ../..
2498
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:82 ../..
2499
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:76
2500
  msgid "Number of entries"
2501
  msgstr "Anzahl der Einträge"
2502
 
2503
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:30
2504
  msgid "Sort by network"
2505
  msgstr "Nach Netzwerk sortieren"
2506
 
2507
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:78 ../..
2508
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:159
2509
  msgid "add post"
2510
  msgstr "neuer Beitrag"
2511
 
2512
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:97 ../..
2513
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:117 ../..
2514
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:478
2515
  msgid "Choose your"
2516
  msgstr "Wähle Deinen"
2517
 
2518
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:97 ../..
2519
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:117 ../..
2520
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:478
2521
  msgid "Post Format"
2522
  msgstr "Postformat"
2523
 
2524
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:99 ../..
2525
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:119 ../..
2526
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:480
2527
  msgid "for:"
2528
  msgstr "für:"
2529
 
2530
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:118 ../..
2531
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:138 ../..
2532
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:495
2533
  msgid ""
2534
  "Define the default settings for the custom post format for all of your "
2535
  "Facebook accounts in the Blog2Social settings."
@@ -2537,9 +2535,9 @@ msgstr ""
2537
  "Definiere Dein Standard-Beitragsformat für alle Deine Facebook-Verbindungen "
2538
  "unter den Blog2Social Einstellungen."
2539
 
2540
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:121 ../..
2541
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:141 ../..
2542
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:498
2543
  msgid ""
2544
  "Define the default settings for the custom post format for all of your "
2545
  "Twitter accounts in the Blog2Social settings."
@@ -2547,9 +2545,9 @@ msgstr ""
2547
  "Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
2548
  "unter den Blog2Social Einstellungen."
2549
 
2550
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:124 ../..
2551
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:144 ../..
2552
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:501
2553
  msgid ""
2554
  "Define the default settings for the custom post format for all of your "
2555
  "Google+ accounts in the Blog2Social settings."
@@ -2557,9 +2555,9 @@ msgstr ""
2557
  "Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
2558
  "unter den Blog2Social Einstellungen."
2559
 
2560
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:127 ../..
2561
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:147 ../..
2562
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:504
2563
  msgid ""
2564
  "Define the default settings for the custom post format for all of your "
2565
  "Instagram accounts in the Blog2Social settings."
@@ -2567,28 +2565,28 @@ msgstr ""
2567
  "Definiere Dein Standard-Beitragsformat für alle Deine Instagram-Verbindungen "
2568
  "unter den Blog2Social Einstellungen."
2569
 
2570
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:142 ../..
2571
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:98 ../..
2572
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:435
2573
  msgid "Select image for"
2574
  msgstr "Wähle Bild aus für"
2575
 
2576
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:161
2577
  msgid "Select a post"
2578
  msgstr "Beitrag auswählen"
2579
 
2580
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:208 ../..
2581
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:389
2582
  msgid "Need to schedule your posts?"
2583
  msgstr "Du möchtest Deine Beiträge planen?"
2584
 
2585
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:211 ../..
2586
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:392
2587
  msgid "Blog2Social Premium covers everything you need."
2588
  msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
2589
 
2590
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:215 ../..
2591
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:396
2592
  msgid ""
2593
  "You want to publish a post on a specific date? No problem! Just enter your "
2594
  "desired date and you are ready to go!"
@@ -2596,13 +2594,13 @@ msgstr ""
2596
  "Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
2597
  "Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
2598
 
2599
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:217 ../..
2600
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:398
2601
  msgid "Schedule post recurrently"
2602
  msgstr "Beitrag mehrfach planen"
2603
 
2604
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:218 ../..
2605
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:399
2606
  msgid ""
2607
  "You have evergreen content you want to re-share from time to time in your "
2608
  "timeline? Schedule your evergreen content to be shared once, multiple times "
@@ -2612,16 +2610,16 @@ msgstr ""
2612
  "möchtest? Plane Deinen Evergreen-Content einmalig, mehrfach oder "
2613
  "wiederholend zu verschiedenden Zeiten."
2614
 
2615
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:220 ../..
2616
- #: /plugins/blog2social-v-4-9-1/views/b2s/premium.php:78 ../..
2617
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:401 ../../plugins/blog2social-
2618
- #: v-4-9-1/views/b2s/widgets/premium.php:71 ../../plugins/blog2social-v-4-9-
2619
- #: 1/views/b2s/html/footer.phtml:191
2620
  msgid "Best Time Scheduler"
2621
  msgstr "Beste Zeiten Manager"
2622
 
2623
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.calendar.php:221 ../..
2624
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:402
2625
  msgid ""
2626
  "Whenever you publish a post, only a fraction of your followers will actually "
2627
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
@@ -2633,33 +2631,33 @@ msgstr ""
2633
  "Dein Beitrag zu den Besten Zeiten für jedes Netzwerk zu planen. Erhalte mehr "
2634
  "Reichweite und verlängere die Lebensdauer Deiner Beiträge."
2635
 
2636
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:65 ../..
2637
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.publish.php:65 ../..
2638
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:71
2639
  msgid "Delete entries from the reporting"
2640
  msgstr "Einträge aus dem Reporting löschen"
2641
 
2642
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.notice.php:68 ../..
2643
- #: /plugins/blog2social-v-4-9-1/views/b2s/post.publish.php:68 ../..
2644
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:74
2645
  msgid "You are sure, you want to delete entries from the reporting?"
2646
  msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
2647
 
2648
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:77
2649
  msgid "Delete entries form the scheduling"
2650
  msgstr "Einträge aus der Planung löschen"
2651
 
2652
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/post.sched.php:80
2653
  msgid "You are sure, you want to delete entries from the scheduling?"
2654
  msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
2655
 
2656
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:9 ../..
2657
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:1
2658
  msgid "Your license: Blog2Social"
2659
  msgstr "Du nutzt Blog2Social"
2660
 
2661
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:21 ../..
2662
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:13
2663
  msgid ""
2664
  "Upgrade to Blog2Social Premium to schedule your posts for the best time, "
2665
  "once or recurringly with the Best Time Scheduler and post to pages, groups "
@@ -2669,42 +2667,42 @@ msgstr ""
2669
  "im Voraus planen, zur einmaligen oder wiederholten Veröffentlichung. Und Du "
2670
  "kannst auf Seiten, in Gruppen und mehreren Accounts pro Netzwerk posten."
2671
 
2672
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:27 ../..
2673
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:19 ../..
2674
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:24
2675
  msgid "Enter license key and change your version"
2676
  msgstr "Lizenzschlüssel eingeben und Version ändern"
2677
 
2678
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:29 ../..
2679
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:21 ../..
2680
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:26
2681
  msgid "Activate"
2682
  msgstr "Aktivieren"
2683
 
2684
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:51
2685
  msgid "Social Media Sharing"
2686
  msgstr "Netzwerkauswahl"
2687
 
2688
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:52 ../..
2689
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:36
2690
  msgid "Cross-share to all popular social networks"
2691
  msgstr "Teilen von Blogbeiträgen auf allen Social Media"
2692
 
2693
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:60
2694
  msgid "Auto Posting"
2695
  msgstr "Auto-Posting"
2696
 
2697
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:61 ../..
2698
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:48
2699
  msgid "Automatically share your posts whenever you publish a new blog post"
2700
  msgstr "Blogbeiträge automatisch beim Veröffentlichen teilen"
2701
 
2702
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:69
2703
  msgid "Customizing Social Media Posts"
2704
  msgstr "Individualisieren"
2705
 
2706
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:70 ../..
2707
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:60
2708
  msgid ""
2709
  "Edit or add comments, hashtags or handles. Edit posts in HTML for re-"
2710
  "publishing on blogging networks"
@@ -2712,16 +2710,16 @@ msgstr ""
2712
  "Posting-Texte ergänzen mit Kommentaren, Hashtags oder Handles. HTML-Editor "
2713
  "für das Posten in Blog-Netzwerken"
2714
 
2715
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:79 ../..
2716
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:72
2717
  msgid "Choose pre-defined times to post or edit and define your own time settings"
2718
  msgstr "Optimaler Zeitpunkt zum Posten voreingestellt und anpassbar"
2719
 
2720
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:89
2721
  msgid "Social Media Scheduler"
2722
  msgstr "Veröffentlichungen planen"
2723
 
2724
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:90
2725
  msgid ""
2726
  "Social media scheduling: once, repeatedly or recurrently to multiple "
2727
  "profiles, pages and groups"
@@ -2729,95 +2727,95 @@ msgstr ""
2729
  "Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
2730
  "Gruppen posten"
2731
 
2732
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:98
2733
  msgid "Individual Images for Each Social Media Post"
2734
  msgstr "Individuelle Bilder für jeden Social Media Post"
2735
 
2736
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:99
2737
  msgid ""
2738
  "Select any image from your media gallery for each social media post and "
2739
  "channel"
2740
  msgstr "Wählen Sie beliebige Bilder für Ihre Social Media Posts"
2741
 
2742
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:107
2743
  msgid "Select Post Format"
2744
  msgstr "Beitragsformat auswählen"
2745
 
2746
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:108 ../..
2747
- #: /plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:96
2748
  msgid "One-page preview editor for all social networks for easy customizing"
2749
  msgstr ""
2750
  "Zentrale Vorschauseite für alle Social Media mit Editor für einfaches "
2751
  "Anpassen"
2752
 
2753
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:116
2754
  msgid "Social Media Reporting"
2755
  msgstr "Reporting"
2756
 
2757
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:117
2758
  msgid "Keep track of your scheduled and shared posts"
2759
  msgstr ""
2760
  "Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
2761
  "einfachen Aufrufen und erneuten Teilen"
2762
 
2763
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/premium.php:122
2764
  msgid "Show me plans and prices"
2765
  msgstr "Versionen und Preise anzeigen"
2766
 
2767
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:25
2768
  msgid "save..."
2769
  msgstr "speichere Daten..."
2770
 
2771
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:30
2772
  msgid "General"
2773
  msgstr "Allgemein"
2774
 
2775
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:36
2776
  msgid "Social Meta Data"
2777
  msgstr "Social Meta Angaben"
2778
 
2779
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:39
2780
  msgid "Best Time Settings"
2781
  msgstr "Zeit-Einstellungen"
2782
 
2783
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:42
2784
  msgid "Network Settings"
2785
  msgstr "Netzwerk-Einstellungen"
2786
 
2787
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:65 ../..
2788
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:457
2789
  msgid "My Time Settings"
2790
  msgstr "Meine Zeit-Einstellungen"
2791
 
2792
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:76
2793
  msgid "Reset predefined best time settings"
2794
  msgstr "Voreingestellte beste Zeiten zurücksetzen"
2795
 
2796
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:86
2797
  msgid "Post format"
2798
  msgstr "Beitragsformat"
2799
 
2800
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:96
2801
  msgid "Facebook"
2802
  msgstr "Facebook"
2803
 
2804
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:99
2805
  msgid "Twitter"
2806
  msgstr "Twitter"
2807
 
2808
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:102
2809
  msgid "Google+"
2810
  msgstr "Google+"
2811
 
2812
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:105
2813
  msgid "Instagram"
2814
  msgstr "Instagram"
2815
 
2816
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:206
2817
  msgid "Allow shortcodes in my post"
2818
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
2819
 
2820
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:209
2821
  msgid ""
2822
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
2823
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
@@ -2836,11 +2834,11 @@ msgstr ""
2836
  "den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
2837
  "diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
2838
 
2839
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:220
2840
  msgid "Include WordPress tags as hashtags in your posts"
2841
  msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
2842
 
2843
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:223
2844
  msgid ""
2845
  "Hashtags are a great way to generate more reach and visibility for your "
2846
  "posts. By activating this feature Blog2Social will automatically include "
@@ -2857,21 +2855,21 @@ msgstr ""
2857
  "Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige "
2858
  "Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. \n"
2859
 
2860
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:234
2861
  msgid "Activate Legacy mode "
2862
  msgstr "Kompatibilitätsmodus aktivieren "
2863
 
2864
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:237
2865
  msgid "Plugin contents are loaded one at a time to minimize server load."
2866
  msgstr ""
2867
  "Plugininhalte werden nacheinander geladen, um den Hosting-Server Deines "
2868
  "Blogs zu entlasten."
2869
 
2870
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:248
2871
  msgid "Instant Caching for Facebook Link Posts"
2872
  msgstr "Instant Caching für Facebook Link-Beiträge"
2873
 
2874
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:251
2875
  msgid ""
2876
  "To make sure that Facebook always pulls the current meta data of your blog "
2877
  "post for link-posts, Blog2Social adds a \"no-cache=1\" parameter to the post "
@@ -2883,13 +2881,13 @@ msgstr ""
2883
  "Caching bei Facebook Link-Beiträgen den “no-cache=1” Parameter an die "
2884
  "Beitrags-URL. Dies ist notwendig, wenn Du varnish caching benutzt.\n"
2885
 
2886
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:253
2887
  msgid "Note: To use Facebook Instant Articles, this option must be disabled."
2888
  msgstr ""
2889
  "Achtung: Um Facebook Instant Artikel zu verwenden, muss diese Option "
2890
  "deaktiviert sein."
2891
 
2892
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/settings.php:269
2893
  msgid ""
2894
  "Blog2Social applies the scheduled time settings based on the time zone "
2895
  "defined in the general settings of your WordPress. You can select a user-"
@@ -2903,55 +2901,55 @@ msgstr ""
2903
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
2904
  "gewünschte Zeitzone aus dem Drop-Down Menü."
2905
 
2906
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:29
2907
  msgid "Social Media Scheduling & Sharing"
2908
  msgstr "Beitrag auf Social Media planen und teilen"
2909
 
2910
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:39
2911
  msgid "scroll to bottom"
2912
  msgstr "zum Seitenende"
2913
 
2914
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:44
2915
  msgid "You want to load your time settings?"
2916
  msgstr "Du möchtest Deine Zeiten laden?"
2917
 
2918
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:45
2919
  msgid "Load My Time Settings"
2920
  msgstr "Meine Zeit-Einstellungen laden"
2921
 
2922
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:51
2923
  msgid "Load Best Time Scheduler"
2924
  msgstr "Beste Zeiten laden"
2925
 
2926
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:84
2927
  msgid "Social Accounts"
2928
  msgstr "Social Media Konten"
2929
 
2930
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:102
2931
  msgid "Add more..."
2932
  msgstr "mehr hinzufügen"
2933
 
2934
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:104
2935
  msgid "Profiles | Pages | Groups"
2936
  msgstr "Profile | Seiten | Gruppen"
2937
 
2938
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:143
2939
  msgid "Save Network Selection"
2940
  msgstr "Netzwerkauswahl speichern"
2941
 
2942
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:152
2943
  msgid "network connected"
2944
  msgstr "Netzwerk verbunden"
2945
 
2946
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:153
2947
  msgid "requires image"
2948
  msgstr "Bild benötigt"
2949
 
2950
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:154
2951
  msgid "refresh authorization"
2952
  msgstr "Autorisierung aktualisieren"
2953
 
2954
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:177
2955
  msgid ""
2956
  "Notice:<br><p>Please make sure, that your website address is reachable. The "
2957
  "Social Networks do not allow postings from local installations.</p>"
@@ -2960,42 +2958,42 @@ msgstr ""
2960
  "erreichbar ist. Die sozialen Netzwerke erlauben keine Posts von lokalen "
2961
  "Installationen.</p>"
2962
 
2963
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:179
2964
  msgid "change website address"
2965
  msgstr "Webseiten-Adresse ändern"
2966
 
2967
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:196
2968
  msgid "First, connect or select network before posting"
2969
  msgstr ""
2970
  "Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
2971
  "Du den Beitrag teilst!"
2972
 
2973
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:206
2974
  msgid "scroll to top"
2975
  msgstr "zum Seitenanfang"
2976
 
2977
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:207 ../..
2978
- #: /plugins/blog2social-v-4-9-1/views/b2s/ship.php:211
2979
  msgid "Share"
2980
  msgstr "Teilen"
2981
 
2982
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:220
2983
  msgid "Time zone"
2984
  msgstr "Zeitzone"
2985
 
2986
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:238
2987
  msgid "Share new post on Social Media"
2988
  msgstr "Teile einen neuen Beitrag auf Social Media"
2989
 
2990
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:260
2991
  msgid "Connect for"
2992
  msgstr "Netzwerke verbinden für"
2993
 
2994
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:276
2995
  msgid "Time Scheduling"
2996
  msgstr "Zeitplanung"
2997
 
2998
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:280
2999
  msgid ""
3000
  "You have not yet defined personal time settings. To edit personal time "
3001
  "settings click on the Blog2Social Settings on the left-hand menu and select "
@@ -3007,11 +3005,11 @@ msgstr ""
3007
  "Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
3008
  "die voreingestellten besten Zeiten verändern."
3009
 
3010
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:293
3011
  msgid "Re-share this Post"
3012
  msgstr "Diesen Beitrag nochmal teilen"
3013
 
3014
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:296
3015
  msgid ""
3016
  "You can re-share your post for a different sharing purpose, or to share on a "
3017
  "different choice of networks, profiles, pages or groups, or with different "
@@ -3036,15 +3034,15 @@ msgstr ""
3036
  "auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
3037
  "wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
3038
 
3039
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:299
3040
  msgid "You want re-share your blog post?"
3041
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
3042
 
3043
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:327
3044
  msgid "Save Network Settings"
3045
  msgstr "Netzwerkeinstellungen speichern"
3046
 
3047
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:330
3048
  msgid ""
3049
  "You can save your current network settings as \"Standard\" network settings "
3050
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
@@ -3076,56 +3074,56 @@ msgstr ""
3076
  "zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
3077
  "variieren kannst. "
3078
 
3079
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:342
3080
  msgid "Your blog post is not yet published on your Wordpress!"
3081
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
3082
 
3083
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:345
3084
  msgid "At least one of your selected networks is set to \"Share Now\""
3085
  msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
3086
 
3087
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:349
3088
  msgid "Schedule your post"
3089
  msgstr "Beitrag planen"
3090
 
3091
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:352
3092
  msgid "Ignore & share"
3093
  msgstr "Ignorieren & teilen"
3094
 
3095
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:527
3096
  msgid "add Schedule"
3097
  msgstr "neuer Termin"
3098
 
3099
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/ship.php:541
3100
  msgid "Give me more information"
3101
  msgstr "Erhalte mehr Infomationen"
3102
 
3103
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/activity.php:5
3104
  msgid "Your activity"
3105
  msgstr "Deine Aktivität"
3106
 
3107
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/activity.php:8
3108
  msgid "Show activity starting from"
3109
  msgstr "Zeige Aktivität ab"
3110
 
3111
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/activity.php:13
3112
  msgid "published social media posts"
3113
  msgstr "veröffentlichte Beiträge"
3114
 
3115
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/calendar.php:1 ../..
3116
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:13
3117
  msgid "Calendar"
3118
  msgstr "Kalender"
3119
 
3120
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/newsletter.php:4
3121
  msgid "Get news and updates for promoting your blog on social media"
3122
  msgstr "Aktuelle Infos zur Blog-Promotion auf Social Media"
3123
 
3124
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/newsletter.php:10
3125
  msgid "Get updates"
3126
  msgstr "Updates erhalten"
3127
 
3128
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/newsletter.php:12
3129
  msgid ""
3130
  "We hate spam, too. We will never sell your email address to any other "
3131
  "company or for any other purpose."
@@ -3133,32 +3131,32 @@ msgstr ""
3133
  "Wir mögen auch keinen Spam. Deine E-Mail-Adresse werden wir weder verkaufen "
3134
  "noch anderweitig zweckentfremden. "
3135
 
3136
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/newsletter.php:16
3137
  msgid "You have already subscribed to the newsletter. Awesome!"
3138
  msgstr "Du hast Dich schon für den Newsletter angemeldet! Prima!"
3139
 
3140
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:19
3141
  msgid "Latest Posts"
3142
  msgstr "letzte Beiträge"
3143
 
3144
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/posts.php:31 ../..
3145
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:9
3146
  msgid "Scheduled Posts"
3147
  msgstr "geplante Beiträge"
3148
 
3149
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:35
3150
  msgid "Network Choice"
3151
  msgstr "Netzwerkauswahl"
3152
 
3153
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:59
3154
  msgid "Custom Sharing"
3155
  msgstr "Individualisieren"
3156
 
3157
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:83
3158
  msgid "Custom Scheduling"
3159
  msgstr "Veröffentlichungen planen"
3160
 
3161
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:84
3162
  msgid ""
3163
  "Unlimited scheduling options: once, repeatedly or recurringly to multiple "
3164
  "profiles, pages and groups"
@@ -3166,15 +3164,15 @@ msgstr ""
3166
  "Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
3167
  "Gruppen posten"
3168
 
3169
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:95
3170
  msgid "One-Step Workflow"
3171
  msgstr "One-Step Workflow"
3172
 
3173
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:107
3174
  msgid "Reporting"
3175
  msgstr "Veröffentlichungen anzeigen"
3176
 
3177
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:108
3178
  msgid ""
3179
  "All scheduled and published social media posts with direct links for easy "
3180
  "access or re-sharing"
@@ -3182,20 +3180,20 @@ msgstr ""
3182
  "Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
3183
  "einfachen Aufrufen und erneuten Teilen"
3184
 
3185
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/premium.php:115
3186
  msgid "Unlock Premium"
3187
  msgstr "Premium freischalten"
3188
 
3189
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/support.php:9
3190
  msgid "more FAQ"
3191
  msgstr "mehr FAQ"
3192
 
3193
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/tutorial.php:1 ../..
3194
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/service.phtml:4
3195
  msgid "How to work with Blog2Social"
3196
  msgstr "So arbeitest Du mit Blog2Social"
3197
 
3198
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/widgets/tutorial.php:2
3199
  msgid ""
3200
  "Learn how to get the most out of Blog2Social to promote your blog on social "
3201
  "media."
@@ -3203,11 +3201,11 @@ msgstr ""
3203
  "Du erfährst, wie Du Blog2Social optimal nutzt, um Deinen Blog auf Social "
3204
  "Media zu promoten."
3205
 
3206
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:12
3207
  msgid "Connection is broken..."
3208
  msgstr "Vebindung ist unterbrochen..."
3209
 
3210
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:14
3211
  msgid ""
3212
  "The connection to your server has been interrupted. Please make sure that "
3213
  "your blog is reachable. If your server does not respond or is too slow, "
@@ -3220,73 +3218,73 @@ msgstr ""
3220
  "nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
3221
  "Deinen Webmaster, wenn dieser Fehler erneut erscheint."
3222
 
3223
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:17
3224
  msgid "Update..."
3225
  msgstr "Aktualisierung..."
3226
 
3227
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:19
3228
  msgid ""
3229
  "<b> A new version of Blog2Social is available. </b> Update now <br> "
3230
  "Blog2Social to continue to use the latest version of the plugin."
3231
  msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
3232
 
3233
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:23
3234
  msgid "Update Blog2Social"
3235
  msgstr "Aktualisiere Blog2Social"
3236
 
3237
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:26
3238
  msgid "Unknown error"
3239
  msgstr "Unbekannter Fehler"
3240
 
3241
- #: ../../plugins/blog2social-v-4-9-1/views/notice.php:28
3242
  msgid "<b> An unknown error occurred! </b> <br> Please contact our support!"
3243
  msgstr ""
3244
  "<b> Ein unbekannter Fehler ist aufgetreten. </b> <br> Bitte kontaktiere "
3245
  "unseren Support."
3246
 
3247
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:14
3248
  msgid "Login failed. Please check your username and a password!"
3249
  msgstr ""
3250
  " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
3251
  "Benutzernamen und Dein Password!"
3252
 
3253
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:20
3254
  msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
3255
  msgstr ""
3256
  " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine "
3257
  "Server-Einstellungen. OpenSSL muss aktiviert sein. "
3258
 
3259
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:23
3260
  msgid "E-Mail or Username"
3261
  msgstr "E-Mail oder Benutzername"
3262
 
3263
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:24
3264
  msgid "Password"
3265
  msgstr "Passwort"
3266
 
3267
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:27
3268
  msgid "Sign in"
3269
  msgstr "Anmelden"
3270
 
3271
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:29
3272
  msgid "create account"
3273
  msgstr "neues Konto erstellen"
3274
 
3275
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:29
3276
  msgid "reset password"
3277
  msgstr "Passwort zurücksetzen"
3278
 
3279
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:35
3280
  msgid "Test PR-Gateway for free"
3281
  msgstr "PR-Gateway kostenlos und unverbindlich testen"
3282
 
3283
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:36
3284
  msgid "1x publish press release <br> 1x publish report <br> 1x promote event"
3285
  msgstr ""
3286
  "1 x Pressemitteilung veröffentlichen <br> 1 x Report abrufen <br>1 x "
3287
  "Veranstaltung bewerben"
3288
 
3289
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:38
3290
  msgid ""
3291
  "The press distribution PR gateway automatically publish your press releases "
3292
  "and events with one click.Publish your message over 250 portals."
@@ -3298,32 +3296,32 @@ msgstr ""
3298
  "internationalen und regionalen Portalen, Social Media und Dokumenten-"
3299
  "Netzwerken."
3300
 
3301
- #: ../../plugins/blog2social-v-4-9-1/views/prg/login.php:41
3302
  msgid "Start your 14-Day Free Trial"
3303
  msgstr "Jetzt kostenlos testen"
3304
 
3305
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:34
3306
  msgid "Select Image"
3307
  msgstr "Bild auswählen"
3308
 
3309
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:45 ../..
3310
- #: /plugins/blog2social-v-4-9-1/views/prg/ship.php:47
3311
  msgid "Copyright"
3312
  msgstr "Copyright"
3313
 
3314
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:66
3315
  msgid "Save As Draft"
3316
  msgstr "als Entwurf speichern"
3317
 
3318
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:67
3319
  msgid "Publish"
3320
  msgstr "Veröffentlichen"
3321
 
3322
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:85
3323
  msgid "Please Note"
3324
  msgstr "Hinweis"
3325
 
3326
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:88
3327
  msgid ""
3328
  "It may incur charges for publishing on PR-Gateway. Sent press releases can "
3329
  "not be withdrawn. If you want your press release to be published now?"
@@ -3333,47 +3331,47 @@ msgstr ""
3333
  "Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
3334
  "Pressemitteilung jetzt versendet werden?"
3335
 
3336
- #: ../../plugins/blog2social-v-4-9-1/views/prg/ship.php:91
3337
  msgid "Yes, I accept"
3338
  msgstr "Ja,einverstanden"
3339
 
3340
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:4
3341
  msgid "Privacy Policy"
3342
  msgstr "Datenschutz"
3343
 
3344
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:4
3345
  msgid "Terms"
3346
  msgstr "Agbs"
3347
 
3348
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:4
3349
  msgid "We never store your data from your social media profiles."
3350
  msgstr "Wir speichern keine persönlichen Daten Deiner Social Media Profile."
3351
 
3352
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:8 ../..
3353
- #: /plugins/blog2social-v-4-9-1/views/prg/html/footer.phtml:8 ../..
3354
- #: /plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:40
3355
  msgid "Post"
3356
  msgstr "Beitrag"
3357
 
3358
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:9 ../..
3359
- #: /plugins/blog2social-v-4-9-1/views/prg/html/footer.phtml:9
3360
  msgid "Job"
3361
  msgstr "Stellenanzeige"
3362
 
3363
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:10 ../..
3364
- #: /plugins/blog2social-v-4-9-1/views/prg/html/footer.phtml:10
3365
  msgid "Event"
3366
  msgstr "Veranstaltung"
3367
 
3368
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:22
3369
  msgid "Upgrade to Blog2Social for Premium"
3370
  msgstr "Jetzt auf Blog2Social PREMIUM upgraden "
3371
 
3372
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:52
3373
  msgid "Upgrade to Blog2Social for PREMIUM PRO"
3374
  msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden "
3375
 
3376
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:55
3377
  msgid ""
3378
  "You can select different combinations of networks and save them for "
3379
  "different sharing purposes."
@@ -3381,7 +3379,7 @@ msgstr ""
3381
  "Du kannst für verschiedene Social Media Aktivitäten oder Kampagnen eine "
3382
  "passende Kombination von Netzwerken anlegen und speichern."
3383
 
3384
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:58
3385
  msgid ""
3386
  "With Blog2Social Premium PRO you can save your preferred network "
3387
  "combinations for future reference and choose individual names for each "
@@ -3401,11 +3399,11 @@ msgstr ""
3401
  "mehrere Social Media Profile, Seiten und Gruppen eines Netzwerks in einer "
3402
  "Kombination verbinden."
3403
 
3404
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:61
3405
  msgid "With Blog2Social PREMIUM PRO you can also:"
3406
  msgstr "Mit blog2Social Premium PRO kannst Du außerdem:"
3407
 
3408
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:63
3409
  msgid ""
3410
  "Post on LinkedIn pages, XING pages and groups, as well as Facebook and "
3411
  "Google+ pages and groups"
@@ -3413,7 +3411,7 @@ msgstr ""
3413
  "Auf LinkedIn-Seiten, auf XING-Seiten und -Gruppen, sowie auf Seiten und "
3414
  "Gruppen in Facebook und Google+ posten"
3415
 
3416
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:65
3417
  msgid ""
3418
  "Schedule your posts at the best times on each network: for one time, "
3419
  "multiple times or recurrently"
@@ -3421,7 +3419,7 @@ msgstr ""
3421
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
3422
  "oder nach einem regelmäßigen Muster"
3423
 
3424
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:68
3425
  msgid ""
3426
  "Reporting and calendar: keep track of your published and scheduled social "
3427
  "media posts"
@@ -3429,11 +3427,11 @@ msgstr ""
3429
  "Mit dem Reporting & Kalender Deine bereits veröffentlichten und geplanten "
3430
  "Social Media Post im Blick behalten."
3431
 
3432
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:75
3433
  msgid "Activate Blog2Social PREMIUM PRO."
3434
  msgstr "Aktiviere Blog2Social PREMIUM PRO. "
3435
 
3436
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:77
3437
  msgid ""
3438
  "With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as "
3439
  "well as XING groups."
@@ -3441,37 +3439,37 @@ msgstr ""
3441
  "Mit Blog2Social Premium PRO kannst Du auf Seiten in LinkedIn und XING und in "
3442
  "XING-Gruppen posten."
3443
 
3444
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:80
3445
  msgid "Also included:"
3446
  msgstr "Außerdem inklusive"
3447
 
3448
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:82
3449
  msgid "Social media auto-posting and auto-scheduling"
3450
  msgstr "Blogbeiträge auto-posten und auto-planen"
3451
 
3452
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:83
3453
  msgid "Posting to social media pages and groups in Facebook and Google+"
3454
  msgstr "Posten auf Social Media Seiten und in Gruppen bei Facebook and Google+ "
3455
 
3456
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:84
3457
  msgid "Sharing on multiple accounts per network"
3458
  msgstr "Posten in mehreren Accounts pro Netzwerk"
3459
 
3460
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:85
3461
  msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
3462
  msgstr ""
3463
  "Beste Zeiten Manager: Veröffentlichungen einmal, mehrmals oder regelmäßig "
3464
  "planen"
3465
 
3466
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:86
3467
  msgid "Reporting with links to already published posts"
3468
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
3469
 
3470
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:101
3471
  msgid "Select the preferred custom post format for your posts"
3472
  msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
3473
 
3474
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:106
3475
  msgid ""
3476
  "You can define your preferred custom post format Twitter, Facebook and "
3477
  "Google +. Select link post or photo post format:"
@@ -3479,7 +3477,7 @@ msgstr ""
3479
  "Für Facebook, Twitter und Google + kannst Du Dein bevorzugtes Post-Format "
3480
  "standardmäßig festlegen. Wähle das Link-Post- oder das Foto-Post-Format:"
3481
 
3482
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:111
3483
  msgid ""
3484
  "The link post format displays posts title, link address and the first one or "
3485
  "two sentences of the post. The networks scan this information from your META "
@@ -3503,7 +3501,7 @@ msgstr ""
3503
  "Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
3504
  "Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. \n"
3505
 
3506
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:123
3507
  msgid ""
3508
  "For Instagram, you can select \"image with frame\" or \"image cut out\" as your "
3509
  "preferred custom post format."
@@ -3511,19 +3509,19 @@ msgstr ""
3511
  "Du kannst für Instagram zwischen \"Bild mit Rahmen\" umd \"Bild "
3512
  "ausgeschnitten\" als Dein bevorzugtes Beitragsformat auswählen."
3513
 
3514
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:173
3515
  msgid "Did you miss something?"
3516
  msgstr "Was vermisst Du?"
3517
 
3518
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:176
3519
  msgid "Help us make Blog2Social even better!"
3520
  msgstr "Helfe uns Blog2Social besser zu machen!"
3521
 
3522
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:180
3523
  msgid "submit"
3524
  msgstr "senden"
3525
 
3526
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:194
3527
  msgid ""
3528
  "Blog2Social provides you with a ready-to-use best time scheduler based on "
3529
  "current research on the best times to post on each social network."
@@ -3531,7 +3529,7 @@ msgstr ""
3531
  "Blog2Social stellt Dir ein vordefiniertes Zeitschema für die besten Zeiten "
3532
  "zum Teilen auf den verschiedenen Social Media Kanälen zur Verfügung."
3533
 
3534
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:196
3535
  msgid ""
3536
  "Click Best Time Scheduler in the preview editor to schedule your posts "
3537
  "automatically for the best times to post on each social network."
@@ -3540,7 +3538,7 @@ msgstr ""
3540
  "Click \"Best Time Scheduler\" in the preview editor to schedule your posts "
3541
  "automatically for the best times to post on each social network."
3542
 
3543
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:198
3544
  msgid ""
3545
  "You can also define your own personal time settings for posting, if you know "
3546
  "which times work best for your communities. Edit the pre-filled times in the "
@@ -3550,7 +3548,7 @@ msgstr ""
3550
  "eingetragenen Zeiten in den allgemeinen Einstellungen, die Du ändern "
3551
  "möchtest und klicke \"speichern\"."
3552
 
3553
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:200
3554
  msgid ""
3555
  "Click My Time Settings in the preview editor to schedule your posts with "
3556
  "your personal best time settings."
@@ -3558,7 +3556,7 @@ msgstr ""
3558
  "Klicke \"Meine Zeit-Einstellungen\" im Vorschau-Editor, um Deine Social Media "
3559
  "Posts zu Deinen persönlichen Zeit-Einstellungen zu planen."
3560
 
3561
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:202
3562
  msgid ""
3563
  "You can always edit the predefined times in the preview editor for any post "
3564
  "or network and save your new settings as default for future use."
@@ -3567,7 +3565,7 @@ msgstr ""
3567
  "jedes Netzwerk jederzeit individuell ändern oder neu definieren und für alle "
3568
  "zukünftigen Beiträge abspeichern. "
3569
 
3570
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:204
3571
  msgid ""
3572
  "Blog2Social will also apply your personal time settings, if you enable the "
3573
  "Social Media Auto-Poster and select auto-post at scheduled times. "
@@ -3576,11 +3574,11 @@ msgstr ""
3576
  "das Social Media Auto-Posting nutzt und die Veröffentlichung zu geplanten "
3577
  "Zeiten auswählst."
3578
 
3579
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:238
3580
  msgid "Why Retweets?"
3581
  msgstr "Wieso retweeten?\n"
3582
 
3583
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:241
3584
  msgid ""
3585
  "Retweets are the recommended way to reshare the same Tweets across Twitter "
3586
  "accounts in accordance with Twitter new rules. You can now schedule multiple "
@@ -3592,7 +3590,7 @@ msgstr ""
3592
  "mehrere Retweets für einen Original-Tweet direkt aus Deinem WordPress "
3593
  "Backend heraus planen."
3594
 
3595
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:244
3596
  msgid ""
3597
  "If Retweets are enabled, every Original-Tweet you schedule in this step will "
3598
  "be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
@@ -3604,15 +3602,15 @@ msgstr ""
3604
  "B. 3 Original-Tweets geplant sind, löst jeder einzelne Tweet einen Retweet "
3605
  "für den/die ausgewählten Twitter-Accounts aus."
3606
 
3607
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:248
3608
  msgid "Do you want retweeten?"
3609
  msgstr "Du möchtest retweeten?\n"
3610
 
3611
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:277
3612
  msgid "Bit.ly integration (URL Shortening)"
3613
  msgstr "Bit.ly URL Shortener Integration"
3614
 
3615
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:280
3616
  msgid ""
3617
  "You can use Bit.ly links to shorten the URL of your links and to track the "
3618
  "performance of your links across all social media networks. Activate Bit.ly "
@@ -3628,7 +3626,7 @@ msgstr ""
3628
  "geteilt und Sie können so den Erfolg Ihrer Beiträge in Ihrem Bit.ly Account "
3629
  "überprüfen.\n"
3630
 
3631
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:294
3632
  msgid ""
3633
  "Select the content that will be automatically pre-filled in your Twitter "
3634
  "posts. If you have ticked the box \"include WordPress tags as hashtags in my "
@@ -3639,16 +3637,16 @@ msgstr ""
3639
  "Tags als Hashtags zu Deinen Social Media-Posts hinzu” aktiviert hast, werden "
3640
  "Hashtags auch im Dropdown-Menü automatisch an die Optionen angefügt. "
3641
 
3642
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:351
3643
  msgid "Social Meta Tags Settings"
3644
  msgstr "Meta Tag Einstellungen"
3645
 
3646
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:354 ../..
3647
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:435
3648
  msgid "Change image, title and description for your post on this network"
3649
  msgstr "Bild, Titel und Beschreibung des Blogbeitrags ändern"
3650
 
3651
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:360
3652
  msgid ""
3653
  "Facebook has changed its policy for posting link posts via plugins or web "
3654
  "applications. Facebook does no longer display the featured or selected image "
@@ -3671,7 +3669,7 @@ msgstr ""
3671
  "Bitte stelle sicher, dass das ausgewählte Bild die Voraussetzungen für die "
3672
  "Bildgrößen auf Facebook erfüllt."
3673
 
3674
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:362
3675
  msgid ""
3676
  "With Blog2Social you can select a featured image or any image you select to "
3677
  "be displayed with your link post. Blog2Social will automatically write the "
@@ -3691,7 +3689,7 @@ msgstr ""
3691
  "der Beitragsvorschau an Bilder, Titel und Beschreibung vornimmst, nicht "
3692
  "übernimmt. "
3693
 
3694
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:365
3695
  msgid ""
3696
  "Twitter has changed its policy for posting link posts via plugins or web "
3697
  "applications. Twitter does no longer display the featured or selected image "
@@ -3713,7 +3711,7 @@ msgstr ""
3713
  "werden diese nicht angezeigt. Bitte stelle sicher, dass das ausgewählte Bild "
3714
  "die Voraussetzungen für die Bildgrößen auf Twitter erfüllt."
3715
 
3716
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:367
3717
  msgid ""
3718
  "With Blog2Social you can select a featured image or any image you select to "
3719
  "be displayed with your link post. Blog2Social will automatically write the "
@@ -3733,7 +3731,7 @@ msgstr ""
3733
  "Änderungen, die Du in der Beitragsvorschau an Bilder, Titel und Beschreibung "
3734
  "vornimmst, nicht übernimmt. \n"
3735
 
3736
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:370
3737
  msgid ""
3738
  "You can change the image, title and description for your post on Facebook, "
3739
  "by editing the following fields for"
@@ -3741,17 +3739,17 @@ msgstr ""
3741
  "Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
3742
  "Facebook über die folgenden Felder ändern:"
3743
 
3744
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:373 ../..
3745
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:388
3746
  msgid "image"
3747
  msgstr "Bild"
3748
 
3749
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:375 ../..
3750
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:390
3751
  msgid "description"
3752
  msgstr "Beschreibung"
3753
 
3754
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:377
3755
  msgid ""
3756
  "Blog2Social will automatically write these information in the Facebook Open "
3757
  "Graph (OG) Meta Tags for Image, Title and Description of your blog post."
@@ -3760,7 +3758,7 @@ msgstr ""
3760
  "Graph (OG) Meta Tag Parameter Deines Blogbeitrags für Image, Title und "
3761
  "Description."
3762
 
3763
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:380
3764
  msgid ""
3765
  "Please note: If this post has already been shared or scheduled previously, "
3766
  "your current changes will also affect the look of previously shared or "
@@ -3773,7 +3771,7 @@ msgstr ""
3773
  "Meta Tag Parameter Deiner Beitragsseite zieht und alle vorhandenen Beiträge "
3774
  "mit diesen Informationen automatisch aktualisiert."
3775
 
3776
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:382
3777
  #, php-format
3778
  msgid ""
3779
  "Please note: Your changes will have no effect on your social media posts on "
@@ -3784,7 +3782,7 @@ msgstr ""
3784
  "berücksichtigt werden, wenn Du in den Blog2Social Meta Tag<a target=\"_blank\" "
3785
  "href=\"%s\">Einstellungen</a>, die Meta Tag Funktion manuell deaktiviert hast."
3786
 
3787
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:385
3788
  msgid ""
3789
  "You can change the image, title and description for your post on Twitter, by "
3790
  "editing the following fields for"
@@ -3792,7 +3790,7 @@ msgstr ""
3792
  "Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
3793
  "Twitter über die folgenden Felder ändern:"
3794
 
3795
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:392
3796
  msgid ""
3797
  "Blog2Social will automatically write these information in the Twitter Card "
3798
  "Meta Tags for Image, Title and Description of your blog post."
@@ -3800,7 +3798,7 @@ msgstr ""
3800
  "Blog2Social übergibt diese Informationen automatisch an die Twitter Card "
3801
  "Meta Tag Parameter Deines Blogbeitrags für Image, Title und Description."
3802
 
3803
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:395
3804
  msgid ""
3805
  "Please note: If this post has already been shared or scheduled previously, "
3806
  "your current changes will also affect the look of previously shared or "
@@ -3815,7 +3813,7 @@ msgstr ""
3815
  "bereits geteilt hast, kann es bis zu 7 Tagen dauern, bis Twitter die "
3816
  "Änderungen aktualisiert. "
3817
 
3818
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:397
3819
  #, php-format
3820
  msgid ""
3821
  "Please note: Your changes will have no effect on your social media posts on "
@@ -3827,11 +3825,11 @@ msgstr ""
3827
  "target=\"_blank\" href=\"%s\">Einstellungen </a> die Meta Tag Funktion manuell "
3828
  "deaktiviert hast."
3829
 
3830
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:404
3831
  msgid "You want to change the image, title and description for your post?"
3832
  msgstr "Du möchtest Dein Bild, Titel und Beschreibung für diesen Beitrag ändern?"
3833
 
3834
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:440
3835
  msgid ""
3836
  "You are currently sharing this post as image post. Changes to title and "
3837
  "description Meta Tag parameters will only be supported for link post formats."
@@ -3843,7 +3841,7 @@ msgstr ""
3843
  "Format unterstützt. Bitte ändere das Post Format in Linkbeitrag, um "
3844
  "Änderungen am Titel und der Beschreibung für die Postvorschau vorzunehmen."
3845
 
3846
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:443
3847
  #, php-format
3848
  msgid ""
3849
  "Your changes will have no effect on your social media posts on Facebook, if "
@@ -3854,7 +3852,7 @@ msgstr ""
3854
  "Du Meta Tag Einstellungen für Facebook unter den Blog2Social <a "
3855
  "target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
3856
 
3857
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/footer.phtml:446
3858
  #, php-format
3859
  msgid ""
3860
  "Your changes will have no effect on your social media posts on Twitter, if "
@@ -3865,7 +3863,7 @@ msgstr ""
3865
  "Du Meta Tag Einstellungen für Twitter unter den Blog2Social <a "
3866
  "target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
3867
 
3868
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:36
3869
  msgid ""
3870
  "To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
3871
  "Our support assists you as of PHP version 5.5.3. See also:"
@@ -3874,23 +3872,23 @@ msgstr ""
3874
  "höher benötigt. Unser Support unterstützt Dich ab PHP Version 5.5.3. Siehe "
3875
  "auch:"
3876
 
3877
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:37
3878
  msgid "Technical requirements for Blog2Social"
3879
  msgstr "Technische Vorraussetzungen für Blog2Social"
3880
 
3881
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:44
3882
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
3883
  msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
3884
 
3885
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:62
3886
  msgid "Autoposter limit has been reached"
3887
  msgstr "Das Autoposter-Limit wurde erreicht"
3888
 
3889
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:62
3890
  msgid "Your daily limit for posting automatically has been reached."
3891
  msgstr "Dein tägliche Limit für das automatische Veröffentlichen wurde erreicht."
3892
 
3893
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:69
3894
  msgid ""
3895
  " Due to Facebooks API changes, starting on 1st August 2018, access to "
3896
  "Personal Facebook Profiles has been severely restricted for all social media "
@@ -3903,15 +3901,15 @@ msgstr ""
3903
  "zu teilen, stellt Dir Blog2Social jetzt eine neue Facebook-Instant-Sharing-"
3904
  "App zur Verfügung."
3905
 
3906
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:77
3907
  msgid "You have clear all page and post meta data successful."
3908
  msgstr "Alle Seiten und Beitrags Metangaben sind gelöscht."
3909
 
3910
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:82
3911
  msgid "The page and post meta data could not be removed."
3912
  msgstr "Die Seiten und Beitrags Metangaben können nicht gelöscht werden."
3913
 
3914
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:88
3915
  msgid ""
3916
  "You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta "
3917
  "tags from Yoast SEO."
@@ -3919,7 +3917,7 @@ msgstr ""
3919
  "Du hast Yoast SEO aktiviert. Blog2Social Meta Tags überschreibt die "
3920
  "Metaangaben von Yoast SEO nun."
3921
 
3922
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:94
3923
  msgid ""
3924
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
3925
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
@@ -3932,7 +3930,7 @@ msgstr ""
3932
  "Einstellungen. Wenn Du sie bereits deaktiviert hast, kannst Du diese Meldung "
3933
  "ignorieren."
3934
 
3935
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:100
3936
  msgid ""
3937
  "You currently have both Blog2Social Social Meta Tags and Facebook Open Graph,"
3938
  " Google+ and Twitter Card Tags plugins active. This is no recommended. "
@@ -3944,64 +3942,64 @@ msgstr ""
3944
  "deaktiviere die Facebook Open Graph, Google+ and Twitter Card Tags "
3945
  "Einstellungen."
3946
 
3947
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:107
3948
  msgid "This entry could not be removed. It's not yours!"
3949
  msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
3950
 
3951
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:112
3952
  msgid "This entry was removed successfully."
3953
  msgstr "Dein Post wurde erfolgreich gelöscht. "
3954
 
3955
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:117
3956
  msgid "This post was edit successful."
3957
  msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
3958
 
3959
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:126
3960
  msgid "Post was scheduled successfully on your blog!"
3961
  msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
3962
 
3963
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:128
3964
  msgid "Post is published successfully on your blog!"
3965
  msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
3966
 
3967
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:142
3968
  msgid "Your authorization was successful."
3969
  msgstr "Deine Autorisierung war erfolgreich."
3970
 
3971
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:147
3972
  msgid "Your profile was saved successful."
3973
  msgstr "Dein Profil wurde erfolgreich gespeichert."
3974
 
3975
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:152
3976
  msgid "Your profile could not be saved."
3977
  msgstr "Dein Profil konnte nicht gespeichert werden."
3978
 
3979
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:157
3980
  msgid "Your authorization could not be removed."
3981
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
3982
 
3983
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:162
3984
  msgid "Your authorization was removed successful."
3985
  msgstr "Dein Profil wurde erfolgreich entfernt."
3986
 
3987
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:167
3988
  msgid "Thank you! Your feedback has been received."
3989
  msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
3990
 
3991
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:172
3992
  msgid "Your feedback could not be delivered."
3993
  msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
3994
 
3995
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:179 ../..
3996
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:194
3997
  msgid "Your settings were successfully saved."
3998
  msgstr "Deine Einstellungen sind gespeichert."
3999
 
4000
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:184
4001
  msgid "Your settings could not be saved."
4002
  msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
4003
 
4004
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:189
4005
  msgid ""
4006
  "Your settings could not be saved, because you have auto-posting enabled but "
4007
  "no social networks selected."
@@ -4009,7 +4007,7 @@ msgstr ""
4009
  "Deine Einstellungen konnten nicht gespeichert werden, weil Du keine Social "
4010
  "Media Netzwerke ausgewählt hast."
4011
 
4012
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:202
4013
  #, php-format
4014
  msgid ""
4015
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
@@ -4021,23 +4019,23 @@ msgstr ""
4021
  "sehr freuen und uns helfen, das Tool bekannter zu machen. Vielen Dank für "
4022
  "Deine Unterstützung.\n"
4023
 
4024
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:205
4025
  msgid "Ok, you deserve it"
4026
  msgstr "Ok, Ihr habt es verdient "
4027
 
4028
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:208
4029
  msgid "Nope, maybe later"
4030
  msgstr "Nicht jetzt, vielleicht später "
4031
 
4032
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:211
4033
  msgid "I already did it"
4034
  msgstr "Habe ich schon gemacht "
4035
 
4036
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:223
4037
  msgid "Boost your social media automation with Blog2Social PREMIUM!"
4038
  msgstr "Mache mehr aus Deiner Social Media Automatisierung mit Blog2Social PREMIUM!"
4039
 
4040
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:225
4041
  msgid ""
4042
  "Blog2Social provides even more options for auto-posting and auto-scheduling "
4043
  "for your posts. Easily schedule your posts with the Best Time Scheduler or "
@@ -4052,27 +4050,27 @@ msgstr ""
4052
  "Formaten für jedes Netzwerk und jeden Post, wähle dazu beliebige Bilder aus "
4053
  "deiner Bibliothek aus. Und vieles mehr.\n"
4054
 
4055
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:229
4056
  msgid "Yes, I want to test Blog2Social PREMIUM 30 days for free"
4057
  msgstr "Ja, ich möchte das Blog2Social PREMIUM 30 Tage kostenlos testen "
4058
 
4059
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:232
4060
  msgid "No, I'm happy with Blog2Social FREE"
4061
  msgstr "Nein, ich bin glücklich mit Blog2Social FREE "
4062
 
4063
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:244
4064
  msgid "Your Blog2Social Premium Free Version is activated for "
4065
  msgstr "Deine Blog2Social Testphase läuft noch"
4066
 
4067
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:247
4068
  msgid " Days"
4069
  msgstr "Tage"
4070
 
4071
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:247
4072
  msgid " today"
4073
  msgstr "heute"
4074
 
4075
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:251
4076
  msgid ""
4077
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
4078
  "autopilot, automatically schedule your social media posts with the Best Time "
@@ -4088,46 +4086,46 @@ msgstr ""
4088
  "hoch. Speichere mehrere Kombinationen von Netzwerken für verschiedene Zwecke."
4089
  " "
4090
 
4091
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:255 ../..
4092
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:274
4093
  msgid "I need some more time to decide"
4094
  msgstr "Ich brauche noch mehr Zeit um mich zu entscheiden "
4095
 
4096
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:266
4097
  msgid "Your free trial of Blog2Social PREMIUM has ended."
4098
  msgstr "Deine kostenlose Testversion von Blog2Social PREMIUM ist abgelaufen."
4099
 
4100
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:267
4101
  msgid "We hope you liked Blog2Social Premium."
4102
  msgstr "Wir hoffen, dass Dir Blog2Social Premium gefällt."
4103
 
4104
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:273
4105
  msgid "Yes, I want to upgrade now"
4106
  msgstr "Ja, ich möchte jetzt von Premium profitieren "
4107
 
4108
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:275
4109
  msgid "Did you miss something? Tell us!"
4110
  msgstr "Vermisst Du etwas? Sag es uns! "
4111
 
4112
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:285
4113
  msgid "Version"
4114
  msgstr "Version"
4115
 
4116
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:295 ../..
4117
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/service.phtml:2
4118
  msgid "Plans & Pricing"
4119
  msgstr "Versionen & Preise"
4120
 
4121
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:296 ../..
4122
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/service.phtml:3
4123
  msgid "Support"
4124
  msgstr "Support"
4125
 
4126
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:308
4127
  msgid "Test Blog2Social PREMIUM 30 days for free"
4128
  msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
4129
 
4130
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:314
4131
  msgid ""
4132
  "The free trial can not be started. This blog has been already registered for "
4133
  "the free trial."
@@ -4135,43 +4133,43 @@ msgstr ""
4135
  "Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
4136
  "bereits für die kostenlose Testzeit freigeschaltet."
4137
 
4138
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:319
4139
  msgid "Share on multiple accounts per network"
4140
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
4141
 
4142
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:320
4143
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
4144
  msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
4145
 
4146
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:321
4147
  msgid "Reporting with links to all published social media posts"
4148
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
4149
 
4150
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:324 ../..
4151
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:141 ../..
4152
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:143 ../..
4153
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:218 ../..
4154
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:220
4155
  msgid "E-Mail"
4156
  msgstr "E-Mail"
4157
 
4158
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:328 ../..
4159
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:91 ../..
4160
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:100 ../..
4161
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:168 ../..
4162
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:177
4163
  msgid "First Name"
4164
  msgstr "Vorname"
4165
 
4166
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:332 ../..
4167
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:92 ../..
4168
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:103 ../..
4169
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:169 ../..
4170
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:180
4171
  msgid "Last Name"
4172
  msgstr "Nachname"
4173
 
4174
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:336
4175
  msgid ""
4176
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
4177
  "href=\"https://www.blog2social.com/en/terms/\">Conditions of Use</a> and <a "
@@ -4183,80 +4181,80 @@ msgstr ""
4183
  "target=\"_blank\" href=\"https://www.blog2social."
4184
  "com/de/datenschutz/\">Datenschutzerklärung</a> einverstanden.\n"
4185
 
4186
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:341
4187
  msgid "No credit card required"
4188
  msgstr "keine Kreditkarte notwendig"
4189
 
4190
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:345
4191
  msgid "Get Started"
4192
  msgstr "Jetzt loslegen"
4193
 
4194
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:363
4195
  msgid "Thank you for choosing Blog2Social Premium."
4196
  msgstr "Vielen Dank, dass Du Dich für Blog2Social Premium entschieden hast."
4197
 
4198
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:372 ../..
4199
- #: /plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:8
4200
  msgid "Your license"
4201
  msgstr "Deine Lizenz"
4202
 
4203
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:373
4204
  msgid "Blog2Social Premium"
4205
  msgstr "Blog2Social Premium"
4206
 
4207
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:373
4208
  msgid "has been successfully activated."
4209
  msgstr "wurde erfolgreich aktiviert."
4210
 
4211
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:383
4212
  msgid "Your entered License Key is invalid. Please contact support!"
4213
  msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
4214
 
4215
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:393
4216
  msgid "Your license key has reached the maximum number of users."
4217
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
4218
 
4219
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:400
4220
  msgid "OK"
4221
  msgstr "OK"
4222
 
4223
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:416
4224
  msgid "We updated our Privacy Policy"
4225
  msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
4226
 
4227
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:430
4228
  msgid "Blog2Social is a service of Adenion GmbH"
4229
  msgstr "Blog2Social ist ein Service der Adenion GmbH"
4230
 
4231
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/header.phtml:431
4232
  msgid "I agree to the Adenion Privacy Policy"
4233
  msgstr "Ich stimme den Datenschutzrichtlinien zu"
4234
 
4235
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:7
4236
  msgid "All Posts"
4237
  msgstr "alle Beiträge"
4238
 
4239
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:8
4240
  msgid "Instant Sharing"
4241
  msgstr "Instant Sharing"
4242
 
4243
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:11
4244
  msgid "Shared Posts"
4245
  msgstr "geteilte Beiträge"
4246
 
4247
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/post.navbar.phtml:12
4248
  msgid "Notifications"
4249
  msgstr "Benachrichtungen"
4250
 
4251
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:38
4252
  msgid "Network Activity (today)"
4253
  msgstr "Netzwerk Aktivitäten (heute)"
4254
 
4255
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:49
4256
  msgid "Rate it!"
4257
  msgstr "Bewerte Blog2Social"
4258
 
4259
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:52
4260
  msgid ""
4261
  "If you like Blog2Social, please give us a 5 star rating. If there is "
4262
  "anything that does not work for you, please contact us!"
@@ -4264,162 +4262,162 @@ msgstr ""
4264
  "Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
4265
  "Bewertung. Spreche uns an, wenn Dir ir­gend­was nicht gefällt."
4266
 
4267
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:68
4268
  msgid "GET STARTED"
4269
  msgstr "Jetzt Affiliate-Partner werden"
4270
 
4271
- #: ../../plugins/blog2social-v-4-9-1/views/b2s/html/sidebar.phtml:79
4272
  msgid "Posts from Blog2Social"
4273
  msgstr "Beiträge von Blog2Social"
4274
 
4275
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:7
4276
  msgid "Post a Press Release"
4277
  msgstr "Beitrag als Pressemitteilung veröffentlichen"
4278
 
4279
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:11
4280
  msgid "Category"
4281
  msgstr "Kategorie"
4282
 
4283
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:12
4284
  msgid "Language"
4285
  msgstr "Sprache"
4286
 
4287
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:20
4288
  msgid "German"
4289
  msgstr "Deutsch"
4290
 
4291
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:21
4292
  msgid "English"
4293
  msgstr "Englisch"
4294
 
4295
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:32 ../..
4296
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:34
4297
  msgid "Subtitle"
4298
  msgstr "Untertitel"
4299
 
4300
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:38 ../..
4301
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:40
4302
  msgid "YouTube-Link"
4303
  msgstr "Youtube-Link"
4304
 
4305
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:44 ../..
4306
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:46
4307
  msgid "Message"
4308
  msgstr "Mitteilung"
4309
 
4310
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:50
4311
  msgid "Keywords"
4312
  msgstr "Schlüsselworter"
4313
 
4314
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:52
4315
  msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
4316
  msgstr "Schlüsselwörter mit Komma getrennt (z.B.: Blog2Social,PR-Gateway)"
4317
 
4318
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:56 ../..
4319
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:58
4320
  msgid "Shortext"
4321
  msgstr "Kurzbeschreibung"
4322
 
4323
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:69
4324
  msgid "Contact Details"
4325
  msgstr "Kontaktangaben"
4326
 
4327
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:74
4328
  msgid "Company"
4329
  msgstr "Firmenkontakt"
4330
 
4331
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:77
4332
  msgid "Press"
4333
  msgstr "Pressekontakt"
4334
 
4335
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:84 ../..
4336
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:86 ../..
4337
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:161 ../..
4338
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:163
4339
  msgid "Name"
4340
  msgstr "Name"
4341
 
4342
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:95 ../..
4343
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:172
4344
  msgid "Mrs."
4345
  msgstr "Frau"
4346
 
4347
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:96 ../..
4348
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:173
4349
  msgid "Mr."
4350
  msgstr "Herr"
4351
 
4352
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:107 ../..
4353
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:110 ../..
4354
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:184 ../..
4355
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:187
4356
  msgid "Street"
4357
  msgstr "Straße"
4358
 
4359
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:108 ../..
4360
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:113 ../..
4361
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:185 ../..
4362
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:190
4363
  msgid "Number"
4364
  msgstr "Nummer"
4365
 
4366
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:117 ../..
4367
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:120 ../..
4368
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:194 ../..
4369
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:197
4370
  msgid "Zip Code"
4371
  msgstr "PLZ"
4372
 
4373
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:118 ../..
4374
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:123 ../..
4375
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:195 ../..
4376
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:200
4377
  msgid "City"
4378
  msgstr "Stadt"
4379
 
4380
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:127 ../..
4381
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:204
4382
  msgid "Country"
4383
  msgstr "Land"
4384
 
4385
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:135 ../..
4386
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:137 ../..
4387
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:212 ../..
4388
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:214
4389
  msgid "Phone"
4390
  msgstr "Telefon"
4391
 
4392
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:147 ../..
4393
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:149 ../..
4394
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:224 ../..
4395
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:226
4396
  msgid "Website"
4397
  msgstr "Webseite"
4398
 
4399
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:153 ../..
4400
- #: /plugins/blog2social-v-4-9-1/views/prg/html/form.phtml:155
4401
  msgid "Company Description"
4402
  msgstr "Firmenbeschreibung"
4403
 
4404
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:8
4405
  msgid "You are signed out of <b>PR-Gateway</b>!"
4406
  msgstr "Du bist nun bei PR-Gateway abgemeldet!"
4407
 
4408
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:17
4409
  msgid "Your message will now be sent over PR gateway to the press portals!"
4410
  msgstr "Deine Mitteilung wird nun über PR-Gateway an die Presseportale übermittelt!"
4411
 
4412
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:18
4413
  msgid "See all publications for your message live on "
4414
  msgstr "Verfolge live die Veröffentlichungen Deiner Mitteilung unter"
4415
 
4416
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:20
4417
  msgid "Your message save as draft by PR-Gateway!"
4418
  msgstr ""
4419
  "Deine Mitteilung wurde erfolgreich an PR-Gateway übermittelt und als Entwurf "
4420
  "abgelegt!"
4421
 
4422
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:28
4423
  msgid ""
4424
  "Unfortunately your request can not be processed by Blog2Social. Please try "
4425
  "again!"
@@ -4427,13 +4425,13 @@ msgstr ""
4427
  "Deine Anfrage kann leider vom Blog2Social nicht verarbeitet werden. Bitte "
4428
  "versuche es erneut!"
4429
 
4430
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:34
4431
  msgid "Your message has not been received successfully with us. Please try again!"
4432
  msgstr ""
4433
  "Deine Mitteilung ist bei uns leider nicht erfolglreich eingegangen. Bitte "
4434
  "versuche es erneut!"
4435
 
4436
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:48
4437
  msgid ""
4438
  "PR-Gateway offers a paid online distribution service for submitting press "
4439
  "releases, articles and social media news to more than 250 news sites, "
@@ -4452,10 +4450,10 @@ msgstr ""
4452
  "auf ausgewählten kostenfreien und kostenpflichtigen Portale zu "
4453
  "veröffentlichen."
4454
 
4455
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:49
4456
  msgid "Register here to open your PR-Gateway account."
4457
  msgstr "Registriere hier Deinen PR-Gateway Account, kostenlos und unverbindlich."
4458
 
4459
- #: ../../plugins/blog2social-v-4-9-1/views/prg/html/header.phtml:66
4460
  msgid "Logout"
4461
  msgstr "Abmelden"
4
  "Stable (latest release)\n"
5
  "Report-Msgid-Bugs-To: \n"
6
  "POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
7
+ "PO-Revision-Date: Tue Aug 21 2018 11:45:32 GMT+0200\n"
8
  "Last-Translator: Sven Bürger <s.buerger@adenion.de>\n"
9
  "Language-Team: \n"
10
  "Language: German\n"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: de_DE"
25
 
26
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:560
27
+ msgid "last modified by"
28
+ msgstr "zuletzt geändert von"
29
+
30
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:282
31
  msgid ""
32
+ "Please note: XING allows identical posts to be published only once within a "
33
+ "group and no more than three times across different groups."
34
  msgstr ""
35
+ "Bitte beachte: XING erlaubt das Veröffentlichen identischer Posts innerhalb "
36
+ "einer Gruppe nur einmal und maximal dreimal über verschiedene Gruppen hinweg"
37
 
38
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:282
39
+ msgid "Read more"
40
+ msgstr "mehr erfahren"
 
 
 
 
 
41
 
42
  #. Name of the plugin
43
  msgid "Blog2Social: Social Media Auto Post & Scheduler"
64
  msgid "Blog2Social, Adenion"
65
  msgstr "Blog2Social, Adenion"
66
 
67
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Calendar/Filter.php:123
68
  msgid "show all"
69
  msgstr "alle anzeigen"
70
 
71
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:46 ../..
72
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Navbar.php:32
73
  msgid "Default"
74
  msgstr "Standard"
75
 
76
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:46
77
  msgid "Show all"
78
  msgstr "alle anzeigen"
79
 
80
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:47 ../..
81
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:131
82
  msgid "My profile"
83
  msgstr "Mein Profil"
84
 
85
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:49
86
  msgid "Your profiles:"
87
  msgstr "weitere Profile:"
88
 
89
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:104 ../..
90
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:267
91
  msgid "Connections"
92
  msgstr "Verbindungen"
93
 
94
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:116 ../..
95
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:116 ../..
96
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:154 ../..
97
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:156 ../..
98
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:276 ../..
99
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:457 ../..
100
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:471 ../..
101
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:493 ../..
102
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:544 ../..
103
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:34 ../..
104
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:34 ../..
105
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:576
106
  msgid "Profile"
107
  msgstr "Profil"
108
 
109
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:116 ../..
110
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:34
111
  msgid "You want to connect a network profile?"
112
  msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
113
 
114
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:116 ../..
115
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:119 ../..
116
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:122 ../..
117
+ #: /plugins/blog2social-v-5-0/includes/B2S/PostBox.php:110 ../..
118
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:114 ../..
119
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:137 ../..
120
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:75 ../..
121
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:82 ../..
122
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:708 ../..
123
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:28 ../..
124
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:31 ../..
125
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:34 ../..
126
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:654 ../../plugins/blog2social-v-
127
+ #: 5-0/includes/Loader.php:722 ../../plugins/blog2social-v-5-0/views/b2s/network.
128
+ #: php:35 ../../plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:
129
+ #: 9 ../../plugins/blog2social-v-5-0/views/b2s/settings.php:67 ../..
130
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:89 ../../plugins/blog2social-
131
+ #: v-5-0/views/b2s/ship.php:18 ../../plugins/blog2social-v-5-
132
+ #: 0/views/b2s/widgets/posts.php:31 ../../plugins/blog2social-v-5-
133
+ #: 0/views/b2s/html/post.navbar.phtml:9 ../../plugins/blog2social-v-5-
134
+ #: 0/views/b2s/html/post.navbar.phtml:13
135
  msgid "PREMIUM"
136
  msgstr "PREMIUM"
137
 
138
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:119 ../..
139
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:119 ../..
140
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:186 ../..
141
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:188 ../..
142
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:276 ../..
143
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:472 ../..
144
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:494 ../..
145
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:547 ../..
146
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:31 ../..
147
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:31 ../..
148
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:576
149
  msgid "Page"
150
  msgstr "Seite"
151
 
152
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:119 ../..
153
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:31
154
  msgid "You want to connect a network page?"
155
  msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
156
 
157
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:122 ../..
158
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:122 ../..
159
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:218 ../..
160
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:220 ../..
161
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:473 ../..
162
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:495 ../..
163
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:551 ../..
164
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:28 ../..
165
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:28 ../..
166
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:576
167
  msgid "Group"
168
  msgstr "Gruppe"
169
 
170
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:122 ../..
171
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Portale.php:28
172
  msgid "You want to connect a social media group?"
173
  msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
174
 
175
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:165 ../..
176
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:228
177
  msgid "Authorization is interrupted since"
178
  msgstr "Autorisierung ist unterbrochen seit"
179
 
180
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:176 ../..
181
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:208 ../..
182
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:240
183
  msgid "To reactivate this social media connection,"
184
  msgstr "Um diese Social Media Verbindung zu reaktivieren,"
185
 
186
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:176 ../..
187
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:208 ../..
188
+ #: /plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:240 ../..
189
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:32
190
  msgid "please upgrade"
191
  msgstr "Bitte upgraden"
192
 
193
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Network/Item.php:196
194
  msgid "Authorization is interrupted since"
195
  msgstr "Autorisierung ist unterbrochen seit"
196
 
197
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:34
198
  msgid "all authors"
199
  msgstr "alle Autoren"
200
 
201
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:49 ../..
202
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:200 ../..
203
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:394 ../..
204
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:41 ../..
205
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:97 ../..
206
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:13 ../../plugins/blog2social-v-5-
207
+ #: 0/views/b2s/ship.php:538
208
  msgid "published"
209
  msgstr "veröffentlicht"
210
 
211
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:49 ../..
212
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:200 ../..
213
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:41 ../..
214
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:97 ../..
215
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:13
216
  msgid "scheduled"
217
  msgstr "geplant"
218
 
219
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:49 ../..
220
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:200 ../..
221
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:97 ../..
222
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:13
223
  msgid "draft"
224
  msgstr "Entwurf"
225
 
226
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:50
227
  msgid "all statuses"
228
  msgstr "kein Status"
229
 
230
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:61 ../..
231
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:73
232
  msgid "newest first"
233
  msgstr "neuste zuerst"
234
 
235
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:61 ../..
236
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:73
237
  msgid "oldest first"
238
  msgstr "älteste zuerst"
239
 
240
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:86
241
  msgid "all categories & tags"
242
  msgstr "alle Kategorien & Schlagwörter"
243
 
244
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:108 ../..
245
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:53
246
  msgid "all post types"
247
  msgstr "alle Typen"
248
 
249
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:129 ../..
250
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:74
251
  msgid "Search Title"
252
  msgstr "Suche nach Titel"
253
 
254
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:149 ../..
255
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:85
256
  msgid "sort"
257
  msgstr "sortieren"
258
 
259
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:150 ../..
260
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:86
261
  msgid "reset"
262
  msgstr "zurücksetzen"
263
 
264
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:155
265
  msgid "selected date"
266
  msgstr "ausgewähltes Datum"
267
 
268
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Filter.php:155
269
  msgid "scheduled post(s)"
270
  msgstr "geplante Beiträge"
271
 
272
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:203
273
  msgid "You have no posts published or scheduled."
274
  msgstr "Du hast derzeit keine Beiträge veröffentlicht oder geplant."
275
 
276
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:225
277
  msgid "last shared on social media"
278
  msgstr "zuletzt auf Social Media geteilt"
279
 
280
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:233
281
  msgid "Share on Social Media"
282
  msgstr "auf Social Media teilen"
283
 
284
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:235 ../..
285
+ #: /plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:129
286
  msgid "Author"
287
  msgstr "Autor"
288
 
289
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:235 ../..
290
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:32
291
  msgid "on blog"
292
  msgstr "auf dem Blog"
293
 
294
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:252 ../..
295
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:235 ../../plugins/blog2social-v-
296
+ #: 5-0/views/b2s/ship.php:237
297
  msgid "Re-share this post"
298
  msgstr "Diesen Beitrag nochmal teilen"
299
 
300
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:253 ../..
301
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:277 ../..
302
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:299
303
  msgid "Details"
304
  msgstr "Details"
305
 
306
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:255
307
  msgid "shared social media posts"
308
  msgstr "geteilte Beiträge"
309
 
310
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:255
311
  msgid "latest share by"
312
  msgstr "zuletzt geteilt von"
313
 
314
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:279 ../..
315
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/activity.php:13
316
  msgid "scheduled social media posts"
317
  msgstr "geplante Beiträge"
318
 
319
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:279
320
  msgid "next share by"
321
  msgstr "als nächstes geteilt von"
322
 
323
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:301
324
  msgid "social media posts ready to be shared"
325
  msgstr "Social Media Posts sind bereit geteilt zu werden"
326
 
327
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:413 ../..
328
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:33 ../../plugins/blog2social-
329
+ #: v-5-0/views/b2s/widgets/premium.php:47
330
  msgid "Auto-Posting"
331
  msgstr "Auto-Posting"
332
 
333
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:413 ../..
334
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:545 ../..
335
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:404
336
  msgid "Retweet"
337
  msgstr "Retweet"
338
 
339
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:419 ../..
340
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:488 ../..
341
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:550
342
  msgid "select all"
343
  msgstr "alle auswählen"
344
 
345
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:422
346
  msgid "show"
347
  msgstr "ansehen"
348
 
349
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:429 ../..
350
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:415
351
  msgid "Please see"
352
  msgstr "Siehe"
353
 
354
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:429 ../..
355
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:415
356
  msgid "FAQ"
357
  msgstr "FAQ"
358
 
359
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:434
360
  msgid "sharing in progress by"
361
  msgstr "wir geteilt"
362
 
363
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:434
364
  msgid "shared by"
365
  msgstr "geteilt von"
366
 
367
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:455 ../..
368
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:468
369
  msgid "You want to delete a publish post entry?"
370
  msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
371
 
372
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:456 ../..
373
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:469
374
  msgid "delete from reporting"
375
  msgstr "aus Reporting löschen"
376
 
377
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:459
378
  msgid "re-share"
379
  msgstr "erneut teilen"
380
 
381
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:491
382
  msgid "is waiting to shared by"
383
  msgstr "wartet darauf geteilt zu werden\n"
384
 
385
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:520 ../..
386
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:385
387
  msgid "share"
388
  msgstr "teilen"
389
 
390
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:528
391
  msgid "You want to delete your Social Media post?"
392
  msgstr "Du möchtest Deinen Social Media Post löschen?"
393
 
394
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:529 ../..
395
+ #: /plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:574 ../..
396
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:104 ../..
397
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:685 ../..
398
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:826
399
  msgid "delete"
400
  msgstr "löschen"
401
 
402
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:565
403
  msgid "scheduled by"
404
  msgstr "geplant von "
405
 
406
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:570
407
  msgid "You want to edit your scheduled post?"
408
  msgstr "Möchtest Du Deinen geplanten Beitrag bearbeiten?"
409
 
410
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:571
411
  msgid "edit"
412
  msgstr "bearbeiten"
413
 
414
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Post/Item.php:582
415
  msgid "delete scheduling"
416
  msgstr "Planung löschen"
417
 
418
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:27 ../..
419
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:50
420
  msgid "Please see FAQ"
421
  msgstr "Siehe FAQ"
422
 
423
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:36
424
  msgid "last auto-post:"
425
  msgstr "letzter Auto-Post:"
426
 
427
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:78 ../..
428
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:540 ../../plugins/blog2social-v-
429
+ #: 5-0/views/b2s/html/header.phtml:55
430
  msgid "The connection to the server failed. Try again!"
431
  msgstr ""
432
  "Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
433
  "erneut!"
434
 
435
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:79 ../..
436
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:49
437
  msgid ""
438
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
439
  "heartbeats for using Blog2Social!"
441
  "WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
442
  "Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
443
 
444
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:80 ../..
445
+ #: /plugins/blog2social-v-5-0/includes/B2S/PostBox.php:82
446
  msgid ""
447
  "Your post is still on draft or pending status. Please make sure that your "
448
  "post is published or scheduled to be published on this blog. You can then "
452
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
453
  "planen."
454
 
455
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:81 ../..
456
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:534
457
  msgid ""
458
  "There are no authorizations for your selected profile. Please, authorize "
459
  "with a social network or select a other profile."
461
  "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
462
  "mit einem Netzwerk oder wähle ein anderes Profil aus. "
463
 
464
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:81 ../..
465
+ #: /plugins/blog2social-v-5-0/includes/B2S/PostBox.php:179
466
  msgid "Network settings"
467
  msgstr "Netzwerkeinstellungen"
468
 
469
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:83
470
  msgid ""
471
  "Notice: Please make sure, that your website address is reachable. The Social "
472
  "Networks do not allow postings from local installations."
474
  "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
475
  "Fragen wende Dich bitte an unseren Support."
476
 
477
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:99
478
  msgid "Custom Sharing & Scheduling"
479
  msgstr "Individuelles Teilen und Planen"
480
 
481
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:99 ../..
482
+ #: /plugins/blog2social-v-5-0/includes/B2S/PostBox.php:103 ../..
483
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:91 ../..
484
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:99 ../..
485
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:107 ../..
486
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:109 ../..
487
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:121 ../..
488
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:128 ../..
489
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:144 ../..
490
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:184 ../..
491
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:318 ../..
492
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:320 ../..
493
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:477 ../..
494
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:649 ../..
495
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:18 ../../plugins/blog2social-
496
+ #: v-5-0/views/b2s/settings.php:69 ../../plugins/blog2social-v-5-
497
+ #: 0/views/b2s/settings.php:92 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
498
+ #: 56 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:146 ../..
499
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:233
 
500
  msgid "Info"
501
  msgstr "Info"
502
 
503
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:100
504
  msgid "Customize & Schedule Social Media Posts"
505
  msgstr "Social Media Posts anpassen & planen"
506
 
507
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:102
508
  msgid "Facebook Instant Sharing:"
509
  msgstr "Facebook Instant Sharing:"
510
 
511
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:102 ../..
512
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:142
513
  msgid ""
514
  "Auto-posts for Facebook Profiles will be shown in the \"Instant Sharing\" tab "
515
  "on your \"Posts & Sharing\" navigation bar and can be shared on your Facebook "
520
  "auf den “Teilen” Button neben dem Post an Dein Facebook-Profil gesendet "
521
  "werden."
522
 
523
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:103 ../..
524
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:317
525
  msgid "Social Media Auto-Posting"
526
  msgstr "Social Media Auto-Posting"
527
 
528
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:107
529
  msgid "enable Auto-Posting"
530
  msgstr "Auto-Posting aktivieren"
531
 
532
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:117 ../..
533
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:47 ../../plugins/blog2social-
534
+ #: v-5-0/views/b2s/network.php:172 ../../plugins/blog2social-v-5-0/views/b2s/post.
535
+ #: approve.php:46 ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:50 .
536
+ #: ./../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:187 ../..
537
+ #: /plugins/blog2social-v-5-0/views/b2s/post.notice.php:40 ../..
538
+ #: /plugins/blog2social-v-5-0/views/b2s/post.php:37 ../../plugins/blog2social-v-5-
539
+ #: 0/views/b2s/post.publish.php:40 ../../plugins/blog2social-v-5-0/views/b2s/post.
540
+ #: sched.php:52 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:168 ../..
541
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:537 ../../plugins/blog2social-v-
542
+ #: 5-0/views/prg/html/header.phtml:81
 
543
  msgid "Loading..."
544
  msgstr "Lade Daten..."
545
 
546
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:125
547
  msgid "Blog2Social: Customize & Schedule Social Media Posts"
548
  msgstr "Blog2Social : Beiträge anpassen & planen"
549
 
550
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:128
551
  msgid ""
552
  "Customize and schedule your social media posts on the one page preview for "
553
  "all your selected networks: tailor your posts with individual comments, "
561
  "mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
562
  "Community zu erzielen"
563
 
564
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:137 ../..
565
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:306
566
  msgid "Blog2Social: Social Media Auto-Posting"
567
  msgstr "Blog2Social: Social Media Auto-Posting"
568
 
569
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:141 ../..
570
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:310
571
  msgid ""
572
  "You have 2 general options to define the date and time to share your blog "
573
  "posts on social media with the Auto-Poster:"
575
  "Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
576
  "Deine Blogbeiträge auf Social Media zu teilen: "
577
 
578
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:142 ../..
579
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:311
580
  msgid "1. Immediately after publishing your blog post"
581
  msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
582
 
583
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:143 ../..
584
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:312
585
  msgid ""
586
  "Published blog posts: If you publish your blog post with click on publish in "
587
  "your WordPress post editor, Blog2Social will automatically share your social "
591
  "auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
592
  " teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
593
 
594
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:144 ../..
595
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:313
596
  msgid ""
597
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
598
  "in your WordPress post editor, Blog2Social will share your social media post "
603
  "Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
604
  "Veröffentlichung auf Social Media. "
605
 
606
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:145 ../..
607
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:314
608
  msgid ""
609
  "2. Schedule your social media posts for a specific date and time If you want "
610
  "to share your post at a particular date and time, different from your "
616
  "abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
617
  "die Uhrzeit fest. "
618
 
619
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:149 ../..
620
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:319
621
  msgid "You want to auto-post your blog post?"
622
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
623
 
624
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:150 ../..
625
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:98 ../../plugins/blog2social-
626
+ #: v-5-0/views/b2s/post.calendar.php:225 ../../plugins/blog2social-v-5-
627
+ #: 0/views/b2s/ship.php:301 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
628
+ #: 361 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:407 ../..
629
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:25 ../..
630
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:143 ../..
631
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:209 ../..
632
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:249 ../..
633
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:320 ../..
634
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:405
 
635
  msgid "With Blog2Social Premium you can:"
636
  msgstr "Mit Blog2Social kannst Du:"
637
 
638
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:153 ../..
639
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:101 ../../plugins/blog2social-
640
+ #: v-5-0/views/b2s/post.calendar.php:228 ../../plugins/blog2social-v-5-
641
+ #: 0/views/b2s/ship.php:304 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
642
+ #: 364 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:410 ../..
643
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:28 ../..
644
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:146 ../..
645
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:212 ../..
646
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:252 ../..
647
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:323 ../..
648
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:408 ../..
649
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:318
 
650
  msgid "Post on pages and groups"
651
  msgstr "Poste auf Seiten und in Gruppen"
652
 
653
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:154 ../..
654
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:102 ../../plugins/blog2social-
655
+ #: v-5-0/views/b2s/post.calendar.php:229 ../../plugins/blog2social-v-5-
656
+ #: 0/views/b2s/ship.php:305 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
657
+ #: 365 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:411 ../..
658
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:29 ../..
659
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:147 ../..
660
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:213 ../..
661
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:253 ../..
662
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:324 ../..
663
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:409
 
664
  msgid "Share on multiple profiles, pages and groups"
665
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
666
 
667
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:155 ../..
668
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:103 ../../plugins/blog2social-
669
+ #: v-5-0/views/b2s/post.calendar.php:230 ../../plugins/blog2social-v-5-
670
+ #: 0/views/b2s/ship.php:306 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
671
+ #: 366 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:412 ../..
672
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:30 ../..
673
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:64 ../..
674
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:148 ../..
675
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:214 ../..
676
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:254 ../..
677
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:325 ../..
678
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:410
 
679
  msgid "Auto-post and auto-schedule new and updated blog posts"
680
  msgstr ""
681
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
682
  "Aktualisierung posten und zeitversetzt planen"
683
 
684
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:156 ../..
685
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:104 ../../plugins/blog2social-
686
+ #: v-5-0/views/b2s/post.calendar.php:231 ../../plugins/blog2social-v-5-
687
+ #: 0/views/b2s/ship.php:307 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
688
+ #: 367 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:413 ../..
689
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:31 ../..
690
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:149 ../..
691
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:215 ../..
692
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:255 ../..
693
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:326 ../..
694
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:411
 
695
  msgid "Schedule your posts at the best times on each network"
696
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
697
 
698
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:157 ../..
699
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:105 ../../plugins/blog2social-
700
+ #: v-5-0/views/b2s/post.calendar.php:232 ../../plugins/blog2social-v-5-
701
+ #: 0/views/b2s/ship.php:308 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
702
+ #: 368 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:414 ../..
703
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:32 ../..
704
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:150 ../..
705
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:216 ../..
706
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:256 ../..
707
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:327 ../..
708
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:412
 
709
  msgid ""
710
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
711
  "social media posts"
712
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
713
 
714
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:158 ../..
715
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:106 ../../plugins/blog2social-
716
+ #: v-5-0/views/b2s/post.calendar.php:233 ../../plugins/blog2social-v-5-
717
+ #: 0/views/b2s/ship.php:309 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
718
+ #: 369 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:415 ../..
719
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:33 ../..
720
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:151 ../..
721
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:217 ../..
722
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:257 ../..
723
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:328 ../..
724
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:413
 
725
  msgid "Schedule your post for one time, multiple times or recurrently"
726
  msgstr ""
727
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
728
  "oder nach einem regelmäßigen Muster"
729
 
730
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:159 ../..
731
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:107 ../../plugins/blog2social-
732
+ #: v-5-0/views/b2s/post.calendar.php:234 ../../plugins/blog2social-v-5-
733
+ #: 0/views/b2s/ship.php:310 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
734
+ #: 370 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:416 ../..
735
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:34 ../..
736
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:152 ../..
737
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:218 ../..
738
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:258 ../..
739
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:329 ../..
740
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:414
 
741
  msgid "Schedule and re-share old posts"
742
  msgstr "Plane und teile alte Beiträge"
743
 
744
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:160 ../..
745
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:108 ../../plugins/blog2social-
746
+ #: v-5-0/views/b2s/post.calendar.php:235 ../../plugins/blog2social-v-5-
747
+ #: 0/views/b2s/ship.php:311 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
748
+ #: 371 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:417 ../..
749
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:35 ../..
750
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:66 ../..
751
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:153 ../..
752
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:219 ../..
753
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:259 ../..
754
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:330 ../..
755
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:415
 
756
  msgid "Select link format or image format for your posts"
757
  msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
758
 
759
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:161 ../..
760
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:109 ../../plugins/blog2social-
761
+ #: v-5-0/views/b2s/post.calendar.php:236 ../../plugins/blog2social-v-5-
762
+ #: 0/views/b2s/ship.php:312 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
763
+ #: 372 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:418 ../..
764
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:36 ../..
765
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:67 ../..
766
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:154 ../..
767
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:220 ../..
768
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:260 ../..
769
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:331 ../..
770
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:416
 
771
  msgid "Select individual images per post"
772
  msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
773
 
774
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:162 ../..
775
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:110 ../../plugins/blog2social-
776
+ #: v-5-0/views/b2s/post.calendar.php:237 ../../plugins/blog2social-v-5-
777
+ #: 0/views/b2s/ship.php:313 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
778
+ #: 373 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:419 ../..
779
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:37 ../..
780
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:155 ../..
781
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:221 ../..
782
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:261 ../..
783
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:332 ../..
784
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:417
 
785
  msgid ""
786
  "Reporting & calendar: keep track of your published and scheduled social "
787
  "media posts"
789
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
790
  "Media Beiträge"
791
 
792
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:164 ../..
793
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:112 ../../plugins/blog2social-
794
+ #: v-5-0/views/b2s/post.calendar.php:239 ../../plugins/blog2social-v-5-
795
+ #: 0/views/b2s/ship.php:315 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
796
+ #: 375 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:421 ../..
797
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:39 ../..
798
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:157 ../..
799
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:223 ../..
800
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:263 ../..
801
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:334 ../..
802
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:419 ../..
803
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:254
 
804
  msgid "Upgrade to PREMIUM"
805
  msgstr "Jetzt auf Premium upgraden"
806
 
807
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:166 ../..
808
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:114 ../../plugins/blog2social-
809
+ #: v-5-0/views/b2s/post.calendar.php:241 ../../plugins/blog2social-v-5-
810
+ #: 0/views/b2s/ship.php:317 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
811
+ #: 377 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:423 ../..
812
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:41 ../..
813
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:72 ../..
814
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:90 ../..
815
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:159 ../..
816
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:225 ../..
817
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:265 ../..
818
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:336 ../..
819
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:421
 
820
  msgid ""
821
  "or <a href=\"http://service.blog2social.com/trial\" target=\"_blank\">start with "
822
  "free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
825
  "Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
826
  "Zahlungsinformationen erforderlich)"
827
 
828
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:179
829
  msgid "Select profile:"
830
  msgstr "Profil auswählen: "
831
 
832
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:190
833
  msgid "Select Twitter profile:"
834
  msgstr "Twitter Profil auswählen:"
835
 
836
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:208
837
  msgid "When do you want to share your post on social media?"
838
  msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
839
 
840
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:211
841
  msgid "immediately after publishing"
842
  msgstr "sofort nach Veröffentlichung"
843
 
844
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:212
845
  msgid "at scheduled times"
846
  msgstr "zu geplanten Zeiten"
847
 
848
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:215
849
  msgid "You want to sched your blog post with Auto-Poster?"
850
  msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
851
 
852
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:215 ../..
853
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:70 ../..
854
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:88
855
  msgid "Upgrade to PREMIUM PRO"
856
  msgstr "Upgrade auf PREMIUM PRO"
857
 
858
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:221
859
  msgid "Select date:"
860
  msgstr "Datum auswählen:"
861
 
862
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:222 ../..
863
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:301
864
  msgid "show calendar"
865
  msgstr "Kalender anzeigen"
866
 
867
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:229
868
  msgid "post at"
869
  msgstr "beachte"
870
 
871
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:230
872
  msgid "my time settings"
873
  msgstr "meine Zeit-Einstellungen"
874
 
875
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/PostBox.php:231
876
  msgid ""
877
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
878
  "you with the best times to post​ on the social networks. You can always "
883
  "posten. Du kannst jederzeit Deine eigenen Zeiten unter Einstellungen "
884
  "bearbeiten."
885
 
886
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:84 ../..
887
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:104 ../..
888
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:667
889
  msgid "Account"
890
  msgstr "Konto"
891
 
892
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:87 ../..
893
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:264
894
  msgid "Personal Time Zone"
895
  msgstr "Persönliche Zeitzone"
896
 
897
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:93
898
  msgid "Timezone for Scheduling"
899
  msgstr "Zeitzone für die Planung"
900
 
901
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:93
902
  msgid "User"
903
  msgstr "Benutzer"
904
 
905
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:98
906
  msgid "Content"
907
  msgstr "Inhalt"
908
 
909
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:99
910
  msgid "Url Shortener"
911
  msgstr "Url Shortener"
912
 
913
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:100
914
  msgid "Bitly"
915
  msgstr "Bitly"
916
 
917
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:103 ../..
918
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:199
919
  msgid "connect"
920
  msgstr "Jetzt mit Netzwerken verbinden"
921
 
922
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:104
923
  msgid "change"
924
  msgstr "ändern"
925
 
926
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:107
927
  msgid "allow shortcodes in my post"
928
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
929
 
930
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:109
931
  msgid "include Wordpress tags as hashtags in my post"
932
  msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
933
 
934
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:112 ../..
935
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:291
936
  msgid "Define Twitter post content"
937
  msgstr "Twitter Beitragsinhalt definieren"
938
 
939
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:118 ../..
940
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:374 ../..
941
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:389
942
  msgid "title"
943
  msgstr "Titel"
944
 
945
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:118 ../..
946
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:119 ../..
947
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:120
948
  msgid "hashtags"
949
  msgstr "Hashtags"
950
 
951
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:119
952
  msgid "title & content"
953
  msgstr "Titel & Inhalt"
954
 
955
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:119 ../..
956
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:120 ../..
957
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:365
958
  msgid "(PREMIUM)"
959
  msgstr "(PREMIUM)"
960
 
961
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:120
962
  msgid "only content"
963
  msgstr "nur Inhalt"
964
 
965
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:126
966
  msgid "System"
967
  msgstr "System"
968
 
969
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:127 ../..
970
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:314 ../..
971
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:339
972
  msgid ""
973
  "This is a global feature for your blog, which can only be edited by users "
974
  "with admin rights."
976
  "Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
977
  "Admin Rechten bearbeitet werden kann."
978
 
979
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:128
980
  msgid "activate Legacy mode"
981
  msgstr "Kompatibilitätsmodus aktivieren"
982
 
983
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:144
984
  msgid "Auto-post your own created posts"
985
  msgstr "Auto-Poste Deine selbsterstellten Blogbeiträge"
986
 
987
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:145
988
  msgid "Define by default to automatically post your posts on social media:"
989
  msgstr ""
990
  "Definiere standardmäßig Blogbeiträge oder Seiten, die Du auf Social Media "
991
  "automatisch teilen möchtest:"
992
 
993
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:147
994
  msgid ""
995
  "Select by default if the auto-poster is activated when you publish a new "
996
  "post or update a post."
998
  "Wähle standardmäßig aus, ob der Auto-Poster aktiviert ist, wenn Du einen "
999
  "neuen Beitrag veröffentlichst oder aktualisierst. "
1000
 
1001
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:152
1002
  msgid "new posts"
1003
  msgstr "Neue Beiträge"
1004
 
1005
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:153 ../..
1006
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:165
1007
  msgid "Unselect all"
1008
  msgstr "Alle abwählen"
1009
 
1010
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:153 ../..
1011
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:165
1012
  msgid "Select all"
1013
  msgstr "Alle auswählen"
1014
 
1015
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:161
1016
  msgid ""
1017
  "By enabling this feature your previously published social media posts will "
1018
  "be sent again to your selected social media channels as soon as the post is "
1022
  "Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
1023
  "Beitrag aktualisiert wird"
1024
 
1025
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:164
1026
  msgid "updating existing posts"
1027
  msgstr "Bestehenden Beitrag aktualisieren"
1028
 
1029
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:176 ../..
1030
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:218
1031
  msgid "Save"
1032
  msgstr " Speichern"
1033
 
1034
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:184
1035
  msgid "Auto-post your imported posts to Twitter & Facebook"
1036
  msgstr "Auto-Poste Deine importierten Beiträge auf Twitter & Facebook"
1037
 
1038
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:185
1039
  msgid "Define by default to automatically share your imported posts to social media:"
1040
  msgstr ""
1041
  "Definiere standardmässig alle Deine importierten Beiträge auf den Social "
1042
  "Media zu veröffentlichen:"
1043
 
1044
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:188
1045
  msgid "Your current licence:"
1046
  msgstr "Deine aktuelle Lizenz:"
1047
 
1048
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:190
1049
+ msgid ""
1050
+ "Immediate Cross-Posting across all networks: Share an unlimited number of "
1051
+ "posts"
1052
+ msgstr ""
1053
+ "Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte "
1054
+ "Anzahl an Beiträgen"
1055
+
1056
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:191
1057
+ msgid "Scheduled Auto-Posting"
1058
+ msgstr "Scheduled Auto-Posting"
1059
+
1060
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:191 ../..
1061
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:194
1062
+ msgid "Upgrade"
1063
+ msgstr "Upgrade"
1064
+
1065
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:193
1066
  msgid "share up to"
1067
  msgstr "teile bis zu"
1068
 
1069
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:193
1070
  msgid "posts per day"
1071
  msgstr "Beiträge pro Tag"
1072
 
1073
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:199
1074
  msgid "Select by default to automatically share your imported posts"
1075
  msgstr "Teile standardmäßig automatisch importierte Beiträge auf meinen Social Media"
1076
 
1077
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:203
1078
  msgid "Select to auto-post to your standard networks:"
1079
  msgstr "Wähle die Netzwerke aus, auf denen automatisch veröffentlicht werden soll:"
1080
 
1081
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:204
1082
  msgid ""
1083
  "In accordance with the new Twitter TOS, one Twitter account can be selected "
1084
  "as your primary Twitter account for auto-posting."
1086
  "In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
1087
  "Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden."
1088
 
1089
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:204
1090
  msgid "More information"
1091
  msgstr "Zusätzliche Informationen"
1092
 
1093
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:206
1094
  msgid "Select to auto-post immediately after publishing or with a delay"
1095
  msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
1096
 
1097
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:207
1098
  msgid "immediately"
1099
  msgstr "sofort"
1100
 
1101
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:208
1102
  msgid "publish with a delay of"
1103
  msgstr "veröffentlichen mit einer Verzögerung von"
1104
 
1105
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:209
1106
  msgid "minutes"
1107
  msgstr "Minuten"
1108
 
1109
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:232
1110
  msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
1111
  msgstr ""
1112
  "Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
1113
  "automatisch veröffentlicht)"
1114
 
1115
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:233
1116
  msgid "Post Types"
1117
  msgstr "Posttypen"
1118
 
1119
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:234
1120
  msgid "Include (Post only...)"
1121
  msgstr "enthält (nur Beiträge, mit ...)"
1122
 
1123
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:235
1124
  msgid "Exclude (Do no post ...)"
1125
  msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
1126
 
1127
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:269
1128
  msgid "add/change connection"
1129
  msgstr "Verbindung hinzufügen/ändern"
1130
 
1131
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:312
1132
  msgid "Reset all page and post meta data"
1133
  msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
1134
 
1135
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:317
1136
  msgid "Meta Tags Settings for Posts and Pages"
1137
  msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
1138
 
1139
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:318
1140
  msgid ""
1141
  "Add Open Graph meta tags to your shared posts or pages, required by Facebook "
1142
  "and other social networks to display your post or page image, title and "
1146
  "Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
1147
  "Beitrag/Seite korrekt darstellen können."
1148
 
1149
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:320
1150
  msgid ""
1151
  "Add Twitter Card meta tags to your shared posts or pages, required by "
1152
  "Twitter to display your post or page image, title and description correctly."
1155
  "Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
1156
  "darstellen kann."
1157
 
1158
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:341
1159
  msgid "Frontpage Settings"
1160
  msgstr "Frontpage Einstellungen"
1161
 
1162
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:343
1163
  msgid ""
1164
  "Add the default Open Graph parameters for title, description and image you "
1165
  "want Facebook to display, if you share the frontpage of your blog as link "
1169
  "die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
1170
  "als Link Post teilst (http://www.DeinBlog.de) "
1171
 
1172
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:346 ../..
1173
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:367 ../..
1174
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:31 ../../plugins/blog2social-v-5-
1175
+ #: 0/views/prg/ship.php:41 ../../plugins/blog2social-v-5-0/views/prg/ship.php:43 .
1176
+ #: ./../plugins/blog2social-v-5-0/views/prg/html/form.phtml:26 ../..
1177
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:28
1178
  msgid "Title"
1179
  msgstr "Titel"
1180
 
1181
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:347 ../..
1182
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:368
1183
  msgid "Description"
1184
  msgstr "Beschreibung"
1185
 
1186
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:348 ../..
1187
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:369
1188
  msgid "Image URL"
1189
  msgstr "Bild Url"
1190
 
1191
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:350 ../..
1192
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:371 ../..
1193
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:80 ../..
1194
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:82
1195
  msgid "Image upload / Media Gallery"
1196
  msgstr "Bild hochladen / Mediathek"
1197
 
1198
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:353
1199
  msgid ""
1200
  "Please note: Facebook supports images with a minimum dimension of 200x200 "
1201
  "pixels and an aspect ratio of 1:1."
1203
  "Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
1204
  "200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
1205
 
1206
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:359
1207
  msgid ""
1208
  "Add the default Twitter Card parameters for title, description and image you "
1209
  "want Twitter to display, if you share the frontpage of your blog as link "
1213
  "Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www."
1214
  "DeinBlog.de) "
1215
 
1216
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:362
1217
  msgid "The default card type to use"
1218
  msgstr "Der zu verwendende Standard-Kartentyp"
1219
 
1220
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:364
1221
  msgid "Summary"
1222
  msgstr "Zusammenfassung"
1223
 
1224
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:365
1225
  msgid "Summary with large image"
1226
  msgstr "Zusammenfassung mit großem Bild"
1227
 
1228
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:374
1229
  msgid ""
1230
  "Please note: Twitter supports images with a minimum dimension of 144x144 "
1231
  "pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
1237
  " The Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt "
1238
  "die Bildformate JPG, PNG, WEBP und GIF. "
1239
 
1240
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:390
1241
  msgid "Did you know?"
1242
  msgstr "Wusstest Du schon?"
1243
 
1244
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:391
1245
  msgid ""
1246
  "With Premium Pro, you can change the custom post format photo post or link "
1247
  "post for each individual social media post and channel (profile, page, "
1251
  "Beitrag individuell zwischen Link-Beitrag und Bild-Beitrag auswählen "
1252
  "(Profile, Seiten, Gruppen)"
1253
 
1254
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:391
1255
  msgid "Upgrade to Premium Pro now."
1256
  msgstr "Upgrade auf Premium PRO"
1257
 
1258
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:408 ../..
1259
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:462 ../..
1260
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:505 ../..
1261
+ #: /plugins/blog2social-v-5-0/views/b2s/post.calendar.php:60 ../..
1262
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:172 ../..
1263
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:127
1264
  msgid "Image with frame"
1265
  msgstr "Bild mit Rahmen"
1266
 
1267
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:408 ../..
1268
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:462 ../..
1269
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:505 ../..
1270
+ #: /plugins/blog2social-v-5-0/views/b2s/post.calendar.php:60 ../..
1271
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:172 ../..
1272
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:110
1273
  msgid "Link Post"
1274
  msgstr "Link-Beitrag"
1275
 
1276
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:413 ../..
1277
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:128
1278
  msgid ""
1279
  "Insert white frames to show the whole image in your timeline. All image "
1280
  "information will be shown in your timeline."
1283
  "das quadratische Instagram-Layout anzupassen und das gesamte Bild bereits in "
1284
  "Deiner Timeline anzuzeigen. "
1285
 
1286
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:415
1287
  msgid ""
1288
  "The link post format displays posts title, link address and the first one or "
1289
  "two sentences of the post. The networks scan this information from your META "
1307
  "Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
1308
  "Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. "
1309
 
1310
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:419 ../..
1311
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:484 ../..
1312
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:505 ../..
1313
+ #: /plugins/blog2social-v-5-0/views/b2s/post.calendar.php:60 ../..
1314
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:172 ../..
1315
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:132
1316
  msgid "Image cut out"
1317
  msgstr "Bild zuschneiden"
1318
 
1319
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:419 ../..
1320
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:484 ../..
1321
+ #: /plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:505 ../..
1322
+ #: /plugins/blog2social-v-5-0/views/b2s/post.calendar.php:60 ../..
1323
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:172 ../..
1324
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:115
1325
  msgid "Photo Post"
1326
  msgstr "Bild-Beitrag"
1327
 
1328
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:424 ../..
1329
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:133
1330
  msgid ""
1331
  "The image preview will be cropped automatically to fit the default Instagram "
1332
  "layout for your Instagram timeline. The image will be shown uncropped when "
1337
  "auf Deiner Timeline. Mit Klick auf den Post wird das Bild in der Instagram-"
1338
  "Vorschau als Ganzes angezeigt."
1339
 
1340
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:426 ../..
1341
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:116
1342
  msgid ""
1343
  "A photo or image post displays the selected image in the one-page preview of "
1344
  "Blog2Social and your comment above the image. The image links to the image "
1354
  "langfristig sichtbar bleibt. Auf Facebook kannst Du den Namen des Albums "
1355
  "bearbeiten und eine Beschreibung Deiner Wahl ergänzen."
1356
 
1357
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:457
1358
  msgid "All"
1359
  msgstr "alle"
1360
 
1361
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:477
1362
  msgid "Activate Instant Caching"
1363
  msgstr "Instant Caching aktivieren"
1364
 
1365
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:558 ../..
1366
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:27
1367
  msgid "Uhr"
1368
  msgstr "Uhr"
1369
 
1370
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:562
1371
  msgid "Best times to post"
1372
  msgstr "Beste Zeiten"
1373
 
1374
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:575 ../..
1375
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:75 ../../plugins/blog2social-
1376
+ #: v-5-0/views/b2s/ship.php:51 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
1377
+ #: 360 ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:208
 
1378
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
1379
  msgstr ""
1380
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
1381
  "Manager benutzen?"
1382
 
1383
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:577 ../..
1384
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:57 ../../plugins/blog2social-
1385
+ #: v-5-0/views/b2s/settings.php:77 ../../plugins/blog2social-v-5-
1386
+ #: 0/views/b2s/settings.php:117 ../../plugins/blog2social-v-5-
1387
+ #: 0/views/b2s/settings.php:119 ../../plugins/blog2social-v-5-
1388
+ #: 0/views/b2s/settings.php:132 ../../plugins/blog2social-v-5-
1389
+ #: 0/views/b2s/settings.php:134 ../../plugins/blog2social-v-5-
1390
+ #: 0/views/b2s/settings.php:147 ../../plugins/blog2social-v-5-
1391
+ #: 0/views/b2s/settings.php:149 ../../plugins/blog2social-v-5-
1392
+ #: 0/views/b2s/settings.php:163 ../../plugins/blog2social-v-5-
1393
+ #: 0/views/b2s/settings.php:165 ../../plugins/blog2social-v-5-0/views/b2s/ship.
1394
+ #: php:457
1395
  msgid "save"
1396
  msgstr "speichern"
1397
 
1398
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Settings/Item.php:582
1399
  msgid "Sorry, we can not load your data at the moment..."
1400
  msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
1401
 
1402
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:29
1403
  msgid "The images file types .jpg and .png are allowed. Please try another."
1404
  msgstr "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
1405
 
1406
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:30 ../..
1407
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:15
1408
  msgid ""
1409
  "You need a higher user role to upload an image on this blog. Please contact "
1410
  "your administrator."
1412
  "Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
1413
  "hochzuladen. Bitte kontaktiere Deinen Administrator."
1414
 
1415
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:31
1416
  msgid "To select an individual image from your media library,"
1417
  msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
1418
 
1419
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:37
1420
  msgid ""
1421
  "The best size for images in social media posts are between: 667-1000px x 523-"
1422
  "1000px. Blog2Social will automatically resize your image according to "
1426
  "1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe "
1427
  "des jeweiligen Netzwerks an."
1428
 
1429
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:61
1430
  msgid "No images are included in your post."
1431
  msgstr "In dem Beitrag sind keine Bilder hinterlegt"
1432
 
1433
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:69
1434
  msgid "Apply image for all posts"
1435
  msgstr "Bild für alle Posts übernehmen"
1436
 
1437
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:73 ../..
1438
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:75
1439
  msgid "Apply image for this post"
1440
  msgstr "Bild für diesen Post übernehmen"
1441
 
1442
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:86 ../..
1443
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:195
1444
  msgid "Select or upload an image from media gallery"
1445
  msgstr "Bild auswählen / hochladen"
1446
 
1447
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Image.php:87 ../..
1448
+ #: /plugins/blog2social-v-5-0/views/b2s/settings.php:196
1449
  msgid "Use image"
1450
  msgstr "Bild verwenden"
1451
 
1452
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:106
1453
  msgid "Network does not support image for profiles"
1454
  msgstr "Netzwerk unterstützt keine Bilder für Profile"
1455
 
1456
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:107
1457
  msgid "Network defines image by link"
1458
  msgstr "Netzwerk wählt selber das Bild aus"
1459
 
1460
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:109
1461
  msgid "Supported HTML tags"
1462
  msgstr "Erlaubte HTML-Elemente"
1463
 
1464
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:110 ../..
1465
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:169
1466
  msgid "Network does not support emojis"
1467
  msgstr "Netzwerk unterstützt keine Emojis"
1468
 
1469
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:153
1470
  msgid "Text only"
1471
  msgstr "nur Text"
1472
 
1473
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:154 ../..
1474
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:158 ../..
1475
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:193 ../..
1476
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:197 ../..
1477
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:218 ../..
1478
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:222 ../..
1479
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:835 ../..
1480
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:837
1481
  msgid "characters"
1482
  msgstr "Zeichen"
1483
 
1484
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:168
1485
  msgid "Network does not support image for pages"
1486
  msgstr "Netzwerk unterstützt keine Bilder für Seiten"
1487
 
1488
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:251
1489
  msgid "post format"
1490
  msgstr "Postformat"
1491
 
1492
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:261 ../..
1493
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:843
1494
  msgid "Insert full-text"
1495
  msgstr "ganzen Text einfügen"
1496
 
1497
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:263 ../..
1498
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:845
1499
  msgid "Delete text"
1500
  msgstr "Text löschen"
1501
 
1502
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:271
1503
  msgid ""
1504
  "You can customize your post with individual comments, @-handles, emojis, and "
1505
  "more in the Instant Sharing window, after planning your post."
1508
  "mehr im Fenster \"Instant Sharing\" anpassen, nachdem Du Deinen Post geplant "
1509
  "hast."
1510
 
1511
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:277 ../..
1512
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:463 ../..
1513
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:718
1514
  msgid ""
1515
  "Please keep in mind that according to Twitter’s new TOS, users are no longer "
1516
  "allowed to post identical or substantially similar content to multiple "
1521
  "Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
1522
  "mehreren Accounts zu posten."
1523
 
1524
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:277 ../..
1525
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:463 ../..
1526
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:718
1527
  msgid ""
1528
  "Violating these rules can result in Twitter suspending your account. Always "
1529
  "vary your Tweets with different comments, hashtags or handles to prevent "
1533
  "sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
1534
  "Hashtags und Handles um doppelte Beiträge zu vermeiden."
1535
 
1536
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:277 ../..
1537
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:463 ../..
1538
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:718
1539
  msgid "Learn more about this"
1540
  msgstr "Erfahre mehr darüber"
1541
 
1542
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:301
1543
  msgid "hide calendar"
1544
  msgstr "Kalender ausblenden"
1545
 
1546
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:347 ../..
1547
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:371 ../..
1548
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:395 ../..
1549
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:413 ../..
1550
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:428 ../..
1551
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:455 ../..
1552
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:473 ../..
1553
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:489 ../..
1554
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:502 ../..
1555
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:518 ../..
1556
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:523
1557
  msgid "Write something about your post..."
1558
  msgstr "Schreibe etwas..."
1559
 
1560
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:354 ../..
1561
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:378 ../..
1562
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:402 ../..
1563
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:451 ../..
1564
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:469 ../..
1565
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:485 ../..
1566
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:514 ../..
1567
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:548
1568
  msgid "Change image"
1569
  msgstr "Bild ändern\n"
1570
 
1571
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:358
1572
  msgid ""
1573
  "Info: Change Open Graph Meta tags image, title and description for this "
1574
  "network"
1575
  msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
1576
 
1577
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:361 ../..
1578
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:385
1579
  msgid ""
1580
  "You want to change your link image, link title and link description for this "
1581
  "network? Click here."
1582
  msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
1583
 
1584
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:363
1585
  msgid "OG Meta title"
1586
  msgstr "OG Titel"
1587
 
1588
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:364
1589
  msgid "OG Meta description"
1590
  msgstr "OG Beschreibung"
1591
 
1592
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:382
1593
  msgid "Info: Change Card Meta tags image, title and description for this network"
1594
  msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
1595
 
1596
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:387
1597
  msgid "Card Meta title"
1598
  msgstr "Card Titel"
1599
 
1600
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:388
1601
  msgid "Card Meta description"
1602
  msgstr "Card Beschreibung"
1603
 
1604
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:535
1605
  msgid "required"
1606
  msgstr "erforderlich"
1607
 
1608
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:555 ../..
1609
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:557
1610
  msgid "Link"
1611
  msgstr "Link"
1612
 
1613
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:616
1614
  msgid "The Headline..."
1615
  msgstr "Die Überschrift..."
1616
 
1617
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:621
1618
  msgid "Hashtags"
1619
  msgstr "Hashtags"
1620
 
1621
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:649
1622
  msgid "Enable Retweets for all Tweets with the selected profile"
1623
  msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
1624
 
1625
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:668 ../..
1626
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:58
1627
  msgid "Delay"
1628
  msgstr "Verzögerung"
1629
 
1630
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:678 ../..
1631
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:679 ../..
1632
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:680 ../..
1633
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:681 ../..
1634
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:62 ../..
1635
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:63 ../..
1636
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:64 ../..
1637
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:65
1638
  msgid "min"
1639
  msgstr "min"
1640
 
1641
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:686
1642
  msgid "Add Retweet"
1643
  msgstr "Retweet hinzufügen"
1644
 
1645
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:706
1646
  msgid "Share Now"
1647
  msgstr "Sofort teilen"
1648
 
1649
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:709 ../..
1650
+ #: /plugins/blog2social-v-5-0/views/b2s/post.calendar.php:214 ../..
1651
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:396
1652
  msgid "Schedule for specific dates"
1653
  msgstr "Für bestimmte Termine planen\n"
1654
 
1655
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:711
1656
  msgid "Schedule Recurrent Post"
1657
  msgstr "regelmäßig Planen"
1658
 
1659
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:745
1660
  msgid "Interval"
1661
  msgstr "Intervall"
1662
 
1663
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:746 ../..
1664
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:749
1665
  msgid "Duration"
1666
  msgstr "Dauer"
1667
 
1668
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:750
1669
  msgid "Repeat"
1670
  msgstr "Wiederholungen"
1671
 
1672
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:751
1673
  msgid "Day of month"
1674
  msgstr "Tag im Month"
1675
 
1676
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:752
1677
  msgid "Duration in days"
1678
  msgstr "Abstand in Tagen"
1679
 
1680
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:754
1681
  msgid "Start date"
1682
  msgstr "Startdatum"
1683
 
1684
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:755 ../..
1685
+ #: /plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:809 ../..
1686
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:48 ../..
1687
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:51
1688
  msgid "Time"
1689
  msgstr "Zeit"
1690
 
1691
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:756
1692
  msgid "Days"
1693
  msgstr "Tage"
1694
 
1695
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:764
1696
  msgid "weekly"
1697
  msgstr "wöchentlich"
1698
 
1699
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:765
1700
  msgid "monthly"
1701
  msgstr "monatlich"
1702
 
1703
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:766
1704
  msgid "own period"
1705
  msgstr "eigener Zeitraum"
1706
 
1707
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:772
1708
  msgid "Week"
1709
  msgstr "Woche"
1710
 
1711
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:772
1712
  msgid "Weeks"
1713
  msgstr "Wochen"
1714
 
1715
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:781
1716
  msgid "Month"
1717
  msgstr "Monat"
1718
 
1719
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:781
1720
  msgid "Months"
1721
  msgstr "Monate"
1722
 
1723
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:801
1724
  msgid "End Of Month"
1725
  msgstr "Monatsende"
1726
 
1727
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:806
1728
  msgid "Timespan"
1729
  msgstr "Timespan"
1730
 
1731
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:808 ../..
1732
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:47 ../..
1733
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:50
1734
  msgid "Date"
1735
  msgstr "Startdatum"
1736
 
1737
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:814
1738
  msgid "Mon"
1739
  msgstr "Mo"
1740
 
1741
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:815
1742
  msgid "Tue"
1743
  msgstr "Di"
1744
 
1745
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:816
1746
  msgid "Wed"
1747
  msgstr "Mi"
1748
 
1749
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:817
1750
  msgid "Thu"
1751
  msgstr "Do"
1752
 
1753
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:818
1754
  msgid "Fri"
1755
  msgstr "Fr"
1756
 
1757
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:819
1758
  msgid "Sat"
1759
  msgstr "Sa"
1760
 
1761
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:820
1762
  msgid "Sun"
1763
  msgstr "So"
1764
 
1765
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:827
1766
  msgid "add another post"
1767
  msgstr "einen weiteren Post anlegen\n"
1768
 
1769
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:841
1770
  msgid "Copy from original"
1771
  msgstr "Text von Original kopieren"
1772
 
1773
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:857
1774
  msgid "Apply Settings To All Networks"
1775
  msgstr "Planung für alle Netzwerke übernehmen"
1776
 
1777
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Item.php:858
1778
  msgid "Save as best time for this network"
1779
  msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
1780
 
1781
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:377
1782
  msgid ""
1783
  "For sharing your posts on personal Facebook Profiles you can now use "
1784
  "Facebook Instant Sharing"
1786
  "Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht ab sofort "
1787
  "Facebook Instant Sharing zur Verfügung"
1788
 
1789
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:377
1790
  msgid "Read why"
1791
  msgstr "mehr Informationen"
1792
 
1793
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:379
1794
  msgid "This is how it works:"
1795
  msgstr "Und so funktioniert es:"
1796
 
1797
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:380
1798
  msgid ""
1799
  "-To share your post immediately, click the \"Share\" button next to your "
1800
  "selected Facebook profile below."
1802
  "-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
1803
  "neben Deinem unten aufgeführten Profil."
1804
 
1805
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:381
1806
  msgid ""
1807
  "-For scheduled posts, Blog2Social will save your post and move it to the "
1808
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
1815
  "Klicke dann auf \"Teilen\", um Deinen Post dann an Dein Facebook-Profil zu "
1816
  "senden."
1817
 
1818
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:386
1819
  msgid "Please share your Facebook post now"
1820
  msgstr "Bitte teile nun Deinen Facebook Post"
1821
 
1822
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:395
1823
  msgid "view social media post"
1824
  msgstr "Zeige Social Media Beitrag an"
1825
 
1826
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/Ship/Save.php:405
1827
  msgid "scheduled on"
1828
  msgstr "geplant für"
1829
 
1830
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/User/Info.php:11
1831
  msgid "Number of shared posts"
1832
  msgstr "Anzahl geteilter Beiträge"
1833
 
1834
+ #: ../../plugins/blog2social-v-5-0/includes/B2S/User/Info.php:14
1835
  msgid "Number of scheduled posts"
1836
  msgstr "Anzahl der geplanten Posts"
1837
 
1838
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:42
1839
  msgid "Modify pin board"
1840
  msgstr "Pinnwand ändern"
1841
 
1842
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:42
1843
  msgid "Modify forum"
1844
  msgstr "Forum ändern"
1845
 
1846
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:42
1847
  msgid "Modify subreddit"
1848
  msgstr "Subreddit ändern"
1849
 
1850
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:284
1851
  msgid "Auto-Post on Social Media"
1852
  msgstr "Automatisch auf Social Media teilen"
1853
 
1854
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:285
1855
  msgid "Social Media Content Calendar"
1856
  msgstr "Social Media Kalender"
1857
 
1858
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:525
1859
  msgid "This post will be shared into your social media on"
1860
  msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
1861
 
1862
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:525 ../..
1863
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:527
1864
  msgid "show details"
1865
  msgstr "siehe Details"
1866
 
1867
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:527
1868
  msgid "This post will be shared on social media in 2-3 minutes!"
1869
  msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
1870
 
1871
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:531
1872
  msgid ""
1873
  "Please, make sure that your post are publish on this blog on this moment. "
1874
  "Then you can auto post your post with Blog2social."
1876
  "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
1877
  " Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
1878
 
1879
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:546
1880
  msgid "Upgrade to Premium"
1881
  msgstr "Premium freischalten"
1882
 
1883
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:566
1884
  msgctxt "command (plugins)"
1885
  msgid "Deactivate"
1886
  msgstr "Deaktivieren"
1887
 
1888
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:577
1889
  msgid "Your post could not be posted."
1890
  msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
1891
 
1892
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:578
1893
  msgid ""
1894
  "Your authorization has expired. Please reconnect your account in the "
1895
  "Blog2Social network settings."
1897
  "Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
1898
  "Blog2Social Netzwerkeinstellungen erneut. "
1899
 
1900
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:579
1901
  msgid "The network has marked the post as spam or abusive."
1902
  msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
1903
 
1904
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:580
1905
  msgid ""
1906
  "We don't have the permission to publish your post. Please check your "
1907
  "authorization."
1909
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
1910
  "überprüfe deine Autorisierung."
1911
 
1912
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:581
1913
  msgid ""
1914
  "Your authorization is interrupted. Please check your authorization. Please "
1915
  "see <a target=\"_blank\" href=\"https://www.blog2social."
1919
  "Siehe <a target=\"_blank\" href=\"https://www.blog2social."
1920
  "com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
1921
 
1922
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:582
1923
  msgid "Your daily limit has been reached."
1924
  msgstr "Dein tägliches Beitragslimit wurde erreicht."
1925
 
1926
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:583
1927
  msgid "Your post could not be posted, because your image is not available."
1928
  msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
1929
 
1930
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:584
1931
  msgid ""
1932
  "The network has blocked your account. Please see <a target=\"_blank\" "
1933
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
1937
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
1938
  "loesungen.html\">FAQ</a>."
1939
 
1940
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:585
1941
  msgid ""
1942
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
1943
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
1947
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
1948
  "loesungen.html\">FAQ</a>."
1949
 
1950
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:586
1951
  msgid "Your daily limit for this network has been reached. Please try again later."
1952
  msgstr ""
1953
  "Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
1954
  "versuche es später noch einmal."
1955
 
1956
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:587
1957
  msgid ""
1958
  "The network can not publish special characters such as Emoji. Please see <a "
1959
  "target=\"_blank\" href=\"https://www.blog2social."
1963
  "//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
1964
  "html\">FAQ</a>."
1965
 
1966
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:588
1967
  msgid "Your post is a duplicate."
1968
  msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
1969
 
1970
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:589
1971
  msgid "The network requires a public url."
1972
  msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
1973
 
1974
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:590
1975
  msgid "You have already retweeted this post."
1976
  msgstr "Du hast diesen Post bereits retweetet.\n"
1977
 
1978
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:591
1979
  msgid "Your group can not be found by the network."
1980
  msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden. "
1981
 
1982
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:648 ../..
1983
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:648 ../../plugins/blog2social-v-
1984
+ #: 5-0/includes/Loader.php:683
1985
  msgid "Dashboard"
1986
  msgstr "Dashboard"
1987
 
1988
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:649 ../..
1989
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:649 ../../plugins/blog2social-v-
1990
+ #: 5-0/includes/Loader.php:690
1991
  msgid "Posts & Sharing"
1992
  msgstr "Beiträge"
1993
 
1994
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:650 ../..
1995
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:650 ../../plugins/blog2social-v-
1996
+ #: 5-0/includes/Loader.php:697 ../../plugins/blog2social-v-5-0/views/b2s/network.
1997
+ #: php:17
1998
  msgid "Networks"
1999
  msgstr "Netzwerke"
2000
 
2001
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:651 ../..
2002
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:651 ../../plugins/blog2social-v-
2003
+ #: 5-0/includes/Loader.php:703 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:
2004
+ #: 54 ../../plugins/blog2social-v-5-0/views/b2s/ship.php:284
2005
  msgid "Settings"
2006
  msgstr "Einstellungen"
2007
 
2008
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:652 ../..
2009
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:652 ../../plugins/blog2social-v-
2010
+ #: 5-0/includes/Loader.php:709
2011
  msgid "PR-Service"
2012
  msgstr "PR-Service"
2013
 
2014
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:653 ../..
2015
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:653 ../../plugins/blog2social-v-
2016
+ #: 5-0/includes/Loader.php:716 ../../plugins/blog2social-v-5-
2017
+ #: 0/views/b2s/widgets/tutorial.php:4
2018
  msgid "How to & FAQ"
2019
  msgstr "How to & FAQ"
2020
 
2021
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:654
2022
  msgid "Premium"
2023
  msgstr "Premium"
2024
 
2025
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:674
2026
  msgid "Blog2Social"
2027
  msgstr "Blog2Social"
2028
 
2029
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:1090 ../..
2030
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:1275
2031
  msgid "or"
2032
  msgstr "oder"
2033
 
2034
+ #: ../../plugins/blog2social-v-5-0/includes/Loader.php:1090 ../..
2035
+ #: /plugins/blog2social-v-5-0/includes/Loader.php:1275
2036
  msgid "back to install plugins"
2037
  msgstr "zurück zur Pluginübersicht"
2038
 
2039
+ #: ../../plugins/blog2social-v-5-0/includes/Notice.php:18
2040
  msgid ""
2041
  "<strong>Rate it!</strong> If you like Blog2Social, please give us a 5 star "
2042
  "rating. I there is anything that does not work for you, please contact us!"
2044
  "Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
2045
  "Bewertung. Spreche uns an, wenn Dir ir­gend­was nicht gefällt."
2046
 
2047
+ #: ../../plugins/blog2social-v-5-0/includes/Notice.php:19 ../..
2048
+ #: /plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:55
2049
  msgid "RATE BLOG2SOCIAL"
2050
  msgstr "Blog2Social jetzt bewerten"
2051
 
2052
+ #: ../../plugins/blog2social-v-5-0/includes/Notice.php:20
2053
  msgid "hide"
2054
  msgstr "ausblenden"
2055
 
2056
+ #: ../../plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:31
2057
  msgid "All Authors"
2058
  msgstr "alle Autoren"
2059
 
2060
+ #: ../../plugins/blog2social-v-5-0/includes/PRG/Post/Filter.php:42
2061
  msgid "All Types"
2062
  msgstr "alle Typen"
2063
 
2064
+ #: ../../plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:100
2065
  msgid "You have no posts published or scheduled"
2066
  msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
2067
 
2068
+ #: ../../plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:127
2069
  msgid "Publish on PR-Gateway"
2070
  msgstr "Beitrag über PR-Gateway veröffentlichen"
2071
 
2072
+ #: ../../plugins/blog2social-v-5-0/includes/PRG/Post/Item.php:129
2073
  msgid "on Blog"
2074
  msgstr "auf dem Blog"
2075
 
2076
+ #: ../../plugins/blog2social-v-5-0/includes/System.php:69
2077
  msgid ""
2078
  "Blog2Social used cURL. cURL is not installed in your PHP installation on "
2079
  "your server. Install cURL and activate Blog2Social again."
2081
  "Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
2082
  "Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
2083
 
2084
+ #: ../../plugins/blog2social-v-5-0/includes/System.php:72 ../..
2085
+ #: /plugins/blog2social-v-5-0/includes/System.php:78
2086
  msgid ""
2087
  "Please see <a href=\"https://www.blog2social."
2088
  "com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
2092
  "com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
2093
  "blog2social.html\" target=\"_blank\">FAQ</a>"
2094
 
2095
+ #: ../../plugins/blog2social-v-5-0/includes/System.php:75
2096
  msgid ""
2097
  "Blog2Social used PHP. Your installed PHP version on your server is not high "
2098
  "enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
2101
  "um Blog2Social zu nutzen. Aktualisere Deine PHP Version auf 5.5.3 oder höher."
2102
  " "
2103
 
2104
+ #: ../../plugins/blog2social-v-5-0/includes/System.php:81
2105
  msgid ""
2106
  "Blog2Social does not seem to have permission to write in your WordPress "
2107
  "database. Please assign Blog2Social the permission to write in the WordPress "
2114
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
2115
  "zu tun.\n"
2116
 
2117
+ #: ../../plugins/blog2social-v-5-0/includes/System.php:84
2118
  msgid ""
2119
  "<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
2120
  "requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
2124
  "com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
2125
  "blog2social.html\" target=\"_blank\">Siehe FAQ</a>"
2126
 
2127
+ #: ../../plugins/blog2social-v-5-0/views/b2s/dashboard.php:82
2128
  msgid "Couldn't find your answer?"
2129
  msgstr "Konntest Du Deine Antwort nicht finden?"
2130
 
2131
+ #: ../../plugins/blog2social-v-5-0/views/b2s/dashboard.php:84
2132
  msgid "Contact Support by Email"
2133
  msgstr "Support-Team per E-Mail kontaktieren"
2134
 
2135
+ #: ../../plugins/blog2social-v-5-0/views/b2s/dashboard.php:86
2136
  msgid "Call us: +49 2181 7569-277"
2137
  msgstr "Ruf' uns an: +49 2181 7569-277"
2138
 
2139
+ #: ../../plugins/blog2social-v-5-0/views/b2s/dashboard.php:88
2140
  msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
2141
  msgstr "(Anrufzeiten: Montags bis Freitag von 9:00 bis 17:00 MEZ)"
2142
 
2143
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:9
2144
  msgid "How to use Blog2Social"
2145
  msgstr "So nutzt Du Blog2Social"
2146
 
2147
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:17
2148
  msgid ""
2149
  "Learn how to get the most out of Blog2Social to promote your blog on social "
2150
  "media. Find step-by-step instructions and tips for FREE and PREMIUM users."
2153
  "auf den Social Media zu bewerben. Siehe Dir dazu die Schritt-für-Schritt "
2154
  "Anleitung und Tipps für Free und Premium Nutzer an."
2155
 
2156
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:30
2157
  msgid "Do you need help?"
2158
  msgstr "Brauchst Du Unterstützung?"
2159
 
2160
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:32
2161
  msgid "Find answers to common questions in our FAQ."
2162
  msgstr "Finde Antworten zu häufig gestelle Fragen in umserem FAQ."
2163
 
2164
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:37
2165
  msgid "search FAQ"
2166
  msgstr "suchen"
2167
 
2168
+ #: ../../plugins/blog2social-v-5-0/views/b2s/howto.php:41 ../..
2169
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/support.php:1
2170
  msgid "TOP 5 FAQ"
2171
  msgstr "TOP 5 FAQ"
2172
 
2173
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:21 ../..
2174
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:22 ../../plugins/blog2social-
2175
+ #: v-5-0/views/b2s/post.calendar.php:169 ../../plugins/blog2social-v-5-
2176
+ #: 0/views/b2s/post.calendar.php:170 ../../plugins/blog2social-v-5-
2177
+ #: 0/views/prg/post.php:25 ../../plugins/blog2social-v-5-0/views/prg/post.php:26 .
2178
+ #: ./../plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:18 ../..
2179
+ #: /plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:19
 
2180
  msgid "filter"
2181
  msgstr "Filter"
2182
 
2183
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:27 ../..
2184
+ #: /plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:82
2185
  msgid "Delete"
2186
  msgstr "löschen"
2187
 
2188
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:32 ../..
2189
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:35 ../../plugins/blog2social-
2190
+ #: v-5-0/views/b2s/network.php:68 ../../plugins/blog2social-v-5-
2191
+ #: 0/views/b2s/network.php:91
2192
  msgid "Create new profile"
2193
  msgstr "neues Profil erstellen"
2194
 
2195
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:34
2196
  msgid "You want to define a new combination of networks?"
2197
  msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
2198
 
2199
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:74
2200
  msgid "create"
2201
  msgstr "erstellen"
2202
 
2203
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:94
2204
  msgid ""
2205
  "All connected networks will be displayed as default \"Standard\" networks "
2206
  "profile.<br><br>You may define various sets of social media accounts, "
2240
  "verschiedene Netzwerk-Profile noch schneller auf Deine verschiedenen "
2241
  "Netzwerk-Kombinationen zuzugreifen."
2242
 
2243
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:97
2244
  msgid "You want to add another network profile, pages or groups?"
2245
  msgstr ""
2246
  "Du möchtest ein weiteres Netzwerkprofil anlegen oder auf Seiten und Gruppen "
2247
  "posten?"
2248
 
2249
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:126
2250
  msgid "Delete Profile"
2251
  msgstr "Profil löschen"
2252
 
2253
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:129
2254
  msgid "Do you really want to delete this profile"
2255
  msgstr "Soll Dein Profil wirklich gelöscht werden?"
2256
 
2257
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:132 ../..
2258
+ #: /plugins/blog2social-v-5-0/views/b2s/post.approve.php:87 ../..
2259
+ #: /plugins/blog2social-v-5-0/views/b2s/post.notice.php:74 ../..
2260
+ #: /plugins/blog2social-v-5-0/views/b2s/post.publish.php:74 ../..
2261
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:86 ../..
2262
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:80 ../..
2263
+ #: /plugins/blog2social-v-5-0/views/prg/ship.php:92
2264
  msgid "NO"
2265
  msgstr "NEIN"
2266
 
2267
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:133 ../..
2268
+ #: /plugins/blog2social-v-5-0/views/b2s/network.php:184 ../../plugins/blog2social-
2269
+ #: v-5-0/views/b2s/post.approve.php:88 ../../plugins/blog2social-v-5-
2270
+ #: 0/views/b2s/post.notice.php:75 ../../plugins/blog2social-v-5-0/views/b2s/post.
2271
+ #: publish.php:75 ../../plugins/blog2social-v-5-0/views/b2s/post.sched.php:87 ../.
2272
+ #: ./plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:81
 
2273
  msgid "YES, delete"
2274
  msgstr "Ja, löschen"
2275
 
2276
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:144
2277
  msgid "Google My Business"
2278
  msgstr "Google My Business"
2279
 
2280
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:147
2281
  msgid ""
2282
  "Blog2Social uses the official Google My Business API to share your content "
2283
  "on your business listing. You can connect Google My Business listings with "
2289
  "zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
2290
  "welchem Standort Ihr Content geteilt werden soll."
2291
 
2292
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:150
2293
  msgid ""
2294
  "Google currently allows access to the API for all companies with up to 9 "
2295
  "locations in their Google My Business Listings. However, Google plans to "
2301
  "Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
2302
  "Business Brancheneinträgen zu erweitern."
2303
 
2304
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:153 ../..
2305
+ #: /plugins/blog2social-v-5-0/views/b2s/premium.php:22 ../../plugins/blog2social-
2306
+ #: v-5-0/views/b2s/widgets/premium.php:14
2307
  msgid "Learn more"
2308
  msgstr "Erfahre mehr"
2309
 
2310
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:166
2311
  msgid "Delete Authorization"
2312
  msgstr "Autorisierung löschen"
2313
 
2314
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:175
2315
  msgid "Do you really want to delete this authorization"
2316
  msgstr "Soll die Autorisierung wirklich löschen werden?"
2317
 
2318
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:178
2319
  msgid "You have still set up scheduled posts for this network:"
2320
  msgstr "Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
2321
 
2322
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:179
2323
  msgid "scheduled posts"
2324
  msgstr "geplante Beiträge"
2325
 
2326
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:185
2327
  msgid "View schedule posts for this profile"
2328
  msgstr "Gehe zu geplanten Beiträgen für dieses Profil."
2329
 
2330
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:204
2331
  msgid "Please re-authorize your account with Blog2Social and try again"
2332
  msgstr "Bitte autorisiere Dein Konto bei Blog2Social und versuche es erneut."
2333
 
2334
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:205
2335
  msgid "Change successful"
2336
  msgstr "Änderung erfolgreich"
2337
 
2338
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:206
2339
  msgid "Could not be changed"
2340
  msgstr "Kann nicht geändert werden"
2341
 
2342
+ #: ../../plugins/blog2social-v-5-0/views/b2s/network.php:214
2343
  msgid "modfiy"
2344
  msgstr "ändern"
2345
 
2346
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:8
2347
  msgid "Posting on Facebook Profiles – Introducing Facebook Instant Sharing"
2348
  msgstr "Posten auf Facebook-Profilen – Neues Feature: Facebook Instant Sharing"
2349
 
2350
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:11
2351
  msgid ""
2352
  "As part of recent updates to the Facebook Platform Policies, Facebook "
2353
  "introduced significant changes to the APIs that third-party programs, such "
2358
  "(APIs) vorgenommen, die von Drittanbieterprogrammen, wie z. B. Social Media "
2359
  "Marketing-Tools, verwendet werden."
2360
 
2361
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:14
2362
  msgid ""
2363
  "Due to Facebook API changes, starting on 1st August 2018, access to personal "
2364
  "Facebook Profiles has been severely restricted for all social media tools. "
2370
  "eingeschränkt. Die automatische Veröffentlichung auf persönlichen Facebook-"
2371
  "Profilen ist daher mit keinem Social Media-Tool oder App mehr erlaubt."
2372
 
2373
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:15 ..
2374
+ #: /../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:70
2375
  msgid "read more"
2376
  msgstr "mehr erfahren"
2377
 
2378
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:18
2379
  msgid "What does this mean for your Social Media Marketing?"
2380
  msgstr "Was bedeutet das für Dein Social-Media-Marketing?"
2381
 
2382
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:20
2383
  msgid ""
2384
  "Sharing your posts on your Facebook Profile will still be possible with "
2385
  "Blog2Social! To help you keep sharing content with your followers, "
2388
  "Um Dir weiterhin zu ermöglichen, Inhalte mit Deinen Followern zu teilen, "
2389
  "führt Blog2Social jetzt Facebook Instant Sharing ein."
2390
 
2391
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:22
2392
  msgid ""
2393
  "Instant Sharing will not only let you share content on your Facebook Profile."
2394
  " You will also be able to share in Groups, Events and more!"
2396
  "Mit Instant Sharing kannst Du nicht nur Inhalte auf Deinem Facebook-Profil "
2397
  "teilen, sondern auch in -Gruppen und -Veranstaltungen! "
2398
 
2399
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:24
2400
  msgid ""
2401
  "Learn how to use all the new features of Facebook Instant Sharing including "
2402
  "@handles, emotions, and more customizing features!"
2405
  "kannst, einschließlich @handles, Emojis und zusätzlichen "
2406
  "Individualisierungsmöglichkeiten!"
2407
 
2408
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:27
2409
  msgid "Please note:"
2410
  msgstr "Hinweis:"
2411
 
2412
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:29
2413
  msgid ""
2414
  "Changes to the API currently only affect personal Facebook Profiles. Sharing "
2415
  "your posts automatically on your Facebook Pages will also still be possible "
2421
  "weiterhin mit Social Media Tools möglich. Selbstverständlich kannst Du auch "
2422
  "weiterhin mit Blog2Social automatisch auf deinen Facebook-Seiten posten."
2423
 
2424
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:31
2425
  msgid ""
2426
  "If you are using your personal Facebook Profile for business, promotion, or "
2427
  "publishing purposes, you might also consider converting your personal "
2431
  "Veröffentlichungszwecke verwendest, kann es sich für Dich lohnen, Dein "
2432
  "persönliches Facebook-Profil in eine Facebook-Seite umzuwandeln."
2433
 
2434
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:33
2435
  msgid "Learn how to convert your Facebook Profile to a Facebook Page"
2436
  msgstr ""
2437
  "Hier erfährst Du, wie Du Dein Facebook-Profil in eine Facebook-Seite "
2438
  "umwandeln kannst und welche Vorteile das bringt."
2439
 
2440
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/network-tos-modal.php:38
2441
  msgid "I understand the Facebook changes"
2442
  msgstr "Ich verstehe die Änderungen bei Facebook"
2443
 
2444
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/plugin-deactivate-modal.php:
2445
+ #: 10
2446
  msgid "Do you want to delete your scheduled posts?"
2447
  msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
2448
 
2449
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/plugin-deactivate-modal.php:
2450
+ #: 13
2451
  msgid ""
2452
  "Do you want Blog2Social to delete all your scheduled social media posts? "
2453
  "Your scheduled posts will no longer be sent to your social networks."
2456
  "geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend "
2457
  "nicht weiter an Deine sozialen Netzwerke versendet."
2458
 
2459
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/plugin-deactivate-modal.php:
2460
+ #: 14
2461
  msgid "Delete scheduled posts"
2462
  msgstr "Geplante Beiträge löschen"
2463
 
2464
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/plugin-deactivate-modal.php:
2465
+ #: 17
2466
  msgid "Continue deactivation"
2467
  msgstr "Deaktivierung fortsetzen"
2468
 
2469
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:7
2470
  msgid "Edit Post"
2471
  msgstr "Beitrag bearbeiten"
2472
 
2473
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:35
2474
  msgid "This post is blocked by %1"
2475
  msgstr "% 1bearbeitet gerade diesen Beitrag."
2476
 
2477
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:69
2478
  msgid "The orginal tweet is scheduled on:"
2479
  msgstr "Der Original-Tweet ist geplant für:"
2480
 
2481
+ #: ../../plugins/blog2social-v-5-0/views/b2s/partials/post-edit-modal.php:86
2482
  msgid "Change details"
2483
  msgstr "Änderungen übernehmen"
2484
 
2485
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.approve.php:78
2486
  msgid "Delete Social Media Posts"
2487
  msgstr "Social Media Posts löschen"
2488
 
2489
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.approve.php:81
2490
  msgid "Are you sure you want to delete these Social Media posts?"
2491
  msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
2492
 
2493
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.approve.php:83 ../..
2494
+ #: /plugins/blog2social-v-5-0/views/b2s/post.notice.php:70 ../..
2495
+ #: /plugins/blog2social-v-5-0/views/b2s/post.publish.php:70 ../..
2496
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:82 ../..
2497
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:76
2498
  msgid "Number of entries"
2499
  msgstr "Anzahl der Einträge"
2500
 
2501
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:30
2502
  msgid "Sort by network"
2503
  msgstr "Nach Netzwerk sortieren"
2504
 
2505
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:78 ../..
2506
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:159
2507
  msgid "add post"
2508
  msgstr "neuer Beitrag"
2509
 
2510
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:97 ../..
2511
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:117 ../..
2512
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:479
2513
  msgid "Choose your"
2514
  msgstr "Wähle Deinen"
2515
 
2516
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:97 ../..
2517
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:117 ../..
2518
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:479
2519
  msgid "Post Format"
2520
  msgstr "Postformat"
2521
 
2522
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:99 ../..
2523
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:119 ../..
2524
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:481
2525
  msgid "for:"
2526
  msgstr "für:"
2527
 
2528
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:118 ../..
2529
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:138 ../..
2530
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:496
2531
  msgid ""
2532
  "Define the default settings for the custom post format for all of your "
2533
  "Facebook accounts in the Blog2Social settings."
2535
  "Definiere Dein Standard-Beitragsformat für alle Deine Facebook-Verbindungen "
2536
  "unter den Blog2Social Einstellungen."
2537
 
2538
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:121 ../..
2539
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:141 ../..
2540
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:499
2541
  msgid ""
2542
  "Define the default settings for the custom post format for all of your "
2543
  "Twitter accounts in the Blog2Social settings."
2545
  "Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
2546
  "unter den Blog2Social Einstellungen."
2547
 
2548
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:124 ../..
2549
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:144 ../..
2550
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:502
2551
  msgid ""
2552
  "Define the default settings for the custom post format for all of your "
2553
  "Google+ accounts in the Blog2Social settings."
2555
  "Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
2556
  "unter den Blog2Social Einstellungen."
2557
 
2558
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:127 ../..
2559
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:147 ../..
2560
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:505
2561
  msgid ""
2562
  "Define the default settings for the custom post format for all of your "
2563
  "Instagram accounts in the Blog2Social settings."
2565
  "Definiere Dein Standard-Beitragsformat für alle Deine Instagram-Verbindungen "
2566
  "unter den Blog2Social Einstellungen."
2567
 
2568
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:142 ../..
2569
+ #: /plugins/blog2social-v-5-0/views/b2s/post.sched.php:98 ../..
2570
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:436
2571
  msgid "Select image for"
2572
  msgstr "Wähle Bild aus für"
2573
 
2574
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:161
2575
  msgid "Select a post"
2576
  msgstr "Beitrag auswählen"
2577
 
2578
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:208 ../..
2579
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:390
2580
  msgid "Need to schedule your posts?"
2581
  msgstr "Du möchtest Deine Beiträge planen?"
2582
 
2583
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:211 ../..
2584
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:393
2585
  msgid "Blog2Social Premium covers everything you need."
2586
  msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
2587
 
2588
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:215 ../..
2589
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:397
2590
  msgid ""
2591
  "You want to publish a post on a specific date? No problem! Just enter your "
2592
  "desired date and you are ready to go!"
2594
  "Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
2595
  "Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
2596
 
2597
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:217 ../..
2598
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:399
2599
  msgid "Schedule post recurrently"
2600
  msgstr "Beitrag mehrfach planen"
2601
 
2602
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:218 ../..
2603
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:400
2604
  msgid ""
2605
  "You have evergreen content you want to re-share from time to time in your "
2606
  "timeline? Schedule your evergreen content to be shared once, multiple times "
2610
  "möchtest? Plane Deinen Evergreen-Content einmalig, mehrfach oder "
2611
  "wiederholend zu verschiedenden Zeiten."
2612
 
2613
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:220 ../..
2614
+ #: /plugins/blog2social-v-5-0/views/b2s/premium.php:78 ../../plugins/blog2social-
2615
+ #: v-5-0/views/b2s/ship.php:402 ../../plugins/blog2social-v-5-
2616
+ #: 0/views/b2s/widgets/premium.php:71 ../../plugins/blog2social-v-5-
2617
+ #: 0/views/b2s/html/footer.phtml:191
2618
  msgid "Best Time Scheduler"
2619
  msgstr "Beste Zeiten Manager"
2620
 
2621
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.calendar.php:221 ../..
2622
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:403
2623
  msgid ""
2624
  "Whenever you publish a post, only a fraction of your followers will actually "
2625
  "see your post. Use the Blog2Social Best Times Scheduler to share your post "
2631
  "Dein Beitrag zu den Besten Zeiten für jedes Netzwerk zu planen. Erhalte mehr "
2632
  "Reichweite und verlängere die Lebensdauer Deiner Beiträge."
2633
 
2634
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.notice.php:65 ../..
2635
+ #: /plugins/blog2social-v-5-0/views/b2s/post.publish.php:65 ../..
2636
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:71
2637
  msgid "Delete entries from the reporting"
2638
  msgstr "Einträge aus dem Reporting löschen"
2639
 
2640
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.notice.php:68 ../..
2641
+ #: /plugins/blog2social-v-5-0/views/b2s/post.publish.php:68 ../..
2642
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:74
2643
  msgid "You are sure, you want to delete entries from the reporting?"
2644
  msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
2645
 
2646
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.sched.php:77
2647
  msgid "Delete entries form the scheduling"
2648
  msgstr "Einträge aus der Planung löschen"
2649
 
2650
+ #: ../../plugins/blog2social-v-5-0/views/b2s/post.sched.php:80
2651
  msgid "You are sure, you want to delete entries from the scheduling?"
2652
  msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
2653
 
2654
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:9 ../..
2655
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:1
2656
  msgid "Your license: Blog2Social"
2657
  msgstr "Du nutzt Blog2Social"
2658
 
2659
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:21 ../..
2660
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:13
2661
  msgid ""
2662
  "Upgrade to Blog2Social Premium to schedule your posts for the best time, "
2663
  "once or recurringly with the Best Time Scheduler and post to pages, groups "
2667
  "im Voraus planen, zur einmaligen oder wiederholten Veröffentlichung. Und Du "
2668
  "kannst auf Seiten, in Gruppen und mehreren Accounts pro Netzwerk posten."
2669
 
2670
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:27 ../..
2671
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:19 ../..
2672
+ #: /plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:24
2673
  msgid "Enter license key and change your version"
2674
  msgstr "Lizenzschlüssel eingeben und Version ändern"
2675
 
2676
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:29 ../..
2677
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:21 ../..
2678
+ #: /plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:26
2679
  msgid "Activate"
2680
  msgstr "Aktivieren"
2681
 
2682
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:51
2683
  msgid "Social Media Sharing"
2684
  msgstr "Netzwerkauswahl"
2685
 
2686
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:52 ../..
2687
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:36
2688
  msgid "Cross-share to all popular social networks"
2689
  msgstr "Teilen von Blogbeiträgen auf allen Social Media"
2690
 
2691
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:60
2692
  msgid "Auto Posting"
2693
  msgstr "Auto-Posting"
2694
 
2695
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:61 ../..
2696
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:48
2697
  msgid "Automatically share your posts whenever you publish a new blog post"
2698
  msgstr "Blogbeiträge automatisch beim Veröffentlichen teilen"
2699
 
2700
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:69
2701
  msgid "Customizing Social Media Posts"
2702
  msgstr "Individualisieren"
2703
 
2704
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:70 ../..
2705
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:60
2706
  msgid ""
2707
  "Edit or add comments, hashtags or handles. Edit posts in HTML for re-"
2708
  "publishing on blogging networks"
2710
  "Posting-Texte ergänzen mit Kommentaren, Hashtags oder Handles. HTML-Editor "
2711
  "für das Posten in Blog-Netzwerken"
2712
 
2713
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:79 ../..
2714
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:72
2715
  msgid "Choose pre-defined times to post or edit and define your own time settings"
2716
  msgstr "Optimaler Zeitpunkt zum Posten voreingestellt und anpassbar"
2717
 
2718
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:89
2719
  msgid "Social Media Scheduler"
2720
  msgstr "Veröffentlichungen planen"
2721
 
2722
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:90
2723
  msgid ""
2724
  "Social media scheduling: once, repeatedly or recurrently to multiple "
2725
  "profiles, pages and groups"
2727
  "Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
2728
  "Gruppen posten"
2729
 
2730
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:98
2731
  msgid "Individual Images for Each Social Media Post"
2732
  msgstr "Individuelle Bilder für jeden Social Media Post"
2733
 
2734
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:99
2735
  msgid ""
2736
  "Select any image from your media gallery for each social media post and "
2737
  "channel"
2738
  msgstr "Wählen Sie beliebige Bilder für Ihre Social Media Posts"
2739
 
2740
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:107
2741
  msgid "Select Post Format"
2742
  msgstr "Beitragsformat auswählen"
2743
 
2744
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:108 ../..
2745
+ #: /plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:96
2746
  msgid "One-page preview editor for all social networks for easy customizing"
2747
  msgstr ""
2748
  "Zentrale Vorschauseite für alle Social Media mit Editor für einfaches "
2749
  "Anpassen"
2750
 
2751
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:116
2752
  msgid "Social Media Reporting"
2753
  msgstr "Reporting"
2754
 
2755
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:117
2756
  msgid "Keep track of your scheduled and shared posts"
2757
  msgstr ""
2758
  "Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
2759
  "einfachen Aufrufen und erneuten Teilen"
2760
 
2761
+ #: ../../plugins/blog2social-v-5-0/views/b2s/premium.php:122
2762
  msgid "Show me plans and prices"
2763
  msgstr "Versionen und Preise anzeigen"
2764
 
2765
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:25
2766
  msgid "save..."
2767
  msgstr "speichere Daten..."
2768
 
2769
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:30
2770
  msgid "General"
2771
  msgstr "Allgemein"
2772
 
2773
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:36
2774
  msgid "Social Meta Data"
2775
  msgstr "Social Meta Angaben"
2776
 
2777
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:39
2778
  msgid "Best Time Settings"
2779
  msgstr "Zeit-Einstellungen"
2780
 
2781
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:42
2782
  msgid "Network Settings"
2783
  msgstr "Netzwerk-Einstellungen"
2784
 
2785
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:65 ../..
2786
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:458
2787
  msgid "My Time Settings"
2788
  msgstr "Meine Zeit-Einstellungen"
2789
 
2790
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:76
2791
  msgid "Reset predefined best time settings"
2792
  msgstr "Voreingestellte beste Zeiten zurücksetzen"
2793
 
2794
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:86
2795
  msgid "Post format"
2796
  msgstr "Beitragsformat"
2797
 
2798
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:96
2799
  msgid "Facebook"
2800
  msgstr "Facebook"
2801
 
2802
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:99
2803
  msgid "Twitter"
2804
  msgstr "Twitter"
2805
 
2806
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:102
2807
  msgid "Google+"
2808
  msgstr "Google+"
2809
 
2810
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:105
2811
  msgid "Instagram"
2812
  msgstr "Instagram"
2813
 
2814
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:206
2815
  msgid "Allow shortcodes in my post"
2816
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
2817
 
2818
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:209
2819
  msgid ""
2820
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
2821
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
2834
  "den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
2835
  "diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
2836
 
2837
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:220
2838
  msgid "Include WordPress tags as hashtags in your posts"
2839
  msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
2840
 
2841
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:223
2842
  msgid ""
2843
  "Hashtags are a great way to generate more reach and visibility for your "
2844
  "posts. By activating this feature Blog2Social will automatically include "
2855
  "Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige "
2856
  "Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. \n"
2857
 
2858
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:234
2859
  msgid "Activate Legacy mode "
2860
  msgstr "Kompatibilitätsmodus aktivieren "
2861
 
2862
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:237
2863
  msgid "Plugin contents are loaded one at a time to minimize server load."
2864
  msgstr ""
2865
  "Plugininhalte werden nacheinander geladen, um den Hosting-Server Deines "
2866
  "Blogs zu entlasten."
2867
 
2868
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:248
2869
  msgid "Instant Caching for Facebook Link Posts"
2870
  msgstr "Instant Caching für Facebook Link-Beiträge"
2871
 
2872
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:251
2873
  msgid ""
2874
  "To make sure that Facebook always pulls the current meta data of your blog "
2875
  "post for link-posts, Blog2Social adds a \"no-cache=1\" parameter to the post "
2881
  "Caching bei Facebook Link-Beiträgen den “no-cache=1” Parameter an die "
2882
  "Beitrags-URL. Dies ist notwendig, wenn Du varnish caching benutzt.\n"
2883
 
2884
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:253
2885
  msgid "Note: To use Facebook Instant Articles, this option must be disabled."
2886
  msgstr ""
2887
  "Achtung: Um Facebook Instant Artikel zu verwenden, muss diese Option "
2888
  "deaktiviert sein."
2889
 
2890
+ #: ../../plugins/blog2social-v-5-0/views/b2s/settings.php:267
2891
  msgid ""
2892
  "Blog2Social applies the scheduled time settings based on the time zone "
2893
  "defined in the general settings of your WordPress. You can select a user-"
2901
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
2902
  "gewünschte Zeitzone aus dem Drop-Down Menü."
2903
 
2904
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:30
2905
  msgid "Social Media Scheduling & Sharing"
2906
  msgstr "Beitrag auf Social Media planen und teilen"
2907
 
2908
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:40
2909
  msgid "scroll to bottom"
2910
  msgstr "zum Seitenende"
2911
 
2912
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:45
2913
  msgid "You want to load your time settings?"
2914
  msgstr "Du möchtest Deine Zeiten laden?"
2915
 
2916
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:46
2917
  msgid "Load My Time Settings"
2918
  msgstr "Meine Zeit-Einstellungen laden"
2919
 
2920
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:52
2921
  msgid "Load Best Time Scheduler"
2922
  msgstr "Beste Zeiten laden"
2923
 
2924
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:85
2925
  msgid "Social Accounts"
2926
  msgstr "Social Media Konten"
2927
 
2928
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:103
2929
  msgid "Add more..."
2930
  msgstr "mehr hinzufügen"
2931
 
2932
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:105
2933
  msgid "Profiles | Pages | Groups"
2934
  msgstr "Profile | Seiten | Gruppen"
2935
 
2936
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:144
2937
  msgid "Save Network Selection"
2938
  msgstr "Netzwerkauswahl speichern"
2939
 
2940
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:153
2941
  msgid "network connected"
2942
  msgstr "Netzwerk verbunden"
2943
 
2944
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:154
2945
  msgid "requires image"
2946
  msgstr "Bild benötigt"
2947
 
2948
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:155
2949
  msgid "refresh authorization"
2950
  msgstr "Autorisierung aktualisieren"
2951
 
2952
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:178
2953
  msgid ""
2954
  "Notice:<br><p>Please make sure, that your website address is reachable. The "
2955
  "Social Networks do not allow postings from local installations.</p>"
2958
  "erreichbar ist. Die sozialen Netzwerke erlauben keine Posts von lokalen "
2959
  "Installationen.</p>"
2960
 
2961
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:180
2962
  msgid "change website address"
2963
  msgstr "Webseiten-Adresse ändern"
2964
 
2965
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:197
2966
  msgid "First, connect or select network before posting"
2967
  msgstr ""
2968
  "Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
2969
  "Du den Beitrag teilst!"
2970
 
2971
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:207
2972
  msgid "scroll to top"
2973
  msgstr "zum Seitenanfang"
2974
 
2975
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:208 ../..
2976
+ #: /plugins/blog2social-v-5-0/views/b2s/ship.php:212
2977
  msgid "Share"
2978
  msgstr "Teilen"
2979
 
2980
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:221
2981
  msgid "Time zone"
2982
  msgstr "Zeitzone"
2983
 
2984
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:239
2985
  msgid "Share new post on Social Media"
2986
  msgstr "Teile einen neuen Beitrag auf Social Media"
2987
 
2988
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:261
2989
  msgid "Connect for"
2990
  msgstr "Netzwerke verbinden für"
2991
 
2992
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:277
2993
  msgid "Time Scheduling"
2994
  msgstr "Zeitplanung"
2995
 
2996
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:281
2997
  msgid ""
2998
  "You have not yet defined personal time settings. To edit personal time "
2999
  "settings click on the Blog2Social Settings on the left-hand menu and select "
3005
  "Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
3006
  "die voreingestellten besten Zeiten verändern."
3007
 
3008
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:294
3009
  msgid "Re-share this Post"
3010
  msgstr "Diesen Beitrag nochmal teilen"
3011
 
3012
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:297
3013
  msgid ""
3014
  "You can re-share your post for a different sharing purpose, or to share on a "
3015
  "different choice of networks, profiles, pages or groups, or with different "
3034
  "auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
3035
  "wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
3036
 
3037
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:300
3038
  msgid "You want re-share your blog post?"
3039
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
3040
 
3041
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:328
3042
  msgid "Save Network Settings"
3043
  msgstr "Netzwerkeinstellungen speichern"
3044
 
3045
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:331
3046
  msgid ""
3047
  "You can save your current network settings as \"Standard\" network settings "
3048
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
3074
  "zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
3075
  "variieren kannst. "
3076
 
3077
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:343
3078
  msgid "Your blog post is not yet published on your Wordpress!"
3079
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
3080
 
3081
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:346
3082
  msgid "At least one of your selected networks is set to \"Share Now\""
3083
  msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
3084
 
3085
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:350
3086
  msgid "Schedule your post"
3087
  msgstr "Beitrag planen"
3088
 
3089
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:353
3090
  msgid "Ignore & share"
3091
  msgstr "Ignorieren & teilen"
3092
 
3093
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:528
3094
  msgid "add Schedule"
3095
  msgstr "neuer Termin"
3096
 
3097
+ #: ../../plugins/blog2social-v-5-0/views/b2s/ship.php:542
3098
  msgid "Give me more information"
3099
  msgstr "Erhalte mehr Infomationen"
3100
 
3101
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/activity.php:5
3102
  msgid "Your activity"
3103
  msgstr "Deine Aktivität"
3104
 
3105
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/activity.php:8
3106
  msgid "Show activity starting from"
3107
  msgstr "Zeige Aktivität ab"
3108
 
3109
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/activity.php:13
3110
  msgid "published social media posts"
3111
  msgstr "veröffentlichte Beiträge"
3112
 
3113
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/calendar.php:1 ../..
3114
+ #: /plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:13
3115
  msgid "Calendar"
3116
  msgstr "Kalender"
3117
 
3118
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/newsletter.php:4
3119
  msgid "Get news and updates for promoting your blog on social media"
3120
  msgstr "Aktuelle Infos zur Blog-Promotion auf Social Media"
3121
 
3122
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/newsletter.php:10
3123
  msgid "Get updates"
3124
  msgstr "Updates erhalten"
3125
 
3126
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/newsletter.php:12
3127
  msgid ""
3128
  "We hate spam, too. We will never sell your email address to any other "
3129
  "company or for any other purpose."
3131
  "Wir mögen auch keinen Spam. Deine E-Mail-Adresse werden wir weder verkaufen "
3132
  "noch anderweitig zweckentfremden. "
3133
 
3134
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/newsletter.php:16
3135
  msgid "You have already subscribed to the newsletter. Awesome!"
3136
  msgstr "Du hast Dich schon für den Newsletter angemeldet! Prima!"
3137
 
3138
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:19
3139
  msgid "Latest Posts"
3140
  msgstr "letzte Beiträge"
3141
 
3142
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/posts.php:31 ../..
3143
+ #: /plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:9
3144
  msgid "Scheduled Posts"
3145
  msgstr "geplante Beiträge"
3146
 
3147
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:35
3148
  msgid "Network Choice"
3149
  msgstr "Netzwerkauswahl"
3150
 
3151
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:59
3152
  msgid "Custom Sharing"
3153
  msgstr "Individualisieren"
3154
 
3155
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:83
3156
  msgid "Custom Scheduling"
3157
  msgstr "Veröffentlichungen planen"
3158
 
3159
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:84
3160
  msgid ""
3161
  "Unlimited scheduling options: once, repeatedly or recurringly to multiple "
3162
  "profiles, pages and groups"
3164
  "Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
3165
  "Gruppen posten"
3166
 
3167
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:95
3168
  msgid "One-Step Workflow"
3169
  msgstr "One-Step Workflow"
3170
 
3171
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:107
3172
  msgid "Reporting"
3173
  msgstr "Veröffentlichungen anzeigen"
3174
 
3175
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:108
3176
  msgid ""
3177
  "All scheduled and published social media posts with direct links for easy "
3178
  "access or re-sharing"
3180
  "Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
3181
  "einfachen Aufrufen und erneuten Teilen"
3182
 
3183
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/premium.php:115
3184
  msgid "Unlock Premium"
3185
  msgstr "Premium freischalten"
3186
 
3187
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/support.php:9
3188
  msgid "more FAQ"
3189
  msgstr "mehr FAQ"
3190
 
3191
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/tutorial.php:1 ../..
3192
+ #: /plugins/blog2social-v-5-0/views/b2s/html/service.phtml:4
3193
  msgid "How to work with Blog2Social"
3194
  msgstr "So arbeitest Du mit Blog2Social"
3195
 
3196
+ #: ../../plugins/blog2social-v-5-0/views/b2s/widgets/tutorial.php:2
3197
  msgid ""
3198
  "Learn how to get the most out of Blog2Social to promote your blog on social "
3199
  "media."
3201
  "Du erfährst, wie Du Blog2Social optimal nutzt, um Deinen Blog auf Social "
3202
  "Media zu promoten."
3203
 
3204
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:12
3205
  msgid "Connection is broken..."
3206
  msgstr "Vebindung ist unterbrochen..."
3207
 
3208
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:14
3209
  msgid ""
3210
  "The connection to your server has been interrupted. Please make sure that "
3211
  "your blog is reachable. If your server does not respond or is too slow, "
3218
  "nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
3219
  "Deinen Webmaster, wenn dieser Fehler erneut erscheint."
3220
 
3221
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:17
3222
  msgid "Update..."
3223
  msgstr "Aktualisierung..."
3224
 
3225
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:19
3226
  msgid ""
3227
  "<b> A new version of Blog2Social is available. </b> Update now <br> "
3228
  "Blog2Social to continue to use the latest version of the plugin."
3229
  msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
3230
 
3231
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:23
3232
  msgid "Update Blog2Social"
3233
  msgstr "Aktualisiere Blog2Social"
3234
 
3235
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:26
3236
  msgid "Unknown error"
3237
  msgstr "Unbekannter Fehler"
3238
 
3239
+ #: ../../plugins/blog2social-v-5-0/views/notice.php:28
3240
  msgid "<b> An unknown error occurred! </b> <br> Please contact our support!"
3241
  msgstr ""
3242
  "<b> Ein unbekannter Fehler ist aufgetreten. </b> <br> Bitte kontaktiere "
3243
  "unseren Support."
3244
 
3245
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:14
3246
  msgid "Login failed. Please check your username and a password!"
3247
  msgstr ""
3248
  " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
3249
  "Benutzernamen und Dein Password!"
3250
 
3251
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:20
3252
  msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
3253
  msgstr ""
3254
  " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine "
3255
  "Server-Einstellungen. OpenSSL muss aktiviert sein. "
3256
 
3257
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:23
3258
  msgid "E-Mail or Username"
3259
  msgstr "E-Mail oder Benutzername"
3260
 
3261
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:24
3262
  msgid "Password"
3263
  msgstr "Passwort"
3264
 
3265
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:27
3266
  msgid "Sign in"
3267
  msgstr "Anmelden"
3268
 
3269
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:29
3270
  msgid "create account"
3271
  msgstr "neues Konto erstellen"
3272
 
3273
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:29
3274
  msgid "reset password"
3275
  msgstr "Passwort zurücksetzen"
3276
 
3277
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:35
3278
  msgid "Test PR-Gateway for free"
3279
  msgstr "PR-Gateway kostenlos und unverbindlich testen"
3280
 
3281
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:36
3282
  msgid "1x publish press release <br> 1x publish report <br> 1x promote event"
3283
  msgstr ""
3284
  "1 x Pressemitteilung veröffentlichen <br> 1 x Report abrufen <br>1 x "
3285
  "Veranstaltung bewerben"
3286
 
3287
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:38
3288
  msgid ""
3289
  "The press distribution PR gateway automatically publish your press releases "
3290
  "and events with one click.Publish your message over 250 portals."
3296
  "internationalen und regionalen Portalen, Social Media und Dokumenten-"
3297
  "Netzwerken."
3298
 
3299
+ #: ../../plugins/blog2social-v-5-0/views/prg/login.php:41
3300
  msgid "Start your 14-Day Free Trial"
3301
  msgstr "Jetzt kostenlos testen"
3302
 
3303
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:34
3304
  msgid "Select Image"
3305
  msgstr "Bild auswählen"
3306
 
3307
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:45 ../..
3308
+ #: /plugins/blog2social-v-5-0/views/prg/ship.php:47
3309
  msgid "Copyright"
3310
  msgstr "Copyright"
3311
 
3312
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:66
3313
  msgid "Save As Draft"
3314
  msgstr "als Entwurf speichern"
3315
 
3316
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:67
3317
  msgid "Publish"
3318
  msgstr "Veröffentlichen"
3319
 
3320
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:85
3321
  msgid "Please Note"
3322
  msgstr "Hinweis"
3323
 
3324
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:88
3325
  msgid ""
3326
  "It may incur charges for publishing on PR-Gateway. Sent press releases can "
3327
  "not be withdrawn. If you want your press release to be published now?"
3331
  "Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
3332
  "Pressemitteilung jetzt versendet werden?"
3333
 
3334
+ #: ../../plugins/blog2social-v-5-0/views/prg/ship.php:91
3335
  msgid "Yes, I accept"
3336
  msgstr "Ja,einverstanden"
3337
 
3338
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:4
3339
  msgid "Privacy Policy"
3340
  msgstr "Datenschutz"
3341
 
3342
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:4
3343
  msgid "Terms"
3344
  msgstr "Agbs"
3345
 
3346
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:4
3347
  msgid "We never store your data from your social media profiles."
3348
  msgstr "Wir speichern keine persönlichen Daten Deiner Social Media Profile."
3349
 
3350
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:8 ../..
3351
+ #: /plugins/blog2social-v-5-0/views/prg/html/footer.phtml:8 ../..
3352
+ #: /plugins/blog2social-v-5-0/views/prg/html/header.phtml:40
3353
  msgid "Post"
3354
  msgstr "Beitrag"
3355
 
3356
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:9 ../..
3357
+ #: /plugins/blog2social-v-5-0/views/prg/html/footer.phtml:9
3358
  msgid "Job"
3359
  msgstr "Stellenanzeige"
3360
 
3361
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:10 ../..
3362
+ #: /plugins/blog2social-v-5-0/views/prg/html/footer.phtml:10
3363
  msgid "Event"
3364
  msgstr "Veranstaltung"
3365
 
3366
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:22
3367
  msgid "Upgrade to Blog2Social for Premium"
3368
  msgstr "Jetzt auf Blog2Social PREMIUM upgraden "
3369
 
3370
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:52
3371
  msgid "Upgrade to Blog2Social for PREMIUM PRO"
3372
  msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden "
3373
 
3374
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:55
3375
  msgid ""
3376
  "You can select different combinations of networks and save them for "
3377
  "different sharing purposes."
3379
  "Du kannst für verschiedene Social Media Aktivitäten oder Kampagnen eine "
3380
  "passende Kombination von Netzwerken anlegen und speichern."
3381
 
3382
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:58
3383
  msgid ""
3384
  "With Blog2Social Premium PRO you can save your preferred network "
3385
  "combinations for future reference and choose individual names for each "
3399
  "mehrere Social Media Profile, Seiten und Gruppen eines Netzwerks in einer "
3400
  "Kombination verbinden."
3401
 
3402
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:61
3403
  msgid "With Blog2Social PREMIUM PRO you can also:"
3404
  msgstr "Mit blog2Social Premium PRO kannst Du außerdem:"
3405
 
3406
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:63
3407
  msgid ""
3408
  "Post on LinkedIn pages, XING pages and groups, as well as Facebook and "
3409
  "Google+ pages and groups"
3411
  "Auf LinkedIn-Seiten, auf XING-Seiten und -Gruppen, sowie auf Seiten und "
3412
  "Gruppen in Facebook und Google+ posten"
3413
 
3414
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:65
3415
  msgid ""
3416
  "Schedule your posts at the best times on each network: for one time, "
3417
  "multiple times or recurrently"
3419
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
3420
  "oder nach einem regelmäßigen Muster"
3421
 
3422
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:68
3423
  msgid ""
3424
  "Reporting and calendar: keep track of your published and scheduled social "
3425
  "media posts"
3427
  "Mit dem Reporting & Kalender Deine bereits veröffentlichten und geplanten "
3428
  "Social Media Post im Blick behalten."
3429
 
3430
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:75
3431
  msgid "Activate Blog2Social PREMIUM PRO."
3432
  msgstr "Aktiviere Blog2Social PREMIUM PRO. "
3433
 
3434
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:77
3435
  msgid ""
3436
  "With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as "
3437
  "well as XING groups."
3439
  "Mit Blog2Social Premium PRO kannst Du auf Seiten in LinkedIn und XING und in "
3440
  "XING-Gruppen posten."
3441
 
3442
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:80
3443
  msgid "Also included:"
3444
  msgstr "Außerdem inklusive"
3445
 
3446
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:82
3447
  msgid "Social media auto-posting and auto-scheduling"
3448
  msgstr "Blogbeiträge auto-posten und auto-planen"
3449
 
3450
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:83
3451
  msgid "Posting to social media pages and groups in Facebook and Google+"
3452
  msgstr "Posten auf Social Media Seiten und in Gruppen bei Facebook and Google+ "
3453
 
3454
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:84
3455
  msgid "Sharing on multiple accounts per network"
3456
  msgstr "Posten in mehreren Accounts pro Netzwerk"
3457
 
3458
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:85
3459
  msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
3460
  msgstr ""
3461
  "Beste Zeiten Manager: Veröffentlichungen einmal, mehrmals oder regelmäßig "
3462
  "planen"
3463
 
3464
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:86
3465
  msgid "Reporting with links to already published posts"
3466
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
3467
 
3468
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:101
3469
  msgid "Select the preferred custom post format for your posts"
3470
  msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
3471
 
3472
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:106
3473
  msgid ""
3474
  "You can define your preferred custom post format Twitter, Facebook and "
3475
  "Google +. Select link post or photo post format:"
3477
  "Für Facebook, Twitter und Google + kannst Du Dein bevorzugtes Post-Format "
3478
  "standardmäßig festlegen. Wähle das Link-Post- oder das Foto-Post-Format:"
3479
 
3480
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:111
3481
  msgid ""
3482
  "The link post format displays posts title, link address and the first one or "
3483
  "two sentences of the post. The networks scan this information from your META "
3501
  "Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
3502
  "Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. \n"
3503
 
3504
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:123
3505
  msgid ""
3506
  "For Instagram, you can select \"image with frame\" or \"image cut out\" as your "
3507
  "preferred custom post format."
3509
  "Du kannst für Instagram zwischen \"Bild mit Rahmen\" umd \"Bild "
3510
  "ausgeschnitten\" als Dein bevorzugtes Beitragsformat auswählen."
3511
 
3512
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:173
3513
  msgid "Did you miss something?"
3514
  msgstr "Was vermisst Du?"
3515
 
3516
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:176
3517
  msgid "Help us make Blog2Social even better!"
3518
  msgstr "Helfe uns Blog2Social besser zu machen!"
3519
 
3520
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:180
3521
  msgid "submit"
3522
  msgstr "senden"
3523
 
3524
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:194
3525
  msgid ""
3526
  "Blog2Social provides you with a ready-to-use best time scheduler based on "
3527
  "current research on the best times to post on each social network."
3529
  "Blog2Social stellt Dir ein vordefiniertes Zeitschema für die besten Zeiten "
3530
  "zum Teilen auf den verschiedenen Social Media Kanälen zur Verfügung."
3531
 
3532
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:196
3533
  msgid ""
3534
  "Click Best Time Scheduler in the preview editor to schedule your posts "
3535
  "automatically for the best times to post on each social network."
3538
  "Click \"Best Time Scheduler\" in the preview editor to schedule your posts "
3539
  "automatically for the best times to post on each social network."
3540
 
3541
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:198
3542
  msgid ""
3543
  "You can also define your own personal time settings for posting, if you know "
3544
  "which times work best for your communities. Edit the pre-filled times in the "
3548
  "eingetragenen Zeiten in den allgemeinen Einstellungen, die Du ändern "
3549
  "möchtest und klicke \"speichern\"."
3550
 
3551
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:200
3552
  msgid ""
3553
  "Click My Time Settings in the preview editor to schedule your posts with "
3554
  "your personal best time settings."
3556
  "Klicke \"Meine Zeit-Einstellungen\" im Vorschau-Editor, um Deine Social Media "
3557
  "Posts zu Deinen persönlichen Zeit-Einstellungen zu planen."
3558
 
3559
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:202
3560
  msgid ""
3561
  "You can always edit the predefined times in the preview editor for any post "
3562
  "or network and save your new settings as default for future use."
3565
  "jedes Netzwerk jederzeit individuell ändern oder neu definieren und für alle "
3566
  "zukünftigen Beiträge abspeichern. "
3567
 
3568
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:204
3569
  msgid ""
3570
  "Blog2Social will also apply your personal time settings, if you enable the "
3571
  "Social Media Auto-Poster and select auto-post at scheduled times. "
3574
  "das Social Media Auto-Posting nutzt und die Veröffentlichung zu geplanten "
3575
  "Zeiten auswählst."
3576
 
3577
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:238
3578
  msgid "Why Retweets?"
3579
  msgstr "Wieso retweeten?\n"
3580
 
3581
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:241
3582
  msgid ""
3583
  "Retweets are the recommended way to reshare the same Tweets across Twitter "
3584
  "accounts in accordance with Twitter new rules. You can now schedule multiple "
3590
  "mehrere Retweets für einen Original-Tweet direkt aus Deinem WordPress "
3591
  "Backend heraus planen."
3592
 
3593
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:244
3594
  msgid ""
3595
  "If Retweets are enabled, every Original-Tweet you schedule in this step will "
3596
  "be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
3602
  "B. 3 Original-Tweets geplant sind, löst jeder einzelne Tweet einen Retweet "
3603
  "für den/die ausgewählten Twitter-Accounts aus."
3604
 
3605
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:248
3606
  msgid "Do you want retweeten?"
3607
  msgstr "Du möchtest retweeten?\n"
3608
 
3609
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:277
3610
  msgid "Bit.ly integration (URL Shortening)"
3611
  msgstr "Bit.ly URL Shortener Integration"
3612
 
3613
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:280
3614
  msgid ""
3615
  "You can use Bit.ly links to shorten the URL of your links and to track the "
3616
  "performance of your links across all social media networks. Activate Bit.ly "
3626
  "geteilt und Sie können so den Erfolg Ihrer Beiträge in Ihrem Bit.ly Account "
3627
  "überprüfen.\n"
3628
 
3629
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:294
3630
  msgid ""
3631
  "Select the content that will be automatically pre-filled in your Twitter "
3632
  "posts. If you have ticked the box \"include WordPress tags as hashtags in my "
3637
  "Tags als Hashtags zu Deinen Social Media-Posts hinzu” aktiviert hast, werden "
3638
  "Hashtags auch im Dropdown-Menü automatisch an die Optionen angefügt. "
3639
 
3640
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:351
3641
  msgid "Social Meta Tags Settings"
3642
  msgstr "Meta Tag Einstellungen"
3643
 
3644
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:354 ../..
3645
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:435
3646
  msgid "Change image, title and description for your post on this network"
3647
  msgstr "Bild, Titel und Beschreibung des Blogbeitrags ändern"
3648
 
3649
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:360
3650
  msgid ""
3651
  "Facebook has changed its policy for posting link posts via plugins or web "
3652
  "applications. Facebook does no longer display the featured or selected image "
3669
  "Bitte stelle sicher, dass das ausgewählte Bild die Voraussetzungen für die "
3670
  "Bildgrößen auf Facebook erfüllt."
3671
 
3672
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:362
3673
  msgid ""
3674
  "With Blog2Social you can select a featured image or any image you select to "
3675
  "be displayed with your link post. Blog2Social will automatically write the "
3689
  "der Beitragsvorschau an Bilder, Titel und Beschreibung vornimmst, nicht "
3690
  "übernimmt. "
3691
 
3692
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:365
3693
  msgid ""
3694
  "Twitter has changed its policy for posting link posts via plugins or web "
3695
  "applications. Twitter does no longer display the featured or selected image "
3711
  "werden diese nicht angezeigt. Bitte stelle sicher, dass das ausgewählte Bild "
3712
  "die Voraussetzungen für die Bildgrößen auf Twitter erfüllt."
3713
 
3714
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:367
3715
  msgid ""
3716
  "With Blog2Social you can select a featured image or any image you select to "
3717
  "be displayed with your link post. Blog2Social will automatically write the "
3731
  "Änderungen, die Du in der Beitragsvorschau an Bilder, Titel und Beschreibung "
3732
  "vornimmst, nicht übernimmt. \n"
3733
 
3734
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:370
3735
  msgid ""
3736
  "You can change the image, title and description for your post on Facebook, "
3737
  "by editing the following fields for"
3739
  "Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
3740
  "Facebook über die folgenden Felder ändern:"
3741
 
3742
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:373 ../..
3743
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:388
3744
  msgid "image"
3745
  msgstr "Bild"
3746
 
3747
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:375 ../..
3748
+ #: /plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:390
3749
  msgid "description"
3750
  msgstr "Beschreibung"
3751
 
3752
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:377
3753
  msgid ""
3754
  "Blog2Social will automatically write these information in the Facebook Open "
3755
  "Graph (OG) Meta Tags for Image, Title and Description of your blog post."
3758
  "Graph (OG) Meta Tag Parameter Deines Blogbeitrags für Image, Title und "
3759
  "Description."
3760
 
3761
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:380
3762
  msgid ""
3763
  "Please note: If this post has already been shared or scheduled previously, "
3764
  "your current changes will also affect the look of previously shared or "
3771
  "Meta Tag Parameter Deiner Beitragsseite zieht und alle vorhandenen Beiträge "
3772
  "mit diesen Informationen automatisch aktualisiert."
3773
 
3774
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:382
3775
  #, php-format
3776
  msgid ""
3777
  "Please note: Your changes will have no effect on your social media posts on "
3782
  "berücksichtigt werden, wenn Du in den Blog2Social Meta Tag<a target=\"_blank\" "
3783
  "href=\"%s\">Einstellungen</a>, die Meta Tag Funktion manuell deaktiviert hast."
3784
 
3785
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:385
3786
  msgid ""
3787
  "You can change the image, title and description for your post on Twitter, by "
3788
  "editing the following fields for"
3790
  "Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
3791
  "Twitter über die folgenden Felder ändern:"
3792
 
3793
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:392
3794
  msgid ""
3795
  "Blog2Social will automatically write these information in the Twitter Card "
3796
  "Meta Tags for Image, Title and Description of your blog post."
3798
  "Blog2Social übergibt diese Informationen automatisch an die Twitter Card "
3799
  "Meta Tag Parameter Deines Blogbeitrags für Image, Title und Description."
3800
 
3801
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:395
3802
  msgid ""
3803
  "Please note: If this post has already been shared or scheduled previously, "
3804
  "your current changes will also affect the look of previously shared or "
3813
  "bereits geteilt hast, kann es bis zu 7 Tagen dauern, bis Twitter die "
3814
  "Änderungen aktualisiert. "
3815
 
3816
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:397
3817
  #, php-format
3818
  msgid ""
3819
  "Please note: Your changes will have no effect on your social media posts on "
3825
  "target=\"_blank\" href=\"%s\">Einstellungen </a> die Meta Tag Funktion manuell "
3826
  "deaktiviert hast."
3827
 
3828
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:404
3829
  msgid "You want to change the image, title and description for your post?"
3830
  msgstr "Du möchtest Dein Bild, Titel und Beschreibung für diesen Beitrag ändern?"
3831
 
3832
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:440
3833
  msgid ""
3834
  "You are currently sharing this post as image post. Changes to title and "
3835
  "description Meta Tag parameters will only be supported for link post formats."
3841
  "Format unterstützt. Bitte ändere das Post Format in Linkbeitrag, um "
3842
  "Änderungen am Titel und der Beschreibung für die Postvorschau vorzunehmen."
3843
 
3844
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:443
3845
  #, php-format
3846
  msgid ""
3847
  "Your changes will have no effect on your social media posts on Facebook, if "
3852
  "Du Meta Tag Einstellungen für Facebook unter den Blog2Social <a "
3853
  "target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
3854
 
3855
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/footer.phtml:446
3856
  #, php-format
3857
  msgid ""
3858
  "Your changes will have no effect on your social media posts on Twitter, if "
3863
  "Du Meta Tag Einstellungen für Twitter unter den Blog2Social <a "
3864
  "target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
3865
 
3866
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:36
3867
  msgid ""
3868
  "To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
3869
  "Our support assists you as of PHP version 5.5.3. See also:"
3872
  "höher benötigt. Unser Support unterstützt Dich ab PHP Version 5.5.3. Siehe "
3873
  "auch:"
3874
 
3875
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:37
3876
  msgid "Technical requirements for Blog2Social"
3877
  msgstr "Technische Vorraussetzungen für Blog2Social"
3878
 
3879
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:44
3880
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
3881
  msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
3882
 
3883
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:62
3884
  msgid "Autoposter limit has been reached"
3885
  msgstr "Das Autoposter-Limit wurde erreicht"
3886
 
3887
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:62
3888
  msgid "Your daily limit for posting automatically has been reached."
3889
  msgstr "Dein tägliche Limit für das automatische Veröffentlichen wurde erreicht."
3890
 
3891
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:69
3892
  msgid ""
3893
  " Due to Facebooks API changes, starting on 1st August 2018, access to "
3894
  "Personal Facebook Profiles has been severely restricted for all social media "
3901
  "zu teilen, stellt Dir Blog2Social jetzt eine neue Facebook-Instant-Sharing-"
3902
  "App zur Verfügung."
3903
 
3904
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:77
3905
  msgid "You have clear all page and post meta data successful."
3906
  msgstr "Alle Seiten und Beitrags Metangaben sind gelöscht."
3907
 
3908
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:82
3909
  msgid "The page and post meta data could not be removed."
3910
  msgstr "Die Seiten und Beitrags Metangaben können nicht gelöscht werden."
3911
 
3912
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:88
3913
  msgid ""
3914
  "You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta "
3915
  "tags from Yoast SEO."
3917
  "Du hast Yoast SEO aktiviert. Blog2Social Meta Tags überschreibt die "
3918
  "Metaangaben von Yoast SEO nun."
3919
 
3920
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:94
3921
  msgid ""
3922
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
3923
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
3930
  "Einstellungen. Wenn Du sie bereits deaktiviert hast, kannst Du diese Meldung "
3931
  "ignorieren."
3932
 
3933
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:100
3934
  msgid ""
3935
  "You currently have both Blog2Social Social Meta Tags and Facebook Open Graph,"
3936
  " Google+ and Twitter Card Tags plugins active. This is no recommended. "
3942
  "deaktiviere die Facebook Open Graph, Google+ and Twitter Card Tags "
3943
  "Einstellungen."
3944
 
3945
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:107
3946
  msgid "This entry could not be removed. It's not yours!"
3947
  msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
3948
 
3949
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:112
3950
  msgid "This entry was removed successfully."
3951
  msgstr "Dein Post wurde erfolgreich gelöscht. "
3952
 
3953
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:117
3954
  msgid "This post was edit successful."
3955
  msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
3956
 
3957
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:126
3958
  msgid "Post was scheduled successfully on your blog!"
3959
  msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
3960
 
3961
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:128
3962
  msgid "Post is published successfully on your blog!"
3963
  msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
3964
 
3965
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:142
3966
  msgid "Your authorization was successful."
3967
  msgstr "Deine Autorisierung war erfolgreich."
3968
 
3969
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:147
3970
  msgid "Your profile was saved successful."
3971
  msgstr "Dein Profil wurde erfolgreich gespeichert."
3972
 
3973
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:152
3974
  msgid "Your profile could not be saved."
3975
  msgstr "Dein Profil konnte nicht gespeichert werden."
3976
 
3977
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:157
3978
  msgid "Your authorization could not be removed."
3979
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
3980
 
3981
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:162
3982
  msgid "Your authorization was removed successful."
3983
  msgstr "Dein Profil wurde erfolgreich entfernt."
3984
 
3985
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:167
3986
  msgid "Thank you! Your feedback has been received."
3987
  msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
3988
 
3989
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:172
3990
  msgid "Your feedback could not be delivered."
3991
  msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
3992
 
3993
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:179 ../..
3994
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:194
3995
  msgid "Your settings were successfully saved."
3996
  msgstr "Deine Einstellungen sind gespeichert."
3997
 
3998
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:184
3999
  msgid "Your settings could not be saved."
4000
  msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
4001
 
4002
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:189
4003
  msgid ""
4004
  "Your settings could not be saved, because you have auto-posting enabled but "
4005
  "no social networks selected."
4007
  "Deine Einstellungen konnten nicht gespeichert werden, weil Du keine Social "
4008
  "Media Netzwerke ausgewählt hast."
4009
 
4010
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:202
4011
  #, php-format
4012
  msgid ""
4013
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
4019
  "sehr freuen und uns helfen, das Tool bekannter zu machen. Vielen Dank für "
4020
  "Deine Unterstützung.\n"
4021
 
4022
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:205
4023
  msgid "Ok, you deserve it"
4024
  msgstr "Ok, Ihr habt es verdient "
4025
 
4026
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:208
4027
  msgid "Nope, maybe later"
4028
  msgstr "Nicht jetzt, vielleicht später "
4029
 
4030
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:211
4031
  msgid "I already did it"
4032
  msgstr "Habe ich schon gemacht "
4033
 
4034
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:223
4035
  msgid "Boost your social media automation with Blog2Social PREMIUM!"
4036
  msgstr "Mache mehr aus Deiner Social Media Automatisierung mit Blog2Social PREMIUM!"
4037
 
4038
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:225
4039
  msgid ""
4040
  "Blog2Social provides even more options for auto-posting and auto-scheduling "
4041
  "for your posts. Easily schedule your posts with the Best Time Scheduler or "
4050
  "Formaten für jedes Netzwerk und jeden Post, wähle dazu beliebige Bilder aus "
4051
  "deiner Bibliothek aus. Und vieles mehr.\n"
4052
 
4053
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:229
4054
  msgid "Yes, I want to test Blog2Social PREMIUM 30 days for free"
4055
  msgstr "Ja, ich möchte das Blog2Social PREMIUM 30 Tage kostenlos testen "
4056
 
4057
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:232
4058
  msgid "No, I'm happy with Blog2Social FREE"
4059
  msgstr "Nein, ich bin glücklich mit Blog2Social FREE "
4060
 
4061
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:244
4062
  msgid "Your Blog2Social Premium Free Version is activated for "
4063
  msgstr "Deine Blog2Social Testphase läuft noch"
4064
 
4065
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:247
4066
  msgid " Days"
4067
  msgstr "Tage"
4068
 
4069
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:247
4070
  msgid " today"
4071
  msgstr "heute"
4072
 
4073
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:251
4074
  msgid ""
4075
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
4076
  "autopilot, automatically schedule your social media posts with the Best Time "
4086
  "hoch. Speichere mehrere Kombinationen von Netzwerken für verschiedene Zwecke."
4087
  " "
4088
 
4089
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:255 ../..
4090
+ #: /plugins/blog2social-v-5-0/views/b2s/html/header.phtml:274
4091
  msgid "I need some more time to decide"
4092
  msgstr "Ich brauche noch mehr Zeit um mich zu entscheiden "
4093
 
4094
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:266
4095
  msgid "Your free trial of Blog2Social PREMIUM has ended."
4096
  msgstr "Deine kostenlose Testversion von Blog2Social PREMIUM ist abgelaufen."
4097
 
4098
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:267
4099
  msgid "We hope you liked Blog2Social Premium."
4100
  msgstr "Wir hoffen, dass Dir Blog2Social Premium gefällt."
4101
 
4102
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:273
4103
  msgid "Yes, I want to upgrade now"
4104
  msgstr "Ja, ich möchte jetzt von Premium profitieren "
4105
 
4106
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:275
4107
  msgid "Did you miss something? Tell us!"
4108
  msgstr "Vermisst Du etwas? Sag es uns! "
4109
 
4110
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:285
4111
  msgid "Version"
4112
  msgstr "Version"
4113
 
4114
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:295 ../..
4115
+ #: /plugins/blog2social-v-5-0/views/b2s/html/service.phtml:2
4116
  msgid "Plans & Pricing"
4117
  msgstr "Versionen & Preise"
4118
 
4119
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:296 ../..
4120
+ #: /plugins/blog2social-v-5-0/views/b2s/html/service.phtml:3
4121
  msgid "Support"
4122
  msgstr "Support"
4123
 
4124
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:308
4125
  msgid "Test Blog2Social PREMIUM 30 days for free"
4126
  msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
4127
 
4128
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:314
4129
  msgid ""
4130
  "The free trial can not be started. This blog has been already registered for "
4131
  "the free trial."
4133
  "Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
4134
  "bereits für die kostenlose Testzeit freigeschaltet."
4135
 
4136
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:319
4137
  msgid "Share on multiple accounts per network"
4138
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
4139
 
4140
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:320
4141
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
4142
  msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
4143
 
4144
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:321
4145
  msgid "Reporting with links to all published social media posts"
4146
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
4147
 
4148
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:324 ../..
4149
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:141 ../..
4150
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:143 ../..
4151
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:218 ../..
4152
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:220
4153
  msgid "E-Mail"
4154
  msgstr "E-Mail"
4155
 
4156
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:328 ../..
4157
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:91 ../..
4158
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:100 ../..
4159
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:168 ../..
4160
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:177
4161
  msgid "First Name"
4162
  msgstr "Vorname"
4163
 
4164
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:332 ../..
4165
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:92 ../..
4166
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:103 ../..
4167
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:169 ../..
4168
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:180
4169
  msgid "Last Name"
4170
  msgstr "Nachname"
4171
 
4172
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:336
4173
  msgid ""
4174
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
4175
  "href=\"https://www.blog2social.com/en/terms/\">Conditions of Use</a> and <a "
4181
  "target=\"_blank\" href=\"https://www.blog2social."
4182
  "com/de/datenschutz/\">Datenschutzerklärung</a> einverstanden.\n"
4183
 
4184
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:341
4185
  msgid "No credit card required"
4186
  msgstr "keine Kreditkarte notwendig"
4187
 
4188
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:345
4189
  msgid "Get Started"
4190
  msgstr "Jetzt loslegen"
4191
 
4192
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:363
4193
  msgid "Thank you for choosing Blog2Social Premium."
4194
  msgstr "Vielen Dank, dass Du Dich für Blog2Social Premium entschieden hast."
4195
 
4196
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:372 ../..
4197
+ #: /plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:8
4198
  msgid "Your license"
4199
  msgstr "Deine Lizenz"
4200
 
4201
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:373
4202
  msgid "Blog2Social Premium"
4203
  msgstr "Blog2Social Premium"
4204
 
4205
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:373
4206
  msgid "has been successfully activated."
4207
  msgstr "wurde erfolgreich aktiviert."
4208
 
4209
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:383
4210
  msgid "Your entered License Key is invalid. Please contact support!"
4211
  msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
4212
 
4213
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:393
4214
  msgid "Your license key has reached the maximum number of users."
4215
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
4216
 
4217
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:400
4218
  msgid "OK"
4219
  msgstr "OK"
4220
 
4221
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:416
4222
  msgid "We updated our Privacy Policy"
4223
  msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
4224
 
4225
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:430
4226
  msgid "Blog2Social is a service of Adenion GmbH"
4227
  msgstr "Blog2Social ist ein Service der Adenion GmbH"
4228
 
4229
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/header.phtml:431
4230
  msgid "I agree to the Adenion Privacy Policy"
4231
  msgstr "Ich stimme den Datenschutzrichtlinien zu"
4232
 
4233
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:7
4234
  msgid "All Posts"
4235
  msgstr "alle Beiträge"
4236
 
4237
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:8
4238
  msgid "Instant Sharing"
4239
  msgstr "Instant Sharing"
4240
 
4241
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:11
4242
  msgid "Shared Posts"
4243
  msgstr "geteilte Beiträge"
4244
 
4245
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/post.navbar.phtml:12
4246
  msgid "Notifications"
4247
  msgstr "Benachrichtungen"
4248
 
4249
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:38
4250
  msgid "Network Activity (today)"
4251
  msgstr "Netzwerk Aktivitäten (heute)"
4252
 
4253
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:49
4254
  msgid "Rate it!"
4255
  msgstr "Bewerte Blog2Social"
4256
 
4257
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:52
4258
  msgid ""
4259
  "If you like Blog2Social, please give us a 5 star rating. If there is "
4260
  "anything that does not work for you, please contact us!"
4262
  "Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
4263
  "Bewertung. Spreche uns an, wenn Dir ir­gend­was nicht gefällt."
4264
 
4265
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:68
4266
  msgid "GET STARTED"
4267
  msgstr "Jetzt Affiliate-Partner werden"
4268
 
4269
+ #: ../../plugins/blog2social-v-5-0/views/b2s/html/sidebar.phtml:79
4270
  msgid "Posts from Blog2Social"
4271
  msgstr "Beiträge von Blog2Social"
4272
 
4273
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:7
4274
  msgid "Post a Press Release"
4275
  msgstr "Beitrag als Pressemitteilung veröffentlichen"
4276
 
4277
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:11
4278
  msgid "Category"
4279
  msgstr "Kategorie"
4280
 
4281
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:12
4282
  msgid "Language"
4283
  msgstr "Sprache"
4284
 
4285
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:20
4286
  msgid "German"
4287
  msgstr "Deutsch"
4288
 
4289
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:21
4290
  msgid "English"
4291
  msgstr "Englisch"
4292
 
4293
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:32 ../..
4294
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:34
4295
  msgid "Subtitle"
4296
  msgstr "Untertitel"
4297
 
4298
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:38 ../..
4299
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:40
4300
  msgid "YouTube-Link"
4301
  msgstr "Youtube-Link"
4302
 
4303
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:44 ../..
4304
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:46
4305
  msgid "Message"
4306
  msgstr "Mitteilung"
4307
 
4308
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:50
4309
  msgid "Keywords"
4310
  msgstr "Schlüsselworter"
4311
 
4312
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:52
4313
  msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
4314
  msgstr "Schlüsselwörter mit Komma getrennt (z.B.: Blog2Social,PR-Gateway)"
4315
 
4316
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:56 ../..
4317
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:58
4318
  msgid "Shortext"
4319
  msgstr "Kurzbeschreibung"
4320
 
4321
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:69
4322
  msgid "Contact Details"
4323
  msgstr "Kontaktangaben"
4324
 
4325
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:74
4326
  msgid "Company"
4327
  msgstr "Firmenkontakt"
4328
 
4329
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:77
4330
  msgid "Press"
4331
  msgstr "Pressekontakt"
4332
 
4333
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:84 ../..
4334
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:86 ../..
4335
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:161 ../..
4336
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:163
4337
  msgid "Name"
4338
  msgstr "Name"
4339
 
4340
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:95 ../..
4341
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:172
4342
  msgid "Mrs."
4343
  msgstr "Frau"
4344
 
4345
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:96 ../..
4346
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:173
4347
  msgid "Mr."
4348
  msgstr "Herr"
4349
 
4350
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:107 ../..
4351
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:110 ../..
4352
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:184 ../..
4353
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:187
4354
  msgid "Street"
4355
  msgstr "Straße"
4356
 
4357
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:108 ../..
4358
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:113 ../..
4359
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:185 ../..
4360
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:190
4361
  msgid "Number"
4362
  msgstr "Nummer"
4363
 
4364
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:117 ../..
4365
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:120 ../..
4366
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:194 ../..
4367
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:197
4368
  msgid "Zip Code"
4369
  msgstr "PLZ"
4370
 
4371
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:118 ../..
4372
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:123 ../..
4373
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:195 ../..
4374
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:200
4375
  msgid "City"
4376
  msgstr "Stadt"
4377
 
4378
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:127 ../..
4379
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:204
4380
  msgid "Country"
4381
  msgstr "Land"
4382
 
4383
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:135 ../..
4384
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:137 ../..
4385
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:212 ../..
4386
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:214
4387
  msgid "Phone"
4388
  msgstr "Telefon"
4389
 
4390
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:147 ../..
4391
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:149 ../..
4392
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:224 ../..
4393
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:226
4394
  msgid "Website"
4395
  msgstr "Webseite"
4396
 
4397
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/form.phtml:153 ../..
4398
+ #: /plugins/blog2social-v-5-0/views/prg/html/form.phtml:155
4399
  msgid "Company Description"
4400
  msgstr "Firmenbeschreibung"
4401
 
4402
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:8
4403
  msgid "You are signed out of <b>PR-Gateway</b>!"
4404
  msgstr "Du bist nun bei PR-Gateway abgemeldet!"
4405
 
4406
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:17
4407
  msgid "Your message will now be sent over PR gateway to the press portals!"
4408
  msgstr "Deine Mitteilung wird nun über PR-Gateway an die Presseportale übermittelt!"
4409
 
4410
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:18
4411
  msgid "See all publications for your message live on "
4412
  msgstr "Verfolge live die Veröffentlichungen Deiner Mitteilung unter"
4413
 
4414
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:20
4415
  msgid "Your message save as draft by PR-Gateway!"
4416
  msgstr ""
4417
  "Deine Mitteilung wurde erfolgreich an PR-Gateway übermittelt und als Entwurf "
4418
  "abgelegt!"
4419
 
4420
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:28
4421
  msgid ""
4422
  "Unfortunately your request can not be processed by Blog2Social. Please try "
4423
  "again!"
4425
  "Deine Anfrage kann leider vom Blog2Social nicht verarbeitet werden. Bitte "
4426
  "versuche es erneut!"
4427
 
4428
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:34
4429
  msgid "Your message has not been received successfully with us. Please try again!"
4430
  msgstr ""
4431
  "Deine Mitteilung ist bei uns leider nicht erfolglreich eingegangen. Bitte "
4432
  "versuche es erneut!"
4433
 
4434
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:48
4435
  msgid ""
4436
  "PR-Gateway offers a paid online distribution service for submitting press "
4437
  "releases, articles and social media news to more than 250 news sites, "
4450
  "auf ausgewählten kostenfreien und kostenpflichtigen Portale zu "
4451
  "veröffentlichen."
4452
 
4453
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:49
4454
  msgid "Register here to open your PR-Gateway account."
4455
  msgstr "Registriere hier Deinen PR-Gateway Account, kostenlos und unverbindlich."
4456
 
4457
+ #: ../../plugins/blog2social-v-5-0/views/prg/html/header.phtml:66
4458
  msgid "Logout"
4459
  msgstr "Abmelden"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Blog2Social, Adenion
3
  Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this, sharethis, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, google plus, google plus pages, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, path, pinterest, re-post, scheduling, scheduling plugin, social media, social media auto publish, social media automation, social media button, social media manager, social media plugin, social media post, social media publishing, social media share, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing
4
  Donate link: http://www.blog2social.com
5
  Requires at least: 4.2.2
6
- Tested up to: 4.9.5
7
- Stable tag: 4.9.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -322,6 +322,8 @@ We use the official authentication oAUTH methods to third-party applications pro
322
  9. Adjust the best times to schedule in the best time scheduler.
323
 
324
  == Changelog ==
 
 
325
  = 4.9.1 =
326
  Usability Optimization, adapting to the facebook sharing process
327
  = 4.9.0 =
@@ -366,6 +368,8 @@ Usabilitiy and Performance Optimization. Select link format or image format indi
366
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
367
 
368
  == Upgrade Notice ==
 
 
369
  = 4.9.1 =
370
  Usability Optimization, adapting to the facebook sharing process
371
  = 4.9.0 =
3
  Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this, sharethis, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, google plus, google plus pages, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, path, pinterest, re-post, scheduling, scheduling plugin, social media, social media auto publish, social media automation, social media button, social media manager, social media plugin, social media post, social media publishing, social media share, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing
4
  Donate link: http://www.blog2social.com
5
  Requires at least: 4.2.2
6
+ Tested up to: 4.9.8
7
+ Stable tag: 4.9.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
322
  9. Adjust the best times to schedule in the best time scheduler.
323
 
324
  == Changelog ==
325
+ = 4.9.2 =
326
+ Usability Optimization
327
  = 4.9.1 =
328
  Usability Optimization, adapting to the facebook sharing process
329
  = 4.9.0 =
368
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
369
 
370
  == Upgrade Notice ==
371
+ = 4.9.2 =
372
+ Usability Optimization
373
  = 4.9.1 =
374
  Usability Optimization, adapting to the facebook sharing process
375
  = 4.9.0 =
views/b2s/partials/post-edit-modal.php CHANGED
@@ -16,6 +16,7 @@
16
  <form>
17
  <input type="hidden" class="b2s-input-hidden" name="action" value="b2s_edit_save_post" />
18
  <input type="hidden" class="b2s-input-hidden" id="post_id" name="post_id" value="<?= $item->getPostId(); ?>">
 
19
  <input type="hidden" class="b2s-input-hidden" name="b2s_id" value="<?= $item->getB2SId(); ?>">
20
  <input type="hidden" class="b2s-input-hidden" name="sched_details_id" value="<?= $item->getSchedDetailsId(); ?>">
21
  <input type="hidden" class="b2s-input-hidden" id="save_method" name="save_method" value="apply-this" />
16
  <form>
17
  <input type="hidden" class="b2s-input-hidden" name="action" value="b2s_edit_save_post" />
18
  <input type="hidden" class="b2s-input-hidden" id="post_id" name="post_id" value="<?= $item->getPostId(); ?>">
19
+ <input type="hidden" class="b2s-input-hidden" id="original_blog_user_id" name="original_blog_user_id" value="<?= $item->getBlogUserId(); ?>">
20
  <input type="hidden" class="b2s-input-hidden" name="b2s_id" value="<?= $item->getB2SId(); ?>">
21
  <input type="hidden" class="b2s-input-hidden" name="sched_details_id" value="<?= $item->getSchedDetailsId(); ?>">
22
  <input type="hidden" class="b2s-input-hidden" id="save_method" name="save_method" value="apply-this" />
views/b2s/settings.php CHANGED
@@ -256,8 +256,6 @@ $settingsItem = new B2S_Settings_Item();
256
  </div>
257
  </div>
258
 
259
-
260
-
261
  <div class="modal fade" id="b2sInfoTimeZoneModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoTimeZoneModal" aria-hidden="true" data-backdrop="false">
262
  <div class="modal-dialog">
263
  <div class="modal-content">
@@ -272,7 +270,7 @@ $settingsItem = new B2S_Settings_Item();
272
  </div>
273
  </div>
274
 
275
- <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/partials/network-tos-modal.php');?>
276
 
277
 
278
 
256
  </div>
257
  </div>
258
 
 
 
259
  <div class="modal fade" id="b2sInfoTimeZoneModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoTimeZoneModal" aria-hidden="true" data-backdrop="false">
260
  <div class="modal-dialog">
261
  <div class="modal-content">
270
  </div>
271
  </div>
272
 
273
+ <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/partials/network-tos-modal.php'); ?>
274
 
275
 
276
 
views/b2s/ship.php CHANGED
@@ -3,7 +3,8 @@ require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Navbar.php';
3
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Image.php';
4
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Portale.php';
5
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Settings/Item.php';
6
- delete_option('B2S_PLUGIN_POST_META_TAGES_' . (int) $_GET['postId']);
 
7
  delete_option('B2S_PLUGIN_POST_CONTENT_' . (int) $_GET['postId']);
8
  B2S_Tools::checkUserBlogUrl();
9
  $userLang = strtolower(substr(get_locale(), 0, 2));
@@ -535,7 +536,7 @@ $b2sGeneralOptions = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
535
  <input type="hidden" id="b2sTwitterOrginalPost" value="">
536
  <input type="hidden" id="b2sJsTextLoading" value="<?php _e('Loading...', 'blog2social') ?>">
537
  <input type="hidden" id="b2sJsTextPublish" value="<?php _e('published', 'blog2social') ?>">
538
-
539
  <input type="hidden" id="b2sJsTextConnectionFail" value="<?php _e('The connection to the server failed. Try again!', 'blog2social') ?>">
540
  <input type="hidden" id="b2sJsTextConnectionFailLink" value="<?php echo ($userLang == 'de') ? 'https://www.blog2social.com/de/faq/content/9/108/de/die-verbindung-zum-server-ist-fehlgeschlagen-bitte-versuche-es-erneut.html' : 'https://www.blog2social.com/en/faq/content/9/106/en/the-connection-to-the-server-failed-please-try-again.html'; ?>">
541
  <input type="hidden" id="b2sJsTextConnectionFailLinkText" value="<?php _e('Give me more information', 'blog2social') ?>">
3
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Image.php';
4
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Portale.php';
5
  require_once B2S_PLUGIN_DIR . 'includes/B2S/Settings/Item.php';
6
+ delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $_GET['postId']);
7
+ delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $_GET['postId']);
8
  delete_option('B2S_PLUGIN_POST_CONTENT_' . (int) $_GET['postId']);
9
  B2S_Tools::checkUserBlogUrl();
10
  $userLang = strtolower(substr(get_locale(), 0, 2));
536
  <input type="hidden" id="b2sTwitterOrginalPost" value="">
537
  <input type="hidden" id="b2sJsTextLoading" value="<?php _e('Loading...', 'blog2social') ?>">
538
  <input type="hidden" id="b2sJsTextPublish" value="<?php _e('published', 'blog2social') ?>">
539
+
540
  <input type="hidden" id="b2sJsTextConnectionFail" value="<?php _e('The connection to the server failed. Try again!', 'blog2social') ?>">
541
  <input type="hidden" id="b2sJsTextConnectionFailLink" value="<?php echo ($userLang == 'de') ? 'https://www.blog2social.com/de/faq/content/9/108/de/die-verbindung-zum-server-ist-fehlgeschlagen-bitte-versuche-es-erneut.html' : 'https://www.blog2social.com/en/faq/content/9/106/en/the-connection-to-the-server-failed-please-try-again.html'; ?>">
542
  <input type="hidden" id="b2sJsTextConnectionFailLinkText" value="<?php _e('Give me more information', 'blog2social') ?>">